/* --- 模态对话框样式 --- */
/* 容器：控制整个模态框的显示/隐藏 */
#v2-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999; /* 极高层级，确保在所有元素之上 */
}

/* 1. 全屏遮罩层：覆盖整个页面 */
#v2-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* 深色半透明，确保背景不可操作 */
    cursor: not-allowed;
}

/* 2. 验证框容器：居中显示 */
#v2-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 320px; /* 固定宽度 */
}

/* 关闭按钮：右上角 */
#v2-modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* reCAPTCHA容器：适配宽度 */
#v2-challenge-container {
    width: 100%;
    margin-top: 10px;
}
.rc-anchor-normal-footer{
    display:none;
}