.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.6;
}

/* 使用说明样式 */
.alert-info {
    background-color: rgba(13, 110, 253, 0.05);
    border-color: rgba(13, 110, 253, 0.1);
}

.alert-info .alert-heading {
    color: #0d6efd;
}

.alert-info hr {
    border-top-color: rgba(13, 110, 253, 0.1);
}

.alert ul {
    margin-bottom: 0;
}

.alert li {
    line-height: 1.5;
}

.alert li.text-primary {
    color: #0d6efd;
}

/* 图片压缩页面样式 */
.upload-container {
    border-radius: 8px;
}

.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 4px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.upload-area.dragover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.preview-box {
    min-height: 300px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
}

.preview-box img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.compression-settings .form-range {
    width: 85%;
}

.image-info {
    font-size: 0.875rem;
    color: #6c757d;
}

.compression-ratio {
    color: #198754;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .preview-box {
        min-height: 200px;
    }
    
    .preview-box img {
        max-height: 180px;
    }
} 

.compression-settings .input-group {
    align-items: center;
}

.compression-settings #qualityValue {
    min-width: 45px;
    text-align: right;
}

.compression-settings .form-check {
    display: flex;
    align-items: center;
    height: 100%;
}

.compression-settings .form-check-input {
    margin-top: 0;
    margin-right: 0;
}

.compression-settings .form-check-label {
    margin-left: 0;
}

.compression-settings .form-text {
    color: #6c757d;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.compression-settings .card-body {
    padding: 1.5rem;
} 