/* slideVerify 滑块验证码基础样式 */
.verify-img-panel {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.verify-img-panel img {
    width: 100%;
    height: auto;
    display: block;
}

.verify-bar-area {
    position: relative;
    margin-top: 10px;
    height: 40px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.verify-left-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #007bff;
    border-radius: 4px 0 0 4px;
}

.verify-move-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background-color: #fff;
    border: 2px solid #007bff;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
}

.verify-gap {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background-color: #28a745;
    opacity: 0.7;
    border-radius: 4px;
}

.verify-refresh {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 16px;
}

.verify-refresh:hover {
    color: #007bff;
}

.verify-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6c757d;
    font-size: 14px;
    user-select: none;
}

/* 侧边栏适配样式 */
.sidebar_login .verify-img-panel {
    height: 120px !important;
}

.sidebar_login .verify-bar-area {
    height: 40px !important;
}
