.change_pwd_window {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 888;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.change_pwd_window .window_notice_content {
    background: #fff;
    width: 500px;
    height: auto;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    z-index: 999;
    font-size: 16px;
    color: #f00;
    letter-spacing: 1px;
    font-weight: bold;
    border-radius: 5px;
}

.change_pwd_window .window_content {
    background: #fff;
    width: 500px;
    height: auto;
    position: absolute;
    top: 125px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 40px;
    z-index: 999;
}

.change_pwd_window .window_content .win_title {
    height: 30px;
    margin-bottom: 20px;
    line-height: 30px;
    text-align: center;
    font-size: 20px;
}

.change_pwd_window .window_content .win_title>a {
    display: inline-block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 20px;
    right: 20px;
    background: url("../images/teacher/close.png");
}

.change_pwd_window .window_content .win_footer {
    padding: 20px 0px;
    text-align: center;
}

.change_pwd_window .window_content .win_footer button {
    border: none;
    line-height: 30px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    -webkit-border-radius: 5px;
    width: 120px;
    height: 30px;
    color: #fff;
}

.change_pwd_window .window_content .win_footer button.yes {
    background: #00B33D;
    width: 250px;
    height: 40px;
}

.change_pwd_window .window_content .win_footer button.yes:hover {
    background: #039836;
    outline: none;
}

.change_pwd_window .window_content p {
    margin-bottom: 20px;
    position: relative;
}

.change_pwd_window .window_content .win_notice {
    color: chocolate;
    margin-bottom: 20px;
    font-size: 16px;
}

.change_pwd_window .window_content .win_notice label {
    display: inline-block;
    vertical-align: top;
    width: 100px;
    text-align: right;
}

.change_pwd_window .window_content .win_notice .win_field {
    display: inline-block;
    vertical-align: top;
    width: 300px;
}

.change_pwd_window .window_content p .win_field {
    display: inline-block;
    vertical-align: middle;
    color: #444;
}

.change_pwd_window .window_content p input {
    width: 250px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px;
}

.change_pwd_window .window_content p label {
    display: inline-block;
    vertical-align: middle;
    color: #444;
    width: 100px;
    text-align: right;
}

.change_pwd_window .window_content p .pwd-eye {
    width: 20px;
    height: 15px;
    position: absolute;
    right: 70px;
    top: 7px;
    cursor: pointer;
    background: url("../images/eye.png") no-repeat;
}

.change_pwd_window .window_content p .pwd-eye:hover {
    opacity: 0.8;
}

.change_pwd_window .window_content .tip {
    text-align: center;
    color: #f00;
    font-size: 12px;
}


/* 忘记密码 */


/* 弹窗遮罩层 */


/* 弹窗遮罩层 */

.modal-overlay {
    display: none;
    /* 默认隐藏 */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    justify-content: center;
    align-items: center;
    display: flex;
    /* 使用 Flexbox 实现居中 */
}


/* 弹窗内容区域 */

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 90%;
    /* 防止弹窗过大 */
    margin: auto;
    /* 确保在父容器（即 .modal-overlay）内居中 */
}

label {
    display: block;
    margin-bottom: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-weight: bold;
    color: #888;
}

.btn-group {
    margin-top: 20px;
    text-align: right;
}

.btn-group button {
    margin-left: 10px;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-confirm {
    background-color: #4CAF50;
    color: white;
}

.btn-cancel {
    background-color: #ccc;
}