:root {
  /* 主色调 */
  --primary: #FF6B35;
  --primary-light: #FF8C42;
  --primary-dark: #E55A2B;
  --accent: #FFD93D;

  /* 功能色 */
  --success: #4CAF50;
  --danger: #FF4D4F;
  --warning: #FF9800;
  --info: #1890FF;

  /* 中性色 */
  --bg: #F5F5F5;
  --surface: #FFFFFF;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --border: #EEEEEE;
  --divider: #F0F0F0;

  /* 标签色 */
  --tag-bg: #FFF2E8;
  --tag-text: #FF6B35;
  --tag-green-bg: #E8F5E9;
  --tag-green-text: #4CAF50;

  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.16);
  --shadow-primary: 0 4px 12px rgba(255,107,53,0.3);

  /* 间距 */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;

  /* 圆角 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;

  /* 字体 */
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-num: "DIN Alternate", "Helvetica Neue", monospace;

  /* 字号 */
  --text-xs: 10px;
  --text-sm: 12px;
  --text-base: 14px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 20px;
  --text-3xl: 24px;

  /* 安全区 */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);

  /* 布局 */
  --tab-bar-height: 56px;
  --header-height: 44px;
  --max-width: 430px;
}
