/* variables.css - CSS 变量与主题色 */

:root {
    /* 主色调 */
    --primary-color: #0f4c81;
    --primary-dark: #0a3358;
    --primary-light: #1a6cb5;

    /* 强调色 */
    --accent-color: #00a8e8;
    --accent-light: #4fc3f7;

    /* 中性色 */
    --text-color: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e5e7eb;
    --border-light: #f1f5f9;

    /* 状态色 */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;

    /* 字体 */
    --font-heading: "Noto Sans SC", "Microsoft YaHei", sans-serif;
    --font-body: "Noto Sans SC", "Microsoft YaHei", sans-serif;
    --font-number: "Montserrat", Arial, sans-serif;

    /* 间距 */
    --container-width: 1280px;
    --section-padding: 100px;
    --section-padding-sm: 60px;

    /* 圆角 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* 阴影 */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* 过渡 */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}
