.dialog-class {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: #F2F4F6;
    width: 800px;
    height: 500px;
    border-radius: 8px;
    padding: 30px 40px 92px;
    max-width: calc(100% - 40px);

}

.dialog-class .dialog-close {
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    top: 15px;
    right: 15px;
    color: #B3B3B3;
    font-weight: bold;
}

.dialog-class .title {
    font-size: 18px;
    color: #333333;
    line-height: 27px;
    font-weight: bold;
    text-align: center;
}

.dialog-class .nav {
    height: 40px;
    background: #FFFFFF;
    border-radius: 8px;
    line-height: 40px;
    padding: 0 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #333333;
    font-size: 14px;
}
.dialog-class .nav a{
    color: #108391;
    font-size: 14px;}
.dialog-class .nav i{
    color: #108391;
    font-size: 12px;
}
.feflx {
    height: 80%;
    display: flex;
    background: #E4EEF2;
    border-radius: 8px;
    gap: 5px;
    padding: 10px;
    flex-wrap: wrap;
}

.itemul {
    height: 100%;
    background: #fff;
    padding: 10px 0;
    line-height: 30px;
    flex: 1;
    min-width: 32%;
    overflow-y: auto;
    scrollbar-color: #4FC2B8 transparent;
    scrollbar-width: thin;
}

.itemul .li {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    padding: 0 10px;
    cursor: pointer;
}
.itemul .li .iconfont{
    font-size: 12px;
}
.itemul .li span {
    white-space: nowrap; /* 禁止换行 */
    overflow: hidden; /* 隐藏溢出内容 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
}

.itemul .li.on {
    background: #E4EEF2;
    color: #108391;
}

.dialog-class .btn {
    width: 160px;
    height: 42px;
    background: #4FC2B8;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #FFFFFF;
    position: absolute;
    bottom: 30px;
    left: calc(50% - 80px);

}

#msg_dialog .dialog-class{
    width: 280px;
    height: auto;
    min-height: 227px;
}
#msg_dialog .dialog-class .center{
    font-size: 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    line-height: 21px;
}

#supplier_dialog .dialog-class{
    width: 415px;
    height: unset;
    padding: 30px 40px 30px;
    background: #fff;
}
#supplier_dialog .dialog-class .title{text-align: left}
#supplier_dialog .item{
    margin-bottom: 24px;
}
#supplier_dialog .item .label{
    font-size: 14px;line-height: 21px;color: #000000;
}
#supplier_dialog .item input{
    height: 40px;
    line-height: 40px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    color: #222;
    width: 100%;
    font-size: 14px;
    padding: 0 15px;
    margin-top: 6px;
}
#supplier_dialog .center{
    margin-top: 30px;}
#supplier_dialog .bot03{
    gap: 15px;
}
#supplier_dialog .dialog-class .btn{position: initial}
#supplier_dialog .dialog-class .btn:nth-child(2){
    background: rgba(16, 131, 145, 0.1);
    color: #108391;
}
.bot03 .btn{
    margin-top: 6px;
}
@media (max-width: 992px) {
    .mask{
        z-index: 100000;
    }
    #supplier_dialog .dialog-class{
        position: fixed;
        bottom: 0;
        top: unset;
        transform: unset;
        left: 0;
        width: 100vw;
        max-width: unset;
        background: #fff;
        border-radius: 8px 8px 0px 0px;
        padding: 22px 20px 32px;
        height: fit-content;
    }
    #supplier_dialog .center{
        margin-top: 20px;
    }
    #supplier_dialog .item{
        margin-bottom: 12px;
    }
}
