﻿:root {
      --primary-color: rgb(88,86,214);
      --primary-hover: rgb(70,68,190);
      --primary-light: rgba(88,86,214,0.08);
      --accent-color: #FF9500;
      --accent-hover: #E08200;
      --text-dark: #1C1C1E;
      --text-gray: #8E8E93;
      --bg-light: #F2F2F7;
      --bg-white: #FFFFFF;
      --border-color: #E5E5EA;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
      --shadow-md: 0 10px 30px rgba(88,86,214,0.08);
      --shadow-lg: 0 15px 40px rgba(0,0,0,0.1);
      --max-width: 1200px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--bg-light);
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .site-header {
      background-color: var(--bg-white);
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo span {
      display: inline-block;
      font-size: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--primary-color);
      white-space: nowrap;
    }
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      padding: 8px 12px;
      border-radius: 6px;
    }
    .desktop-nav a:hover {
      color: var(--primary-color);
      background-color: var(--primary-light);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-download-top {
      background-color: var(--primary-color);
      color: var(--bg-white);
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(88,86,214,0.3);
    }
    .btn-download-top:hover {
      background-color: var(--primary-hover);
      transform: translateY(-1px);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
    }
    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--text-dark);
      transition: 0.3s;
    }
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-menu {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: var(--bg-white);
      z-index: 1002;
      box-shadow: var(--shadow-lg);
      transition: 0.3s ease;
      padding: 20px;
      display: flex;
      flex-direction: column;
    }
    .drawer-menu.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 28px;
      color: var(--text-gray);
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .drawer-nav a {
      font-size: 16px;
      font-weight: 600;
      padding: 10px 14px;
      border-radius: 8px;
    }
    .drawer-nav a:hover {
      background-color: var(--primary-light);
      color: var(--primary-color);
    }
    .drawer-download-btn {
      margin-top: 30px;
      background-color: var(--accent-color);
      color: var(--bg-white);
      text-align: center;
      padding: 12px;
      border-radius: 8px;
      font-weight: bold;
    }
    .hero-section {
      background: linear-gradient(135deg, rgba(88,86,214,0.9) 0%, rgba(50,48,150,0.95) 100%), url('{模板路径}/images/hero-bg.jpg') no-repeat center center/cover;
      color: var(--bg-white);
      padding: 100px 0 80px 0;
      overflow: hidden;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
    }
    .hero-content h1 {
      font-size: 44px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }
    .hero-content p {
      font-size: 18px;
      opacity: 0.9;
      margin-bottom: 35px;
      line-height: 1.8;
    }
    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-main {
      background-color: var(--accent-color);
      color: var(--bg-white);
      padding: 14px 32px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 16px;
      box-shadow: 0 4px 15px rgba(255,149,0,0.4);
    }
    .btn-main:hover {
      background-color: var(--accent-hover);
      transform: translateY(-2px);
    }
    .btn-sub {
      background-color: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--bg-white);
      padding: 14px 32px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 16px;
      backdrop-filter: blur(5px);
    }
    .btn-sub:hover {
      background-color: rgba(255,255,255,0.25);
      transform: translateY(-2px);
    }
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .visual-wrapper {
      background: rgba(255,255,255,0.1);
      border: 4px solid rgba(255,255,255,0.2);
      border-radius: 24px;
      padding: 20px;
      width: 100%;
      max-width: 360px;
      box-shadow: var(--shadow-lg);
      backdrop-filter: blur(10px);
    }
    .app-screen-shot {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    .stats-bar {
      background-color: var(--bg-white);
      box-shadow: var(--shadow-sm);
      margin-top: -40px;
      border-radius: 16px;
      padding: 30px;
      position: relative;
      z-index: 10;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
    }
    .stats-item h3 {
      font-size: 28px;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 6px;
    }
    .stats-item p {
      font-size: 14px;
      color: var(--text-gray);
    }
    .features-section {
      padding: 80px 0;
    }
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title h2 {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    .section-title p {
      color: var(--text-gray);
      font-size: 16px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .feature-card {
      background-color: var(--bg-white);
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      border: 1px solid var(--border-color);
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary-color);
    }
    .feature-icon {
      width: 60px;
      height: 60px;
      background-color: var(--primary-light);
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px auto;
      font-size: 24px;
      color: var(--primary-color);
    }
    .feature-card h3 {
      font-size: 18px;
      margin-bottom: 12px;
      color: var(--text-dark);
    }
    .feature-card p {
      font-size: 14px;
      color: var(--text-gray);
      line-height: 1.6;
    }
    .articles-section {
      padding: 80px 0;
      background-color: var(--bg-white);
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .article-card {
      background-color: var(--bg-light);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    .article-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    .article-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .article-card:hover .article-img img {
      transform: scale(1.08);
    }
    .article-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: var(--primary-color);
      color: var(--bg-white);
      padding: 4px 10px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: bold;
    }
    .article-info {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 12px;
      color: var(--text-gray);
      margin-bottom: 12px;
    }
    .article-info h3 {
      font-size: 18px;
      font-weight: bold;
      color: var(--text-dark);
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .article-info p {
      font-size: 14px;
      color: var(--text-gray);
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .article-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid var(--border-color);
      padding-top: 15px;
      font-size: 13px;
    }
    .read-more {
      color: var(--primary-color);
      font-weight: 700;
    }
    .read-more:hover {
      color: var(--primary-hover);
    }
    .about-platform {
      padding: 80px 0;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    .about-text h2 {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 20px;
    }
    .about-text p {
      font-size: 16px;
      color: var(--text-gray);
      line-height: 1.8;
      margin-bottom: 24px;
    }
    .about-bullets {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .bullet-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .bullet-item span {
      background-color: var(--primary-light);
      color: var(--primary-color);
      padding: 6px;
      border-radius: 50%;
      font-size: 12px;
      font-weight: bold;
    }
    .bullet-item h4 {
      font-size: 16px;
      color: var(--text-dark);
      margin-bottom: 4px;
    }
    .bullet-item p {
      font-size: 13px;
      color: var(--text-gray);
      margin: 0;
    }
    .about-image {
      position: relative;
    }
    .about-image img {
      border-radius: 20px;
      box-shadow: var(--shadow-md);
    }
    .cta-section {
      background: linear-gradient(135deg, var(--primary-color) 0%, #3d3b9e 100%);
      color: var(--bg-white);
      padding: 80px 0;
      text-align: center;
    }
    .cta-box {
      max-width: 700px;
      margin: 0 auto;
    }
    .cta-box h2 {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .cta-box p {
      font-size: 16px;
      opacity: 0.9;
      margin-bottom: 35px;
    }
    .cta-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
    }
    .site-footer {
      background-color: #1c1936;
      color: rgba(255,255,255,0.7);
      padding: 70px 0 20px 0;
    }
    .footer-container {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .footer-brand .logo span {
      color: var(--bg-white);
    }
    .brand-desc {
      font-size: 14px;
      line-height: 1.7;
    }
    .footer-container h4 {
      color: var(--bg-white);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }
    .footer-container h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 30px;
      height: 2px;
      background-color: var(--primary-color);
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links ul li {
      margin-bottom: 12px;
    }
    .footer-links ul li a:hover {
      color: var(--bg-white);
      padding-left: 5px;
    }
    .footer-meta ul {
      list-style: none;
    }
    .footer-meta ul li {
      margin-bottom: 12px;
    }
    .footer-meta ul li a:hover {
      color: var(--bg-white);
      padding-left: 5px;
    }
    .footer-contact p {
      font-size: 14px;
      margin-bottom: 12px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 50px;
      padding-top: 20px;
      font-size: 13px;
      text-align: center;
    }
    .footer-bottom-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    @media (max-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .desktop-nav, .btn-download-top {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .hero-visual {
        display: none;
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      .about-grid {
        grid-template-columns: 1fr;
      }
      .about-image {
        order: -1;
      }
    }
    @media (max-width: 580px) {
      .features-grid, .articles-grid, .footer-container {
        grid-template-columns: 1fr;
      }
      .hero-content h1 {
        font-size: 32px;
      }
      .stats-grid {
        grid-template-columns: 1fr;
      }
      .about-bullets {
        grid-template-columns: 1fr;
      }
    }