
  /* 基础和布局样式 - 整站统一标准 */
  .support-container {
    padding: 60px 20px;
    max-width: 1100px; /* 与FAQ、退换政策主容器宽度统一 */
    margin: 0 auto;
    font-family: Inter, "Segoe UI", Arial, sans-serif; /* 北美B2B标配字体 */
    color: #333; /* 基础文字色 */
  }
  .support-header {
    text-align: center;
    margin-bottom: 40px; /* 整站大间距标准 */
  }
  /* 标题样式：品牌主色+优化行高，字号微调更适配 */
  .support-header h2 {
    font-size: 32px; /* 替换em，与FAQ主标题字号统一 */
    font-weight: 700;
    color: #8B4513; /* 品牌主色，突出标题 */
    margin-bottom: 15px; /* 优化与副标题间距 */
    line-height: 1.5; /* 标题行高标准 */
  }
  /* 副标题样式：次要文字色+优化字号/行高 */
  .support-header p {
    font-size: 19px; /* 替换em，与整站重点文字字号统一 */
    color: #444; /* 次要文字色，比原555更清晰 */
    line-height: 1.6;
    max-width: 800px; /* 限制宽度，提升阅读体验 */
    margin: 0 auto; /* 居中对齐 */
  }
  .support-grid {
    display: grid;
    /* PC端 4列布局 - 保留原有逻辑 */
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; /* 优化间距，比原30px更紧凑但不拥挤 */
  }

  /* 卡片样式：统一圆角/边框/内边距，优化高度和hover */
  .support-card {
    background: #ffffff;
    border: 1px solid #eee; /* 浅灰边框，与FAQ分类边框一致 */
    border-radius: 12px; /* 整站统一圆角（FAQ/退换政策均为12px） */
    padding: 35px 24px; /* 优化内边距，更舒展 */
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px; /* 微调高度，更饱满 */
  }
  /* 卡片hover：品牌主色边框+弱化阴影，贴合B2B简约调性 */
  .support-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* 弱化阴影，比原更柔和 */
    transform: translateY(-4px); /* 微调上移距离，更自然 */
    border-color: #8B4513; /* 品牌主色，替换原8b5a2b */
    background-color: #faf5f0; /* 品牌浅底色，与FAQ问题hover一致 */
  }

  /* 图标样式：优化尺寸+间距，保留表情图标 */
  .card-icon {
    font-size: 3.2em;
    color: #8B4513; /* 品牌主色，替换原8b5a2b */
    margin-bottom: 20px; /* 优化与标题间距 */
    line-height: 1; /* 消除图标行高影响 */
  }

  /* 标题和描述样式：规范字号/间距/行高 */
  .card-title {
    font-size: 20px; /* 替换em，与FAQ问题字号统一 */
    font-weight: 700; /* 加粗，强化层级 */
    color: #333;
    margin-bottom: 12px; /* 优化与描述间距 */
    line-height: 1.4;
  }
  .card-description {
    font-size: 17px; /* 替换em，与FAQ答案字号统一 */
    color: #444; /* 次要文字色，比原666更清晰 */
    margin-bottom: 20px;
    line-height: 1.8; /* 整站正文行高标准，提升阅读感 */
    flex: 1; /* 保证描述区域自适应，卡片内容对齐 */
  }

  /* 链接文字：仅此处可点击跳转（保持原来的链接视觉，不做黄框） */
  .card-link {
    font-weight: 600;
    font-size: 17px; /* 与描述字号一致，层级清晰 */
    color: #8B4513; /* 品牌主色 */
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block; /* 防止hover错位 */
  }
  .card-link:hover {
    color: #6a3410; /* 深棕品牌色 */
    text-decoration: underline; /* 整站链接统一交互 */
    text-underline-offset: 3px;
  }

  /* 响应式设计：平板端（≤992px）- 保留2列，微调样式 */
  @media (max-width: 992px) {
    .support-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .support-header h2 {
      font-size: 28px; /* 与FAQ移动端主标题字号统一 */
    }
    .support-header p {
      font-size: 18px; /* 微调适配 */
    }
    .card-title {
      font-size: 19px; /* 微调适配 */
    }
    .support-card {
      min-height: 220px; /* 微调卡片高度 */
      padding: 30px 20px;
    }
  }

  /* 响应式设计：手机端（≤576px）- 保留1列，优化细节 */
  @media (max-width: 576px) {
    .support-grid {
      grid-template-columns: 1fr;
      gap: 16px; /* 缩减间距，适配小屏 */
    }
    .support-container {
      padding: 40px 15px; /* 保留原有内边距 */
      margin: 20px auto; /* 增加上下外间距，与FAQ页面一致 */
    }
    .support-header h2 {
      font-size: 24px; /* 与FAQ超小屏主标题字号统一 */
      margin-bottom: 12px;
    }
    .support-header p {
      font-size: 17px; /* 与正文字号一致 */
      padding: 0 10px; /* 小屏留白，提升阅读 */
    }
    .card-icon {
      font-size: 2.8em; /* 微调适配 */
      margin-bottom: 16px;
    }
    .card-title {
      font-size: 18px; /* 与整站移动端正文字号统一 */
    }
    .support-card {
      min-height: auto; /* 取消最小高度，内容自适应 */
      padding: 25px 18px;
    }
    .card-description, .card-link {
      font-size: 16px; /* 移动端正文统一字号 */
    }
  }
