/* 滑动验证容器 */
.slider-verify-container {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 40px;
	font-weight: bold;
    background-color: #f5f5f7;
    border-radius: 5px;
    margin-top: 0px;
	margin-bottom: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* 验证背景条 */
.slider-verify-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}
/* 滑块样式 */
.slider-verify-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: #0053a1;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: left 0.1s linear;
}
.slider-verify-slider i {
    color: #fff;
    font-size: 30px;
}
/* 验证文字 */
.slider-verify-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 16px;
    color: #0053a1;
    z-index: 1;
    user-select: none;
}
/* 验证成功样式 */
.slider-verify-success .slider-verify-bg {
    background-color: #0071e3;
}
.slider-verify-success .slider-verify-text {
    color: #fff;
    content: "Success!";
}
/* 验证失败样式 */
.slider-verify-error .slider-verify-bg {
    background-color: #c7000b;
}
.slider-verify-error .slider-verify-text {
    color: #fff;
    content: "Verification Failed. Please try again.";
}
/* 禁用状态 */
.slider-verify-disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
/* 响应式适配 */
@media (max-width: 768px) {
    .slider-verify-container {
        height: 45px;
        line-height: 45px;
    }
    .slider-verify-slider {
        width: 45px;
    }
}