#chairmanDialog .content-auto {
    content-visibility: auto;
}
#chairmanDialog .dialog-scale {
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#chairmanDialog .dialog-active {
    transform: scale(1);
    opacity: 1;
}
#chairmanDialog .backdrop-blur {
    backdrop-filter: blur(4px);
}
#chairmanDialog .input-focus {
    @apply ring-2 ring-primary/30 border-primary outline-none;
}
#chairmanDialog .btn-hover {
    @apply transition-all duration-300 hover:shadow-lg transform hover:-translate-y-0.5;
}

#chairmanDialog .slider-captcha {
    width: 300px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f7f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#chairmanDialog .slider-container {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: #e8edf3;
    border-radius: 20px;
    overflow: hidden;
}

#chairmanDialog .slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #4cd964 var(--progress, 0%), #e8edf3 var(--progress, 0%));
    transform: translateY(-50%);
    width: 100%;
}

#chairmanDialog .slider-button {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
    z-index: 2;
}

#chairmanDialog .slider-button:active {
    cursor: grabbing;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#chairmanDialog .slider-icon {
    color: #4cd964;
    font-size: 18px;
}

#chairmanDialog .slider-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #606266;
    pointer-events: none;
    z-index: 1;
}

#chairmanDialog .slider-status {
    margin-top: 10px;
    height: 20px;
    font-size: 12px;
    text-align: center;
}

#chairmanDialog .success {
    color: #4cd964;
}

#chairmanDialog .error {
    color: #f56c6c;
}

#chairmanDialog .hidden {
    display: none;
}