  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC";
  }

  .carousel {
    width: 100%;
    overflow: hidden;
    padding: 15vw 0 20vw;
  }

  .track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
  }

  .card {
    flex: 0 0 66vw;              /* 中间 + 左右各露 1/3 */
    height: 92vw;
    margin: 0 3vw;
    border-radius: 5vw;
    background-size: cover;
    background-position: center;
    box-shadow: 10px 16px 20px rgb(0 0 0 / 7%);
    transform: scale(.93);
    transition: transform .5s ease;
    position: relative;
    overflow: hidden;
  }

  .card.active {
    transform: scale(1.05);
  }

  .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,.0)
    );
  }
  
  .content {
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 3.5vw;
    color: #212121;
    z-index: 2;
  }

  .content h3 {
    font-size: 4.8vw;
    font-weight: 500;
    line-height: 1.2;
  }

  .content p {
    margin-top: 2vw;
    font-size: 3.2vw;
    opacity: .9;
    line-height: 1.6;
  }

  .btn {
    margin-top: 4vw;
    display: inline-flex;
    align-items: center;
    padding: 2.6vw 4.6vw;
    background: rgb(239 239 239 / 90%);
    color: #333;
    border-radius: 10px;
    font-size: 3.5vw;
  }

  .arrow {
    width: 2vw;
    height: 2vw;
    border-right: 3px solid #1aad19;
    border-bottom: 3px solid #1aad19;
    transform: rotate(-45deg);
    margin-left: 2vw;
  }

/* 人物证言卡片特殊样式 */
.testimonial-carousel {
  padding: 8vw 0;
}

.testimonial-card {
  position: relative;
  background-size: cover;
  background-position: center;
}

/* 渐变遮罩 */
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,.6)
  );
}

/* 内容区域 */
.testimonial-content {
  position: absolute;
  left: 4vw;
  right: 4vw;
  bottom: 7vw;
  color: #fff;
  z-index: 2;
  text-align: center;
}

.testimonial-content .desc {
  font-size: 3.8vw;
  line-height: 1.2;
  opacity: .95;
}

.testimonial-content .desc::before,
.testimonial-content .desc::after {
  content: "“";
  color: #d80c18;
  font-size: 6vw;
  vertical-align: top;
}

.testimonial-content .desc::after {
  content: "”";
}

.testimonial-content .name {
  margin-top: 4vw;
  font-size: 4.2vw;
  font-weight: 600;
}

.testimonial-content .title {
  margin-top: 1.5vw;
  display: block;
  font-size: 3.4vw;
  opacity: .85;
}

.news-section {
  max-width: 1200px;
  margin: 120px auto;
}

.news-header h2 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight:400;
}

.news-header p {
  color: #666;
  margin-bottom: 24px;
  margin-top:-6px;
  font-size:13px;
}

.news-tabs {
  display: flex;
  gap: 12px;
}

.news-tabs button {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.news-tabs button.active {
  background: #d80c18;
  color: #fff;
  border-color: #d80c18;
}

.news-content {
  margin-top: 40px;
  position: relative;
}

.news-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  animation: fadeUp .6s ease;
}

.news-panel.active {
  display: grid;
}

.news-left img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 24px;
}

.news-left h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.news-left p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.news-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.news-item img {
  width: 96px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {

  .news-section {
    margin: 60px 16px;
  }

  /* 分类内容整体改为纵向 */
  .news-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ===== 上半部分：大图新闻 ===== */
  .news-left img {
    border-radius: 16px;
	height: 350px;
  }

  .news-left h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .news-left p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
  }

  .news-left span {
    font-size: 12px;
    color: #000000;
  }

  /* ===== 下半部分：三篇小图 ===== */
  .news-right {
    gap: 16px;
  }

  .news-item {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .news-item img {
    width: 96px;
    height: 72px;
    border-radius: 12px;
    flex-shrink: 0;
    object-fit: cover;
  }

  .news-item h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .news-item span {
    font-size: 12px;
    color: #999;
  }

  /* Tab 按钮在手机端更紧凑 */
  .news-tabs {
    flex-wrap: wrap;
    gap: 20px;
	margin-left:11%;
  }

  .news-tabs button {
    font-size: 12px;
    padding: 4px 12px;
  }
   .news-maximgbg {
    background: linear-gradient(to top, #ffffff, #ffffff82);
    height: 140px;
    margin-top: -145px;
    position: relative;
    padding: 15px 20px;
  }
}

    /* ===== Slider ===== */
    .m-slider {
      padding: 16px;
    }

    .m-slider-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      background: #f5f5f5;
    }

    .m-slider-track {
      display: flex;
      transition: transform 0.8s cubic-bezier(.4,0,.2,1);
    }

    .m-slide {
      min-width: 100%;
      opacity: 0;
      transition: opacity 0.6s ease;
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
	  height:500px;
    }

    .m-slide.active {
      opacity: 1;
    }

    /* ===== Text Area ===== */
    .m-slide-text {
      padding: 28px 24px 20px;
    }

    .m-slide-text h2 {
      font-size: 22px;
      line-height: 1.3;
      margin-bottom: 14px;
      color: #111;
	  margin-top:60px;
    }

    .m-slide-text p {
      font-size: 14px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 18px;
    }

    .m-btn {
      display: inline-flex;
      align-items: center;
      background: #d80c18;
      color: #fff;
      padding: 10px 20px;
      border-radius: 24px;
      text-decoration: none;
      font-size: 14px;
    }

    /* ===== Image as Background ===== */
    .m-slide-bg {
      height: 360px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* ===== Arrows ===== */
    .m-arrow {
      position: absolute;
      top: 25px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: #d80c18;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      z-index: 10;
    }

    .m-arrow.left { left: 25px; }
    .m-arrow.right { left: 80px; }