/* ===== Fonts ===== */
@font-face {
  font-family: 'PingFang';
  src: url('../fonts/PingFangMedium_downcc.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'PingFang';
  src: url('../fonts/PingFangSCThin.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}


@font-face {
  font-family: 'Muli';
  src: url('../fonts/TTRuiHeiJ-W4.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #3d9e4f;
  --green-dark: #1b3022;
  --green-light: #4caf50;
  --green-bg: #2d6a3e;
  --text-dark: #333;
  --text-gray: #666;
  --text-light: #999;
  --white: #fff;
  --red-accent: #4caf50;
  --header-h: 90px;
  --header-h-large: 90px;
  --logo-h-large: 152px;
  --logo-h-small: 64px;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;

}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  font-family:"microsoft yahei";
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
/*  display: block;*/
}

.anchor {
  position: absolute;
  top: -var(--header-h);
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 0px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.btn-submit {
  background: var(--green-light);
  color: var(--white);
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: 4px;
  font-size: 16px;
}

.btn-submit:hover {
  background: var(--green);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1000;
  box-shadow: none;
  overflow: visible;
  transition: height 0.35s ease, background 0.35s, box-shadow 0.35s;
}

.header.scrolled {
  height: var(--header-h);
}

.header.scrolled,
.header:hover,
.header.dropdown-active,
.header:has(.nav-item.has-dropdown:hover),
.header.search-open {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1250px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0px;
  gap: 20px;
  overflow: visible;
}

.logo {
  flex-shrink: 0;
  line-height: 1.2;
  position: relative;
  z-index: 1001;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: visible;
  align-self: center;
  margin-top: 0;
  max-width: 420px;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  transform: none;
  transform-origin: left center;
  transition: height 0.35s ease;
  will-change: height;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.logo-cn {
  font-size:22px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing:0.4px;
  transition: color 0.35s ease, font-size 0.35s ease;
}

.logo-en {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  letter-spacing: 0px;
  transition: color 0.35s ease, font-size 0.35s ease;
}

.header.scrolled .logo img,
.header:hover .logo img,
.header.dropdown-active .logo img,
.header:has(.nav-item.has-dropdown:hover) .logo img,
.header.search-open .logo img {
  height: 60px;
  transform: none;
}

.header.scrolled .logo-cn,
.header:hover .logo-cn,
.header.dropdown-active .logo-cn,
.header:has(.nav-item.has-dropdown:hover) .logo-cn,
.header.search-open .logo-cn {
  color: var(--text-dark);
  font-size:20px; letter-spacing:0.8px;
}

.header.scrolled .logo-en,
.header:hover .logo-en,
.header.dropdown-active .logo-en,
.header:has(.nav-item.has-dropdown:hover) .logo-en,
.header.search-open .logo-en {
  color: var(--text-gray);
  font-size: 13px; line-height:20px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-self: center;
}

.nav-list {
  display: flex;
  gap: 36px;
}

.nav-item {
  position: static;
}

.nav-item > a {
  font-size:16px;
  color: var(--white);
  position: relative;
  padding: 4px 8px;
  transition: color 0.3s;
  display: block;
}

.header.scrolled .nav-item > a,
.header:hover .nav-item > a,
.header.dropdown-active .nav-item > a,
.header:has(.nav-item.has-dropdown:hover) .nav-item > a {
  color: var(--text-dark);
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-item > a:hover,
.nav-item > a.active {
  color: var(--green);
}

.nav-lang {
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border-radius: 50%;
  background: var(--green);
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  box-sizing: border-box;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}
.nav-lang::after {
  display: none !important;
}
.nav-lang:hover,
.nav-item > a.nav-lang:hover,
.nav-item > a.nav-lang.active {
  background: #348a44;
  color: #fff !important;
  transform: scale(1.06);
}
.header.scrolled .nav-item > a.nav-lang,
.header:hover .nav-item > a.nav-lang,
.header.dropdown-active .nav-item > a.nav-lang,
.header:has(.nav-item.has-dropdown:hover) .nav-item > a.nav-lang {
  color: #fff !important;
  background: var(--green);
}

.nav-item > a:hover::after,
.nav-item > a.active::after {
  width: 100%;
}

/* ===== Dropdown Panel ===== */
.dropdown-panel {
  position: fixed;
  top: var(--header-h-large);
  left: 0;
  right: 0;
  background: #f5f8fa;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, top 0.35s ease;
  z-index: 999;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.header.scrolled .dropdown-panel {
  top: var(--header-h);
}

.nav-item.has-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1532187863486-abf9db881ad8?w=1600&h=400&fit=crop') center/cover;
  opacity: 0.06;
}

.dropdown-watermark {
  position: absolute;
  bottom: 20px;
  left: 60px;
  font-size: 28px;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1.6;
  font-weight: 300;
  pointer-events: none;
  white-space: nowrap;
}

.dropdown-inner {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 40px 30px 50px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.dropdown-left {
  flex: 1;
}

.dropdown-title {
  font-size: 25px;
  font-weight: 700;
  color: var(--text-dark);
}

.dropdown-desc {
  font-size: 15px;
  color:#afafaf;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 650px;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 20px;
}

.dropdown-grid--news {
  grid-template-columns: repeat(3, 1fr);
  max-width: 600px;
}

.dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 15px; 
  color: var(--text-dark);
  transition: all 0.25s;

}

.dropdown-grid a:hover {
  color: var(--green); padding-left:15px; 

}

.dropdown-arrow {
  color: #bbb;
  font-size: 16px;
  transition: color 0.25s;
}

.dropdown-grid a:hover .dropdown-arrow {
  color: var(--green);
}

.dropdown-right {
  flex-shrink: 0;
  width: 320px; padding-top:17px;
}

.dropdown-right img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  align-self: center;
}

.search-btn.active {
  color: var(--green);
}

.header.scrolled .search-btn,
.header:hover .search-btn,
.header.dropdown-active .search-btn,
.header:has(.nav-item.has-dropdown:hover) .search-btn,
.header.search-open .search-btn {
  color: var(--text-gray);
}

.header.search-open .search-btn.active,
.search-btn:hover {
  color: var(--green);
}

/* Search Overlay - reference style */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-bar {
  display: flex;
  width: 70%;
  max-width: 800px;
  min-width: 320px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.35s ease;
}

.search-overlay.open .search-bar {
  transform: translateY(0);
}

.search-input {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 0 24px;
  border: none;
  background: var(--white);
  font-size: 16px;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
}

.search-input::placeholder {
  color: #aaa;
}

.search-submit {
  height: 56px;
  padding: 0 48px;
  background: var(--green);
  color: var(--white);
  border: none;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
  letter-spacing: 2px;
}

.search-submit:hover {
  background: var(--green-dark);
}

body.search-active {
  overflow: hidden;
}

.header.search-open .nav-item > a {
  color: var(--text-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  align-self: center;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.header.scrolled .menu-toggle span,
.header:hover .menu-toggle span {
  background: var(--text-dark);
}

/* ===== Banner (Swiper) ===== */
.banner {
  position: relative;
}

.banner_aa {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: hidden;
}

.index-banner-swiper {
  position: relative;
  background: #000;
  height: auto;
  z-index: 1;
}

.banner-slide {
  position: relative;
  height: auto !important;
  min-height: 0;
  overflow: hidden;
}

.banner-slide .banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.banner-slide .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(10,121,145, 0.03) 28%,
    rgba(0,106,147, 0.02) 48%,
    rgba(3,116,114, 0) 58%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.banner-slide .txt {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  max-width: 980px;
  margin: 0;
  padding:68px 68px;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 33;
  background: linear-gradient(
    90deg,
    rgba(0,80,162, 0) 0%,
    rgba(0,80,162, 0.3) 28%,
    rgba(0,80,162, 0.5) 48%,
    rgba(0,80,162, 0.3) 58%,
    rgba(0,80,162,  0) 100%
  );
}

.banner-slide .txt h1 {
  font-size: 40px;
  color: #d33700;
  margin: 0 0 30px;
  padding: 0 0 20px;
  position: relative;
  display: inline-block;
  font-weight: 700;
  line-height: 1.35; letter-spacing:3px;
  -webkit-text-stroke: 1px #fff;
  paint-order: stroke fill;
  text-shadow:.2rem 0rem .5rem #fff,-.2rem 0rem .5rem #fff,0rem .2rem .5rem #fff,0rem -.2rem .5rem #fff;

  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 1), opacity 0.8s;
  transition-delay: 0.25s;
}

.banner-slide .txt h1::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #d33700;

  transition: width 0.8s 0.6s;
}

.banner-slide .txt h4 {
  font-size: 20px;
  color: #ff9000;
  padding: 0;
  margin: 0;
  font-weight: 900;
  line-height: 1.5;
 -webkit-text-stroke: 0.8px (0, 0, 0, 0.8);
  paint-order: stroke fill;
 text-shadow:.2rem 0rem .2rem  rgba(0, 0, 0, 0.5),-.2rem 0rem .2rem  rgba(0, 0, 0, 0.5),0rem .2rem .2rem  rgba(0, 0, 0, 0.5),0rem -.2rem .2rem  rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 1), opacity 0.8s;
  transition-delay: 0.45s;
}

.index-banner-swiper .swiper-slide-active .txt h1,
.index-banner-swiper .swiper-slide-active .txt h4 {
  transform: translateY(0);
  opacity: 1;
}

.index-banner-swiper .swiper-slide-active .txt h1::after {
  width: 100%;
}

.banner-slide:not(.swiper-slide-active) .txt h1,
.banner-slide:not(.swiper-slide-active) .txt h4 {
  transition-duration: 0.3s;
  transition-delay: 0s;
}

.banner-slide:not(.swiper-slide-active) .txt h1::after {
  width: 0;
  transition-delay: 0s;
}

.swiper-banner-pagination {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: 28px !important;
  width: auto !important;
  transform: translateX(-50%);
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 90;
}

.swiper-banner-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  margin: 0 !important;
}

.swiper-banner-pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: scale(1.15);
}

.swiper-banner-pagination .swiper-pagination-bullet::after {
  display: none;
}

.index-banner-swiper .banner-nav-btn {
  width: 48px;
  height: 48px;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  color: #fff;
  z-index: 90;
  transition: background 0.25s, transform 0.25s;
}

.index-banner-swiper .banner-nav-btn::after {
  font-size: 18px;
  font-weight: 700;
}

.index-banner-swiper .swiper-button-prev {
  left: 24px;
}

.index-banner-swiper .swiper-button-next {
  right: 24px;
}

.index-banner-swiper .banner-nav-btn:hover {
  background: rgba(61, 158, 79, 0.9);
}

@keyframes bannerProgress {
  0% { width: 0; background: var(--green); }
  100% { width: 100%; background: #fff; }
}

/* Float bar */
.float-bar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.float-item {
  width: 56px;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  transition: filter 0.25s, background 0.25s;
}

.float-tel,
.float-form-btn {
  background: #1e6fd9;
}

.float-top {
  background: #3a3a3a;
  padding: 14px 0;
}

.float-item:hover {
  filter: brightness(1.08);
}

.float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* legacy hero kept for compatibility */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video,
.hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.0) 20%,
    transparent 50%,
    transparent 75%,
    rgba(0, 0, 0, 0.0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ===== About ===== */
.about {
  position: relative;
  padding: 50px 0 55px;
  background: var(--white);
  overflow: visible;
}

.about-layout {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(24px, calc((100vw - 1250px) / 2));
  padding-right: 0;
}

.about-layout-text {
  max-width: 700px;
/*  width: calc(50% - 0px);*/
  padding-right: 48px;
  position: relative;
  z-index: 3;
   padding-top:80px; padding-bottom:80px;
}

.about-deco-bl {
  position: absolute;
  left: -2%;
  bottom: 0;
  transform: translateY(50%);
  z-index: 0;
  pointer-events: none;
}

.about-deco-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(186, 220, 168, 0.52);
  transform: translate(-28%, -18%);
  z-index: 1;
}

.about-deco-circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: url('../images/ab1.jpg') center/cover;
  background-size: 100%;
  background-position: center -40%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about-deco-dot {
  position: absolute;
  right:-80px;
  top: 22%;
  transform: translateY(-50%);
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #b8ddb0;
  box-shadow: 0 4px 16px rgba(184, 221, 176, 0.45);
  z-index: 3;
}

.about-bg-pattern {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  opacity: 0.06;
  pointer-events: none;
}

.about-en {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

.about-title {
  font-size:35px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.about-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--green-light);
  margin-bottom: 28px;
}

.about-text .b1 {
  color: var(--text-gray);
  font-size: 18px;
  margin-bottom: 8px; letter-spacing:5px;
  line-height: 2;
  text-align: justify;
}


.about-text p {
  color: var(--text-gray);
  font-size: 15px;
  line-height:28px;
  text-align: justify;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 7px 20px 7px 28px;
    background: var(--green);
  color: var(--white);
  font-size: 15px;
  transition: background 0.3s;
}

.about-btn:hover {
 background:#ffca00;
}

.about-btn-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About visual - circular cluster reveal */
.about-visual {
  position: absolute;
  top:53px;
  left:58%;
  right: 0;
  width: auto;
  overflow: hidden;
  z-index: 2;
}

.about-reveal-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.2s ease, transform 3.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.about-visual.is-visible .about-reveal-track {
  opacity: 1;
  transform: translateX(0);
}

.about-visual-img {
  display: block;
  width: min(520px, 65%);
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.35s;
}

.about-visual.is-visible .about-visual-img {
  opacity: 1;
  transform: scale(1);
}

.about-circles {
  position: relative;
  width: min(520px, 65%);
  height: min(480px, 100%);
  margin: 0 auto;
}

.about-leaves {
  position: absolute;
  inset:-5% 10% -0% 15%;
  width: 116%;
  height: 112%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
}

.about-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 1;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual.is-visible .about-circle {
  opacity: 1;
  transform: scale(0.8);
}

.about-circle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-circle--lg {
  top: 0;
  right: 0;
  width: 54%;
  aspect-ratio: 1;
  z-index: 3;
  transition-delay: 0.35s;
}

.about-circle--lg img {
  object-position: center 40%;
}

.about-circle--left {
  top:50%;
  left: 25%;
  width: 38%;
  aspect-ratio: 1;
  z-index:99;
  transition-delay: 0.55s;
}

.about-circle--br {
  top:65%;
  right:0%;
  width: 40%;
  aspect-ratio: 1;
  z-index: 4;
  transition-delay: 0.7s;
}

.about-circle--br img {
  object-position: center 35%;
}

/* About categories - hexagon icons */
.about-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
  padding-top: 48px;
  margin-top: 8px;
  position: relative;
  z-index: 3;
}

.about-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-align: left;
  text-decoration: none;
  color: #2b2620;
  transition: color 0.3s ease;
}

.about-cat-hex {
  width: 68px;
  height: 76px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: #fff;
  background: #2b2620;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-cat-hex svg,
.about-cat-hex img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.about-cat-hex img {
  filter: brightness(0) invert(1);
}

.about-cat-text {
  flex: 1;
  min-width: 0;
}

.about-cat-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 2px;
  transition: color 0.3s ease;
}

.about-cat-sub {
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.85;
  transition: color 0.3s ease;
}

.about-cat.is-active,
.about-cat:hover {
  color: #4caf50;
}

.about-cat.is-active .about-cat-hex,
.about-cat:hover .about-cat-hex {
  background: #4caf50;
  transform: translateY(-4px);
}

.about-cat.is-active .about-cat-title,
.about-cat.is-active .about-cat-sub,
.about-cat:hover .about-cat-title,
.about-cat:hover .about-cat-sub {
  color: #4caf50;
}

/* ===== Product Center (图1 layout) ===== */
.pc {
  --pc-accent: var(--green);
  --pc-bg: #f0f0f0;
  --pc-text: #333;
  --pc-muted: #888;
  background:#f7f7f7;
  padding: 56px 0 70px;
}

.pc-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 0px;
}

.pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pc-title {
  font-size: 35px;
  font-weight: 700;
  color: #222;
  margin: 0;
  letter-spacing: 1px;
}

.pc-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 5px 22px;
  border: 1px solid var(--pc-accent);
  background: var(--pc-accent);margin-top:30px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, opacity 0.25s; 
}

.pc-more-btn:hover {
  opacity: 0.92;
  filter: brightness(1.05);
}

.pc-feature {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  background: #ededed;
  min-height: 360px;
  overflow: hidden;
}

.pc-feature-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  background: #ededed;
}

.pc-feature-media img {
  display: block;
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pc-feature-body {
  display: flex;
  flex-direction: column;
  padding: 48px 56px 48px 40px;
}

.pc-feature-en {
  font-size: 13px;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.pc-feature-name {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  line-height: 1.35;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pc-feature-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin: 0 0 28px;
}

.pc-thumb-detail {
  display: none !important;
}

.pc-feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 140px;
  padding: 12px 28px;
  border: 1px solid #bbb;
  background: transparent;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.pc-feature-btn:hover {
  border-color: var(--pc-accent);
  color: var(--pc-accent);
  background: rgba(61, 158, 79, 0.06);
}

.pc-carousel {
  position: relative;
  margin-top: 20px;
  padding: 0;
}

.pc-scroll {
  overflow: hidden;
  width: 100%;
}

.pc-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pc-progress.is-dragging ~ .pc-scroll .pc-grid,
.pc-carousel:has(.pc-progress.is-dragging) .pc-grid {
  transition: none;
}

.pc-progress {
  margin-top: 28px;
  padding: 12px 0;
  cursor: grab;
  display: block;
  width: 100%;
  touch-action: none;
  user-select: none;
}

.pc-progress.is-dragging {
  cursor: grabbing;
}

.pc-progress-track {
  position: relative;
  width: 100%;
  max-width: none;
  height: 4px;
  margin: 0;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  overflow: visible;
}

.pc-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background: var(--green-light, #00a2fb);
  border-radius: 4px;
  transition: left 0.35s ease;
  pointer-events: none;
}

.pc-progress.is-dragging .pc-progress-bar {
  transition: none;
}

.pc-thumb {
  display: flex;
  flex-direction: column;
  flex: 0 0 297px;
  width: 297px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  text-align: left;
  transition: box-shadow 0.3s; border-bottom:#dae8df solid 3px;
}

.pc-thumb:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pc-thumb-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height:200px;
  padding: 15px;
  background: #fff;
}

.pc-thumb-img img {
  display: block;
  max-width: 100%;
  max-height:200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pc-thumb-foot {
  width: 100%;
  box-sizing: border-box;
  padding: 18px 20px 30px;

  border-top: none;
  transition: filter 0.3s;
}

.pc-thumb:hover .pc-thumb-foot,
.pc-thumb.is-active .pc-thumb-foot {
  filter: brightness(1.08);
}

.pc-thumb-name {
  font-size: 16px;
  font-weight: 600;

  line-height: 1.45;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-thumb-meta {
  display: block;
  font-size: 13px;

}

/* legacy feature block kept for other pages if needed */
.feature {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 470px;
  background:url(../images/cp.png) center center / cover no-repeat;
}

.feature-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 72, 42, 0.82) 0%,
    rgba(34, 88, 50, 0.76) 50%,
    rgba(40, 96, 56, 0.72) 100%
  );
}

.feature-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 450px;
  z-index: 1;
  opacity: 0.25;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
  pointer-events: none;
}

.feature-inner {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  margin: 0 auto;
  padding: 70px 60px 0px;
}

.product-center-head {
  text-align: center;
  color: var(--white);
}

.product-center-sub {
  font-size:35px;
  letter-spacing: 4px;
  margin: 0 0 0px;
  opacity: 1;
  font-weight:900
}

.product-center-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 0 0 0px;
  font-family: Arial, Helvetica, sans-serif;
}

.product-center-desc {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height:45px;
  opacity: 0.88; letter-spacing:5px;
}

.product-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 24px;
  margin-top:35px;
}

.product-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 6px 15px;
  border: none;
  background: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s ease, transform 0.3s ease;
}

.product-cat:hover,
.product-cat.is-active {
  transform: translateY(-4px);
}

.product-cat-icon {
  position: relative;
  width: 62px;
  height: 62px;
  transform: rotate(45deg);
  border: 2px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-cat:hover .product-cat-icon,
.product-cat.is-active .product-cat-icon {
  border-color: #ffba00;
  box-shadow: 0 0 16px rgba(255, 186, 0, 0.45);
}

.product-cat-img {
  position: absolute;
  width: 48px;
  height: 48px;
  transform: rotate(-45deg);
  object-fit: contain;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-cat-img.is-hover {
  opacity: 0;
}

.product-cat:hover .product-cat-img.is-normal,
.product-cat.is-active .product-cat-img.is-normal {
  opacity: 0;
}

.product-cat:hover .product-cat-img.is-hover,
.product-cat.is-active .product-cat-img.is-hover {
  opacity: 1;
}

.product-cat-name {
  font-size: 16px;
  line-height:30px;
  font-weight:900; padding-top:10px; padding-bottom:10px;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 1);
  transition: color 0.3s ease;
}

.product-cat:hover .product-cat-name,
.product-cat.is-active .product-cat-name {
  color: #ffba00;
}

.product-center-more {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top:30px;
  margin-bottom: -22px;
}

.product-more-btn {
  display: inline-block;
  min-width: 140px;
  padding: 12px 44px;
  border-radius: 999px;
  background: #934652;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.product-more-btn:hover {
  background: #a5525f;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}

.product-panel {
  position: relative;
  z-index: 2;
  background:#eef4f2;
  background-size:100%;
  padding:70px 0 130px; height:608px;
}

.product-panel-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 0px;
}

.product-banner {
  width: 100%;
  margin-top: 32px;
  overflow: hidden;
  line-height: 0;
}

.product-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.product-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 40px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  list-style: none;
  margin: 0;
}

.product-scroll::-webkit-scrollbar {
  height: 6px;
}

.product-scroll::-webkit-scrollbar-thumb {
  background: rgba(76, 175, 80, 0.45);
  border-radius: 3px;
}

.product-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
}

.product-card {
  flex: 0 0 280px;
  width: 280px;
  scroll-snap-align: start;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 0;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-bottom: 4px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease, border-bottom-color 0.35s ease;
  min-height: 100%;
}

.product-card:hover .product-card-body {
  border-bottom-color: #4caf50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-card-img {
  order: 1;
  padding: 16px 16px 8px;
  text-align: center;
}

.product-card-img img {
  display: inline-block;
  max-width: 100%;
  height: 180px;
  max-height: 180px;
  border-radius: 5px;

}

.product-card-info {
  order: 2;
  padding: 8px 16px 20px;
}

.product-card-name {
  display: block;
  font-size: 17px;
  line-height: 1.5;
  color: #087259;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-card-meta {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  min-height: 44px;
}

.product-card-btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  font-size: 14px;
  line-height: 33px;
  text-align: center;
  color: var(--white);
  background: #4caf50;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.product-card:hover .product-card-btn {
  background: #3d9140;
}

/* ===== Group Map ===== */
.group-map {
  background: var(--white);
}

.group-map-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 560px;
}

.group-map-side {
  background: linear-gradient(180deg, #1e4206 0%, #1e4206 100%);
  color: var(--white);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
}

.group-map-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.group-map-logo {
  width:50px;
  height: auto;
/*  filter: brightness(0) invert(1);*/
}

.group-map-brand-en {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 2px;
}

.group-map-brand-cn {
  font-size:25px;
  font-weight: 600;
}

.group-map-side-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 28px;
}

.group-map-icon {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 34px;
  margin-bottom: 18px;
}

.group-map-icon span {
  display: block;
  width: 8px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
}

.group-map-icon span:nth-child(1) { height: 14px; }
.group-map-icon span:nth-child(2) { height: 22px; }
.group-map-icon span:nth-child(3) { height: 30px; }

.group-map-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}

.group-map-desc {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: auto;
}

.group-map-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  margin-bottom: 12px;
}

.group-map-counter {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 2px;
}

.group-map-arrows {
  display: flex;
  gap: 10px;
}

.group-map-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.group-map-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.group-map-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.group-map-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.group-map-stage {
  position: relative;
  flex: 1;
  min-height: 460px;
  overflow: hidden;
  background: #1a2e24;
}

.group-map-panel {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(8%) scale(0.96);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
  visibility: hidden;
}

.group-map-panel.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
  pointer-events: auto;
  visibility: visible;
}

.group-map-panel.is-prev {
  opacity: 0.35;
  transform: translateX(-12%) scale(0.9);
  z-index: 2;
  visibility: visible;
}

.group-map-panel.is-next {
  opacity: 0.35;
  transform: translateX(12%) scale(0.9);
  z-index: 2;
  visibility: visible;
}

.group-map-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 24, 18, 0.35) 0%, rgba(10, 24, 18, 0.2) 45%, rgba(10, 24, 18, 0.35) 100%);
}

.group-map-panel-content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--white);
  max-width: 620px;
}

.group-map-panel-type {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.group-map-panel-name {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
}

.group-map-panel-en {
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.75;
  margin-bottom: 18px;
}

.group-map-panel-address {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.88;
  max-width:100%;
}

.group-map-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #eef3ef;
}

.group-map-tab {
  border: none;
  background: transparent;
  padding: 16px 10px;
  text-align: left;
  cursor: pointer;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s, color 0.3s;
}

.group-map-tab:last-child {
  border-right: none;
}

.group-map-tab-num {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
}

.group-map-tab-name {
  display: block;
  font-size: 15px;
  color: #444;
  line-height: 1.4;
}

.group-map-tab.is-active {
  background: #c8dcc0;
}

.group-map-tab.is-active .group-map-tab-num,
.group-map-tab.is-active .group-map-tab-name {
  color: #1b3022;
  font-weight: 600;
}

.group-map-tab:hover:not(.is-active) {
  background: rgba(76, 175, 80, 0.08);
}

/* ===== Cases ===== */
.cases {
  padding: 70px 0 80px;
  background: var(--white);
}

.cases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}

.cases-header .section-heading {
  margin-bottom: 0;
  flex-shrink: 0;
}

.cases-slogan {
  font-size: 25px;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1.9;
  max-width: 50%;
  text-align: right;
  margin: 0;
  padding-top: 7px; font-weight:900
}

.section-heading {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.heading-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red-accent);
  margin-top: 10px;
}

.cases-main {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: 1fr auto;
  margin-bottom: 0;
  min-height: 460px;
}

.cases-info {
  grid-column: 1;
  grid-row: 1;
  background: #2c2c2c;
  color: var(--white);
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.cases-en {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  opacity: 0.35;
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
}

.cases-cn {
  font-size: 23px;
  font-weight: 600;
  display: block;
  margin-bottom: 24px;
}

.cases-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height:25px;
  margin: 0; padding-right:8px;
}

.cases-more {
  display: inline-block;
  align-self: flex-start;
  margin-top: 20px;
  padding: 3px 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
}

.cases-location {
  position: relative;
  margin: 0;
  padding: 40px 28px;
  background: #2e8b32;
  display: flex;
  align-items: center;
  gap: 17px;
  flex-shrink: 0;
}


.cases-location-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.cases-location-text {
  font-size:16px;
  line-height: 1.5;
  margin: 0;
  color: var(--white);
}

.cases-image {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: visible;
}

.cases-img-label {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding:12px 28px;
  background: #227a26;
color: rgba(255, 255, 255, 1);
  font-size:18px!important;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  width:100%; text-align:center;
}

.cases-bottom {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 300px 1fr;

}

.cases-bottom-left {
  background: #2c2c2c;
  display: flex;
  flex-direction: column;
}

.cases-bottom-right {
  position: relative;
  height: 100%;
  overflow: visible;
}

.cases-carousel-bar {
  position: absolute;
  inset: 0;
  background: #f0f0f0;
  z-index: 0;
}

.cases-carousel-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(-46px);
  z-index: 3;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cases-carousel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 12px;
  pointer-events: auto;
}

.cases-img-main {
  width: 100%;
  height: 100%;
  min-height: 460px;
  background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=900&h=500&fit=crop') center/100%;
  transition: background-image 0.5s ease;
}

.cases-more:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.cases-page-nav {
  position: absolute;
  right: 28px;
  top: 24px;
  z-index: 2;
  display: flex;
  gap: 24px;
}

.cases-page-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.cases-page-nav a:hover {
  color: var(--white);
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.carousel-prev {
  background: #4a4a4a;
  color: var(--white);
}

.carousel-prev:hover {
  background: #333;
}

.carousel-next {
  background: var(--green-light);
  color: var(--white);
}

.carousel-next:hover {
  background: var(--green);
}

.carousel-thumbs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.thumb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: width 0.4s ease, height 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, border-width 0.4s ease;
  flex-shrink: 0;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.thumb[data-dist="0"] {
  width: 92px;
  height: 92px;
  border: 4px solid var(--green-light);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.thumb[data-dist="1"] {
  width: 68px;
  height: 68px;
}

.thumb[data-dist="2"] {
  width: 52px;
  height: 52px;
}

.thumb:hover:not([data-dist="0"]) {
  border-color: var(--green-light);
}

/* ===== Advantages ===== */
.advantages {
  position: relative;
  height: 630px;
  min-height: 630px;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.advantages-pan {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: #3d6f94;
}

.advantages-pan-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  will-change: transform;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.advantages-pan-inner.is-ready {
  opacity: 1;
}

.advantages-pan-img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.advantages-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  opacity: 0;
}

.advantages.advantages-mouse-pan {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.advantages.advantages-dragging,
.advantages.advantages-dragging * {
  cursor: grabbing !important;
}

.advantages .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.advantages-diagram {
  position: relative;
  width: 100%;
  max-width: 1250px;
  height: 630px;
  margin: 0 auto;
}

.adv-rings-wrap,
.adv-rings-emit,
.adv-ring-wave,
.adv-rings,
.adv-ring-static,
.adv-arc-spin,
.adv-ring-arc {
  display: none;
}

.adv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 420px;
  max-width: 90%;
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.adv-text-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.adv-text-ring-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.adv-text-ring-circle {
  opacity: 0.85;
}

.adv-text-ring-circle--inner {
  animation: advDashRoll 14s linear infinite;
}

@keyframes advDashRoll {
  to {
    stroke-dashoffset: -880;
  }
}

.adv-glow-dot {
  fill: #8fd14f;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 1;
}

.adv-center-inner {
  position: relative;
  z-index: 1;
}

.adv-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 18px;
  line-height: 1.35;
}

.adv-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 10px;
}

.adv-sub {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px;
}

.adv-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 34px;
  border: none;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.adv-cta:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.adv-cta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
}

.adv-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 4;
  color: var(--white);
  max-width: 260px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.adv-item-left {
  flex-direction: row-reverse;
}

.adv-item-right {
  flex-direction: row;
}

.adv-item-text {
  flex: 1;
}

.adv-item-left .adv-item-text {
  text-align: right;
}

.adv-item-right .adv-item-text {
  text-align: left;
}

.adv-pos-tl { top: 14%; left: 3%; }
.adv-pos-bl { bottom: 14%; left: 3%; }
.adv-pos-tr { top: 14%; right: 3%; }
.adv-pos-br { bottom: 14%; right: 3%; }

.adv-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}

.adv-icon-highlight {
  background: var(--green-light);
  border-color: var(--green-light);
}

.adv-item h3 {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: 1px;
}

.adv-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin: 0;
}

/* ===== Partners / 质量检测证书证明 ===== */
.partners {
  background: #e8eef3;
  padding: 50px 0 70px;
}

.partners-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 0px;
}

.partners-head {
  text-align: center;
  margin-bottom: 28px;
}

.partners-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  letter-spacing: 2px;
}

.partners-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.partners-viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.partners-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.partners-card {
  flex: 0 0 auto;
  width: 160px;
  height:130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
  padding: 20px 14px 16px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.partners-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.partners-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 72px;
}

.partners-logo img {
  display: block;
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partners-name {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.partners-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #5a5f66;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.25s, transform 0.25s;
  margin: 0;
}

.partners-nav-prev,
.partners-nav-next {
  border-radius: 50%;
  margin: 0;
}

.partners-nav:hover {
  background: #3d4248;
  filter: none;
  transform: scale(1.06);
}

.partners-foot {
  margin-top: 28px;
  text-align: center;
}

.partners-foot-arrow {
  display: block;
  color: #8a9098;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 6px;
}

.partners-foot-title {
  margin: 0;
  font-size: 14px;
  color: #666;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.25s;
}

.partners-foot-title:hover {
  color: var(--green);
}

/* ===== News ===== */
.news {
  padding: 50px 0 50px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.news .container {
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.news-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding:5px 22px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.25s, filter 0.25s;
}

.news-more-btn:hover {
  opacity: 0.92;
  filter: brightness(1.05);
}

.news-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.news-feature {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible;
  color: inherit;
  box-sizing: border-box;
  min-width: 0;
}

.news-feature-visual {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  flex: 0 0 auto;
  height: 160px;
  min-height: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #e8ecef;
}

.news-feature-date {
  background: var(--green);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 18px;
  height: 100%;
  box-sizing: border-box;
}

.news-feature-date-num {
  display: flex;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 18px;
}

.news-feature-day {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
}

.news-feature-month {
  font-size: 22px;
  font-weight: 600;
  margin-left: 2px;
}

.news-feature-brand {
  font-size: 11px;
  letter-spacing: 1.5px;
  opacity: 0.92;
  text-transform: uppercase;
  line-height: 1.4;
}

.news-feature-img {
  overflow: hidden;
  background: #f0f0f0;
  height: 100%;
  min-height: 0;
}

.news-feature-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-feature-visual:hover .news-feature-img img {
  transform: scale(1.04);
}

.news-feature-title {
  margin-top: 17px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  line-height: 1.45;
  flex-shrink: 0; margin-bottom:10px; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-feature-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

.news-feature-title a:hover {
  color: var(--green);
}

.news-feature-excerpt {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

.news-feature-action {
  margin-top: 18px;
  flex-shrink: 0;
}

.news-feature-line {
  margin-top: auto;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
}

.news-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  padding: 7px 20px 7px 28px;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s;
}

.news-detail-btn:hover {
  background: #ffca00;
}

.news-detail-btn-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-detail-btn-icon svg {
  width: 10px;
  height: 10px;
}

.news-list {
  display: flex;
  flex-direction: column;
  height: auto;
}

.news-list-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 22px 20px;
  background: #f5f5f5;
  border: 1px solid var(--green);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, border-color 0.3s;
  margin-bottom: 6px;
  box-sizing: border-box;
}

.news-list-card:hover {
  background: #efefef;
}

.news-list-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.news-list-meta time {
  font-size: 20px;
  font-weight: 700;
  color: #999;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.news-list-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: #999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: background 0.3s, color 0.3s;
}

.news-list-card:hover .news-list-arrow {
  background: var(--green);
  color: var(--white);
}

.news-list-body h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-body p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.news-list-link {
  display: block;
  padding: 18px 4px;
  border-bottom: 1px solid #e8e8e8;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-link:hover {
  color: var(--green);
  padding-left: 6px;
}

.news-deco-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  pointer-events: none;
  z-index: 0;
}

.news-deco-arc {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(186, 220, 168, 0.48);
  transform: translate(-30%, -30%);
  z-index: 1;
}

.news-deco-photo {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: url('https://images.unsplash.com/photo-1564890369478-c89ca6d9cde9?w=600&h=600&fit=crop') center/cover;
  background-size: 145%;
  background-position: center 40%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.news-deco-right {
  position: absolute;
  right: -40px;
  bottom: -50px;
}

.news-deco-arc--ring {
  position: static;
  width: 220px;
  height: 220px;
  background: transparent;
  border: 14px solid rgba(186, 220, 168, 0.42);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(-30deg);
}

.news-deco-bottom {
  position: absolute;
  right: 22%;
  bottom: -28px;
}

.news-deco-dot {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #b8ddb0;
  box-shadow: 0 4px 16px rgba(184, 221, 176, 0.45);
}

.back-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--green);
}

/* Mobile bottom dock - hidden on desktop */
.mobile-dock {
  display: none;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  padding: 70px 0 0;
  color: var(--white);
  overflow: hidden;
  clear: both;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:url(../images/photo-1564890369478-c89ca6d.jpg) center/cover;
}

.footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  background-image:
    linear-gradient(rgba(27, 48, 34, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 48, 34, 0.5) 1px, transparent 1px);
  background-size: 4px 4px;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  padding-bottom:40px;
}

.footer-contact h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.footer-main-grid {
  display: block;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}

.footer-address,
.footer-line {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 0;
  padding-top: 18px;
  padding-right: 70px;
}

.footer-dept-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.3fr auto;
  gap: 40px;
  align-items: start;
}

.footer-qr {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.footer-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-qr-img {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: cover;
  background: var(--white);
  border-radius: 4px;
  padding: 6px;
  box-sizing: border-box;
}

.footer-qr-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  text-align: center;
}

.footer-dept-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-staff {
  list-style: none;
}

.footer-staff p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
}

.footer-staff--intl li + li {
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding:30px 0;

}

.footer-bottom p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5); line-height:22px;
}

.footer-bottom img{ float:left; padding-top:7px; padding-right:10px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-list {
    gap: 20px;
  }

  .nav-list a {
    font-size: 14px;
  }

  .about-layout {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-layout-text {
    width: 100%;
    max-width: none;
    padding-right: 0;
  }

  .about-visual {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: 32px;
    min-height: 380px;
    height: auto !important;
  }

  .about-visual-img {
    width: min(420px, 88%);
  }

  .about-circles {
    width: min(420px, 88%);
    height: auto;
    aspect-ratio: 520 / 480;
  }

  .about-reveal-track {
    transform: translateX(60px);
    min-height: 380px;
  }

  .about-visual.is-visible .about-reveal-track {
    transform: translateX(0);
  }

  .about-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cases-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .cases-header {
    flex-direction: column;
    gap: 16px;
  }

  .cases-slogan {
    text-align: left;
    max-width: none;
    padding-top: 0;
  }

  .cases-info {
    grid-column: 1;
    grid-row: 1;
    padding: 40px 30px 32px;
  }

  .cases-image {
    grid-column: 1;
    grid-row: 2;
  }

  .cases-bottom {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    height: 88px;
  }

  .cases-location {
    margin: 0;
  }

  .cases-location::after {
    display: none;
  }

  .cases-page-nav {
    top: 16px;
    right: 16px;
    gap: 16px;
  }

  .cases-carousel-wrap {
    transform: translateY(-36px);
  }

  .cases-carousel {
    gap: 12px;
  }

  .carousel-thumbs {
    gap: 12px;
  }

  .thumb[data-dist="0"] {
    width: 72px;
    height: 72px;
  }

  .thumb[data-dist="1"] {
    width: 56px;
    height: 56px;
  }

  .thumb[data-dist="2"] {
    width: 44px;
    height: 44px;
  }

  .advantages {
    height: auto;
    min-height: 0;
  }

  .advantages-diagram {
    height: 560px;
    max-width: 700px;
  }

  .adv-center {
    width: 340px;
  }

  .adv-title {
    font-size: 30px;
  }

  .adv-item {
    max-width: 220px;
  }

  .adv-pos-tl { top: 12%; left: 2%; }
  .adv-pos-bl { bottom: 12%; left: 2%; }
  .adv-pos-tr { top: 12%; right: 2%; }
  .adv-pos-br { bottom: 12%; right: 2%; }

  .news-board {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .news-feature-visual {
    grid-template-columns: 0.38fr 0.62fr;
    height: 180px;
  }

  .news-feature-img img {
    min-height: 0;
  }

  .news-feature-day {
    font-size: 42px;
  }

  .news-feature-month {
    font-size: 22px;
  }

  .group-map-layout {
    grid-template-columns: 1fr;
  }

  .group-map-stage {
    min-height: 360px;
  }

  .group-map-panel-name {
    font-size: 26px;
  }

  .group-map-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-dept-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-qr {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 992px) {
  .pc-feature {
    grid-template-columns: 1fr;
  }

  .pc-feature-body {
    padding: 28px 24px 36px;
  }

  .pc-feature-name {
    font-size: 24px;
  }

  .pc-grid {
    grid-template-columns: 1fr;
  }

  .pc-thumb-img {
    height: 180px;
  }

  .pc-thumb {
    flex: 0 0 260px;
    width: 260px;
  }
}

@media (max-width: 768px) {
.banner-slide .txt {display:none; 
}




:root {
  --header-h: 70px;
  --header-h-large: 50px;
  --logo-h-large: 100px;
  --logo-h-small: 64px;
}

  .pc {
    padding: 36px 0 48px;
  }

  .partners {
    padding: 36px 0 32px;
  }

  .partners-card {
    padding: 14px 10px 12px;
  }

  .partners-name {
    font-size: 12px;
  }

  .partners-nav {
    width: 32px;
    height: 32px;
  }

  .partners-foot-title {
    font-size: 13px;
  }

  .pc-header {

    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }

  .pc-title {
    font-size: 22px;
  }

  .pc-more-btn,
  .news-more-btn {
    padding: 3px 5px;
    font-size: 12px;
    min-width: 80px;
	    margin-top: 10px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 20px 20px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-item > a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
  }

  .nav-item-lang {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-item-lang .nav-lang {
    width: 36px;
    height: 36px;
    padding: 0 !important;
    border-bottom: none !important;
    margin: 0;
  }

  .nav-item.has-dropdown > a::before {
    content: '+';
    float: right;
    font-size: 18px;
    color: var(--text-light);
    transition: transform 0.3s;
  }

  .nav-item.has-dropdown.open > a::before {
    content: '−';
  }

  .dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f9fafb;
    display: none;
    overflow: visible;
  }

  .nav-item.has-dropdown.open .dropdown-panel {
    display: block;
  }

  .dropdown-bg,
  .dropdown-watermark,
  .dropdown-right {
    display: none;
  }

  .dropdown-inner {
    padding: 0;
    flex-direction: column;
    gap: 0;
  }

  .dropdown-left {
    padding: 12px 0 0;
  }

  .dropdown-title {
    display: none;
  }

  .dropdown-desc {
    display: none;
  }

  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dropdown-grid a {
    padding: 12px 0;
    font-size: 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    max-width: calc(100% - 100px);
    gap: 8px;
  }

  .logo img {
    height: 42px;
  }

  .logo-cn {
    font-size: 14px;
    white-space: normal;
  }

  .logo-en {
    font-size: 9px;
    white-space: normal;
  }

  .header.scrolled .logo img,
  .header:hover .logo img,
  .header.dropdown-active .logo img,
  .header:has(.nav-item.has-dropdown:hover) .logo img,
  .header.search-open .logo img {
    height: 42px;
  }

  .header.scrolled .logo-cn,
  .header:hover .logo-cn,
  .header.dropdown-active .logo-cn,
  .header:has(.nav-item.has-dropdown:hover) .logo-cn,
  .header.search-open .logo-cn {
    font-size: 14px;
  }

  .mobile-dock {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    height: 60px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
    align-items: stretch;
    justify-content: space-around;
    padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  }

  .mobile-dock-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #9aa0a6;
    font-size: 12px;
    line-height: 1.2;
    transition: color 0.25s ease;
  }

  .mobile-dock-item:hover,
  .mobile-dock-item:active,
  .mobile-dock-item.is-active {
    color: var(--green-light);
  }

  .mobile-dock-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-dock-icon img,
  .mobile-dock-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    object-fit: contain;
    transition: filter 0.25s ease, opacity 0.25s ease;
  }

  /* img 引用的 svg 无法继承 currentColor，用滤镜着色 */
  .mobile-dock-icon img {
    opacity: 0.45;
    filter: brightness(0);
  }

  .mobile-dock-item:hover .mobile-dock-icon img,
  .mobile-dock-item:active .mobile-dock-icon img,
  .mobile-dock-item.is-active .mobile-dock-icon img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(58%) sepia(52%) saturate(520%) hue-rotate(78deg) brightness(98%) contrast(92%);
  }

  .mobile-dock-icon svg {
    stroke: currentColor;
    fill: currentColor;
  }

  .mobile-dock-label {
    white-space: nowrap;
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .back-top {
    right: 16px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .search-btn {
    margin-left: auto;
  }

  .search-bar {
    width: 90%;
    flex-direction: row;
  }

  .search-input {
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
  }

  .search-submit {
    height: 48px;
    padding: 0 28px;
    font-size: 15px;
  }

  .about-title {
    font-size: 20px;
	line-height: 20px;
    margin-bottom: 10px;
  }

  .about-categories {
    gap: 28px;
    padding-top: 15px;
  }

  .about-cat-hex {
    width: 40px;
    height:48px;
  }

  .about-deco-bl {
    display: none;
  }

.feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 470px;
  background:url(../images/cp.png) center center / cover no-repeat;
  background-size:cover;
}



  .feature-inner {
    padding: 20px 5px 5px;
  }

  .product-center-title {
    font-size: 28px;
  }

  .product-categories {
    gap: 0px 0px;
	margin-top:10px;
  }

  .product-cat-icon {
    width: 35px;
    height: 35px;
  }

.product-cat-name {
  font-size: 14px;
  line-height:20px;
  font-weight:normal; padding-top:0px; padding-bottom:10px;
  text-align: center;
  white-space: nowrap;
  color: rgba(255, 255, 255, 1);
  transition: color 0.3s ease;
}
  .product-panel {
    padding: 48px 0 0;
  }

  .product-banner {
    margin-top: 24px;
  }

  .product-center-more {
    margin-top: 20px;
    margin-bottom: -22px;
  }

  .product-more-btn {
    padding: 10px 36px;
    font-size: 14px;
  }

  .product-panel-inner {
    padding: 0 16px;
  }

  .product-card {
    flex: 0 0 52%;
    width: 52%;
  }

  .advantages {
    height: auto;
    min-height: 0;
    padding: 70px 0;
  }

  .advantages .container {
    height: auto;
    display: block;
  }

  .advantages-diagram {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 20px 0 10px;
  }

  .adv-text-ring {
    width: 140%;
  }

  .adv-center {
    position: static;
    transform: none;
    width: 100%;
    order: 1;
  }

  .adv-desc br {
    display: none;
  }

  .adv-item {
    position: static;
    max-width: 100%;
    width: 100%;
    flex-direction: row !important;
    justify-content: flex-start;
    text-align: left;
    order: 2;
  }

  .adv-item-text {
    text-align: left !important;
  }

  .adv-item-left {
    flex-direction: row !important;
  }

  .news-header {
    gap: 16px;
    flex-wrap: wrap; margin-bottom:15px;
  }

  .news-list-card {
    grid-template-columns: 80px 1fr;
    gap: 14px;
    padding: 18px 16px;
  }

  .news-list-meta time {
    font-size: 16px;
  }

  .news-feature-title {
    font-size: 17px;
  }

  .news-list-link {
    white-space: normal;
    padding: 16px 4px;
    font-size: 14px;
  }

  .group-map-title {
    font-size: 28px;
  }

  .group-map-panel-content {
    left: 5%;
    max-width: 90%;
  }

  .group-map-panel-name {
    font-size: 20px;
  }

  .group-map-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  
  

.header-inner {
  max-width: 92%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0px;
  gap: 0px;
  overflow: visible;
}

.about-layout-text {
  max-width: 100%;
  padding-right: 0px;
  position: relative;
  z-index: 3;
   padding-top:0px; padding-bottom:0px;
}
  
  
  /* ===== Hero ===== */
.hero {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
}

.banner_aa,
.banner-slide {
  height: auto;
  min-height: 0;
}

.banner-slide .txt h1 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.banner-slide .txt h4 {
  font-size: 12px;
  line-height: 1.6;
}

.swiper-banner-pagination {
  bottom: 18px !important;
  gap: 10px;
}

.index-banner-swiper .banner-nav-btn {
  width: 36px;
  height: 36px;
}

.index-banner-swiper .banner-nav-btn::after {
  font-size: 14px;
}

.index-banner-swiper .swiper-button-prev {
  left: 10px;
}

.index-banner-swiper .swiper-button-next {
  right: 10px;
}

.float-bar {
  transform: translateY(-50%) scale(0.9);
  transform-origin: right center;
}

.float-item {
  width: 48px;
  min-height: 48px;
  font-size: 11px;
}

.about-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--green-light);
  margin-bottom:10px;
}

.about-cat {
  display:block;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-align: left;
  text-decoration: none;
  color: #2b2620;
  transition: color 0.3s ease;
}

.about-cat-hex svg,
.about-cat-hex img {
  width:20px;
  height: 20px;
  display: block;
  object-fit: contain;
}
.about-cat-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 0px;
  transition: color 0.3s ease;
}

.about {
  position: relative;
  padding: 30px 0 0px;
  background: var(--white);
  overflow: visible;
}


.product-center-sub {
  font-size:25px;
  letter-spacing: 0px;
  margin: 0 0 0px;
  opacity: 1;
  font-weight:900
}
.product-center-desc {
  max-width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height:30px;
  opacity: 0.88; letter-spacing:0px;
}


.product-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 5px 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s ease, transform 0.3s ease;
}



  .about-visual {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-top:20px;
    min-height: auto;
    height: auto !important;
  }
    .about-reveal-track {
    transform: translateX(60px);
    min-height: auto;
  }

.about-cat-sub {
  font-size: 12px;
  line-height:15px;
  opacity: 0.85;
  transition: color 0.3s ease;
}
.about-text .b1 {
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 4px; letter-spacing:5px;
  line-height: 2;
  text-align: justify;
}

.about-text p {
  color: var(--text-gray);
  font-size: 14px;
  line-height:22px;
  text-align: justify;
}

.product-card-img img {
  display: inline-block;
  max-width: 100%;
  height:auto;
  max-height:100%;
  border-radius: 5px;

}


.product-card-name {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #087259;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-card-meta {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #666;

}
.product-card-btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  color: var(--white);
  background: #4caf50;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.product-panel {
  position: relative;
  z-index: 2;
  background:url(../images/product-banner.jpg) no-repeat bottom #eef4f2;
  background-size:100%;
  padding:50px 0 60px; height:auto;
}

.group-map-brand-cn {
  font-size:20px;
  font-weight: 600;
}
.group-map-logo {
  width:40px;
  height: auto;

}


.group-map-icon {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 20px;
  margin-bottom: 0px; 
}
.group-map-desc { 
  font-size: 14px;
  line-height:20px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom:0px;  margin-top:20px;
}

.group-map-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 12px;
}

.group-map-counter {
  font-size:20px;
  font-weight: 300;
  letter-spacing: 2px;
}

.group-map-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.group-map-side {
  background: linear-gradient(180deg, #1e4206 0%, #1e4206 100%);
  color: var(--white);
  padding: 15px 28px 15px;
  display: flex;
  flex-direction: column;
}

.group-map-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.group-map-stage {
  position: relative;
  flex: 1;
  min-height:300px;
  overflow: hidden;
  background: #1a2e24;
}

.group-map-tab-num {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 0px; float:left; padding-top:4px; padding-right:5px;
}

.group-map-tab-name {
  display: block;
  font-size: 14px;
  color: #444;
  line-height:20px;
}


.group-map-tab {
  border: none;
  background: transparent;
  padding:5px 10px;
  text-align: left;
  cursor: pointer;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s, color 0.3s;
}

.product-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  list-style: none;
  margin: 0;
}

.cases {
  padding: 20px 0 30px;
  background: var(--white);
}
.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 0px;
}

.section-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom:0px;
  position: relative;
  display: inline-block;
}


.cases-slogan {
  font-size:14px;
  color: rgba(0, 0, 0, 0.1);
  line-height: 20px;
  max-width: 100%;
  text-align: left;
  margin: 0;
  padding-top: 0px; font-weight:900
}

.cases-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}


.cases-cn {
  font-size:17px;
  font-weight: 600;
  display: block;
  margin-bottom:10px;
}

  .cases-info {
    grid-column: 1;
    grid-row: 1;
    padding: 20px 30px 32px;
  }

.cases-more {
  display: inline-block;
  align-self: flex-start;
  margin-top: 10px;
  padding: 3px 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s, border-color 0.3s;
   margin-bottom: 30px;
}


.cases-main {
  display: grid;
  grid-template-columns: 100% 1fr;
  grid-template-rows: 1fr auto;
  margin-bottom: 0;

}


.cases-img-label {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding:8px 28px;
  background: #227a26;
color: rgba(255, 255, 255, 1);
  font-size:15px!important;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  width:100%; text-align:center;
}

.cases-img-main {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=900&h=500&fit=crop') center/cover;
  transition: background-image 0.5s ease;
}


.cases-location {
    position: relative;
    margin: 0;
    padding: 10px 48px;
    background: #2e8b32;
    display: flex;
    align-items: center;
    gap: 17px;
    flex-shrink: 0;
}

  .cases-carousel-wrap {
    transform: translateY(-35px);
  }

  .cases-bottom {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr;
    height: 140px;
  }


.cases-location-text {
  font-size:14px;
  line-height:22px;
  margin: 0;
  color: var(--white);
}

.adv-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding:5px 15px;
  border: none;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.news {
  padding: 30px 0px 30px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.footer {
  position: relative;
  padding: 30px 0 50px;
  color: var(--white);
  overflow: hidden;
  clear: both;
}

.footer-logo {
  width: 50px;
}
.footer-address,
.footer-line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 0;
  padding-top:0px; padding-right:0px;
}

.footer-qr{display:none;}

.footer-dept-grid > .footer-dept:nth-child(1),
.footer-dept-grid > .footer-dept:nth-child(2) {
  display: none;
}

.footer-dept-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom:5px;
}

.footer-staff p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 22px;
}

.footer-grid {
  padding-bottom:20px;
}
.footer-bottom {
  padding:20px 0;

}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.header.scrolled .logo-en,
.header:hover .logo-en,
.header.dropdown-active .logo-en,
.header:has(.nav-item.has-dropdown:hover) .logo-en,
.header.search-open .logo-en {
  color: var(--text-gray);
  font-size: 9px; line-height:20px;
}

.pc-inner {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 0px;
}

.pc-feature-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  background: #ededed;
}


  .pc-feature-body {
    padding: 10px 24px 36px;
  }

.pc-feature-en {
  font-size: 13px;
  letter-spacing: 0px;
  color: #aaa;
  text-transform: uppercase;
  margin: 0 0 0px;
}
.pc-feature-name {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.35;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pc-feature-sub {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin: 0 0 10px;
}
.pc-feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 100px;
  padding: 3px 10px;
  border: 1px solid #bbb;
  background: transparent;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}


.pc-thumb-foot {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px 20px;
  border-top: none;
  transition: filter 0.3s;
}


.pc-thumb-name {
  font-size: 14px;
  margin-bottom: 6px;

}

.cases-carousel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  pointer-events: auto;
    
}



.thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: width 0.4s ease, height 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, border-width 0.4s ease;
  flex-shrink: 0;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.thumb[data-dist="0"] {
  width: 52px;
  height: 52px;
  border: 4px solid var(--green-light);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.thumb[data-dist="1"] {
  width: 52px;
  height: 52px;
}

.thumb[data-dist="2"] {
  width: 32px;
  height: 32px;
}


  .news-feature-visual {
    grid-template-columns: 0.38fr 0.62fr;
    height: 120px;
  }

.news-feature-date-num {
  display: flex;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 0px;
}

.news-feature-title {
  margin-top: 15px;
  margin-bottom:20px;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  line-height: 1.45;
  flex-shrink: 0; margin-bottom:0px; 
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

}
