 /* 验证弹窗样式 */
 #verify-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.verify-panel {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 90%;
    width: 340px;
    position: relative;
}

.verify-title {
    margin: 0 0 20px;
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

#verify-container {
    position: relative;
    width: 300px;
    height: 150px;
    margin: 0 auto;
    background: #f0f2f5;
    overflow: hidden;
    border-radius: 4px;
}

#verify-canvas {
    position: absolute;
    top: 0;
    left: 0;
}

#verify-puzzle {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#verify-slider-container {
    position: relative;
    width: 300px;
    height: 40px;
    margin: 10px auto;
    background: #f5f5f5;
    border-radius: 20px;
}

#verify-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

#verify-slider:hover {
    background-color: #f8f8f8;
}

.slider-icon {
    color: #666;
    font-style: normal;
}

.verify-message {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    height: 20px;
    line-height: 20px;
}

/* 成功和失败状态样式 */
.verify-panel.success .verify-message {
    color: #52c41a;
}

.verify-panel.error .verify-message {
    color: #ff4d4f;
}

#verify-slider.success {
    background-color: #52c41a;
    color: #fff;
}

#verify-slider.error {
    background-color: #ff4d4f;
    color: #fff;
}



/* 适配移动端 */
@media screen and (max-width: 768px) {
    .verify-panel {
        width: 95%;
        max-width: 340px;
        padding: 15px;
    }

    #verify-container {
        width: 100%;
        height: auto;
        aspect-ratio: 2/1;
    }

    #verify-slider-container {
        width: 100%;
    }
}