.verify-wrap {
    width: 100%;
    height: 40px;
    background-color: #e8e8e8;
    border: 1px solid #dcdcdc;
    margin: 5px auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.drag-btn {
    position: absolute;
    left: -1px;
    top: -1px;
    width: 50px;
    height: 40px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23777' d='M20 9H4v2h16V9zM4 15h16v-2H4v2z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: 60% 60%;
    z-index: 2;
    cursor: move;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.drag-btn:active {
    box-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.suc-drag-btn {
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234CAF50' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center center;
    background-size: 60% 60%;
}

.drag-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-right: 1px solid #7ac23c;
    width: 0;
    background-color: #7ac23c;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    animation: progressStripes 2s linear infinite;
    transition: width 0.3s ease;
}

@keyframes progressStripes {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

.fix-tips, .verify-msg {
    width: 100%;
    position: absolute;
    right: 0;
    left: 53px; /* 滑块宽度+偏移 */
    height: 100%;
    color: #51555c;
    z-index: 1;
    line-height: 38px;
    font-size: 13px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0 10px;
}

.verify-msg {
    background-color: #7ac23c;
    color: #fff;
    display: none;
    font-weight: bold;
}

.ssv-slider-container {
    margin: 15px 0;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.ssv-error-message {
    margin-top: 8px;
    font-size: 12px;
}