/* 弹窗样式 */
.custom_notice {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: none;
}

.custom_notice .custom_pop {
    padding-bottom: 30px;
    background: #fff;
    width: 410px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* height: 425px; */
    overflow: auto;
}

.custom_notice .custom_pop .custom_top {
    height: 40px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    /* padding-left: 227px; */
    position: relative;
}

.custom_notice .custom_pop .customClose_btn {
    display: block;
    width: 14px;
    height: 14px;
    /* margin-left: 260px; */
    cursor: pointer;
    position: absolute;
    right: 10px;
}

.custom_notice .custom_body {
    padding: 40px;
    text-align: center;
}

.custom_notice .custom_foot_btn {
    /* margin-top: 20px; */
    display: flex;
    justify-content: center;
}

.custom_notice .custom_foot_btn .custom_quxiaoBtn,
.custom_foot_btn .quxiao-btn {
    width: 100px;
    height: 34px;
    background: #ebebeb;
    border-radius: 2px;
    font-size: 14px;
    color: #333333;
    text-align: center;
    line-height: 34px;
    margin-right: 60px;
    cursor: pointer;
}

.custom_notice .custom_foot_btn .custom_okBtn,
.custom_foot_btn .ok-btn {
    width: 100px;
    height: 34px;
    background: linear-gradient(90deg, #ff4643 0%, #fe6530 100%);
    border-radius: 2px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
}