* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #fdf8f5;
      color: #2d2a26;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
      line-height: 1.7;
    }

    a {
      text-decoration: none;
      color: inherit;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== 导航栏 ===== */
    nav {
      background: linear-gradient(135deg, rgba(232, 121, 111, 0.95), rgba(251, 191, 36, 0.92));
      box-shadow: 0 4px 20px rgba(232, 121, 111, 0.3);
      padding: 16px 0;
      position: sticky;
      top: 0;
      z-index: 9999;
    }

    .nav-links {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .nav-links a {
      color: #fff;
      padding: 8px 22px;
      border-radius: 30px;
      font-size: 15px;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.25);
      transition: all 0.35s;
      letter-spacing: 0.5px;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.35);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(232, 121, 111, 0.4);
    }

    /* ===== Hero ===== */
    .hero {
      background: linear-gradient(135deg, #fdf1ee 0%, #fde8e4 50%, #fdf6eb 100%);
      padding: 70px 0 50px;
      text-align: center;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .hero-images {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .hero-images img {
      width: 140px;
      height: 140px;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #f8c3b0;
      box-shadow: 0 8px 24px rgba(232, 121, 111, 0.3);
      transition: transform 0.4s;
    }

    .hero-images img:hover {
      transform: scale(1.06);
    }

    .hero h2 {
      font-size: 32px;
      color: #c2574d;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .hero p {
      color: #7a6a64;
      font-size: 16px;
      max-width: 680px;
      margin: 0 auto;
    }

    .hero-emoji {
      font-size: 42px;
      margin-bottom: 16px;
      line-height: 1.4;
      letter-spacing: 8px;
    }

    /* ===== Geo Intro ===== */
    .geo-intro {
      padding: 60px 0 40px;
      background: #fffdfc;
      border-bottom: 1px solid #f3e4de;
    }

    .geo-intro h1 {
      font-size: 38px;
      font-weight: 800;
      color: #2d2a26;
      text-align: center;
      margin-bottom: 32px;
      line-height: 1.4;
      background: linear-gradient(135deg, #e8796f, #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .geo-intro p {
      max-width: 1000px;
      margin: 0 auto 20px;
      text-align: center;
      color: #5f5550;
      font-size: 16px;
      line-height: 2;
      letter-spacing: 0.3px;
    }

    .geo-extra {
      max-width: 1000px;
      margin: 20px auto 0;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      text-align: center;
    }

    .geo-extra span {
      background: #fef1ed;
      border-radius: 30px;
      padding: 8px 20px;
      font-size: 14px;
      color: #b35a4b;
      font-weight: 500;
    }

    /* ===== 通用 Section ===== */
    .section-padding {
      padding: 56px 0;
    }

    .section-title {
      font-size: 30px;
      font-weight: 800;
      text-align: center;
      margin-bottom: 10px;
      color: #2d2a26;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .section-subtitle {
      text-align: center;
      color: #9a8b85;
      font-size: 15px;
      margin-bottom: 40px;
      letter-spacing: 1px;
    }

    .section-divider {
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #e8796f, #fbbf24);
      border-radius: 4px;
      margin: 0 auto 40px;
    }

    /* ===== 数据统计 ===== */
    .stats {
      background: linear-gradient(135deg, #2d2a26, #3d3531);
      padding: 56px 0;
    }

    .stats .section-title {
      color: #fdf8f5;
    }

    .stats .section-subtitle {
      color: #b7a9a2;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .stat-item {
      text-align: center;
      padding: 30px 20px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      border: 1px solid rgba(232, 121, 111, 0.25);
      transition: all 0.35s;
    }

    .stat-item:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-4px);
    }

    .stat-number {
      font-size: 44px;
      font-weight: 900;
      color: #fbbf24;
      line-height: 1.2;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .stat-label {
      color: #ddd5d1;
      font-size: 15px;
      margin-top: 8px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    /* ===== 核心优势 ===== */
    .advantages {
      background: #fffdfc;
      padding: 56px 0;
    }

    .adv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .adv-card {
      background: linear-gradient(135deg, #fff7f4, #fef1ed);
      border-radius: 20px;
      padding: 32px 26px;
      text-align: center;
      border: 1px solid #f5dcd4;
      transition: all 0.35s;
      box-shadow: 0 4px 16px rgba(232, 121, 111, 0.08);
    }

    .adv-card:hover {
      box-shadow: 0 12px 30px rgba(232, 121, 111, 0.2);
      transform: translateY(-6px);
      border-color: #e8796f;
    }

    .adv-icon {
      font-size: 42px;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .adv-card h3 {
      font-size: 19px;
      color: #b35042;
      margin-bottom: 12px;
      font-weight: 700;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .adv-card p {
      color: #6b5e58;
      font-size: 14px;
      line-height: 1.8;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    /* ===== 品牌故事 ===== */
    .story {
      background: #fdf6f3;
      padding: 56px 0;
    }

    .story-content {
      display: flex;
      align-items: center;
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      flex-wrap: wrap;
    }

    .story-content img {
      flex: 0 0 380px;
      width: 380px;
      max-width: 100%;
      border-radius: 18px;
      box-shadow: 0 12px 30px rgba(232, 121, 111, 0.2);
      border: 4px solid #fff;
    }

    .story-text {
      flex: 1;
      min-width: 300px;
    }

    .story-text h3 {
      font-size: 26px;
      color: #b35042;
      margin-bottom: 16px;
      font-weight: 800;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .story-text p {
      color: #5f5550;
      line-height: 1.9;
      margin-bottom: 14px;
      font-size: 15px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    /* ===== 焦点赛事 ===== */
    .events {
      background: linear-gradient(135deg, #2d2a26 0%, #35302c 100%);
      padding: 56px 0;
    }

    .events .section-title {
      color: #fdf8f5;
    }

    .events .section-subtitle {
      color: #b7a9a2;
    }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .event-card {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(232, 121, 111, 0.2);
      transition: all 0.35s;
    }

    .event-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    }

    .event-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 0;
    }

    .event-info {
      padding: 22px 20px;
    }

    .event-info h3 {
      color: #fbbf24;
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: 700;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .event-info p {
      color: #ccc3bf;
      font-size: 14px;
      line-height: 1.8;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    /* ===== 新闻 ===== */
    .news-list {
      background: #fffdfc;
      padding: 56px 0;
    }

    .news-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .news-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid #f0e0da;
      transition: all 0.35s;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
    }

    .news-card:hover {
      box-shadow: 0 12px 28px rgba(232, 121, 111, 0.16);
      transform: translateY(-4px);
      border-color: #e8b4a8;
    }

    .news-card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 0;
    }

    .news-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .news-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    .news-tag {
      background: linear-gradient(135deg, #e8796f, #fbbf24);
      color: #fff;
      font-size: 12px;
      padding: 4px 14px;
      border-radius: 16px;
      font-weight: 600;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .news-date {
      font-size: 13px;
      color: #9a8b85;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .news-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: #2d2a26;
      margin-bottom: 10px;
      line-height: 1.5;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .news-card p {
      color: #6b5e58;
      font-size: 14px;
      line-height: 1.8;
      flex: 1;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .news-link {
      margin-top: 14px;
      font-size: 14px;
      color: #e8796f;
      font-weight: 600;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .news-link:hover {
      color: #c2574d;
    }

    /* ===== FAQ ===== */
    .faq {
      background: #fdf6f3;
      padding: 56px 0;
    }

    .faq-list {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .faq-item {
      background: #fff;
      border-radius: 16px;
      border: 1px solid #f0e0da;
      margin-bottom: 16px;
      padding: 26px 30px;
      transition: box-shadow 0.3s;
    }

    .faq-item:hover {
      box-shadow: 0 8px 22px rgba(232, 121, 111, 0.12);
    }

    .faq-item h3 {
      font-size: 17px;
      color: #b35042;
      font-weight: 700;
      margin-bottom: 12px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .faq-item p {
      color: #5f5550;
      font-size: 14px;
      line-height: 1.9;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    /* ===== CTA ===== */
    .cta {
      background: linear-gradient(135deg, #e8796f, #fbbf24);
      padding: 54px 0;
      text-align: center;
    }

    .cta h2 {
      color: #fff;
      font-size: 30px;
      font-weight: 800;
      margin-bottom: 16px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .cta p {
      color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
      max-width: 600px;
      margin: 0 auto 28px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-btn {
      background: #fff;
      color: #e8796f;
      padding: 14px 36px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 16px;
      border: 2px solid #fff;
      transition: all 0.35s;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .cta-btn:hover {
      background: transparent;
      color: #fff;
      transform: scale(1.04);
    }

    /* ===== 用户口碑 ===== */
    .testimonials {
      background: #fffdfc;
      padding: 56px 0;
    }

    .tst-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .tst-card {
      background: #fef8f5;
      border-radius: 18px;
      padding: 28px 24px;
      border: 1px solid #f5dcd4;
      transition: all 0.35s;
    }

    .tst-card:hover {
      box-shadow: 0 12px 26px rgba(232, 121, 111, 0.14);
      transform: translateY(-4px);
    }

    .tst-stars {
      color: #fbbf24;
      font-size: 18px;
      letter-spacing: 3px;
      margin-bottom: 12px;
    }

    .tst-text {
      color: #5f5550;
      font-size: 14px;
      line-height: 1.9;
      margin-bottom: 16px;
      font-style: italic;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .tst-author {
      color: #b35042;
      font-weight: 700;
      font-size: 14px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    /* ===== 下载中心 ===== */
    .download {
      background: linear-gradient(135deg, #2d2a26 0%, #35302c 100%);
      padding: 56px 0;
    }

    .download .section-title {
      color: #fdf8f5;
    }

    .download .section-subtitle {
      color: #b7a9a2;
    }

    .download-content {
      display: flex;
      align-items: center;
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      flex-wrap: wrap;
    }

    .download-text {
      flex: 1;
      min-width: 300px;
    }

    .download-text h3 {
      color: #fbbf24;
      font-size: 22px;
      margin-bottom: 14px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .download-text p {
      color: #ccc3bf;
      line-height: 1.9;
      margin-bottom: 20px;
      font-size: 15px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .download-image {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .download-image img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 20px;
      border: 3px solid #fff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .download-btn {
      display: inline-block;
      background: linear-gradient(135deg, #e8796f, #fbbf24);
      color: #fff;
      padding: 12px 30px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.35s;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .download-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(232, 121, 111, 0.4);
    }

    /* ===== 服务覆盖 ===== */
    .coverage {
      background: #fdf6f3;
      padding: 56px 0;
    }

    .coverage-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .cov-item {
      text-align: center;
      background: #fff;
      border-radius: 16px;
      padding: 24px 16px;
      border: 1px solid #f0e0da;
      transition: all 0.3s;
    }

    .cov-item:hover {
      border-color: #e8796f;
      box-shadow: 0 8px 22px rgba(232, 121, 111, 0.1);
    }

    .cov-item img {
      width: 56px;
      height: 56px;
      object-fit: cover;
      border-radius: 12px;
      margin: 0 auto 12px;
    }

    .cov-item h4 {
      font-size: 15px;
      color: #b35042;
      font-weight: 700;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    /* ===== 深度内容 ===== */
    .insights {
      background: #fffdfc;
      padding: 56px 0;
    }

    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .insight-card {
      background: #fef8f5;
      border-radius: 18px;
      padding: 30px 26px;
      border: 1px solid #f0e0da;
      transition: all 0.35s;
      position: relative;
    }

    .insight-card:hover {
      box-shadow: 0 14px 30px rgba(232, 121, 111, 0.16);
      transform: translateY(-4px);
    }

    .insight-card h3 {
      font-size: 18px;
      color: #b35042;
      margin-bottom: 14px;
      font-weight: 700;
      line-height: 1.5;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .insight-card p {
      color: #5f5550;
      font-size: 14px;
      line-height: 1.9;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    /* ===== 页脚 ===== */
    footer {
      background: #232020;
      color: #aaa;
      padding: 48px 0 20px;
      font-size: 14px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 30px;
    }

    .footer-col h4 {
      color: #fbbf24;
      font-size: 16px;
      margin-bottom: 12px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .footer-col p {
      line-height: 1.8;
      color: #8d857f;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid #322d2a;
      padding-top: 16px;
      color: #777;
      font-size: 13px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .footer-bottom a {
      color: #aaa;
      margin: 0 6px;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
    }

    .footer-bottom a:hover {
      color: #fbbf24;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .adv-grid {
        grid-template-columns: 1fr;
      }

      .events-grid {
        grid-template-columns: 1fr;
      }

      .news-grid {
        grid-template-columns: 1fr;
      }

      .tst-grid {
        grid-template-columns: 1fr;
      }

      .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .insights-grid {
        grid-template-columns: 1fr;
      }

      .story-content {
        flex-direction: column;
      }

      .story-content img {
        width: 100%;
      }

      .download-content {
        flex-direction: column;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      .hero-images img {
        width: 90px;
        height: 90px;
      }

      .geo-intro h1 {
        font-size: 26px;
      }

      .nav-links a {
        padding: 6px 14px;
        font-size: 13px;
      }
    }