/* ==================== 1. 全局配置与 i18n 基础优化 ==================== */
:root {
  --primary-color: #5d3363; /* 深紫 */
  --primary-light: #7a4d80;
  --accent-yellow: #f0c040; /* 强调黄 */
  --accent-blue: #2e58a6; /* 内页标题蓝 */
  --bg-gray: #f2f5f9;
  --dark-bg: #1a1e2e; /* 深色背景 */
  --text-gray: #666;
  --border-color: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* 优先英文字体，优化英文阅读体验 */
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
  background-color: #f2f5f9;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  word-wrap: break-word; /* 防止长单词撑破布局 */
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  width: 100%;
  display: block;
  // object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1400px; /* 限制最大宽度，但允许缩小 */
  margin: 0 auto;
  position: relative;
  padding: 0 20px; /* 防止小屏幕贴边 */
}

.far-icon {
  width: 38px;
  height: 32px;
}

@media screen and (max-width: 768px) {
  .far-icon {
    width: 28px;
    height: 24px;
  }
}