.hero-banner {
  width: 100%;
  height: 698px;
  position: relative;
  overflow: hidden;
}

.hero-banner .swiper {
  width: 100%;
  height: 698px;
}

.hero-banner .swiper-slide {
  width: 100%;
  height: 698px;
}

.hero-banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner .swiper-pagination {
  bottom: 40px;
}

.hero-banner .swiper-pagination-bullet {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-banner .swiper-pagination-bullet-active {
  width: 56px;
  background: #69bd43;
}

.hero-banner .banner-caption-wrap {
  position: absolute;
  left: 50%;
  top: 0;
  max-width: 1400px;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

.hero-banner .banner-caption {
  position: absolute;
  left: 5%;
  top: 200px;
  max-width: 720px;
  padding: 36px 50px 36px 40px;
  background:linear-gradient(to bottom, rgb(252 250 227), rgba(0, 0, 0, 0));
  clip-path: polygon(0 0, 100% 0, calc(100% - 32px) 100%, 0 100%);
  
}

.hero-banner .banner-caption .en-tag {
  font-size: 30px;
  color: #69bd43;
  letter-spacing: 6px;
  font-weight: bold;
  margin-bottom: 22px;
  padding-left: 52px;
  position: relative;
}

.hero-banner .banner-caption .en-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: #69bd43;
}

.hero-banner .banner-caption .main-title {
  font-size: 40px;
  color: #fff;
  letter-spacing: 4px;
  line-height: 1.25;
  margin-bottom: 18px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.hero-banner .banner-caption .sub-title {
  font-size: 26px;
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 28px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-banner .banner-caption .cert-tag {
  display: inline-block;
  padding: 8px 20px;
  font-size: 15px;
  color: #fff;
  letter-spacing: 2px;
  background: rgba(105, 189, 67, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.about-section {
  padding: 60px 0;
  background: #fbfbfc;
}

.about-section .about-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.about-section .about-left {
  flex: 1;
}

.about-section .about-left h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #ddd;
}

.about-section .about-left h3 .highlight {
  color: #69bd43;
}

.about-section .about-left p {
  font-size: 14px;
  color: #666;
  line-height: 2;
  margin-bottom: 15px;
  text-indent: 2em;
}

.about-section .about-right {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-section .about-right .about-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.about-section .about-right .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-section .about-right .about-img:hover img {
  transform: scale(1.05);
}

.product-cats {
  padding: 60px 0;
  background: #fff;
}

.product-cats .cat-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}

.product-cats .cat-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-cats .cat-item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  clip-path: polygon(0 30px, 30px 0, 100% 0, 100% 100%, 0 100%);
}

.product-cats .cat-item:nth-child(2) {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.product-cats .cat-item:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.product-cats .cat-item:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  clip-path: polygon(0 30px, 30px 0, 100% 0, 100% 100%, 0 100%);
}

.product-cats .cat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-cats .cat-item:hover img {
  transform: scale(1.08);
}

.product-cats .cat-item .cat-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
}

.product-cats .cat-item .cat-overlay h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.product-cats .cat-item .cat-overlay p {
  font-size: 13px;
  opacity: 0.85;
}

.advantages-section {
  padding: 70px 0;
  background: #fff;
}

.advantages-section .showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.advantages-section .showcase-tabs .tab-btn {
  padding: 8px 24px;
  font-size: 14px;
  color: #666;
  background: #f3f3f3;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.advantages-section .showcase-tabs .tab-btn:hover {
  color: #69bd43;
}

.advantages-section .showcase-tabs .tab-btn.active {
  background: #69bd43;
  color: #fff;
}

.advantages-section .product-showcase {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.advantages-section .category-banner {
  width: 35%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 1;
  transform: translateX(0);
}

.advantages-section .category-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.5s ease;
  opacity: 1;
}

.advantages-section .category-banner.switching {
  opacity: 0;
  transform: translateX(-20px);
}

.advantages-section .category-banner.switching img {
  opacity: 0;
}

.advantages-section .category-banner:hover img {
  transform: scale(1.06);
}

.advantages-section .category-banner .category-name {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  color: #fff;
  transition: opacity 0.35s ease;
  opacity: 1;
}

.advantages-section .category-banner.switching .category-name {
  opacity: 0;
}

.advantages-section .category-banner .category-name .cn {
  display: block;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 6px;
}

.advantages-section .category-banner .category-name .en {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.85;
}

.advantages-section .products-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  grid-auto-rows: 1fr;
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 1;
  transform: translateY(0);
}

.advantages-section .products-wrap.switching {
  opacity: 0;
  transform: translateY(12px);
}

.advantages-section .product-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 180px;
  aspect-ratio: 3 / 2;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.advantages-section .product-item:hover {
  box-shadow: 0 6px 18px rgba(105, 189, 67, 0.18);
  transform: translateY(-3px);
}

.advantages-section .product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.advantages-section .product-item:hover img {
  transform: scale(1.08);
}

.advantages-section .product-item .product-mask {
  position: absolute;
  inset: 0;
  background: rgba(105, 189, 67, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantages-section .product-item:hover .product-mask {
  opacity: 1;
}

.advantages-section .product-item .product-mask h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.advantages-section .product-item .product-mask .price {
  font-size: 18px;
  font-weight: bold;
}

.news-section {
  padding: 60px 0;
  background: #fff;
}

.news-section .news-wrap {
  display: flex;
  gap: 40px;
}

.news-section .news-left {
  flex: 1;
}

.news-section .news-right {
  max-width: 360px;
  width: 35%;
  flex-shrink: 0;
}

.news-section .news-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px dashed #eee;
}

.news-section .news-item .thumb {
  width: 200px;
  height: 130px;
  margin-right: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-section .news-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-section .news-item:hover .thumb img {
  transform: scale(1.05);
}

.news-section .news-item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 130px;
  overflow: hidden;
  min-width: 0;
}

.news-section .news-item .info h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-section .news-item:hover .info h4 {
  color: #69bd43;
}

.news-section .news-item .info .date {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-section .news-item .info .desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-hot {
  background: #fafafa;
  padding: 25px;
}

.news-hot h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #69bd43;
}

.news-hot ul li {
  padding: 12px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
  transition: color 0.3s ease;
}

.news-hot ul li:hover {
  color: #69bd43;
}

.news-hot ul li .rank {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #ccc;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
}

.news-hot ul li:nth-child(1) .rank {
  background: #ff6600;
}

.news-hot ul li:nth-child(2) .rank {
  background: #ff9900;
}

.news-hot ul li:nth-child(3) .rank {
  background: #ffcc00;
}

.stat-section {
  padding: 50px 0;
  background: url(../images/home05_10.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}

.stat-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.stat-section .container {
  position: relative;
  z-index: 2;
}

.stat-section .stat-grid {
  display: flex;
  justify-content: space-around;
}

.stat-section .stat-item {
  text-align: center;
  color: #fff;
}

.stat-section .stat-item .num {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.stat-section .stat-item .label {
  font-size: 14px;
  opacity: 0.9;
}

.about-company {
  padding: 120px 0;
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}

.about-company .about-company-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-company .about-company-left {
  flex: 1;
}

.about-company .about-company-title {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.about-company .about-company-title .title-bar {
  width: 4px;
  height: 36px;
  background: #69bd43;
  margin-right: 12px;
  border-radius: 2px;
}

.about-company .about-company-title .title-wrap {
  display: flex;
  flex-direction: column;
}

.about-company .about-company-title h2 {
  font-size: 26px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
}

.about-company .about-company-title .title-en {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-company .about-company-left p {
  font-size: 14px;
  color: #666;
  line-height: 2;
  margin-bottom: 16px;
  text-indent: 2em;
}

.about-company .about-company-btns {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.about-company .btn {
  display: inline-block;
  padding: 10px 26px;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about-company .btn-primary {
  background: #69bd43;
  color: #fff;
}

.about-company .btn-primary:hover {
  background: #549735;
  color: #fff;
}

.about-company .btn-outline {
  background: #fff;
  color: #69bd43;
  border: 1px solid #69bd43;
}

.about-company .btn-outline:hover {
  background: #69bd43;
  color: #fff;
}

.about-company .about-company-right {
  max-width: 500px;
  width: 45%;
  flex-shrink: 0;
  position: relative;
}

.about-company .about-stats-card {
  position: relative;
  border: 2px solid #69bd43;
  border-radius: 12px;
  overflow: hidden;
  padding: 36px 30px;
  min-height: 320px;
}

.about-company .about-stats-card .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
}

.about-company .stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-company .stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 26px 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-company .stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(105, 189, 67, 0.25);
}

.about-company .stat-box .stat-num {
  font-size: 42px;
  font-weight: bold;
  color: #69bd43;
  line-height: 1;
  margin-bottom: 10px;
}

.about-company .stat-box .stat-unit {
  font-size: 18px;
  font-weight: normal;
  margin-left: 2px;
}

.about-company .stat-box .stat-label {
  font-size: 14px;
  color: #666;
}

.about-company .deco-tomato {
  position: absolute;
  left: -30px;
  top: -22px;
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.about-company .deco-leaf {
  position: absolute;
  right: -32px;
  bottom: -28px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 58% 42% 55% 45% / 48% 52% 48% 52%;
  transform: rotate(12deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  z-index: 3;
}

.advantage-section {
  padding: 70px 0;
  background: #fff;
}

.advantage-section .section-head {
  text-align: center;
  margin-bottom: 50px;
}

.advantage-section .section-head h2 {
  font-size: 26px;
  color: #333;
  font-weight: bold;
  margin-bottom: 12px;
}

.advantage-section .section-head .head-bar {
  width: 50px;
  height: 3px;
  background: #69bd43;
  margin: 0 auto 16px;
}

.advantage-section .section-head p {
  font-size: 14px;
  color: #999;
}

.advantage-section .advantage-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.advantage-section .advantage-item {
  flex: 1;
  text-align: center;
}

.advantage-section .advantage-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  border: 6px solid #f0f0f0;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.advantage-section .advantage-circle:hover {
  border-color: #69bd43;
  transform: scale(1.05);
}

.advantage-section .advantage-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-section .advantage-item h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 12px;
  font-weight: bold;
}

.advantage-section .advantage-item p {
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  padding: 0 10px;
}

@media (max-width: 1100px) {
  .about-company .about-company-inner {
    flex-direction: column;
    gap: 30px;
  }

  .about-company .about-company-right {
    width: 100%;
    max-width: 100%;
  }

  .advantages-section .product-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .advantages-section .category-banner {
    width: 100%;
    height: 200px;
    margin-bottom: 8px;
  }

  .advantages-section .products-wrap {
    width: 100%;
  }

  .advantage-section .advantage-list {
    flex-wrap: wrap;
  }

  .advantage-section .advantage-item {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 20px;
  }

  .news-section .news-wrap {
    flex-direction: column;
  }

  .news-section .news-right {
    width: 100%;
    max-width: 100%;
  }

  .news-section .news-item .thumb {
    width: 160px;
    height: 110px;
  }

  .stat-section .stat-item .num {
    font-size: 36px;
  }
}

@media (max-width: 768px) {

  /* Hero Banner */
  .hero-banner,
  .hero-banner .swiper,
  .hero-banner .swiper-slide {
    height: 320px;
  }

  .hero-banner .banner-caption {
    top: 60px;
    left: 5%;
    max-width: 90%;
    padding: 18px 24px 18px 18px;
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  }

  .hero-banner .banner-caption .en-tag {
    font-size: 16px;
    letter-spacing: 3px;
    padding-left: 30px;
    margin-bottom: 10px;
  }

  .hero-banner .banner-caption .en-tag::before {
    width: 22px;
  }

  .hero-banner .banner-caption .main-title {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .hero-banner .banner-caption .sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero-banner .banner-caption .cert-tag {
    font-size: 12px;
    padding: 5px 12px;
  }

  /* 我们的公司 */
  .about-company {
    padding: 50px 0;
  }

  .about-company .about-company-left {
    width: 100%;
  }

  .about-company .about-company-right {
    width: 100%;
  }

  .about-company .about-company-title h2 {
    font-size: 22px;
  }

  .about-company .about-company-title .title-en {
    font-size: 12px;
  }

  .about-company .about-company-left p {
    font-size: 14px;
  }

  .about-company .about-company-btns {
    flex-wrap: wrap;
    gap: 10px;
  }

  .about-company .about-company-btns .btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    text-align: center;
    padding: 10px 12px;
  }

  .about-company .deco-tomato {
    width: 56px;
    height: 56px;
  }

  .about-company .deco-leaf {
    width: 72px;
    height: 72px;
  }

  .about-company .about-stats-card {
    padding: 24px 18px;
    min-height: auto;
  }

  .about-company .stat-box {
    padding: 18px 10px;
  }

  .about-company .stat-box .stat-num {
    font-size: 30px;
  }

  .about-company .stat-box .stat-unit {
    font-size: 14px;
  }

  .about-company .stat-box .stat-label {
    font-size: 12px;
  }

  /* 有机产品分类 */
  .about-section .about-content {
    flex-direction: column;
    gap: 20px;
  }

  .about-section .about-right {
    width: 100%;
    max-width: 100%;
  }

  .product-cats {
    padding: 40px 0;
  }

  .product-cats .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .product-cats .cat-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: auto;
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% 100%, 0 100%);
  }

  .product-cats .cat-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .product-cats .cat-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: auto;
  }

  .product-cats .cat-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: auto;
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% 100%, 0 100%);
  }

  .product-cats .cat-item img {
    height: 180px;
  }

  /* 产品展示 */
  .advantages-section {
    padding: 40px 0;
  }

  .advantages-section .showcase-tabs {
    flex-wrap: wrap;
    gap: 3px;
  }

  .advantages-section .showcase-tabs .tab-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  .advantages-section .category-banner {
    height: 160px;
  }

  /* 我们的优势 */
  .advantage-section {
    padding: 40px 0;
  }

  .advantage-section .section-head h2 {
    font-size: 22px;
  }

  .header .header-inner {
    height: auto;
    flex-direction: column;
    padding: 15px 20px;
    gap: 12px;
  }

  .advantage-section .advantage-list {
    gap: 0;
  }

  .advantage-section .advantage-item {
    flex: 0 0 50%;
    margin-bottom: 0;
  }

  .advantages-section .products-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .advantages-section .showcase-tabs {
    flex-wrap: wrap;
  }

  .advantages-section .product-item {
    min-height: 0;
  }

  .advantages-section .product-item .product-mask h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .advantages-section .product-item .product-mask .price {
    font-size: 14px;
  }

  /* 新闻区 - 缩略图缩小 */
  .news-section .news-item .thumb {
    width: 110px;
    height: 80px;
    margin-right: 12px;
  }

  .news-section .news-item .info {
    min-height: 80px;
  }

  .news-section .news-item .info h4 {
    font-size: 14px;
  }

  /* 数据统计区 - 数字缩小，允许换行 */
  .stat-section .stat-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-section .stat-item {
    flex: 0 0 calc(50% - 10px);
  }

  .stat-section .stat-item .num {
    font-size: 30px;
  }

  /* 优势圆圈 - 缩小 */
  .advantage-section .advantage-circle {
    width: 140px;
    height: 140px;
  }

  .footer .footer-col {
    flex: 0 0 50%;
    margin-bottom: 24px;
  }
}