* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      font-family: 'Poppins', sans-serif;
      color: #333;
      background-color: #f8f9fa;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* 容器类 */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* 按钮 */
    .btn {
      display: inline-block;
      padding: 0.75rem 1.5rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      text-align: center;
    }

    .btn-primary {
      background-color: #ff686b;
      color: #fff;
    }

    .btn-primary:hover {
      background-color: #ff4a4e;
    }

    .btn-outline {
      border: 2px solid #ff686b;
      color: #ff686b;
      background: transparent;
    }

    .btn-outline:hover {
      background: #ff686b;
      color: #fff;
    }

    /* 头部 */
    .header {
      background-color: #ffffff;
      border-bottom: 1px solid #e4e4e4;
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: #ff686b;
    }

    .nav ul {
      display: flex;
      gap: 1rem;
      list-style: none;
    }

    .nav a {
      text-decoration: none;
      color: #333;
    }

    .nav a:hover {
      color: #ff686b;
    }

    /* 主视觉 Hero */
    .hero {
      background: linear-gradient(120deg, #ff686b, #ffd26f);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      position: relative;
    }

    .hero-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
    }

    /* 核心功能 Features */
    .features {
      padding: 60px 0;
      background: #fff;
      text-align: center;
    }

    .features h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 30px;
    }

    .feature-item {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 6px;
    }

    .feature-item h3 {
      margin-bottom: 0.75rem;
      font-size: 1.25rem;
    }

    /* 操作流程 How It Works */
    .how-it-works {
      padding: 60px 0;
      background: #f0f4f7;
      text-align: center;
    }

    .how-it-works h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .step {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      text-align: left;
      background: #fff;
      padding: 20px;
      border-radius: 6px;
    }

    .step-number {
      width: 40px;
      height: 40px;
      background-color: #ff686b;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      border-radius: 50%;
    }

    .step-text h3 {
      margin-bottom: 0.25rem;
    }

    /* 亮点 Highlights */
    .highlights {
      padding: 60px 0;
      text-align: center;
    }

    .highlights h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .highlight-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;

      gap: 1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .highlight-list li {
      background: #fff;
      padding: 20px;
      border-radius: 6px;
      text-align: left;
    }

    /* 用户案例与口碑 */
    .testimonials {
      padding: 60px 0;
      background-color: #fff;
      text-align: center;
    }

    .testimonials h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .testimonial-cards {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
    }

    .testimonial-card {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 6px;
    }

    .testimonial-card .quote {
      font-style: italic;
      margin-bottom: 1rem;
    }

    .testimonial-card .author {
      text-align: right;
      font-weight: 600;
    }

    /* FAQ */
    .faq {
      padding: 60px 0;
      text-align: left;
    }

    .faq h2 {
      text-align: center;
      margin-bottom: 2rem;
      font-size: 2rem;
    }

    .faq-item {
      background: #fff;
      padding: 20px;
      border-radius: 6px;
      margin-bottom: 1rem;
    }

    .faq-item h3 {
      margin-bottom: 0.5rem;
      font-size: 1.125rem;
    }

    /* 定价 Pricing */
    .pricing {
      padding: 60px 0;
      text-align: center;
      background: #f0f4f7;
    }

    .pricing h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .pricing-plans {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
    }

    .plan {
      background: #fff;
      padding: 20px;
      border-radius: 6px;
    }

    .plan h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .plan p {
      margin-bottom: 1rem;
    }

    .plan ul {
      list-style: none;
      margin-bottom: 1rem;
      text-align: left;
    }

    .plan ul li {
      margin: 0.5rem 0;
    }

    .plan .btn {
      margin-top: 1rem;
      display: inline-block;
    }

    /* 推荐款式 */
    .recommended {
      border: 2px solid #ff686b;
      box-shadow: 0 0 10px rgba(255, 104, 107, 0.2);
    }

    /* 底部 Footer */
    .footer {
      background: #fff;
      padding: 20px 0;
      border-top: 1px solid #e4e4e4;
    }

    .footer-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-left, 
    .footer-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .footer-right a {
      color: #333;
      text-decoration: none;
    }

    .footer-right a:hover {
      color: #ff686b;
    }
	
	/* 行业快讯板块（可基于原pricing部分修改） */
/* 行业快讯板块（可基于原pricing部分修改） */
.industry-news {
  padding: 60px 0;
  text-align: center;
  background: #f0f4f7; /* 你想要的背景色 */
}

.industry-news h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.news-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.news-item {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: left;
}

.news-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* 对发布时间的样式处理 */
.news-date {
  margin-bottom: 0.5rem;
  color: #666;       /* 灰色字体以区分内容 */
  font-size: 0.875rem; /* 字体稍小 */
}

/* 原本的段落与按钮保持不变 */
.news-item p {
  margin-bottom: 1rem;
}

.news-item .btn {
  margin-top: 1rem;
  display: inline-block;
}

/* 你也可以沿用或改动 .recommended 的特殊样式 */
.recommended {
  border: 2px solid #ff686b;
  box-shadow: 0 0 10px rgba(255, 104, 107, 0.2);
}


    /* 响应式处理 */
    @media (max-width: 768px) {
      .nav ul {
        display: none; /* 简易处理，小屏可用 hamburger 菜单替代 */
      }

      .steps {
        flex-direction: column;
      }

      .footer-content {
        flex-direction: column;
        gap: 1rem;
      }
    }