.tips-alert-mark {
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.tips-alert-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 330px;
    background: #fff;
    border-radius: 10px;
}
.tips-alert-title {
    padding: 20px 0 20px;
    font-size: 16px;
    margin: 0 25px;
    line-height: 18px;
    border-bottom: 1px dashed #d7d7d7;
    text-align: center;
    font-weight: bold;
}
.tips-alert-content {
    padding: 25px 25px 20px;
    font-size: 16px;
}
.tips-alert-content .checkbox-item {
    margin-bottom: 10px;
    position: relative;
}
.checkbox-item input[type="checkbox"] {
    opacity: 1;
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 10px;
    position: absolute;
    left: 5px;
    top: 5px;
}
.checkbox-item input[type="checkbox"]::before {
    content: '';
    position: absolute;
    border-radius: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #d9d9d9;
}
.checkbox-item input[type="checkbox"]:checked::before {
    content: "\2713";
    background: #1890ff;
    color: #ffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    text-align: center;
    border: 1px solid #1890ff;
}
.checkbox-item .checkbox-label {
    margin-left: 30px;
}
.tips-alert-btns {
    display: flex;
    justify-content: center;
}
.tips-alert-btns .btn {
    font-size: 16px;
    padding: 8px 15px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
}
.tips-alert-btns .cancel-btn {
    border: 1px solid #dcdfe6;
    color: #606266;
}
.tips-alert-btns .confirm-btn {
    background: #FFA819;
    color: #fff;
    border: 1px solid #FFA819;
}
.input_labe1, .input_labe2, .input_labe3, .input_labe4 {
    top: 50%;
    transform: translateY(-50%);
}
.cpt-toast-wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    background: rgba(0,0,0,0.7);
    border-radius:  5px;
    padding: 15px;
    transform:  translate(-50%, -50%);
    z-index: 99999;
    font-size: 12px;
}
.cpt-toast {
    color: #fff;
}