/* ===== 滑块验证码样式 ===== */
.simple-slider-verify {
    width: 100%;
}

.slider-track {
    position: relative;
    height: 34px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 17px;
    overflow: hidden;
    box-sizing: border-box;
}

.slider-handle {
    position: absolute;
    left: 1px;
    top: 1px;
    width: 32px;
    height: 32px;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    z-index: 10;
    box-sizing: border-box;
    border-radius: 50%;
    background: rgb(78, 243, 147);
}

.slider-handle:active {
    cursor: grabbing;
}

.slider-success {
    vertical-align: middle;
    text-align: center;
    height: 30px;
    border-radius: 17px;
    box-sizing: border-box;
    background: #b3ff90;
    line-height: 30px;
    font-size: 14px;
    padding-top: 2px;
}

/* 确保滑块背景条正确显示 */
.slider-bg {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 12px;
    color: #ff0e5e;
    /* color: #6b7280; */
    white-space: nowrap;
    transition: background 0.3s ease;
    flex-direction: row-reverse;
    padding-right: 10px;
}

/* 隐藏类 */
.hidden {
    display: none;
}
