/* 基础重置 */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
      color: #0f172a;
      background-color: #f8fafc;
    }
    body {
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    /* 颜色变量 - 撞色艳色风(浅色背景+高对比霓虹蓝紫撞色) */
    :root {
      --primary: #0f172a; /* 深蓝黑 */
      --accent-magenta: #ff007f; /* 艳粉红 */
      --accent-cyan: #00f0ff; /* 电光青 */
      --accent-purple: #7209b7; /* 深艳紫 */
      --neutral-light: #f8fafc;
      --neutral-white: #ffffff;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --container-max: 1200px;
    }

    /* 全局容器 */
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 按钮样式 */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }
    .btn-neon-pink {
      background-color: var(--accent-magenta);
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(255, 0, 127, 0.3);
    }
    .btn-neon-pink:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 0, 127, 0.5);
    }
    .btn-neon-cyan {
      background-color: var(--primary);
      color: #ffffff;
      border: 2px solid var(--accent-cyan);
      box-shadow: 0 4px 14px rgba(0, 240, 255, 0.15);
    }
    .btn-neon-cyan:hover {
      background-color: var(--accent-cyan);
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 240, 255, 0.4);
    }

    /* 顶部导航 */
    header {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--primary);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .nav-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }
    .logo-container {
      display: flex;
      align-items: center;
    }
    .ai-page-logo {
      height: 48px;
      width: auto;
      object-fit: contain;
    }
    .nav-menu {
      display: flex;
      gap: 20px;
      list-style: none;
    }
    .nav-menu a {
      color: var(--text-main);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-menu a:hover {
      color: var(--accent-magenta);
    }
    .nav-btn {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--primary);
    }

    /* Section 通用样式 */
    section {
      padding: 80px 0;
      border-bottom: 1px solid var(--border-color);
    }
    .section-title {
      font-size: 32px;
      font-weight: 800;
      text-align: center;
      margin-bottom: 16px;
      color: var(--primary);
      position: relative;
    }
    .section-title span {
      background: linear-gradient(120deg, var(--accent-magenta) 0%, var(--accent-purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      text-align: center;
      max-width: 600px;
      margin: 0 auto 48px auto;
    }

    /* Hero 首屏 - 无任何图片，纯文字与几何色块 */
    .hero-section {
      background: radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 20% 80%, rgba(255, 0, 127, 0.1) 0%, transparent 50%),
                  var(--neutral-white);
      padding: 120px 0 90px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-bottom: 4px solid var(--primary);
    }
    .hero-badge {
      display: inline-block;
      padding: 6px 16px;
      background: var(--primary);
      color: var(--accent-cyan);
      font-size: 14px;
      font-weight: 700;
      border-radius: 50px;
      margin-bottom: 24px;
      border: 1px solid var(--accent-cyan);
    }
    .hero-h1 {
      font-size: 42px;
      line-height: 1.25;
      font-weight: 900;
      margin-bottom: 24px;
      color: var(--primary);
    }
    .hero-h1 span {
      background: linear-gradient(90deg, var(--accent-magenta), var(--accent-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 800px;
      margin: 0 auto 40px auto;
      line-height: 1.8;
    }
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }

    /* 数据指标卡片 (Hero区域下方) */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .stat-card {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      padding: 24px;
      border-radius: 12px;
      box-shadow: 4px 4px 0px var(--primary);
      transition: all 0.3s ease;
    }
    .stat-card:hover {
      transform: translate(-2px, -2px);
      box-shadow: 6px 6px 0px var(--accent-magenta);
    }
    .stat-number {
      font-size: 36px;
      font-weight: 800;
      color: var(--accent-magenta);
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 14px;
      color: var(--text-main);
      font-weight: 600;
    }

    /* 关于我们 & 平台介绍 */
    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .about-content h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--primary);
    }
    .about-content p {
      color: var(--text-muted);
      margin-bottom: 20px;
      font-size: 15px;
    }
    .about-features {
      list-style: none;
    }
    .about-features li {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      font-weight: 600;
      color: var(--text-main);
    }
    .about-features li::before {
      content: "✦";
      color: var(--accent-magenta);
      margin-right: 10px;
      font-size: 18px;
    }
    .about-visual {
      background: var(--primary);
      color: #ffffff;
      padding: 40px;
      border-radius: 16px;
      border: 3px solid var(--accent-cyan);
      box-shadow: 8px 8px 0 var(--accent-magenta);
    }
    .about-visual-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 16px;
      color: var(--accent-cyan);
    }

    /* AIGC 服务能力卡片 */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      border-radius: 12px;
      padding: 32px 24px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
      border-color: var(--accent-magenta);
    }
    .service-icon {
      font-size: 32px;
      margin-bottom: 20px;
    }
    .service-name {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--primary);
    }
    .service-desc {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* 一站式制作 - 平台支持 (滑动列表/网格) */
    .platforms-wrapper {
      background: var(--primary);
      padding: 60px 0;
      color: #ffffff;
    }
    .platforms-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .platform-title {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 32px;
      color: var(--accent-cyan);
    }
    .platform-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      max-width: 1000px;
    }
    .platform-tag {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s;
    }
    .platform-tag:hover {
      background: var(--accent-magenta);
      border-color: var(--accent-magenta);
      color: #ffffff;
      transform: scale(1.05);
    }

    /* 行业解决方案 */
    .solutions-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .solution-item {
      background: var(--neutral-white);
      border-left: 6px solid var(--accent-purple);
      padding: 32px;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
      border-radius: 0 12px 12px 0;
    }
    .solution-item h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--primary);
    }
    .solution-item p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    /* 全国服务网络 */
    .network-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .network-map-placeholder {
      background: #e2e8f0;
      border: 2px solid var(--primary);
      height: 320px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--text-muted);
      position: relative;
    }
    .network-point {
      position: absolute;
      width: 12px;
      height: 12px;
      background: var(--accent-magenta);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      15% { transform: scale(1.5); opacity: 0.8; }
      100% { transform: scale(3.5); opacity: 0; }
    }

    /* 标准化流程 */
    .steps-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
    }
    .step-card {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      padding: 32px 20px;
      border-radius: 12px;
      text-align: center;
      position: relative;
      z-index: 2;
    }
    .step-num {
      width: 48px;
      height: 48px;
      background: var(--accent-purple);
      color: #ffffff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 20px;
      border: 2px solid var(--primary);
    }
    .step-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--primary);
    }
    .step-desc {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* 客户案例中心 */
    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .case-card {
      background: var(--neutral-white);
      border-radius: 12px;
      overflow: hidden;
      border: 2px solid var(--primary);
    }
    .case-img-holder {
      height: 200px;
      overflow: hidden;
      background: #e2e8f0;
      position: relative;
    }
    .case-img-holder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }
    .case-card:hover .case-img-holder img {
      transform: scale(1.05);
    }
    .case-body {
      padding: 20px;
    }
    .case-tag {
      display: inline-block;
      padding: 2px 8px;
      font-size: 12px;
      background: var(--accent-cyan);
      color: var(--primary);
      font-weight: 700;
      border-radius: 4px;
      margin-bottom: 12px;
    }
    .case-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--primary);
    }
    .case-desc {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* 对比评测 - 突出推荐五星 & 9.9分 */
    .review-panel {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
      color: #ffffff;
      border-radius: 20px;
      padding: 48px;
      border: 3px solid var(--accent-cyan);
      box-shadow: 12px 12px 0 var(--accent-magenta);
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 48px;
      align-items: center;
    }
    .rating-box {
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.15);
      padding-right: 48px;
    }
    .rating-num {
      font-size: 72px;
      font-weight: 900;
      color: var(--accent-cyan);
      line-height: 1;
    }
    .rating-stars {
      color: #fbbf24;
      font-size: 28px;
      margin: 12px 0;
    }
    .comparison-table-wrapper {
      overflow-x: auto;
    }
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }
    .comparison-table th, .comparison-table td {
      padding: 12px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      font-size: 14px;
    }
    .comparison-table th {
      color: var(--accent-cyan);
      font-weight: 700;
    }
    .comparison-table td strong {
      color: var(--accent-cyan);
    }

    /* 智能需求匹配与表单 */
    .form-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
    }
    .form-info h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 16px;
      color: var(--primary);
    }
    .form-info p {
      color: var(--text-muted);
      margin-bottom: 24px;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-weight: 600;
    }
    .contact-icon {
      color: var(--accent-magenta);
      font-size: 20px;
    }
    .form-card {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      border-radius: 12px;
      padding: 32px;
      box-shadow: 6px 6px 0 var(--primary);
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--primary);
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 12px;
      border: 2px solid var(--border-color);
      border-radius: 8px;
      outline: none;
      font-size: 14px;
      transition: border-color 0.2s;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--accent-magenta);
    }

    /* Token 比价 */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .token-card {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      border-radius: 12px;
      padding: 24px;
      transition: all 0.3s;
    }
    .token-card:hover {
      box-shadow: 6px 6px 0 var(--accent-cyan);
    }
    .token-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 12px;
      margin-bottom: 16px;
    }
    .token-name {
      font-weight: 700;
      color: var(--primary);
    }
    .token-price {
      font-size: 20px;
      font-weight: 800;
      color: var(--accent-magenta);
    }

    /* 职业与人工智能培训 */
    .training-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .training-card {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      border-radius: 12px;
      padding: 24px 16px;
      text-align: center;
      transition: all 0.3s;
    }
    .training-card:hover {
      background: var(--accent-cyan);
      transform: translateY(-5px);
    }
    .training-title {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--primary);
    }
    .training-badge {
      display: inline-block;
      padding: 2px 8px;
      background: var(--primary);
      color: #ffffff;
      font-size: 11px;
      border-radius: 4px;
    }

    /* 帮助中心与FAQ */
    .faq-layout {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      border-radius: 8px;
      margin-bottom: 12px;
      overflow: hidden;
    }
    .faq-question {
      padding: 18px 24px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      background: var(--neutral-white);
      transition: background 0.2s;
    }
    .faq-question:hover {
      background: #f1f5f9;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: #f8fafc;
    }
    .faq-answer-inner {
      padding: 20px 24px;
      border-top: 1px solid var(--border-color);
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }
    .faq-icon::after {
      content: '+';
      font-size: 20px;
      font-weight: bold;
    }
    .faq-item.active .faq-icon::after {
      content: '−';
    }
    .faq-item.active .faq-answer {
      max-height: 200px;
    }

    /* AI术语百科 & 标签云 */
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      max-width: 900px;
      margin: 0 auto;
    }
    .tag-item {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s;
    }
    .tag-item:hover {
      background: var(--accent-purple);
      color: #ffffff;
      border-color: var(--accent-purple);
      transform: translateY(-2px);
    }

    /* 客户评论卡片 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      border-radius: 12px;
      padding: 24px;
      box-shadow: 4px 4px 0 var(--primary);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-text {
      font-size: 14px;
      color: var(--text-main);
      margin-bottom: 20px;
      font-style: italic;
    }
    .review-user {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--accent-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--primary);
    }
    .review-info h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
    }
    .review-info span {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* 行业资讯 / 知识库 (最新文章) */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .article-card {
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      border-radius: 8px;
      padding: 24px;
      transition: all 0.2s;
    }
    .article-card:hover {
      border-color: var(--accent-magenta);
    }
    .article-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--primary);
    }
    .article-link {
      font-size: 14px;
      color: var(--accent-magenta);
      text-decoration: none;
      font-weight: 600;
    }
    .article-link:hover {
      text-decoration: underline;
    }

    /* 合作加盟代理 */
    .join-panel {
      background: var(--accent-cyan);
      color: var(--primary);
      border: 3px solid var(--primary);
      border-radius: 16px;
      padding: 48px;
      text-align: center;
      box-shadow: 8px 8px 0 var(--primary);
    }
    .join-panel h3 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .join-panel p {
      font-size: 16px;
      max-width: 700px;
      margin: 0 auto 32px auto;
      font-weight: 500;
    }

    /* 页脚与友情链接 */
    footer {
      background: var(--primary);
      color: #cbd5e1;
      padding: 60px 0 30px 0;
      font-size: 14px;
    }
    .footer-layout {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 40px;
      margin-bottom: 30px;
    }
    .footer-brand p {
      margin-top: 16px;
      color: #94a3b8;
    }
    .footer-title {
      color: #ffffff;
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 16px;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover {
      color: var(--accent-cyan);
    }
    .friend-links-box {
      background: rgba(255,255,255,0.03);
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      border: 1px solid rgba(255,255,255,0.08);
    }
    .friend-links-box a {
      color: #94a3b8;
      text-decoration: none;
      margin-right: 16px;
      display: inline-block;
      margin-bottom: 8px;
    }
    .friend-links-box a:hover {
      color: var(--accent-magenta);
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      color: #64748b;
    }

    /* 浮动客服 */
    .floating-kefu {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 99;
      background: var(--neutral-white);
      border: 2px solid var(--primary);
      border-radius: 12px;
      box-shadow: 4px 4px 0 var(--primary);
      padding: 16px;
      width: 140px;
      text-align: center;
      transition: all 0.3s;
    }
    .floating-kefu:hover {
      transform: translateY(-5px);
    }
    .floating-kefu img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      margin-bottom: 8px;
    }
    .floating-kefu p {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
    }

    /* 响应式调整 */
    @media (max-width: 1024px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .case-grid { grid-template-columns: repeat(2, 1fr); }
      .training-grid { grid-template-columns: repeat(3, 1fr); }
      .reviews-grid { grid-template-columns: repeat(2, 1fr); }
      .token-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--neutral-white);
        border-bottom: 2px solid var(--primary);
        padding: 20px;
        gap: 15px;
      }
      .nav-menu.active {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
      .about-layout, .solutions-grid, .network-container, .steps-container, .form-layout, .review-panel {
        grid-template-columns: 1fr;
      }
      .review-panel {
        padding: 24px;
      }
      .rating-box {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-right: 0;
        padding-bottom: 24px;
      }
      .stats-grid, .services-grid, .case-grid, .training-grid, .reviews-grid, .token-grid, .articles-grid {
        grid-template-columns: 1fr;
      }
      .hero-h1 {
        font-size: 28px;
      }
    }