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



p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
}

ul,
ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

a,
a:hover {
  text-decoration: unset;
  color: var(--gray);
}

:root {
  --desc: #999999;
  --title: #000;
  --sec-title: #777;
  --primary: #84a846;
  --white: #fff;
  --black: #000;
  --gray: #333333;
  --gray-light: #cccccc;
  --line: #ddd;
  --gray-lighter: #f5f5f5;
  --primary-dark: #6a8a35;
  --primary-light: #9fc05e;
  --primary-very-light: #f5f9eb;
  --dark: #1a1a1a;
  --dark-secondary: #2d2d2d;
  --gray-900: #1f1f1f;
  --gray-700: #4a4a4a;
  --gray-600: #666666;
  --gray-500: #888888;
  --gray-400: #aaaaaa;
  --gray-300: #cccccc;
  --gray-200: #e5e5e5;
  --gray-100: #f5f5f5;
  --gold: #c9a96e;
  --gold-light: #e0c99a;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.textCenter {
  text-align: center;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--gray);
  background: var(--white);
}

.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

.clearfix::before {
  content: '';
  display: table;
  clear: both;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}



/* 内容 */
.fmen-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.fmenBannerSwiper,
.fmenBannerSwiper .swiper-wrapper,
.fmenBannerSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.fmenBannerSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 6.5s ease;
}

.swiper-slide-active .banner-img {
  transform: scale(1);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background:
      linear-gradient(90deg, rgba(15, 20, 22, .86) 0%, rgba(15, 20, 22, .58) 42%, rgba(15, 20, 22, .16) 100%),
      linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.36)); */
}

.banner-inner {
  position: relative;
  z-index: 3;
  max-width: 50%;
  height: 100%;
  display: flex;
  align-items: end;
  margin-left: 12%;
  padding-bottom: 8%;

}

.banner-text {
  max-width: 720px;
  color: #fff;
}

.banner-text span,
.banner-text h1,
.banner-text p,
.banner-text a {
  opacity: 0;
  transform: translateY(46px);
}

.banner-text h1 {
  margin: 0 0 28px;
  font-size: clamp(40px, 4.5vw, 54px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -1px;

}


/* .banner-text a {
    width: 168px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.48);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: all .38s ease;
  }
  
  .banner-text a:hover {
    background: var(--primary);
    border-color: var(--primary);
  } */

.bannerGreen {
  background: linear-gradient(to right, var(--primary), rgba(255, 255, 255, 0));
  padding: 40px 60px;
  position: relative;
}

.bannerGreen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

.bannerGreen h1 {
  color: var(--black)
}

.bannerGreen h1 span {
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 500;
  color: #fff;
  display: contents;
  letter-spacing: normal;
  margin-bottom: unset;
}

.bannerGreen p {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.5;
  margin: 0;
  max-width: 500px;
  color: var(--black);
}



.swiper-slide-active .banner-text span {
  animation: bannerFadeUp .9s ease forwards .25s;
}

.swiper-slide-active .banner-text h1 {
  animation: bannerFadeUp .9s ease forwards .42s;
}

.swiper-slide-active .banner-text p {
  animation: bannerFadeUp .9s ease forwards .58s;
}

.swiper-slide-active .banner-text a {
  animation: bannerFadeUp .9s ease forwards .74s;
}

@keyframes bannerFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-pagination {
  position: absolute;
  left: 12% !important;
  bottom: 58px !important;
  z-index: 8;
  display: flex;
  gap: 18px;
}

.banner-pagination .swiper-pagination-bullet {
  width: 72px;
  height: 32px;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  position: relative;
  margin: 0 !important;
}

.banner-pagination .swiper-pagination-bullet em {
  display: block;
  margin-bottom: 10px;
  font-style: normal;
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
  transition: color .3s ease;
}

.banner-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: rgba(255, 255, 255, .26);
}

.banner-pagination .swiper-pagination-bullet i {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 0;
  height: 2px;
  background: var(--primary);
}

.banner-pagination .swiper-pagination-bullet-active em {
  color: #fff;
}

.banner-pagination .swiper-pagination-bullet-active i {
  animation: bannerProgress 5.2s linear forwards;
}

@keyframes bannerProgress {
  to {
    width: 72px;
  }
}

.banner-arrow {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 1);
  transform: translateY(-50%);
  cursor: pointer;
  transition: all .35s ease;
}

.banner-prev {
  left: 48px;
}

.banner-next {
  right: 48px;
}

.banner-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.banner-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.banner-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.banner-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 1200px) {
  .pro-banner {
    height: 760px;
  }

  .banner-text h1 {
    font-size: 36px;
  }

  .banner-text p {
    font-size: 19px;
  }

  .banner-pagination {
    bottom: 20px !important;
  }
}





@media (max-width: 768px) {
  .pro-banner {
    height: 560px;
  }

  .banner-inner {
    max-width: 90%;
    align-items: end;
    margin-left: 5%;
  }

  .banner-overlay {
    background:
      linear-gradient(90deg, rgba(15, 20, 22, .2), rgba(15, 20, 22, .1)),
      linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .1));
  }

  .banner-text span {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .banner-text h1 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .banner-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .banner-text a {
    width: 138px;
    height: 44px;
    font-size: 14px;
  }

  .banner-arrow {
    display: none;
  }

  .banner-pagination {
    left: 6%;
    right: 6%;
    bottom: 34px;
    gap: 10px;
  }

  .banner-pagination .swiper-pagination-bullet {
    flex: 1;
    width: auto;
    height: 20px;
  }

  .banner-pagination .swiper-pagination-bullet em {
    display: none;
  }

  .banner-pagination .swiper-pagination-bullet::after {
    width: 100%;
  }

  @keyframes bannerProgress {
    to {
      width: 100%;
    }
  }
}

@media (max-width: 480px) {
  .pro-banner {
    height: 500px;
  }

  .banner-text h1 {
    font-size: 28px;
  }

  .banner-text p {
    font-size: 14px;
  }

  .banner-pagination {
    bottom: 20px !important;
    left: 0% !important;
  }

}


/* 关于 */
.fmen-about {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.fmen-about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
}

.fmen-about-img {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.fmen-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  transform: scale(1.08);
  animation: imgZoom 1.4s ease forwards;
}

.fmen-about-content {
  position: relative;
  padding: 9vw 9vw 5vw 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.fmen-about-content::before {
  content: "SINCE 2015";
  font-family: Arial, Helvetica, sans-serif;
  position: absolute;
  right: 6vw;
  top: -20px;
  writing-mode: vertical-rl;
  font-size: clamp(70px, 8vw, 128px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 8px;
  color: rgba(0, 0, 0, .035);
  z-index: 0;
}

.fmen-about-label {
  position: relative;
  z-index: 2;
  font-size: clamp(16px, .9vw, 24px);
  color: var(--sec-title);
  margin-bottom: 24px;
}

.fmen-about-label img {
  width: 20px;
  margin-right: 10px;
}

.fmen-about-title {
  position: relative;
  z-index: 2;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.2;
  margin-bottom: 80px;
  font-weight: 600;
  letter-spacing: 2px;
}

.fmen-about-title span {
  color: var(--primary);
  margin-right: 18px;
}

.fmen-about-text {
  position: relative;
  z-index: 2;
  max-width: 780px;
  font-size: clamp(14px, .9vw, 17px);
  line-height: 2.15;
  color: var(--desc);
  text-align: justify;
}

.fmen-about-btn {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  width: 200px;
  height: 58px;
  background: var(--primary);
  border-radius: 9px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  transition: .35s ease;
}

.fmen-about-btn:hover {
  background: #6f9339;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(132, 168, 70, .4);
}

.fmen-about-btn i {
  width: 22px;
  height: 1px;
  background: #fff;
  position: relative;
  transition: all .35s ease;
}

.fmen-about-btn i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all .35s ease;
}

.fmen-about-btn:hover i {
  background: #333;
}

.fmen-about-btn:hover i::after {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}

.fmen-about-adv {
  background: var(--primary);
  padding: 80px 0;
  width: 100%;
}

.fmen-adv-list {
  max-width: 1600px;
  min-height: 200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.fmen-adv-item {
  text-align: center;
  color: #fff;
  transform: translateY(35px);
}

.fmen-adv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s ease;
}

.fmen-adv-icon svg {
  width: 38px;
  height: 38px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
}

.fmen-adv-item:hover .fmen-adv-icon {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .12);
}

.fmen-adv-title {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.35;
  font-weight: 400;
}

@media(max-width:1100px) {
  .fmen-about-main {
    grid-template-columns: 1fr
  }

  .fmen-about-img {
    min-height: 460px
  }

  .fmen-about-content {
    padding: 70px 8vw
  }

  .fmen-adv-list {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:768px) {
  .fmen-about-img {
    min-height: 320px
  }

  .fmen-about-content {
    padding: 52px 6vw
  }

  .fmen-about-title {
    margin-bottom: 28px
  }

  .fmen-about-text {
    line-height: 1.9
  }

  .fmen-about-btn {
    margin-top: 36px;
    width: 170px;
    height: 50px
  }

  .fmen-adv-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px
  }

  .fmen-about-adv {
    padding: 42px 5vw
  }
}





/* ===== HERO SECTION ===== */
.aboutHero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aboutHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(132, 168, 70, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(132, 168, 70, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.aboutHero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.aboutHero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 30px;
}

.aboutHero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.aboutHero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.aboutHero-title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.aboutHero-title span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  animation: lineExpand 1s ease 1.2s forwards;
}

.aboutHero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.9;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.aboutHero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.aboutHero-scroll span {
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.aboutHero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.honorhero {
  background: url(../../images/about-pic.jpg) no-repeat center / cover;
}

.franchisehero {
  background: url(../../images/franchise-pic.jpg) no-repeat center / cover;
}

.franchiseC {
  min-height: 300px;
}

/* ===== SECTION COMMON ===== */

.section-label {
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 30px;
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  margin: 0 auto;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 700px;
  margin: 24px auto 0;
  line-height: 1.8;
}

/* ===== ABOUT INTRO ===== */
.about-intro {
  padding: 120px 0;
  background: var(--gray-100);
  overflow: hidden;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-image-main {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.intro-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--primary);
  border-radius: 4px;
  z-index: -1;
}

.intro-image-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 30px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(132, 168, 70, 0.3);
}

.intro-image-badge .year {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.intro-image-badge .text {
  font-size: 13px;
  letter-spacing: 2px;
  margin-top: 5px;
  opacity: 0.9;
}


.intro-content h2 span {
  color: var(--primary);
}

.intro-content p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.9;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.intro-stat-item h4 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.intro-stat-item p {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
  letter-spacing: 1px;
}

.origin-highlight {
  background: var(--white);
  border-left: 4px solid var(--primary);
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.origin-highlight p {
  font-size: 15px;
  color: var(--gray-700);
  margin: 0;
  font-style: italic;
  line-height: 1.8;
}


/* ===== GLOBAL NETWORK ===== */
.global-network {
  padding: 120px 0;
  background: var(--white);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.network-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 50px 40px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.network-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.network-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.network-card:hover::before {
  transform: scaleX(1);
}

.network-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 32px;
  color: var(--primary);
  transition: var(--transition);
}
.network-icon svg{
width: 32px;
height: 32px;
color: var(--primary);
transition: var(--transition);
}

.network-card:hover .network-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}
.network-card:hover .network-icon svg{
  color: var(--white);
}

.network-card h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 15px;
}

.network-card .location {
  font-size: 16px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.network-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
}



/* ===== CERTIFICATIONS ===== */
.certifications {
  padding: 120px 0;
  background: var(--white);
}

.cert-grid {
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; */
  margin-top: 60px;
}

.cert-item {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--primary);
  transition: var(--transition);
  z-index: 0;
}

.cert-item:hover::after {
  height: 100%;
  opacity: 0.05;
}

.cert-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(132, 168, 70, 0.1);
}

.cert-icon {
  max-width: 100%;
  height: 300px;
  background: var(--primary-very-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: var(--primary);
  position: relative;
  z-index: 1;
  overflow: hiden;
}

.cert-icon img {
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.cert-item h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cert-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.certSwiper .swiper-button-prev:after,
.certSwiper .swiper-rtl .swiper-button-next:after,
.certSwiper .swiper-button-next:after,
.certSwiper .swiper-rtl .swiper-button-prev:after {
  color: var(--primary)
}


/* ===== VISION ===== */
.vision {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.vision::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(132, 168, 70, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vision .section-label,
.vision .section-title,
.vision .section-desc {
  color: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.vision-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--primary);
}

.vision-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 28px;
  color: var(--white);
}

.vision-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.vision-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.9;
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background-image: url(../../images/cat-bg.png);
  background-repeat: no-repeat;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 30px;
}

.cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  padding: 16px 50px;
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: var(--dark);
  color: var(--white);
}



/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lineExpand {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.5;
    transform: scaleY(0.7);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  .intro-grid,
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .origin-content {
    order: 1;
  }

  .origin-image {
    order: 2;
  }

  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--gray-800) !important;
  }

  .nav-mobile-btn {
    display: flex;
  }

  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .intro-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .network-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }


  .intro-image-accent {
    display: none;
  }

  .intro-image-badge {
    left: 10px;
    top: 10px;
    padding: 15px 20px;
  }

  .intro-image-badge .year {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .intro-content h3,
  .origin-content h3 {
    font-size: 26px;
  }

  .advantage-item {
    flex-direction: column;
    text-align: center;
  }

  .advantage-num {
    font-size: 36px;
  }
}



/* 产品 */
.fmen-product {
  width: 100%;
  padding: 80px 0 80px;
  overflow: hidden
}

.fmen-head {
  text-align: center;
  margin-bottom: 48px
}

.fmen-label {
  position: relative;
  z-index: 2;
  font-size: clamp(16px, 0.9vw, 24px);
  color: var(--sec-title);
  margin-bottom: 24px;
}

.fmen-label img {
  width: 20px;
  margin-right: 10px;
}

.fmen-title {
  position: relative;
  z-index: 2;
  font-size: clamp(26px, 3.2vw, 48px);
  line-height: 1.2;
  margin-bottom: 42px;
  font-weight: 600;
  letter-spacing: 2px;
}

.fmen-title span {
  color: var(--primary);
}


.fmen-scene {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: #dce8e8
}

.fmen-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: .45s ease
}

.fmen-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 255, 255, .7) 0, rgba(255, 255, 255, .18) 24%, transparent 44%), linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .22))
}

.fmen-ceiling {
  position: absolute;
  left: -8%;
  right: -8%;
  top: -145px;
  height: 260px;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(180deg, #949d9a, #d2d1ca 72%, #eee7d4);
  box-shadow: 0 12px 28px rgba(255, 242, 207, .55);
  opacity: .85;
  z-index: 1
}

.fmen-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(210, 215, 210, .15), rgba(120, 135, 130, .4));
  z-index: 1
}

.fmen-panel-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  pointer-events: none
}

.fmen-panel-lines span {
  border-left: 1px solid rgba(255, 255, 255, .38)
}

.fmen-panel-lines span:last-child {
  border-right: 1px solid rgba(255, 255, 255, .38)
}

.fmen-furniture {
  position: absolute;
  left: 50%;
  bottom: 95px;
  transform: translateX(-50%);
  width: 520px;
  height: 230px;
  z-index: 2;
  pointer-events: none
}

.wall {
  position: absolute;
  left: 50%;
  top: 0;
  width: 285px;
  height: 220px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(90deg, #5f7473 0 3px, #39494a 3px 6px);
  opacity: .9
}

.sofa {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 360px;
  height: 82px;
  transform: translateX(-50%);
  background: #89a77a;
  border-radius: 38px 38px 18px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .18)
}

.sofa::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: -42px;
  height: 62px;
  border-radius: 28px;
  background: #9db68f
}

.ac {
  position: absolute;
  left: 50%;
  top: 64px;
  transform: translateX(-50%);
  width: 240px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(180deg, #b9bdb6, #8c948e);
  box-shadow: 0 12px 22px rgba(0, 0, 0, .25)
}

.tree {
  position: absolute;
  right: 24px;
  bottom: 4px;
  width: 120px;
  height: 170px
}

.tree::before {
  content: "";
  position: absolute;
  left: 55px;
  bottom: 0;
  width: 8px;
  height: 110px;
  background: #6e5b42
}

.tree::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  width: 100px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #6c9b62 0 5px, transparent 6px), radial-gradient(circle at 60% 30%, #719f67 0 7px, transparent 8px), radial-gradient(circle at 50% 62%, #567f4f 0 7px, transparent 8px)
}

.fmen-series-nav {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, 1fr)
}

.fmen-series-item {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  border-left: 1px solid rgba(255, 255, 255, .24);
  transition: .35s ease;
  text-align: center;
}

.fmen-series-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, .24)
}

.fmen-series-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 42, .43);
  opacity: .12;
  transition: .35s ease
}

.fmen-series-item.active::before,
.fmen-series-item:hover::before {
  opacity: 1
}

.fmen-series-item.active {
  box-shadow: inset 2px 0 0 #79a941, inset -2px 0 0 #79a941
}

.fmen-series-item a {
  color: #fff;
}

.fmen-series-icon,
.fmen-series-cn,
.fmen-series-en {
  position: relative;
  z-index: 2
}

.fmen-series-icon {
  width: 58px;
  height: 58px;
  transition: .35s ease;
  margin: 0 auto 30px;
}

.fmen-series-icon img {
  width: auto;
  height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  margin: 0 auto;
}

.fmen-series-item:hover .fmen-series-icon,
.fmen-series-item.active .fmen-series-icon {
  transform: translateY(-8px)
}

.fmen-series-cn {
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 8px
}

.fmen-series-en {
  font-size: clamp(13px, .9vw, 16px);
}

.fmen-product-box {
  width: calc(100% - 84px);
  min-height: 360px;
  margin: -92px auto 0;
  position: relative;
  z-index: 10;
  background: var(--gray-lighter);
  border-radius: 15px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .13);
  padding: 30px 58px
}

.fmen-product-group {
  display: none
}

.fmen-product-group.active {
  display: block
}

.fmen-productSwiper {
  overflow: hidden
}

.fmen-product-card {
  height: 360px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 20px 24px;
  transition: .35s ease
}

.fmen-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .08)
}

.profile {
  height: 242px;
  margin-bottom: 20px
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.line {
  width: 48px;
  height: 2px;
  background: #79a941;
  margin-bottom: 17px
}

.fmen-product-card h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.fmen-productSwiper .swiper-button-next,
.fmen-productSwiper .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(121, 169, 65, .95);
  color: #fff
}

.fmen-productSwiper .swiper-button-prev {
  left: 14px
}

.fmen-productSwiper .swiper-button-next {
  right: 14px
}

.fmen-productSwiper .swiper-button-next:after,
.fmen-productSwiper .swiper-button-prev:after {
  font-size: 18px
}


.pro-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 52px;
}

.pro-sub-title {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pro-main-title {
  font-size: 38px;
  line-height: 1.35;
  font-weight: 500;
}

.pro-section-desc {
  max-width: 430px;
  color: var(--sec-title);
  line-height: 1.8;
}


/* product grid */
.pro-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pro-product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
}

.pro-product-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .08);
}

.pro-product-img {
  position: relative;
  height: 260px;
  background: linear-gradient(135deg, var(--gray-100), var(--primary-very-light));
  overflow: hidden;
}

.pro-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.pro-product-card:hover .pro-product-img img {
  transform: scale(1.06);
}

.pro-product-label {
  position: absolute;
  left: 22px;
  top: 22px;
  padding: 7px 14px;
  background: rgba(132, 168, 70, .92);
  color: var(--white);
  font-size: 13px;
}

.pro-product-info {
  padding: 30px;
}

.pro-product-info h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
}

.pro-product-info p {
  color: var(--desc);
  line-height: 1.8;
  font-size: 15px;
}

.pro-product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-200);
  margin-top: 26px;
  padding-top: 22px;
  gap: 12px;
}

.pro-product-meta span {
  font-size: 13px;
  color: var(--gray-500);
}

.pro-product-meta strong {
  display: block;
  margin-top: 6px;
  color: var(--gray-900);
  font-size: 15px;
}

/* feature section */
.profeature-section {
  background: var(--gray-100);
  padding-bottom: 80px
}

.profeature-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.profeature-image {
  min-height: 520px;
  background:
    linear-gradient(rgba(26, 26, 26, .08), rgba(26, 26, 26, .08)),
    url("images/window-detail.jpg") center/cover no-repeat;
}

.profeature-list {
  display: grid;
  gap: 18px;
}

.profeature-item {
  background: var(--white);
  padding: 26px 30px;
  border-left: 4px solid var(--primary);
}

.profeature-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.profeature-item p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* advantage */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.advantage-card {
  padding: 38px 28px;
  background: var(--dark);
  color: var(--white);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.advantage-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(132, 168, 70, .18);
}

.advantage-num {
  color: var(--primary-light);
  font-size: 38px;
  margin-bottom: 24px;
}

.advantage-card h4 {
  font-size: 21px;
  margin-bottom: 12px;
}

.advantage-card p {
  color: rgba(255, 255, 255, .62);
  line-height: 1.8;
  font-size: 14px;
}

.productValue {
  padding: 80px 0;
}


@media(max-width:1180px) {
  .fmen-wrap {
    width: 92vw
  }

  .fmen-scene {
    height: auto
  }

  .fmen-series-nav {
    position: relative;
    grid-template-columns: repeat(3, 1fr)
  }

  .fmen-series-item {
    height: 240px
  }

  .fmen-bg,
  .fmen-ceiling,
  .fmen-floor,
  .fmen-furniture,
  .fmen-panel-lines {
    position: absolute
  }

  .fmen-bg {
    inset: 0
  }

  .fmen-product-box {
    margin-top: 26px;
    width: 100%;
    padding: 26px 54px
  }
}

@media(max-width:768px) {
  .fmen-product {
    padding: 45px 0 60px
  }

  .fmen-head {
    margin-bottom: 30px
  }

  .fmen-series-nav {
    grid-template-columns: repeat(2, 1fr)
  }

  .fmen-series-item {
    height: 205px
  }

  .fmen-furniture {
    width: 420px;
    opacity: .75
  }

  .fmen-product-box {
    padding: 22px 48px
  }

  .fmen-product-card {
    height: 330px
  }

  .profile {
    height: 210px
  }
}

@media(max-width:520px) {

  .fmen-series-item {
    height: 155px
  }

  .fmen-series-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px
  }

  .fmen-product-box {
    padding: 18px 42px
  }
}


/* ===== HERO ===== */
.hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prohero {
  background: url('../../images/product-pic.jpg') no-repeat center / cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(132, 168, 70, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 30px;
  width: 100%;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 30px 0;
  position: sticky;
  top: 60px;
  z-index: 100;
}

.filter-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 40px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 28px;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(132, 168, 70, 0.3);
}

/* ===== PRODUCT GRID ===== */
.products {
  padding: 80px 0;
  background: var(--gray-100);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 2;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-view-btn {
  background: var(--white);
  color: var(--dark);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transform: translateY(20px);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-card:hover .product-view-btn {
  transform: translateY(0);
}

.product-view-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.product-info {
  padding: 28px;
}

.product-series {
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-name {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-specs {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.product-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-500);
}

.product-spec-icon {
  background: var(--primary-very-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
  padding: 2px 5px;
}



/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--gray-100);
  padding: 140px 0 30px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.breadcrumb-bar .breadcrumb {
  left: 12%;
  transform: translateX(0);
}

.breadcrumb {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  color: var(--gray-300);
}

.breadcrumb .current {
  color: var(--primary);
  font-weight: 500;
}


/* ===== PRODUCT HERO ===== */
.product-hero {
  padding: 60px 0 80px;
  background: var(--gray-100);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.gallery-main {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.gallery-main img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-main:hover img {
  transform: scale(1.02);
}


.product-meta {
  padding-top: 10px;
}

.product-meta-series {
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.product-meta-name {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 40px;
}

.product-meta-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 30px;
}

.product-meta-tags {
  margin-bottom: 60px;
}

.product-meta-tags span {
  margin-right: 20px;
}

.meta-tag {
  padding: 8px 20px;
  background: var(--primary-very-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 1px solid rgba(132, 168, 70, 0.2);
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 40px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(132, 168, 70, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(132, 168, 70, 0.4);
}

.btn-outline {
  padding: 16px 40px;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== SPECS SECTION ===== */
.specs-section {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

/* .section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
} */

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  margin: 0 auto;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.spec-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.spec-card:hover::before {
  transform: scaleX(1);
}

.spec-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--primary);
  transition: var(--transition);
}

.spec-card:hover .spec-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.spec-value {
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1;
}

.spec-label {
  font-size: 16px;
  color: var(--gray-500);
  letter-spacing: 1px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 100px 0;
  background: var(--gray-100);
}

.features-grid {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px; */
  font-size: 16px;
  line-height: 30px;
}

.features-grid table {
  width: 100%;
  border-spacing: 0;
}

.features-grid table td {
  border: 1px solid #999;
  line-height: 40px;
  padding: 0 10px;
  text-align: center;
}

.feature-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.feature-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.9;
}

.feature-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-item.reverse .feature-image {
  order: 2;
}

.feature-item.reverse .feature-content {
  order: 1;
}

/* ===== RELATED PRODUCTS ===== */
.related-section {
  padding: 100px 0;
}

.related-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  margin-bottom: 30px;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.related-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-info {
  padding: 24px;
}

.related-series {
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.related-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: relative;
    top: 0;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item.reverse {
    grid-template-columns: 1fr;
  }

  .feature-item.reverse .feature-image,
  .feature-item.reverse .feature-content {
    order: 0;
  }

  .structure-annotations {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 0 20px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .structure-annotations {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .product-meta-name {
    font-size: 24px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-content {
    padding: 24px;
  }

  .structure-content {
    padding: 30px;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .prohero {
    height: 50vh;
    min-height: 350px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .filter-list {
    gap: 8px;
    padding: 0;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .prohero-title {
    font-size: 28px;
  }

  .product-info {
    padding: 20px;
  }

  .product-name {
    font-size: 18px;
  }
}



/* 优势 */
.fmen-production-advantage {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}

.fmen-production-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;
  gap: 70px;
}


.fmen-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 20px;
  margin-bottom: 18px;
}

.fmen-section-label i {
  width: 20px;
  height: 18px;
  display: inline-block;
  background: linear-gradient(to bottom,
      var(--primary) 0 2px,
      transparent 2px 7px,
      var(--primary) 7px 9px,
      transparent 9px 14px,
      var(--primary) 14px 16px);
}

.fmen-production-title {
  font-size: clamp(36px, 3.2vw, 62px);
  line-height: 1.22;
  font-weight: 800;
  margin-bottom: 78px;
  letter-spacing: 1px;
}

.fmen-production-title span {
  color: var(--primary);
}

.fmen-advantage-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.fmen-advantage-item {
  text-align: center;
  color: #777;
  transition: all .4s ease;
}


.fmen-advantage-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  color: var(--primary);
  transition: all .4s ease;
}

.fmen-advantage-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fmen-advantage-item p {
  font-size: 18px;
  line-height: 1.65;
}

.fmen-advantage-item:hover {
  color: var(--primary);
  transform: translateY(-8px);
}

.fmen-advantage-item:hover .advantage-icon {
  transform: scale(1.08);
}

.fmen-production-right {
  display: grid;
  grid-template-columns: 1.65fr .9fr;
  gap: 28px;
}

.fmen-main-photo {
  height: 580px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.fmen-side-photos {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}

.fmen-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ddd;
}

.fmen-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s ease;
}

.fmen-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .08));
  pointer-events: none;
}

.fmen-photo-card:hover img {
  transform: scale(1.08);
}

.fmen-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fmen-float-card {
  position: absolute;
  right: 26px;
  top: 26px;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(8, 26, 42, .78);
  color: #fff;
  backdrop-filter: blur(10px);
  font-size: 15px;
  line-height: 1.5;
}

.fmen-float-card strong {
  display: block;
  font-size: 22px;
  color: #84d7ff;
}


@media (max-width: 1400px) {
  .fmen-production-container {
    width: 88%;
    gap: 46px;
  }

  .fmen-production-title {
    margin-bottom: 58px;
  }

  .fmen-advantage-list {
    gap: 20px;
  }

  .fmen-advantage-item p {
    font-size: 16px;
  }

  .fmen-main-photo {
    height: 500px;
  }
}

@media (max-width: 1100px) {
  .fmen-production-container {
    grid-template-columns: 1fr;
  }

  .fmen-production-title {
    margin-bottom: 42px;
  }

  .fmen-production-right {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 768px) {
  .fmen-production-advantage {
    padding: 60px 0;
  }

  .fmen-production-container {
    width: 90%;
  }

  .fmen-production-title {
    font-size: 34px;
    margin-bottom: 36px;
  }

  .fmen-advantage-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
  }

  .fmen-advantage-icon {
    width: 62px;
    height: 62px;
  }

  .fmen-production-right {
    grid-template-columns: 1fr;
  }

  .fmen-main-photo {
    height: 340px;
  }

  .fmen-side-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .fmen-side-photos .fmen-photo-card {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .fmen-production-title {
    font-size: 30px;
  }

  /* .fmen-advantage-list {
    grid-template-columns: 1fr;
  } */

  .sfmen-ide-photos {
    grid-template-columns: 1fr;
  }

  .fmen-side-photos .fmen-photo-card {
    height: 200px;
  }
}


/* 新闻 */
.fmen-news-section {
  width: 100%;
  padding: 80px 0 70px;
}

.fmen-news-container {
  width: 84%;
  max-width: 1660px;
  margin: auto;
}

/* 标题 */

.fmen-news-title {
  text-align: center;
  margin-bottom: 65px;
}

.fmen-news-title .sub {
  font-size: 24px;
  color: #666;
  margin-bottom: 8px;
}

.fmen-news-title .sub span {
  color: #7ea84f;
  margin-right: 8px;
}

.fmen-news-title h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
}

.fmen-news-title h2 em {
  font-style: normal;
  color: #7ea84f;
}

/* swiper */

.fmen-news-swiper {
  position: relative;
  overflow: hidden;
}

.fmen-news-track {
  display: flex;
  transition: transform .7s ease;
}

/* pc三列 */
.fmen-news-card {
  width: calc((100% - 68px) / 3);
  flex-shrink: 0;
  margin-right: 34px;
}

.fmen-news-card:last-child {
  margin-right: 0;
}

/* 图片 */

.fmen-news-img {
  width: 100%;
  height: 385px;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f3f3;
}

.fmen-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 1s;
}

.fmen-news-card:hover .fmen-news-img img {
  transform: scale(1.06);
}

/* 内容 */

.fmen-news-info {
  padding-top: 26px;
}

.fmen-news-info h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}

.fmen-news-info p {
  font-size: 16px;
  color: #7a7a7a;
  line-height: 1.8;
}

/* 按钮 */

.fmen-news-btn {
  margin-top: 36px;
  width: 162px;
  height: 48px;
  border: 1px solid #8ea26a;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  color: #666;
  font-size: 16px;
  transition: .35s;
}

.fmen-news-btn:hover {
  background: #7ea84f;
  color: #fff;
}

.fmen-news-btn span {
  font-size: 20px;
  margin-top: -2px;
  width: 30px;
}

/* 底部 */

.fmen-news-bottom {
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.fmen-news-arrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #666;
  font-size: 17px;
}

.arrow-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 20px;
  color: #666;
  transition: .3s;
}

.arrow-btn span {
  width: 60px;
}

.arrow-btn:hover {
  color: #7ea84f;
}

.fmen-news-line {
  flex: 1;
  height: 1px;
  background: #ddd;
}

/* 动效 */

.fmen-news-card {
  animation: fadeUp .8s ease both;
}

.fmen-news-card:nth-child(2) {
  animation-delay: .1s;
}

.fmen-news-card:nth-child(3) {
  animation-delay: .2s;
}




/* ===== NEWS GRID ===== */
.newshero {
  background: url('../../images/news-pic.jpg') no-repeat center / cover;

}

.news {
  padding: 80px 0;
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.news-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.news-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 2;
}

.news-info {
  padding: 28px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.news-date {
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-category {
  font-size: 12px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 1px;
}

.news-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 12px;
  transition: var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:hover .news-title {
  color: var(--primary);
}

.news-excerpt {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  transition: var(--transition);
}

.news-card:hover .news-readmore {
  gap: 10px;
}

/* ===== FEATURED NEWS ===== */
.featured-news {
  padding: 80px 0 0;
  background: var(--gray-100);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.featured-main {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.featured-main:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.featured-main .news-image {
  aspect-ratio: 16/10;
}

.featured-main .news-info {
  padding: 35px;
}

.featured-main .news-title {
  font-size: 24px;
  -webkit-line-clamp: 2;
}

.featured-main .news-excerpt {
  font-size: 15px;
  -webkit-line-clamp: 3;
}

.featured-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.featured-side .news-card {
  display: grid;
  grid-template-columns: 140px 1fr;
}

.featured-side .news-image {
  aspect-ratio: 1;
}

.featured-side .news-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-side .news-title {
  font-size: 16px;
  -webkit-line-clamp: 2;
  margin-bottom: 8px;
}

.featured-side .news-excerpt {
  display: none;
}

.featured-side .news-readmore {
  margin-top: 10px;
}


/* ===== ARTICLE HEADER ===== */
.article-header {
  padding: 80px 0;
  background: var(--gray-100);
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.article-tag {
  padding: 6px 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.article-date {
  font-size: 14px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-views {
  font-size: 14px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: center;
}

.article-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--gray-200);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== ARTICLE IMAGE ===== */
.article-hero-image {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ===== ARTICLE BODY ===== */
.article-body {
  padding: 40px 0 40px;
  background: var(--white);
}

.article-content {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 2;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 24px;
  line-height: 1.3;
}

.article-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 36px 0 20px;
  line-height: 1.4;
}

.article-content blockquote {
  background: var(--primary-very-light);
  border-left: 4px solid var(--primary);
  padding: 30px 35px;
  margin: 36px 0;
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.8;
}

.article-content blockquote cite {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-500);
  font-style: normal;
}

.article-content ul {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.article-content ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  line-height: 1.8;
}

.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.article-content figure {
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.article-content figure img {
  width: 100%;
  display: block;
}

.article-content figcaption {
  padding: 16px 24px;
  background: var(--gray-100);
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
}

.article-content strong {
  color: var(--dark);
  font-weight: 700;
}

.article-content a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.article-content a:hover {
  border-bottom-color: var(--primary);
}

/* ===== SHARE ===== */
.article-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
  gap: 20px;
}

.share-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.share-tag {
  padding: 8px 18px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50px;
  font-size: 13px;
  transition: var(--transition);
  cursor: pointer;
}

.share-tag:hover {
  background: var(--primary-very-light);
  color: var(--primary);
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.share-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== RELATED ARTICLES ===== */
.related-articles {
  padding: 100px 0;
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 16px;
  display: block;
}

/* .section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
} */

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  margin: 0 auto;
}

/* .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
} */

.reNewsSwiper .swiper-pagination-bullet {
  background-color: var(--primary-light);
}

.related-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.related-card img {
  width: 100%;
  aspect-ratio: 12/10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-info {
  padding: 24px;
}

.related-date {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.related-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}

.related-card:hover .related-title {
  color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-hero-image {
    padding: 0 20px;
  }

  .article-content h2 {
    font-size: 24px;
  }

  .article-content h3 {
    font-size: 20px;
  }

  .article-content blockquote {
    padding: 24px;
    font-size: 16px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-share {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .article-title {
    font-size: 24px;
  }

  .article-subtitle {
    font-size: 16px;
  }

  .article-meta-top {
    gap: 12px;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-side .news-card {
    grid-template-columns: 120px 1fr;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .featured-side .news-card {
    grid-template-columns: 100px 1fr;
  }

  .featured-main .news-info {
    padding: 24px;
  }

  .featured-main .news-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .featured-side .news-card {
    grid-template-columns: 1fr;
  }

  .featured-side .news-image {
    aspect-ratio: 16/10;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 平板 */

@media(max-width:1200px) {

  .fmen-news-container {
    width: 90%;
  }

  .fmen-news-card {
    width: calc((100% - 34px) / 2);
  }

  .fmen-news-title h2 {
    font-size: 42px;
  }

}

/* 手机 */

@media(max-width:768px) {

  .fmen-news-section {
    padding: 0px 0 40px;
  }

  .fmen-news-container {
    width: 92%;
  }

  .fmen-news-card {
    width: 100%;
    margin-right: 0;
    flex-shrink: 0;
    /* 确保不被压缩 */
  }

  .fmen-news-track {
    gap: 30px;
    /* 与 JS 中的 getGap() 保持一致 */
  }

  .fmen-news-img {
    height: auto;
    aspect-ratio: 1.4/1;
  }

  .fmen-news-title {
    margin-bottom: 40px;
  }

  .fmen-news-title h2 {
    font-size: 30px;
  }

  .fmen-news-title .sub {
    font-size: 18px;
  }

  .fmen-news-info h3 {
    font-size: 18px;
  }

  .fmen-news-info p {
    font-size: 14px;
  }

  .fmen-news-bottom {
    margin-top: 50px;
    gap: 20px;
  }

}




/* 案例 */

.casehero {
  background: url(../../images/case-pic.jpg) no-repeat center / cover;
}

/* Cases Grid */
.cases {
  padding: 80px 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.case-image {
  height: 330px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-image::before {
  content: attr(data-project);
  font-size: 24px;
  color: var(--gray-300);
  font-weight: 600;
  letter-spacing: 4px;
}

.case-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: var(--transition);
}

.case-image img {
  max-height: 100%;
  display: block;
  margin: 0 auto;
}

.case-card:hover .case-image::after {
  opacity: 1;
}

.case-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 2px;
  z-index: 2;
}

.case-content {
  padding: 30px;
}

.case-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--gray-400);
}

.case-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.case-content h3 {
  font-size: 18px;
  color: var(--title);
  margin-bottom: 12px;
  font-weight: 500;
  transition: var(--transition);
}

.case-card:hover .case-content h3 {
  color: var(--primary);
}

.case-content p {
  font-size: 15px;
  color: var(--sec-title);
  line-height: 1.8;
  margin-bottom: 20px;
}

.case-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-spec {
  padding: 4px 12px;
  background: var(--primary-very-light);
  color: var(--primary-dark);
  font-size: 12px;
  border-radius: 2px;
  letter-spacing: 1px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.case-link:hover {
  gap: 15px;
}



/* Partners */
.partners {
  background: var(--gray-100);
  padding: 80px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  align-items: center;
}

.partner-logo {
  height: 80px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray-400);
  transition: var(--transition);
  padding: 20px;
  text-align: center;
}

.partner-logo:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner-btn {
  width: 160px;
  height: 60px;
  border: 1px solid var(--primary);
  margin: 40px auto 0;
  text-align: center;
  line-height: 60px;
  border-radius: 30px;
  overflow: hidden;
  transition: all .5s;
}

.partner-btn a {
  transition: all .5s;
  display: block;
}

.partner-btn:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-color: var(--primary);
}

.partner-btn:hover a {
  color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}


/* 留言区域 */
.fmen-contact-section {
  width: 100%;
  min-height: 680px;
  background: url("../../images/icontact.jpg") left center / cover no-repeat;
  padding: 64px 0 62px;
}

.fmen-contact-wrap {
  width: 84%;
  max-width: 1580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 84px;
  align-items: center;
}

.fmen-contact-text {
  padding-left: 10px;
}

.fmen-contact-text .sub {
  font-size: 24px;
  color: #666;
  margin-bottom: 10px;
}

.fmen-contact-text .sub span {
  color: #7ea943;
  margin-right: 8px;
}

.fmen-contact-text h2 {
  font-size: 46px;
  line-height: 1.2;
  color: #7ea943;
  font-weight: 800;
  margin-bottom: 58px;
}

.fmen-contact-text h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 20px;
}

.fmen-contact-text p {
  width: 360px;
  font-size: 17px;
  color: #777;
  line-height: 1.65;
}

.fmen-contact-text .fmen-contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 198px;
  height: 48px;
  margin-top: 60px;
  background: #83aa43;
  color: #fff;
  font-size: 16px;
  transition: .3s;
}

.fmen-contact-text .fmen-contact-btn:hover {
  background: #6f9637;
}

.fmen-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 42px 34px 46px;
}

.fmen-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 38px;
}

.fmen-form-box input,
.fmen-form-box textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  background: #fff;
  outline: none;
  color: #333;
  font-size: 15px;
  padding: 0 20px;
  font-family: inherit;
}

.fmen-form-box input {
  height: 60px;
}

.fmen-form-box textarea {
  grid-column: 1 / 3;
  height: 160px;
  resize: none;
  padding-top: 18px;
}

.fmen-form-box input::placeholder,
.fmen-form-box textarea::placeholder {
  color: #b8b8b8;
}

.fmen-submit-btn {
  width: 100%;
  height: 48px;
  border: none;
  margin-top: 40px;
  background: #83aa43;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: .3s;
}

.fmen-submit-btn:hover {
  background: #6f9637;
}


/* Page Header */
.breadcrumb {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  color: var(--gray-200);
  font-size: 14px;
  z-index: 2;
  background: transparent;
}

.breadcrumb a {
  color: var(--gray-300);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--gray-500);
}


/* Contact Main */
.contacthero {
  background: url('../../images/contact-pic.jpg') no-repeat center / cover;
}

.contact-main {
  background: var(--gray-100);
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.form-panel {
  background: var(--white);
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-panel h3 {
  font-size: 24px;
  color: var(--title);
  margin-bottom: 8px;
}

.form-panel .subtitle {
  color: var(--sec-title);
  font-size: 15px;
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(132, 168, 70, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(132, 168, 70, 0.3);
}

/* Contact Details Side */
.details-panel h3 {
  font-size: 28px;
  color: var(--title);
  margin-bottom: 15px;
}

.details-panel>p {
  font-size: 16px;
  color: var(--sec-title);
  margin-bottom: 40px;
  line-height: 1.8;
}

.detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-200);
}

.detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.detail-icon {
  width: 55px;
  height: 55px;
  background: var(--primary-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition);
}

.detail-item:hover .detail-icon {
  background: var(--primary);
  color: var(--white);
}

.detail-content h4 {
  font-size: 17px;
  color: var(--title);
  margin-bottom: 8px;
  font-weight: 600;
}

.detail-content p {
  font-size: 15px;
  color: var(--sec-title);
  line-height: 1.7;
  margin-bottom: 5px;
}

.detail-content a {
  color: var(--primary);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.detail-content a:hover {
  color: var(--primary-dark);
}

/* Business Hours */
.business-hours {
  background: var(--dark);
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.business-hours h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}


.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  color: var(--gray-400);
}

.hours-list .time {
  color: var(--gray-500);
}

.hours-list .time.highlight {
  color: var(--gold);
}

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--white);
  padding: 0;
  position: relative;
}

.map-container {
  height: 550px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0;
  padding: 0;
  width: 280px !important;
}

.leaflet-popup-tip {
  background: var(--white);
}

.popup-content {
  padding: 20px;
}

.popup-content h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  color: var(--title);
  margin-bottom: 8px;
}

.popup-content p {
  font-size: 14px;
  color: var(--sec-title);
  margin-bottom: 12px;
  line-height: 1.6;
}

.popup-content .popup-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-very-light);
  color: var(--primary-dark);
  font-size: 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.popup-content .popup-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  transition: var(--transition);
}

.popup-content .popup-btn:hover {
  background: var(--primary-dark);
}

.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  padding: 3px 8px !important;
}

.leaflet-control-attribution a {
  color: var(--primary) !important;
}

.map-overlay-panel {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 500;
  background: var(--white);
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  max-width: 320px;
}

.map-overlay-panel h4 {
  font-size: 20px;
  color: var(--title);
  margin-bottom: 10px;
}

.map-overlay-panel p {
  font-size: 14px;
  color: var(--sec-title);
  margin-bottom: 8px;
  line-height: 1.6;
}

.map-overlay-panel .direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: var(--transition);
}

.map-overlay-panel .direction-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.map-legend {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 500;
  background: var(--white);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.map-legend h5 {
  font-size: 13px;
  color: var(--title);
  margin-bottom: 10px;
  font-weight: 600;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--sec-title);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.headquarters {
  background: var(--primary);
}

.legend-dot.branch {
  background: var(--gold);
}

.legend-dot.factory {
  background: var(--gray-600);
}


/* 加盟 */
.franchise-section,.services-section,.delivery-section{
  padding: 100px 0;
  overflow: hidden;

}
.franchise-section {
  background: var(--white);
}

.section-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.four-centers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.center-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 48px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.center-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.center-card:hover::before {
  transform: scaleX(1);
}

.center-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.center-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--primary-very-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.center-card:hover .center-icon {
  background: var(--primary);
}

.center-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  transition: var(--transition);
}

.center-card:hover .center-icon svg {
  color: var(--white);
}

.center-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 12px;
}

.center-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.center-location {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background: var(--gray-100);
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 20px;
}

.about-desc {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--gray-600);
  line-height: 2;
}

.about-desc strong {
  color: var(--primary);
  font-weight: 700;
}

/* ===== SERVICES ===== */
.services-section {
  background: linear-gradient(180deg, #fafcf7 0%, #f5f9eb 100%);
  color: var(--gray);
  position: relative;
  overflow: hidden;
}

.services-section .section-desc {
  color: var(--gray-400);
}

.services-section .section-label {
  color: var(--primary-light);
}

.services-section .section-label::before,
.services-section .section-label::after {
  background: var(--primary-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 48px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary);
  opacity: 0.1;
  transition: var(--transition);
}

.service-card:hover::after {
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.service-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(132, 168, 70, 0.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-number {
  color: rgba(132, 168, 70, 0.3);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-card h3 svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
}

.service-list li {
  font-size: 14px;
  color: var(--gray-500);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
}

/* ===== DELIVERY ===== */
.delivery-section {
  background: var(--gray-100);
}

.delivery-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.delivery-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.delivery-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.delivery-image:hover img {
  transform: scale(1.05);
}

.delivery-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.6) 0%, transparent 50%);
}

.delivery-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  font-size: 14px;
  letter-spacing: 2px;
}

.delivery-info h2 {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  color: var(--title);
  margin-bottom: 24px;
  line-height: 1.3;
}

.delivery-info h2 span {
  color: var(--primary);
}

.delivery-info>p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 40px;
  line-height: 1.8;
}

.delivery-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  transition: var(--transition);
}

.timeline-item:hover {
  padding-left: 12px;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-marker {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  transition: var(--transition);
}

.timeline-item:hover .timeline-marker {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.timeline-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--gray-500);
}

.timeline-note {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: var(--primary-very-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

/* ===== GUARANTEE ===== */
.guarantee-section {
  background-image: url(../../images/franchise-pic.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.guarantee-section .section-title {
  color: var(--white);
}

.guarantee-section .section-desc {
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 40px;
}

.guarantee-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 48px 60px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 4px;
}

.guarantee-box h3 {
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.guarantee-box p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

.guarantee-box strong {
  font-size: 24px;
  display: block;
  margin-top: 12px;
  letter-spacing: 1px;
}

/* ===== CTA / CONTACT ===== */
.delivery-cta-section {
  background: var(--dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.delivery-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(100px);
}

.delivery-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.delivery-cta-left h2 {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.delivery-cta-left h2 span {
  color: var(--primary);
}

.delivery-cta-left p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 100px;
}

.delivery-cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--gray-500);
  letter-spacing: 1px;
}

.delivery-cta-form {
  background: var(--dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
  border-radius: 4px;
}

.delivery-cta-form h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.delivery-cta-form>p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.delivery-form-group {
  margin-bottom: 20px;
}

.delivery-form-group label {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 8px;
  font-weight: 500;
}

.delivery-form-group input,
.delivery-form-group select,
.delivery-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  border-radius: 4px;
  transition: var(--transition);
  outline: none;
}

.delivery-form-group input:focus,
.delivery-form-group select:focus,
.delivery-form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.delivery-form-group input::placeholder,
.delivery-form-group textarea::placeholder {
  color: var(--gray-600);
}

.delivery-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.delivery-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
  margin-top: 8px;
}

.delivery-form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(132, 168, 70, 0.25);
}








/* 底部 */
.footer {
  background: #303030;
  color: #fff;
}

.footer-main {
  width: 84%;
  max-width: 1580px;
  margin: 0 auto;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  width: 286px;
}

.footer-nav {
  display: flex;
  gap: 78px;
  font-size: 16px;
}

.footer-nav a {
  color: #fff;
  transition: .3s;
}

.footer-nav a:hover {
  color: #83aa43;
}

.footer-line {
  height: 1px;
  background: #5f7736;
}

.footer-info {
  width: 84%;
  max-width: 1580px;
  margin: 0 auto;
  min-height: 270px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.footer-contact p {
  font-size: 16px;
  line-height: 2;
}

.qr-list {
  display: flex;
  align-items: center;
  gap: 78px;
}

.qr-list img {
  width: 118px;
  height: 118px;
  object-fit: cover;
}

.copyright {
  border-top: 1px solid #5f7736;
  height: 58px;
  display: grid;
  grid-template-columns: 1.5fr .7fr .9fr .8fr auto;
  align-items: center;
  gap: 28px;
  color: #8b8b8b;
  font-size: 14px;
}

.copyright a {
  color: #8b8b8b
}

.coyright img {
  width: 20px;
}


.text-c {
  text-align: center;
  margin-top: 30px;
}

.text-c span {
  background: var(--primary);
  padding: 3px 8px;
  color: #fff;
}

.text-c a {
  padding: 3px 8px;
  background: var(--gray-100);
}

/* 响应式 */
@media(max-width:1200px) {
  .fmen-contact-wrap {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fmen-contact-text {
    padding-left: 0;
  }

  .fmen-contact-text h2 {
    margin-bottom: 30px;
  }

  .fmen-contact-text .fmen-contact-btn {
    margin-top: 34px;
  }

  .footer-main,
  .footer-info,
  .footer-copy {
    width: 90%;
  }

  .footer-nav {
    gap: 36px;
  }

  .product-meta-tags p span {
    display: block;
    margin-bottom: 10px;
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number{font-size: 32px;}
}

@media(max-width:900px) {
  .footer-main {
    height: auto;
    padding: 38px 0;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 22px 34px;
  }

  .footer-info {
    grid-template-columns: 1fr;
    padding: 38px 0;
    gap: 36px;
  }

  .qr-list {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-copy {
    height: auto;
    padding: 20px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fmen-banner {
    height: 40vh;
  }

  .banner-text p {
    display: none;
  }

  .profeature-wrap {
    display: block;
  }

  .profeature-image {
    display: none;
  }

  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutHero {
    height: 60vh;
  }
  .four-centers{grid-template-columns: repeat(2, 1fr);}
}

@media(max-width:640px) {
  .footer-nav {
    display: none;
  }

  .fmen-contact-section {
    padding: 48px 0;
  }

  .fmen-contact-wrap {
    width: 92%;
  }

  .fmen-contact-text .sub {
    font-size: 18px;
  }

  .fmen-contact-text h2 {
    font-size: 34px;
  }

  .fmen-contact-text h3 {
    font-size: 20px;
  }

  .fmen-contact-text p {
    width: 100%;
    font-size: 15px;
  }

  .fmen-contact-text .fmen-contact-btn {
    width: 170px;
    height: 50px;
    font-size: 16px;
  }

  .fmen-form-box {
    padding: 26px 18px;
    border-radius: 16px;
  }

  .fmen-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fmen-form-box textarea {
    grid-column: auto;
    height: 140px;
  }

  .submit-btn {
    margin-top: 22px;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-contact p {
    font-size: 14px;
  }

  .qr-list img {
    width: 96px;
    height: 96px;
  }

  .bannerGreen {
    padding: 20px 30px;
  }

  .fmen-adv-item {
    transform: translateY(0);
  }

  .copyright {
    height: auto;
    display: block;
  }

  .copyright span {
    display: block;
  }

  .aboutHero {
    height: 50vh;
    min-height: unset;
  }

  .about-intro {
    padding: 40px 0;
  }

  .intro-image-main {
    height: auto;
  }

  .global-network,
  .vision {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .certifications {
    padding: 40px 0;
  }

  .hero {
    height: 45vh
  }

  .cases {
    padding: 40px 0;
  }

  .case-image {
    height: auto;
  }

  .case-content h3 {
    line-height: 30px;
  }

  .products {
    padding: 40px 0 0;
  }

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

  .breadcrumb-bar .breadcrumb {
    left: 0;
    flex-wrap: wrap;
  }

  .product-meta-tags {
    margin-bottom: 30px;
  }

  .specs-section,
  .features-section,
  .related-section {
    padding: 40px 0;
  }

  .featured-news {
    padding: 40px 0 0;
  }

  .related-articles,
  .partners {
    padding: 40px 0;
  }

  .breadcrumb {
    left: 0;
    transform: translateX(0);
  }

  .contact-main {
    padding: 40px 0;
  }

  .contact-wrapper {
    display: block;
  }

  .form-row {
    display: block;
  }
  .four-centers{
    grid-template-columns: 1fr;
  }
  .franchise-section, .services-section, .delivery-section{padding: 40px 0;}
  .section-inner{padding:0 20px;}
  .services-grid{
    grid-template-columns: 1fr;
  }
  .service-card{padding: 30px 20px;}
  .delivery-content{grid-template-columns: 1fr;gap: 30px;}
  .delivery-image img{height: 240px;}
  .guarantee-section{padding: 40px 0;}
  .delivery-cta-left p{margin-bottom: 40px;}
  .delivery-cta-section{
    padding:40px 0;
  }
  .delivery-cta-content{grid-template-columns: 1fr;gap: 30px;}
  .stat-number{font-size: 26px;}
  .delivery-cta-form{padding:20px;}
}