/* 滑块验证码样式 */
.captchaDialogWrap .el-dialog__body {
    padding: 8px 16px 16px;
    height: 390px;
}
.captcha-container {
    background: white;
    border-radius: 10px;
    padding: 6px 0;
}
.captcha-title {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.captcha-area {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 8px;
}
.captcha-image-container {
    position: relative;
    margin-bottom: 10px;
    line-height: 0;
}
.captcha-bg-img {
    width: 100%;
    display: block;
    border-radius: 6px;
}
.captcha-slide-img {
    position: absolute;
    left: 0;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    cursor: grab;
}
.captcha-slide-img:active {
    cursor: grabbing;
}
.captcha-slider-area {
    position: relative;
    background: #e8e8e8;
    height: 32px;
    border-radius: 32px;
    margin-top: 6px;
}
.captcha-slider-progress {
    position: absolute;
    height: 100%;
    background: #5cb85c;
    border-radius: 32px;
    width: 0%;
}
.captcha-slider-hint {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 32px;
    color: #999;
    font-size: 12px;
    pointer-events: none;
    user-select: none;
}
.captcha-slider-button {
    position: absolute;
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    top: -3px;
    left: 0;
    user-select: none;
}
.captcha-slider-button:active {
    cursor: grabbing;
}
.captcha-message {
    text-align: center;
    margin-top: 8px;
    font-size: 12px;
    min-height: 18px;
}
.captcha-message-success {
    color: #5cb85c;
}
.captcha-message-error {
    color: #d9534f;
}
.captcha-refresh-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}
.captcha-refresh-btn:hover {
    background: #e0e0e0;
}
