body, h1, h2, h3, h4, h5, h6, blockquote, ol, ul, dl, dd, p, textarea, input, select, option, form {
    margin: 0;
}

ol, ul, textarea, input, option, th, td {
    padding: 0;
}

[v-cloak] {
    display: none;
}

.login_box {
    width: 570px;
    height: 400px;
    box-sizing: border-box;
    padding: 20px 20px 20px 0px;
    position: relative;
}

.LOGIN {
    background-color: unset !important;
    box-shadow: unset !important;
}

    .LOGIN .layui-layer-setwin {
        display: none;
    }


.login-bk {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
}

.login_box_right {
    width: 380px;
    margin-left: auto;
}

.login_box .close {
    font-style: normal;
    font-size: 26px;
    color: #999999;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 2002;
}

.login_box h3 {
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    color: #1278C7;
    margin: 20px 0px;
}

.login_box .input-box {
    width: 370px;
    display: flex;
    margin: 0 auto;
    margin-top: 19px;
    height: 32px;
    position: relative;
}

    .login_box .input-box p {
        width: 100px;
        text-align: right;
        font-size: 14px;
        color: #444444;
        line-height: 32px;
        height: 32px;
        display: inline-block;
        margin: 0px;
    }

    .login_box .input-box input {
        width: 266px;
        height: 28px;
        border: 1px solid #D8D8D8;
        float: right;
        text-indent: 5px
    }

    .login_box .input-box .yzminput {
        width: 163px;
    }

    .login_box .input-box .yzm_btn {
        width: 90px;
        height: 30px;
        line-height: 28px;
        text-align: center;
        background: #E7F2FA;
        border-radius: 3px;
        border: 1px solid #1278C7;
        font-size: 14px;
        color: #1278C7;
        margin-left: auto;
        cursor: pointer;
    }

    .login_box .input-box select {
        width: 87px;
        height: 28px;
        border: 1px solid #D8D8D8;
        float: right;
        margin-left: auto;
    }

        .login_box .input-box select:first-of-type {
            margin: 0px;
        }

    .login_box .input-box .disabled {
        opacity: 0.6;
        cursor: not-allowed;
        pointer-events: none; /* 阻止所有点击事件 */
    }

    .login_box .input-box p em {
        color: #F00
    }

.login_box .dlxz_box {
    display: flex;
    width: 100%;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 12px;
    color: #999999;
}

    .login_box .dlxz_box #checkbox1 {
        margin-right: 5px;
        margin-left: 104px;
    }

    .login_box .dlxz_box p span {
        color: #1278C7;
        cursor: pointer;
    }

.login_box .error-message {
    position: absolute;
    color: Red;
    font-size: 12px;
    display: none;
    left: 102px;
    bottom: -16px;
}

.login_box .login_btn {
    width: 120px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #1278C7;
    border-radius: 3px;
    font-size: 14px;
    margin: 0 auto;
    color: #FFFFFF;
    cursor: pointer;
}

/* Toast消息 */
.toast {
    position: fixed;
    top: 20px;
    left: 25px;
    padding: 15px 20px;
    background: #4CAF50;
    color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 1001;
}

    .toast.show {
        opacity: 1;
        transform: translateY(0);
    }

    .toast.error {
        background: #ff4757;
    }

    .toast.warning {
        background: #ffa502;
    }

    .toast.info {
        background: #2ed573;
    }

.login_btn.loading {
    opacity: 0.8;
    cursor: wait;
}







.ZNKF .layui-layer-title {
    background: #E4F6FF;
}

.ZNKF .layui-layer-min {
    display: none !important;
}

.znkf_box {
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}

.znkf_box_t {
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    line-height: 40px;
    background: #E4F6FF;
    color: #000;
    font-size: 14px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: move;
}

    .znkf_box_t p {
        font-weight: bold;
    }

        .znkf_box_t p span {
            color: #1278C7;
            font-weight: 100;
            margin-left: 15px;
        }

    .znkf_box_t em {
        font-style: normal;
        font-size: 24px;
        font-weight: 100;
        cursor: pointer;
        color: #999999;
    }








/* 弹窗容器 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 370px;
    overflow: hidden;
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 弹窗头部 */
.modal-header {
    color: #333333;
    padding:0 10px;
    display: flex;
    position: relative;
}



.close-btn {
    background: none;
    border: none;
    color: #999999;
    font-size: 34px;
    cursor: pointer;
    width: 32px;
    height: 42px;
 
    margin-left: auto;
}


/* 弹窗内容 */
.modal-content {
    padding: 20px;
    padding-top: 0px;
}

    .modal-content h2 {
        font-weight: bold;
        font-size: 16px;
        color: #333333;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
/* 验证码题目和输入框并排 */
.captcha-row {
    display: flex;
    align-items: center;
}

.captcha-display {
    /*    flex: 1;*/
    background: #f8f9fa;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    cursor: pointer;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .captcha-display:hover {
        border-color: #1278C7;
        background-color: #f0f4ff;
    }

    .captcha-display:active {
        transform: scale(0.98);
    }

.captcha-svg-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.refresh-hint {
    position: absolute;
    bottom: 5px;
    right: 8px;
    font-size: 0.7rem;
    color: #888;
    background: rgba(255, 255, 255, 0.7);
    padding: 2px 6px;
    pointer-events: none;
}

 

    .input-container input {
        width: 141px;
        padding: 0 15px;
        border: 1px solid #eaeaea;
        font-size: 14px;
        transition: border-color 0.3s;
        height: 32px;
        box-sizing: border-box;
    }

        .input-container input:focus {
            outline: none;
            border-color: #1278C7;
        }
         

/* 确认按钮 */
.confirm-btn {
    width: 35%;
    margin: 0 auto;
    height: 32px;
    line-height: 32px;
    background-color: #1278C7;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

    .confirm-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(75, 108, 183, 0.3);
    }

    .confirm-btn:active {
        transform: translateY(0);
    }
.result_tips {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3px;
    margin-right: 10px;
    margin-left: 4px;
    margin-bottom: 25px;
    height: 23px;
}
.tips {
    font-size: 12px;
    color: #999999;
    margin-left: auto;
    display: flex;
    align-items: center;
}
    .tips .ico-tx{
        margin-right:5px;
    }
    /* 验证结果 */
    .verification-result {
        font-size: 12px;
        display: none;
        animation: fadeIn 0.3s ease-out;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.result_tips .success {
    color: #2ed573;
    display: block;
}

.result_tips .error {
    color: #ff4757;
    display: block;
}
