/* 人机验证弹窗样式 - 渐变高级风 */
.verify-modal-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.verify-modal-mask.show {
    opacity: 1;
    visibility: visible;
}

.verify-modal {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.verify-modal-mask.show .verify-modal {
    transform: translateY(0);
}

.verify-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.verify-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.verify-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.verify-close {
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.verify-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.verify-close svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.8);
}

/* 滑块验证样式 */
.verify-slider {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    margin: 20px 0;
    cursor: pointer;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.verify-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.verify-slider-btn {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
}

.verify-slider-btn svg {
    width: 20px;
    height: 20px;
    fill: #667eea;
}

.verify-slider-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-align: center;
    z-index: 1;
}

/* 验证结果提示 */
.verify-result {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
    display: none;
}

.verify-result.success {
    color: #4cd964;
    display: block;
}

.verify-result.error {
    color: #ff3b30;
    display: block;
}
