/* 语言和主题样式文件 */

/* 基础语言样式 */
body {
  font-family: PingFang SC, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 多语言支持 */
[lang="zh-CN"] {
  font-family: PingFang SC, "Microsoft YaHei", SimHei, sans-serif;
}

[lang="en"] {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 主题样式变量 */
:root {
  --primary-color: #007aff;
  --secondary-color: #5ac8fa;
  --text-color: #333333;
  --bg-color: #ffffff;
  --border-color: #e5e5e5;
}

/* 暗色主题 */
[data-theme="dark"] {
  --text-color: #ffffff;
  --bg-color: #1c1c1e;
  --border-color: #38383a;
}

/* 金色主题 */
[data-theme="golden"] {
  --primary-color: #d4af37;
  --secondary-color: #f4e4bc;
}

/* 绿色主题 */
[data-theme="green"] {
  --primary-color: #34c759;
  --secondary-color: #30d158;
}
