.slide-verify-mask {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
}
.slide-verify-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    padding: 25px 25px 20px;
    z-index: 99999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    width: 330px;
    display: none;
}
.slide-verify-title {
    font-size: 15px;
    color: #333;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 600;
}
.slide-verify-track {
    position: relative;
    width: 100%;
    height: 40px;
    background: #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
}
.slide-verify-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0;
    background: #d4edda;
    border-radius: 20px 0 0 20px;
    transition: background 0.3s;
}
.slide-verify-track.fail .slide-verify-fill {
    background: #f8d7da;
}
.slide-verify-text {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 13px;
    color: #999;
    user-select: none;
    pointer-events: none;
}
.slide-verify-handle {
    position: absolute;
    top: 0; left: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: grab;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.slide-verify-handle:active { cursor: grabbing; }
.slide-verify-handle .arrow-icon {
    color: #999;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}
.slide-verify-handle.success {
    background: #28a745;
}
.slide-verify-handle.success .arrow-icon { color: #fff; }
.slide-verify-handle.fail {
    background: #dc3545;
}
.slide-verify-handle.fail .arrow-icon { color: #fff; }
