
/* 弹窗公共样式 */
.modal-content{
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}
.c-model {
    background: #fff;
}
.c-model .c-model-head {
    width: 100%;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: #FFFFFF;
}
.c-model .c-model-head .c-model-head-title {
    font-weight: 500;
    font-size: 18px;
    color: #333333;
}
.c-model .c-model-head .iconfont {
    cursor: pointer;
    color: #999999;
    font-size: 24px;
}
.c-model .c-model-body {
    padding: 20px;
}
.c-model .c-model-foot {
    padding: 10px 20px;
    background-color: #FFF;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.c-model-foot .close-btn{
    width: auto;
    height: auto;
    background: #F7F8FA;
    border-radius: 4px;
    padding: 10px 34px;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    min-width: 96px;
    min-height: 40px;
    text-align: center;
}
.c-model-foot .save-btn{
    background: var(--webMainButtonBackColor);
    color: var(--webMainButtonTextColor);
    border-radius: 4px;
    padding: 10px 34px;
    font-weight: 400;
    font-size: 14px;
    min-width: 96px;
    min-height: 40px;
    text-align: center;
}
