/* 全局变量与春绿薄荷清新配色 */
    :root {
      --primary: #059669; /* 薄荷深绿/翡翠绿 */
      --primary-light: #10b981; /* 活力薄荷绿 */
      --primary-soft: #ecfdf5; /* 极浅薄荷底色 */
      --accent: #06b6d4; /* 科技青蓝 */
      --bg-main: #f8fafc; /* 主背景浅灰白 */
      --bg-white: #ffffff; /* 纯白卡片底色 */
      --text-main: #0f172a; /* 正文深色，确保极佳对比度 */
      --text-muted: #475569; /* 次要文字深灰 */
      --border-color: #e2e8f0; /* 边框色 */
      --border-mint: rgba(16, 185, 129, 0.2);
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 10px 25px -5px rgba(5, 150, 105, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
      --shadow-lg: 0 20px 30px -10px rgba(5, 150, 105, 0.15);
      --radius: 12px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
      background-image: radial-gradient(#10b981 0.75px, transparent 0.75px), radial-gradient(#06b6d4 0.75px, #f8fafc 0.75px);
      background-size: 30px 30px;
      background-position: 0 0, 15px 15px;
    }

    /* 统一居中容器 */
    .container {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    a {
      color: var(--primary);
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: #047857;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-mint);
      box-shadow: var(--shadow-sm);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-box {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-box .ai-page-logo {
      height: 42px;
      width: auto;
    }
    .brand-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }
    .brand-title span {
      color: var(--primary);
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .nav-list {
      display: flex;
      list-style: none;
    }
    .nav-list a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-main);
      padding: 6px 10px;
      border-radius: 6px;
    }
    .nav-list a:hover {
      color: var(--primary);
      background-color: var(--primary-soft);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* 按钮样式 */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: var(--transition);
      border: 1px solid transparent;
      text-align: center;
    }
    .btn-primary {
      background-color: var(--primary);
      color: #ffffff !important;
      box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    }
    .btn-primary:hover {
      background-color: #047857;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    }
    .btn-secondary {
      background-color: var(--primary-soft);
      color: var(--primary) !important;
      border-color: var(--border-mint);
    }
    .btn-secondary:hover {
      background-color: #d1fae5;
      transform: translateY(-2px);
    }
    .btn-lg {
      padding: 14px 32px;
      font-size: 1.1rem;
      border-radius: 10px;
    }

    /* 移动端菜单按钮 */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-main);
      cursor: pointer;
    }

    /* 首屏 Hero 区域 (严格无图片) */
    .hero-section {
      padding: 80px 0 60px;
      background: linear-gradient(180deg, #ecfdf5 0%, #f8fafc 100%);
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border-mint);
    }
    .hero-content {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: #ffffff;
      border: 1px solid var(--border-mint);
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
    }
    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: var(--primary-light);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    }
    .hero-title {
      font-size: 2.75rem;
      font-weight: 800;
      line-height: 1.25;
      color: var(--text-main);
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .hero-desc {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    
    /* 首屏纯 CSS 构造的科技感指标看板 (无图片) */
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 20px;
    }
    .stat-card {
      background: var(--bg-white);
      border: 1px solid var(--border-mint);
      border-radius: var(--radius);
      padding: 24px 16px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }
    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
      font-family: Arial, sans-serif;
    }
    .stat-label {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* 通用章节规范 */
    .section {
      padding: 80px 0;
      position: relative;
    }
    .section-alt {
      background-color: #ffffff;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }
    .section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 50px;
    }
    .section-tag {
      display: inline-block;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      background: var(--primary-soft);
      padding: 4px 12px;
      border-radius: 4px;
      margin-bottom: 12px;
      border: 1px solid var(--border-mint);
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 16px;
    }
    .section-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
    }

    /* 网格与卡片 */
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

    .card {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .card:hover {
      border-color: var(--primary-light);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .card-icon {
      width: 48px;
      height: 48px;
      background: var(--primary-soft);
      color: var(--primary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 20px;
      border: 1px solid var(--border-mint);
    }
    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .card-text {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
    }

    /* 模型标签云 */
    .model-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
      justify-content: center;
    }
    .model-badge {
      background: #ffffff;
      border: 1px solid var(--border-mint);
      color: var(--text-main);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      transition: var(--transition);
    }
    .model-badge:hover {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
    }

    /* 评测与对比模块 (五星与9.9分) */
    .rating-highlight-box {
      background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
      color: #ffffff;
      border-radius: var(--radius);
      padding: 40px;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      box-shadow: var(--shadow-lg);
    }
    .rating-left h3 {
      font-size: 1.8rem;
      margin-bottom: 8px;
    }
    .rating-stars {
      color: #fbbf24;
      font-size: 1.5rem;
      letter-spacing: 2px;
    }
    .rating-score {
      font-size: 3.5rem;
      font-weight: 900;
      color: #34d399;
      line-height: 1;
      font-family: Arial, sans-serif;
    }
    .rating-score span {
      font-size: 1.2rem;
      color: #a7f3d0;
      font-weight: normal;
    }

    /* 对比表格 */
    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .custom-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }
    .custom-table th, .custom-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.95rem;
    }
    .custom-table th {
      background-color: var(--primary-soft);
      color: var(--text-main);
      font-weight: 700;
    }
    .custom-table tr:last-child td {
      border-bottom: none;
    }
    .custom-table .highlight-col {
      background-color: rgba(16, 185, 129, 0.05);
      font-weight: 600;
      color: var(--primary);
    }

    /* 流程步骤 */
    .step-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .step-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 24px;
      position: relative;
    }
    .step-num {
      width: 36px;
      height: 36px;
      background: var(--primary);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-bottom: 16px;
    }

    /* FAQ 折叠手风琴 */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      margin-bottom: 16px;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item:hover {
      border-color: var(--primary-light);
    }
    .faq-question {
      padding: 20px 24px;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }
    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--primary);
      transition: transform 0.3s ease;
    }
    .faq-item.active .faq-question::after {
      content: '−';
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: #fdfdfd;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 0 24px 20px;
    }

    /* 用户评论卡片 */
    .review-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .review-avatar {
      width: 44px;
      height: 44px;
      background: var(--primary-soft);
      color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      border: 1px solid var(--border-mint);
    }
    .review-user-name {
      font-weight: 700;
      color: var(--text-main);
    }
    .review-user-role {
      font-size: 0.85rem;
      color: var(--text-muted);
    }
    .review-body {
      font-size: 0.95rem;
      color: var(--text-muted);
      font-style: italic;
      line-height: 1.6;
    }

    /* 需求表单 */
    .form-wrapper {
      background: #ffffff;
      border: 1px solid var(--border-mint);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow-md);
      max-width: 800px;
      margin: 0 auto;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-label {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 8px;
    }
    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      font-size: 1rem;
      color: var(--text-main);
      background-color: #fafafa;
      transition: var(--transition);
    }
    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      background-color: #ffffff;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    }
    textarea.form-control {
      resize: vertical;
      min-height: 120px;
    }

    /* 媒体展示与图片优化 */
    .media-card {
      background: #ffffff;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .media-card-img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      background: #e2e8f0;
    }
    .media-card-content {
      padding: 20px;
    }

    /* 友情链接与文章链接 */
    .links-box {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
    }
    .links-box a {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .links-box a:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-soft);
    }

    /* 页脚 */
    .site-footer {
      background-color: #0f172a;
      color: #94a3b8;
      padding: 60px 0 30px;
      border-top: 4px solid var(--primary);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 20px;
    }
    .footer-text {
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: #94a3b8;
      font-size: 0.9rem;
    }
    .footer-links a:hover {
      color: #34d399;
    }
    .footer-qr {
      width: 120px;
      border-radius: 8px;
      background: #ffffff;
      padding: 4px;
    }
    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 30px;
      text-align: center;
      font-size: 0.85rem;
      color: #64748b;
    }

    /* 浮动客服 */
    .floating-service {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      background: var(--primary);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
      cursor: pointer;
      font-size: 1.2rem;
      transition: var(--transition);
      border: none;
    }
    .float-btn:hover {
      background: #047857;
      transform: scale(1.1);
    }

    /* 响应式适配 */
    @media (max-width: 1024px) {
      .grid-4, .step-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .hero-title { font-size: 2rem; }
      .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
      .grid-2, .grid-3 { grid-template-columns: 1fr; }
      .main-nav { display: none; }
      .menu-toggle { display: block; }
      .footer-grid { grid-template-columns: 1fr; }
      .rating-highlight-box { text-align: center; justify-content: center; }
    }
    @media (max-width: 480px) {
      .hero-stats-grid, .step-grid { grid-template-columns: 1fr; }
    }