/* 全站统一CSS — 玫瑰金奢华风 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
    }
    body {
      background: linear-gradient(135deg, #fef6f5 0%, #fdeee9 40%, #fdf5eb 100%);
      color: #2d2a2e;
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.2s ease;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
    /* ===== 导航栏 ===== */
    .site-header {
      background: linear-gradient(145deg, #f7d9d4 0%, #fbe9e7 100%);
      box-shadow: 0 4px 30px rgba(232, 121, 111, 0.12);
      position: sticky;
      top: 0;
      z-index: 999;
      border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 14px 0;
    }
    .brand-logo {
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      font-weight: 700;
      color: #a64444;
      letter-spacing: 1px;
    }
    .brand-logo img {
      height: 38px;
      width: auto;
      margin-right: 10px;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      align-items: center;
    }
    .nav-links a {
      font-weight: 600;
      font-size: 1rem;
      color: #5d3a3a;
      padding: 6px 12px;
      border-radius: 30px;
      transition: 0.3s;
    }
    .nav-links a:hover {
      background: rgba(232, 121, 111, 0.12);
      color: #c24545;
      box-shadow: 0 0 0 1px rgba(232,121,111,0.2);
    }
    /* ===== 英雄区 HERO ===== */
    .hero {
      text-align: center;
      padding: 70px 20px 50px;
      background: radial-gradient(circle at 20% 20%, rgba(255, 214, 165, 0.3), transparent 40%);
    }
    .hero h1 {
      font-size: 2.6rem;
      font-weight: 800;
      background: linear-gradient(135deg, #c94b4b, #e8796f, #fbbf24);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }
    .hero p {
      font-size: 1.15rem;
      max-width: 780px;
      margin: 0 auto 32px;
      color: #5c4e4e;
      font-weight: 400;
    }
    .hero-img {
      margin: 36px auto 20px;
    }
    .hero-btn {
      background: linear-gradient(145deg, #e8796f, #d1625a);
      color: #fff !important;
      padding: 12px 36px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.1rem;
      box-shadow: 0 6px 24px rgba(232, 121, 111, 0.4);
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.25);
    }
    .hero-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(232,121,111,0.5);
    }
    /* ===== GE0 intro ===== */
    .geo-section {
      background: rgba(255, 250, 245, 0.7);
      border-radius: 36px;
      margin: 30px auto;
      padding: 30px 40px;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(232,121,111,0.15);
      box-shadow: 0 20px 50px rgba(190, 90, 80, 0.08);
    }
    .geo-section h2 {
      font-size: 1.8rem;
      color: #b04545;
      margin-bottom: 14px;
      border-left: 6px solid #fbbf24;
      padding-left: 18px;
    }
    /* ===== 卡片网格 ===== */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 26px;
      margin: 40px 0;
    }
    .card {
      background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(255,235,230,0.55));
      border: 1px solid rgba(232, 121, 111, 0.15);
      border-radius: 28px;
      padding: 28px 24px;
      backdrop-filter: blur(6px);
      box-shadow: 0 12px 40px rgba(232, 121, 111, 0.12);
      transition: all 0.25s ease;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(232, 121, 111, 0.2);
    }
    .card img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .card h3 {
      font-size: 1.45rem;
      margin-bottom: 10px;
      color: #b04545;
    }
    .card p {
      color: #4c4040;
      font-size: 0.98rem;
    }
    /* ===== 数据统计 / 核心优势 ===== */
    .stats-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      background: linear-gradient(145deg, #fff3ef, #fde8e2);
      border-radius: 48px;
      padding: 36px 20px;
      margin: 35px 0;
      border: 1px solid #f9c1bb;
    }
    .stat-item {
      text-align: center;
      min-width: 120px;
    }
    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #d45951;
      letter-spacing: 1px;
    }
    .stat-label {
      color: #8f5a55;
      font-weight: 500;
    }
    /* ===== 新闻 ===== */
    .news-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: rgba(255, 248, 245, 0.8);
      padding: 22px 22px;
      border-radius: 26px;
      margin-bottom: 18px;
      border: 1px solid rgba(232,121,111,0.12);
      box-shadow: 0 4px 14px rgba(0,0,0,0.02);
    }
    .news-date {
      background: #fceae5;
      border-radius: 30px;
      padding: 5px 16px;
      color: #b04545;
      font-weight: 700;
      font-size: 0.85rem;
      white-space: nowrap;
      margin-top: 6px;
    }
    .news-item h4 {
      font-size: 1.2rem;
      color: #6e3c3c;
      margin-bottom: 6px;
    }
    .news-item p {
      color: #6f5c5c;
      font-size: 0.95rem;
    }
    /* ===== FAQ ===== */
    .faq-block {
      background: rgba(255, 240, 234, 0.6);
      border-radius: 40px;
      padding: 36px;
      margin: 40px 0;
    }
    .faq-item {
      background: rgba(255,255,255,0.45);
      border-radius: 28px;
      padding: 22px 26px;
      margin-bottom: 22px;
      border: 1px solid rgba(232,121,111,0.15);
    }
    .faq-item h4 {
      font-size: 1.2rem;
      color: #a14040;
      margin-bottom: 8px;
    }
    .faq-item p {
      color: #473a3a;
    }
    /* ===== 品牌故事 / 合作伙伴 ===== */
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }
    @media (max-width: 800px) {
      .story-grid { grid-template-columns: 1fr; }
    }
    /* ===== 页脚 ===== */
    .site-footer {
      background: linear-gradient(145deg, #3a2525, #2c1c1e);
      color: #f0d9d2;
      border-radius: 60px 60px 0 0;
      margin-top: 60px;
      padding: 48px 30px 20px;
    }
    .footer-links a {
      color: #f0cfc7;
      margin: 0 10px;
      padding: 4px 0;
      border-bottom: 1px solid transparent;
    }
    .footer-links a:hover {
      border-bottom-color: #fbbf24;
    }
    .addr, .icp {
      opacity: 0.9;
      font-size: 0.95rem;
    }
    /* 图片边框 */
    .img-glow {
      border-radius: 24px;
      box-shadow: 0 10px 30px rgba(200, 100, 80, 0.15);
      max-width: 100%;
      display: block;
    }
    .flex-center { display: flex; justify-content: center; }
    h2 { color: #a64444; }
    .text-lead { font-size: 1.1rem; }