@charset "utf-8";

/* 找回密码弹窗遮罩层 */
.forgot-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    filter: alpha(opacity=80);
}

/* 找回密码弹窗容器 */
.forgot-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 420px;
    height: auto;
    margin-left: -210px;
    margin-top: -200px;
    background: #1a1a1a;
    border: 2px solid #8B6914;
    z-index: 10000;
    box-shadow: 0 0 20px rgba(255, 174, 0, 0.3);
    font-family: 宋体, Arial, Helvetica, sans-serif;
    font-size: 12px;
}

/* 弹窗头部 */
.forgot-modal-header {
    height: 36px;
    line-height: 36px;
    background: url(../images/login/title_bg.jpg) repeat-x;
    border-bottom: 1px solid #8B6914;
    padding: 0 15px;
    text-align: left;
}

.forgot-modal-header h3 {
    float: left;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    color: #FFAE00;
}

.forgot-modal-close {
    float: right;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    color: #FFAE00;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 8px;
}

.forgot-modal-close:hover {
    color: #FFD700;
}

/* 弹窗内容 */
.forgot-modal-body {
    padding: 20px 25px;
    text-align: left;
}

.forgot-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.forgot-modal-body li {
    margin-bottom: 12px;
    overflow: hidden;
    line-height: 26px;
}

.forgot-modal-body li label {
    float: left;
    width: 80px;
    text-align: right;
    padding-right: 10px;
    color: #FFAE00;
    font-size: 12px;
    line-height: 26px;
}

.forgot-modal-body li .forgot-input {
    float: left;
    width: 180px;
    height: 24px;
    line-height: 24px;
    border: 1px solid #8B6914;
    background: #0a0a0a;
    color: #fff;
    padding: 0 5px;
    font-size: 12px;
}

.forgot-modal-body li .forgot-input:focus {
    border-color: #FFAE00;
    outline: none;
}

.forgot-modal-body li .verifycode-input {
    width: 80px;
}

.forgot-modal-body li .verifycode-img {
    float: left;
    width: 70px;
    height: 24px;
    margin-left: 8px;
    cursor: pointer;
    border: 1px solid #8B6914;
    vertical-align: middle;
}

.forgot-modal-body li .forgot-tip {
    float: left;
    margin-left: 10px;
    font-size: 12px;
    line-height: 26px;
    color: #999;
}

.forgot-modal-body li .forgot-error {
    color: #FF4444;
}

.forgot-message {
    padding: 10px;
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    border: 1px solid #8B6914;
    background: #0a0a0a;
}

.forgot-message.forgot-error {
    color: #FF4444;
    border-color: #FF4444;
}

.forgot-message.forgot-success {
    color: #6CFF00;
    border-color: #6CFF00;
}

/* 弹窗底部按钮 */
.forgot-modal-footer {
    padding: 10px 25px 20px;
    text-align: center;
}

.forgot-btn-submit {
    width: 120px;
    height: 32px;
    line-height: 32px;
    background: url(../images/login/lg_btn.jpg) no-repeat;
    border: none;
    color: #FEDB52;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    margin: 0 5px;
}

.forgot-btn-cancel {
    width: 120px;
    height: 32px;
    line-height: 32px;
    background: #333;
    border: 1px solid #666;
    color: #ccc;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    margin: 0 5px;
}

.forgot-btn-cancel:hover {
    background: #444;
    color: #fff;
}
