* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    }

    body {
      background: #f5f7fc;
      color: #1e293b;
      line-height: 1.6;
    }

    /* 主色调：皇室蓝渐变 */
    .bg-gradient {
      background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    }

    .accent-gold {
      color: #d4a843;
    }

    .border-gold {
      border: 2px solid #d4a843;
    }

    .btn-gold {
      background: #d4a843;
      color: #1e3a8a;
      font-weight: 700;
      padding: 12px 28px;
      border: none;
      border-radius: 40px;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 4px 15px rgba(212,168,67,0.3);
    }

    .btn-gold:hover {
      background: #e0b85c;
      transform: translateY(-2px);
    }

    .card {
      background: white;
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 8px 30px rgba(30,58,138,0.08);
      border-left: 4px solid #d4a843;
      transition: 0.3s;
    }

    .card:hover {
      box-shadow: 0 12px 40px rgba(30,58,138,0.15);
      transform: translateY(-4px);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* 导航 */
    .navbar {
      background: white;
      border-bottom: 2px solid #d4a843;
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }

    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo h1 {
      font-size: 1.6rem;
      font-weight: 800;
      background: linear-gradient(135deg, #1e3a8a, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 1px;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 20px;
    }

    .nav-links a {
      text-decoration: none;
      color: #1e3a8a;
      font-weight: 600;
      padding: 6px 0;
      border-bottom: 2px solid transparent;
      transition: 0.2s;
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      border-bottom-color: #d4a843;
      color: #3b82f6;
    }

    /* 锚点自动生成链接容器（程序生成，不手动添加） */
    .auto-anchors {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 16px;
      margin-top: 6px;
    }

    .auto-anchors a {
      font-size: 0.85rem;
      color: #64748b;
    }

    /* H1 区域 */
    .hero-section {
      padding: 40px 0 20px;
      background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
      color: white;
      text-align: center;
    }

    .hero-section h1 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 16px;
      text-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .hero-section .sub {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 720px;
      margin: 0 auto;
    }

    /* GEO 区块 */
    #geo-intro {
      background: white;
      padding: 30px 0;
      border-bottom: 1px solid #e2e8f0;
    }

    #geo-intro .geo-text {
      font-size: 1.05rem;
      line-height: 1.8;
      color: #1e293b;
    }

    /* 通用区块 */
    .section-block {
      padding: 50px 0;
    }

    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1e3a8a;
      margin-bottom: 24px;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      display: block;
      width: 50%;
      height: 4px;
      background: #d4a843;
      margin-top: 8px;
      border-radius: 4px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    img {
      max-width: 100%;
      border-radius: 16px;
      display: block;
      margin: 0 auto 12px;
    }

    /* 新闻卡片 */
    .news-item {
      margin-bottom: 24px;
    }

    .news-item .date {
      color: #d4a843;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 4px;
    }

    .news-item h3 {
      font-size: 1.2rem;
      color: #1e3a8a;
      margin: 4px 0 8px;
    }

    .news-item p {
      color: #475569;
    }

    /* FAQ */
    .faq-item {
      margin-bottom: 24px;
      border-bottom: 1px solid #e2e8f0;
      padding-bottom: 20px;
    }

    .faq-item strong {
      color: #1e3a8a;
      font-size: 1.1rem;
      display: block;
      margin-bottom: 8px;
    }

    /* 页脚 */
    footer {
      background: #1e293b;
      color: #cbd5e1;
      padding: 40px 0 20px;
    }

    footer a {
      color: #facc15;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      justify-content: center;
      margin-bottom: 20px;
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid #334155;
      padding-top: 20px;
      font-size: 0.9rem;
    }

    .partner-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
      margin: 20px 0;
    }

    .partner-logos img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      background: white;
      border-radius: 12px;
      padding: 8px;
    }

    @media (max-width: 768px) {
      .navbar-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links {
        margin-top: 8px;
      }
      .hero-section h1 {
        font-size: 1.6rem;
      }
    }