/* Tailwind 配置 */
tailwind.config = {
    theme: {
        extend: {
            colors: {
                primary: '#3B82F6',
                secondary: '#10B981',
                dark: '#1E293B',
                light: '#F8FAFC'
            },
            fontFamily: {
                inter: ['Inter', 'system-ui', 'sans-serif'],
            },
        }
    }
}

/* 自定义工具类 */
@layer utilities {
    .content-auto {
        content-visibility: auto;
    }
    .drop-shadow-custom {
        filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    }
    .transition-custom {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .progress-bar {
        height: 4px;
        background: linear-gradient(90deg, #3B82F6 var(--progress, 0%), #E2E8F0 var(--progress, 0%));
        transition: --progress 0.3s ease;
    }
}
    