/* pwd-verify.css：密码验证弹窗样式 */
/* 弹窗遮罩层：覆盖整个页面，禁止底层操作 */
.verify-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
/* 弹窗容器 */
.verify-modal {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}
.verify-modal h2 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}
.verify-modal p {
    color: #666;
    font-size: 14px;
    margin: 10px 0 20px;
    text-align: center;
    margin-bottom: 20px;
}
/* 输入框与按钮样式 */
.verify-input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}
.verify-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.verify-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}
.confirm-btn {
    background: #007bff;
    color: #fff;
}
.confirm-btn:hover {
    background: #0056b3;
}
.contact-btn {
    background: #6c757d;
    color: #fff;
}
.contact-btn:hover {
    background: #5a6268;
}
/* 错误提示样式 */
.error-tip {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    text-align: center;
    display: none;
    height: 16px; /* 避免提示显示时布局跳动 */
}
/* 网站正文默认隐藏，验证通过后显示 */
.website-content {
    display: none;
    padding: 20px;
    text-align: center;
}