:root {
  --hp-blue: #2980d6;
  --hp-accent: #3ec04d;
  --hp-text: #333333;
  --hp-text-dark: #222222;
  --hp-text-muted: #999999;
  --hp-header-h: 96px;
  --hp-max: 1200px;
  /* 导航：内页共用；首页仅改颜色为白（字号/字重一致） */
  --hp-nav-size: 20px;
  --hp-nav-color: #333333;
  --hp-nav-active: #222222;
  --hp-nav-underline: #3ec04d;
  --hp-nav-home: #ffffff;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
  width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  color: var(--hp-text);
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  background: #fff;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover:not(.nav-link):not(.dropdown-item) { color: var(--hp-accent); text-decoration: none; }
a[href^="tel"] { text-decoration: none; }

.body-inner {
  min-height: 100vh;
  overflow-x: hidden;
}

/* CMS 富文本：防宽表格/长链撑破布局（正常内容无横向滚动条，不影响桌面版式） */
.hp-ndetail__body,
.hp-apage-glp__rich,
.hp-apage-park__rich,
.main-content {
  max-width: 100%;
  overflow-x: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hp-ndetail__body img,
.hp-apage-glp__rich img,
.hp-apage-park__rich img,
.main-content img {
  display: block;
  max-width: 100%;
  height: auto;
}
.hp-ndetail__body table,
.hp-apage-glp__rich table,
.hp-apage-park__rich table,
.main-content table {
  max-width: 100%;
}
.hp-ndetail__body pre,
.hp-apage-glp__rich pre,
.hp-apage-park__rich pre,
.main-content pre,
.hp-ndetail__body code,
.hp-apage-glp__rich code,
.hp-apage-park__rich code,
.main-content code {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}
.hp-ndetail__body a,
.hp-apage-glp__rich a,
.hp-apage-park__rich a,
.main-content a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ---------- Header ----------
   内页：共用深色导航（字号/字重/下划线）
   首页：同一套字号字重，仅未滚动时白字叠图
-------------------------------- */
.site-header {
  position: relative;
  z-index: 1000;
  background: #fff;
 box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

.site-header .site-navigation {
  min-height: var(--hp-header-h);
  display: flex;
  align-items: center;
}

.site-header .hp-navbar { width: 100%; }
.site-header .logo-link { gap: 14px; }
.site-header .logo-img { height: 52px; width: auto; display: none; }
.site-header .logo-ipark.logo-dark { display: inline-block; }
.site-header .logo-ipark.logo-light { display: none; }
/* 普洛斯 logo：仅首页显示；透明头白标，滚动后压黑 */
.site-header .logo-img.logo-pls { display: none; }
.is-home .site-header .logo-img.logo-pls {
  display: inline-block;
  filter: none;
}
.is-home .site-header.is-scrolled .logo-img.logo-pls { filter: brightness(0); }

.site-header .navbar-nav { gap: 20px; }

.site-header .hp-navbar .nav-link {
  position: relative;
  color: var(--hp-nav-color) !important;
  font-family: "Microsoft YaHei Light", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: var(--hp-nav-size);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding: 12px 18px !important;
  opacity: 1;
  transition: opacity .2s;
}

.site-header .hp-navbar .nav-link:hover,
.site-header .hp-navbar .nav-link:focus {
  color: var(--hp-nav-color) !important;
  opacity: .85;
}

.site-header .hp-navbar .nav-link.active,
.site-header .hp-navbar .nav-item.active > .nav-link {
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-weight: 700;
  color: var(--hp-nav-active) !important;
  opacity: 1;
}

.site-header .hp-navbar .nav-link.active::after,
.site-header .hp-navbar .nav-item.active > .nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 4px;
  background: var(--hp-nav-underline);
  border-radius: 2px;
}

.site-header .dropdown-menu {
  border: 0;
  border-radius: 4px;
  box-shadow: 10px 8px 24px rgba(0,0,0,.5);
  padding: 8px 0;
  margin-top: 8px;
}

.site-header .dropdown-item {
  font-family: "Microsoft YaHei Light", "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--hp-nav-color) !important;
  padding: 8px 18px;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus,
.site-header .dropdown-item.active,
.site-header li.active > .dropdown-item {
  background: #f5f8fc;
  color: var(--hp-nav-active) !important;
  font-weight: 700;
}

.site-header .navbar-toggler {
  border: 1px solid rgba(34, 34, 34, .35);
  padding: .4rem .6rem;
  line-height: 1;
  border-radius: 2px;
}
.site-header .navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
}
/* 未加 navbar-light/dark 时 Bootstrap 不会给 icon 背景，需显式设置 */
.site-header .navbar-toggler-icon {
  width: 1.4em;
  height: 1.4em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23222222' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.site-header .navbar-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  z-index: 1030;
}

/* 仅首页：透明底 + 白字（字号/字重与内页共用变量） */
.is-home .site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.is-home .site-header .logo-ipark.logo-dark { display: none; }
.is-home .site-header .logo-ipark.logo-light { display: inline-block; }

.is-home .site-header .hp-navbar .nav-link,
.is-home .site-header .dropdown-item {
  color: var(--hp-nav-home) !important;
}

.is-home .site-header .hp-navbar .nav-link:hover,
.is-home .site-header .hp-navbar .nav-link:focus,
.is-home .site-header .dropdown-item:hover,
.is-home .site-header .dropdown-item:focus {
  color: var(--hp-nav-home) !important;
  opacity: .85;
  background: transparent;
}

.is-home .site-header .hp-navbar .nav-link.active,
.is-home .site-header .hp-navbar .nav-item.active > .nav-link,
.is-home .site-header .dropdown-item.active,
.is-home .site-header li.active > .dropdown-item {
  color: var(--hp-nav-home) !important;
  font-weight: 700;
  opacity: 1;
}

.is-home .site-header .hp-navbar .nav-link.active::after,
.is-home .site-header .hp-navbar .nav-item.active > .nav-link::after {
  background: var(--hp-nav-home);
  height: 2px;
  bottom: 6px;
  border-radius: 0;
}

.is-home .site-header .dropdown-menu {
  background: rgba(20, 40, 70, .96);
}

.is-home .site-header .navbar-toggler {
  border-color: rgba(255, 255, 255, .65);
}
.is-home .site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* 首页滚动后切回内页共用深色导航 */
.is-home .site-header.is-scrolled {
  position: fixed;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border-bottom: none;
}

.is-home .site-header.is-scrolled .logo-ipark.logo-light { display: none; }
.is-home .site-header.is-scrolled .logo-ipark.logo-dark { display: inline-block; }

.is-home .site-header.is-scrolled .hp-navbar .nav-link,
.is-home .site-header.is-scrolled .dropdown-item {
  color: var(--hp-nav-color) !important;
}

.is-home .site-header.is-scrolled .hp-navbar .nav-link:hover,
.is-home .site-header.is-scrolled .hp-navbar .nav-link:focus,
.is-home .site-header.is-scrolled .dropdown-item:hover {
  color: var(--hp-nav-color) !important;
}

.is-home .site-header.is-scrolled .hp-navbar .nav-link.active,
.is-home .site-header.is-scrolled .hp-navbar .nav-item.active > .nav-link,
.is-home .site-header.is-scrolled .dropdown-item.active {
  color: var(--hp-nav-active) !important;
}

.is-home .site-header.is-scrolled .hp-navbar .nav-link.active::after,
.is-home .site-header.is-scrolled .hp-navbar .nav-item.active > .nav-link::after {
  background: var(--hp-nav-underline);
  height: 4px;
  bottom: 4px;
 border-radius: 2px;
}

.is-home .site-header.is-scrolled .dropdown-menu {
  background: #fff;
}

.is-home .site-header.is-scrolled .navbar-toggler {
  border-color: rgba(34, 34, 34, .35);
}
.is-home .site-header.is-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23222222' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Hero：整图背景，仅叠导航，无文案层；比例锁定 1920×954 ---------- */
.hp-hero {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 954;
  padding: 0;
  overflow: hidden;
  background: var(--hp-blue) center top / cover no-repeat;
}

.hp-hero--default { background-image: url("../img/home/hero.png"); }

.hp-hero-swiper .swiper-wrapper,
.hp-hero-swiper .hp-hero__slide {
  height: 100%;
}
.hp-hero__slide {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ---------- Sections ---------- */
.hp-section { padding: 72px 0; }
.hp-section--muted { background: #f7f9fc; }

.hp-section__head { margin-bottom: 36px; }
.hp-section__en {
  display: block;
  color: var(--hp-text-muted);
  letter-spacing: .12em;
  font-size: 13px;
  margin-bottom: 8px;
}
.hp-section__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 10px;
}
.hp-section__desc { color: #666; margin: 0; }

.hp-about { padding: 70px 0 80px; }
.hp-about__media {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 460px;
}
.hp-about__img-main {
  position: absolute;
  left: 0;
  bottom: 0;
  top:20;
  width: 54%;
  overflow: hidden;
  background: #4e4e4e;
  z-index: 1;
}
.hp-about__img-main img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;


}
.hp-about__img-overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 52%;
  border: 10px solid #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  background: #fff;
  z-index: 2;
}
.hp-about__img-overlay img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.hp-about__content { padding-left: 12px;  }
.hp-about__slogan {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 18px;
}
.hp-about__slogan-text {
  font-size: 14px;
  color: #222;
  letter-spacing: .02em;
  white-space: nowrap;
}
.hp-about__slogan-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #25384a;
  flex: 0 0 auto;
}
.hp-about__slogan-logo {
  height: 36px;
  width: auto;
  display: block;
}
.hp-about__title { margin-bottom: 28px; }
.hp-about__en {
  display: block;
  font-size: 48px;
  line-height: 1.1;
  color: #222;
  font-weight: 400;
}
.hp-about__cn {
  display: inline-block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1.2;
  color: #222;
}
.hp-about__cn:hover { color: #222; opacity: .8; }
.hp-about__zh {
  margin: 0 0 18px;
  color: #333;
  font-size: 18px;
  line-height: 1.7;
}
.hp-about__en-body {
  margin: 0 0 28px;
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.7;
  text-transform: uppercase;
}
.hp-about__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 172px;
  height: 51px;
  padding: 0 20px;
  background: #333;
  color: #fff !important;
  font-size: 16px;
  line-height: 1;
}
.hp-about__more:hover { background: #222; color: #fff !important; opacity: 1; }
.hp-about__more-en { font-size: 14px; opacity: .9; }

.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 22px;
  border: 1px solid var(--hp-blue);
  color: var(--hp-blue);
  border-radius: 2px;
  font-size: 14px;
  transition: .2s;
}
.hp-btn:hover {
  background: var(--hp-blue);
  color: #fff;
}

.hp-advantages {
  background: #f9f9f9;
  padding: 72px 0 48px;
}
.hp-adv-head {
  text-align: center;
  margin-bottom: 56px;
}
.hp-adv-head__en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
.hp-adv-head__line {
  width: 160px;
  max-width: 18vw;
  height: 1px;
  background: #808080;
}
.hp-adv-head__title {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  color: #222;
  letter-spacing: .02em;
  white-space: nowrap;
}
.hp-adv-head__cn {
  display: inline-block;
  margin: 0 0 24px;
  font-size: 30px;
  color: #222;
}
.hp-adv-head__cn:hover { color: #222; opacity: .8; }
.hp-adv-head__sub {
  margin: 0 auto 40px;
  max-width: 420px;
  color: #7f7f7f;
  line-height: 1.6;
}
.hp-adv-head__sub-zh {
  display: block;
  font-size: 18px;
}
.hp-adv-head__sub-en {
  display: block;
  font-size: 14px;
  letter-spacing: .04em;
}
/* Tab：对齐效果图 — 白底上未选中纯文字，选中深底白字直角块 */
.hp-adv-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  background: transparent !important;
  border: 0 !important;
  overflow: visible;
  min-height: 48px;
}
.hp-adv-tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 12px 36px;
  min-width: 200px;
  color: #4a4a4a !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  cursor: pointer;
  transition: color .2s, background .2s;
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}
.hp-adv-tabs__item + .hp-adv-tabs__item {
  border-left: 0 !important;
}
.hp-adv-tabs__item:hover {
  color: #222 !important;
  background: transparent !important;
}
.hp-adv-tabs__item.is-active,
.hp-adv-tabs__item.is-active:hover,
.hp-adv-tabs__item[aria-selected="true"],
.hp-adv-tabs__item[aria-selected="true"]:hover {
  color: #fff !important;
  background: #2a2a2a !important;
  font-weight: 400;
}
.hp-adv-panel { display: none; }
.hp-adv-panel.is-active { display: block; }
.hp-adv-panel__more {
  display: flex;
  justify-content: flex-end;
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 0 8px;
}

/* 首页园区优势：总宽对齐效果图（收于全站 1257），四列左窄|中|中|右通高略窄 */
.hp-adv-mosaic-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px 40px;
}
.hp-adv-grid-wrap {
  width: 100%;
}
.hp-adv-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}
.hp-adv-more__link {
  color: #222 !important;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;
  text-decoration: none !important;
  transition: color .2s ease;
}
.hp-adv-more__link:hover { color: #68a451 !important; }

/* Powered 列宽（效果图像素）：
 * 上排 313|430|430|380
 * 底排（前三列内）400|400|400，右通高跨上下
 */
.hp-adv-mosaic {
  --gap: clamp(10px, 1.2vw, 16px);
  --gap-row: clamp(12px, 1.6vw, 22px);
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 313fr) minmax(0, 430fr) minmax(0, 430fr) minmax(0, 380fr);
  grid-template-rows: minmax(0, 421fr) minmax(0, 233fr);
  grid-template-areas:
    "stack a b tall"
    "bot bot bot tall";
  gap: var(--gap-row) var(--gap);
  margin: 0;
  align-items: stretch;
  aspect-ratio: 1553 / 654;
  max-height: 620px;
}
.hp-adv-cell--stack {
  grid-area: stack;
  display: grid;
  grid-template-rows: minmax(0, 180fr) minmax(0, 215fr);
  gap: var(--gap);
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.hp-adv-cell--stack > .hp-adv-tile {
  min-height: 0;
  height: 100%;
}
.hp-adv-cell--a { grid-area: a; min-width: 0; min-height: 0; }
.hp-adv-cell--b { grid-area: b; min-width: 0; min-height: 0; }
.hp-adv-cell--tall { grid-area: tall; min-width: 0; min-height: 0; }
.hp-adv-mosaic__bot {
  grid-area: bot;
  display: grid;
  grid-template-columns: minmax(0, 400fr) minmax(0, 400fr) minmax(0, 400fr);
  gap: var(--gap);
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.hp-adv-mosaic__bot > .hp-adv-tile,
.hp-adv-cell--a.hp-adv-tile,
.hp-adv-cell--b.hp-adv-tile,
.hp-adv-cell--tall > .hp-adv-tile {
  height: 100%;
  min-height: 0;
}

.hp-adv-tile {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  min-height: 0;
  height: 100%;
}
.hp-adv-tile--photo {
  background: #484848 center/cover no-repeat;
}
.hp-adv-tile--placeholder {
  background: #d8d8d8;
}
.hp-adv-tile--photo > span.hp-adv-tile__cap,
.hp-adv-tile__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1.2;
  background: rgba(0, 0, 0, .48);
  color: #fff;
}
.hp-adv-tile--photo > span.hp-adv-tile__foot,
.hp-adv-tile__foot {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: auto;
  padding: clamp(12px, 1.2vw, 18px) 14px;
  background: #68a451;
  color: #fff;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  left: auto;
  right: auto;
  bottom: auto;
}
.hp-adv-tile--green {
  background: #68a451;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hp-adv-tile--green-lg { padding: 18px 20px; }
.hp-adv-tile__t1 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.35;
}
.hp-adv-tile__t2 {
  margin: 6px 0 0;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.4;
}
.hp-adv-tile__t1--lg { font-size: clamp(34px, 2.4vw, 36px); line-height: 1.25;}
.hp-adv-tile__t2--lg { font-size: clamp(30px, 2vw, 30px); }

/* Powered 绿块：对齐效果图 — 左对齐；主标题 700 / 副标题 400；按格宽 cqi 自适应防换行裁切 */
.hp-adv-mosaic .hp-adv-tile--green {
  container-type: inline-size;
  text-align: left;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  box-sizing: border-box;
}
.hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__green-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
  padding: clamp(10px, 6cqi, 18px) clamp(12px, 7cqi, 22px);
}
.hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__t1,
.hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__t1--lg {
  margin: 0;
  font-size: clamp(16px, 8.8cqi, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__t2,
.hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__t2--lg {
  margin: clamp(6px, 2.8cqi, 12px) 0 0;
  font-size: clamp(12px, 5cqi, 15px);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

/* Safari 兼容：容器单位在部分 WebKit 版本中会把绿块文字算得过大。
   仅 html.hp-safari 命中，其他浏览器继续使用上面的 cqi 自适应规则。 */
.hp-safari .hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__green-inner {
  padding: 12px 16px;
}
.hp-safari .hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__t1,
.hp-safari .hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__t1--lg {
  font-size: 18px;
  line-height: 1.25;
}
.hp-safari .hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__t2,
.hp-safari .hp-adv-mosaic .hp-adv-tile--green .hp-adv-tile__t2--lg {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
}
.hp-safari .hp-adv-mosaic__bot .hp-adv-tile--green .hp-adv-tile__t1,
.hp-safari .hp-adv-mosaic__bot .hp-adv-tile--green .hp-adv-tile__t1--lg {
  font-size: 24px;
}
.hp-safari .hp-adv-mosaic__bot .hp-adv-tile--green .hp-adv-tile__t2,
.hp-safari .hp-adv-mosaic__bot .hp-adv-tile--green .hp-adv-tile__t2--lg {
  font-size: 14px;
}
/* Cared Safari fallback: old WebKit drops cqi/cqb declarations. */
@supports not (width: 1cqi) {
  .hp-adv-cared-hero__bar {
    gap: 16px;
    padding: 18px 24px 16px 20px;
    font-size: 24px;
  }
  .hp-adv-cared-hero__col--sub {
    max-height: calc(100% - 48px);
    margin-top: 48px;
  }
  .hp-eco-cared-hero__bar {
    gap: 16px;
    padding: 18px 28px 16px 24px;
    font-size: 24px;
  }
  .hp-eco-cared-hero__col--sub {
    max-height: calc(100% - 48px);
    margin-top: 48px;
  }
}
@media (min-width: 1200px) {
  .hp-eco-powered .hp-eco-tile--green .hp-eco-tile__t1 {
    font-size: clamp(20px, 2vw, 27px);
  }
  .hp-eco-powered .hp-eco-tile--green .hp-eco-tile__t2 {
    font-size: clamp(14px, 1.2vw, 20px);
  }
  .hp-eco-powered__bot .hp-eco-tile--green .hp-eco-tile__t1--lg {
    font-size: clamp(25px, 2.5vw, 38px);
  }
  .hp-eco-powered__bot .hp-eco-tile--green .hp-eco-tile__t2--lg {
    font-size: clamp(20px, 2vw, 32px);
  }
}
.hp-adv-tile__gap { display: inline-block; width: .6em; }
.hp-adv-tile--hero-text {
  display: flex;
  align-items: flex-end;
}
.hp-adv-tile__hero {
  width: 100%;
  padding: 24px 28px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .55));
}
.hp-adv-tile__t1--hero,
.hp-adv-tile__t2--hero {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}
.hp-adv-tile--green .hp-adv-tile__t1--hero,
.hp-adv-tile--green .hp-adv-tile__t2--hero {
  text-shadow: none;
}
.hp-adv-tile--green-bar {
  flex: none;
  height: 100%;
  padding: 24px 36px;
  justify-content: center;
}
.hp-adv-tile--green-bar .hp-adv-tile__t1 {
  font-size: clamp(26px, 2.8vw, 48px);
}
.hp-adv-tile--green-bar .hp-adv-tile__t2 {
  font-size: clamp(18px, 1.8vw, 30px);
}
.hp-adv-tile--housed-overlay {
  flex: none;
  height: 100%;
  padding: 0 clamp(24px, 4vw, 48px);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hp-adv-tile--housed-overlay .hp-adv-tile__t1--inline {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

/* Housed 列宽（效果图像素）：
 * 1 行 538|320|320|382
 * 2 行 255|255|677（右通高跨两行）
 * 行高 左顶183 / 左底362；右上406 / 底绿146；通高584
 */
.hp-adv-housed {
  --gap: clamp(10px, 1.2vw, 16px);
  display: grid;
  /* 主区 538+677=1215 | 通高 382 */
  grid-template-columns: minmax(0, 1215fr) minmax(0, 382fr);
  gap: var(--gap);
  align-items: stretch;
  width: 100%;
  aspect-ratio: 1560 / 584;
  max-height: 620px;
}
.hp-adv-housed > * { min-width: 0; }
.hp-adv-housed__main {
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.hp-adv-housed__grid {
  display: grid;
  /* 左 538 | 右 677（内含上 320|320、下通栏绿条） */
  grid-template-columns: minmax(0, 538fr) minmax(0, 677fr);
  gap: var(--gap);
  height: 100%;
  align-items: stretch;
  width: 100%;
}
.hp-adv-housed__left {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  min-height: 0;
}
.hp-adv-housed__ltop {
  flex: 183 1 0;
  min-height: 0;
}
.hp-adv-housed__ltop .hp-adv-tile { height: 100%; }
.hp-adv-housed__lbot {
  flex: 362 1 0;
  display: grid;
  grid-template-columns: minmax(0, 255fr) minmax(0, 255fr);
  gap: var(--gap);
  min-height: 0;
}
.hp-adv-housed__lbot .hp-adv-tile { min-height: 0; height: 100%; }
.hp-adv-housed__right {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  min-height: 0;
}
.hp-adv-housed__rtall {
  flex: 406 1 0;
  display: grid;
  grid-template-columns: minmax(0, 320fr) minmax(0, 320fr);
  gap: var(--gap);
  min-height: 0;
}
.hp-adv-housed__rtall .hp-adv-tile {
  min-height: 0;
  height: 100%;
}
.hp-adv-housed__overlay {
  flex: 146 1 0;
  min-height: 0;
}
.hp-adv-housed__overlay .hp-adv-tile {
  height: 100%;
  min-height: 0;
}
.hp-adv-housed__tall {
  min-height: 0;
  align-self: stretch;
}
.hp-adv-housed__tall .hp-adv-tile {
  height: 100%;
  min-height: 0;
}

/* Cared 列宽（效果图像素）：
 * 1 行 755|449|382
 * 2 行 400|400|400（右通高跨两行）
 * 行高 上297 / 下297；通高695
 */
.hp-adv-cared {
  --gap: clamp(10px, 1.2vw, 16px);
  display: grid;
  /* 主区 755+449=1204 | 通高 382 */
  grid-template-columns: minmax(0, 1204fr) minmax(0, 382fr);
  gap: var(--gap);
  align-items: stretch;
  width: 100%;
  aspect-ratio: 1586 / 695;
  max-height: 620px;
}
.hp-adv-cared > * { min-width: 0; }
.hp-adv-cared__main {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  min-width: 0;
  min-height: 0;
  height: 100%;
}
.hp-adv-cared__top {
  display: grid;
  grid-template-columns: minmax(0, 755fr) minmax(0, 449fr);
  gap: var(--gap);
  flex: 297 1 0;
  min-height: 0;
}
.hp-adv-cared__bot {
  display: grid;
  grid-template-columns: minmax(0, 400fr) minmax(0, 400fr) minmax(0, 400fr);
  gap: var(--gap);
  flex: 297 1 0;
  min-height: 0;
}
.hp-adv-cared__top > *,
.hp-adv-cared__bot > * {
  min-height: 0;
  height: 100%;
}
.hp-adv-cared-text {
  height: 100%;
  min-height: 0;
}
.hp-adv-cared-hero {
  container-type: size;
  position: relative;
  display: block;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
/* 底图铺满整格；绿条绝对叠在左侧，半透明才能透出图片 */
.hp-adv-cared-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #5a5a5a center / cover no-repeat;
}
.hp-adv-cared-hero__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(120px, 26.6%, 201px);
  background: rgba(104, 164, 81, .72);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(12px, 3.3cqi, 25px);
  padding: clamp(10px, 6cqb, 18px) clamp(20px, 8.6cqi, 65px) clamp(10px, 5cqb, 16px) clamp(16px, 6.8cqi, 51px);
  box-sizing: border-box;
  font-size: clamp(14px, 10cqb, 30px);
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
}
.hp-adv-cared-hero__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: 0 0 auto;
  width: 1em;
  height: auto;
  max-height: 100%;
  margin: 0;
  padding: 0;
  min-height: 0;
  overflow: hidden;
}
/* 效果图：右列相对左列下沉，两列顶底不平齐 */
.hp-adv-cared-hero__col--sub {
  height: auto;
  max-height: calc(100% - clamp(28px, 16cqb, 48px));
  margin-top: clamp(28px, 16cqb, 48px);
  align-self: flex-start;
}
.hp-adv-cared-hero__col i {
  display: block;
  flex: 0 0 auto;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  width: 1em;
  height: 1em;
  text-align: center;
}
.hp-adv-cared__tall {
  min-height: 0;
  height: 100%;
  align-self: stretch;
}
.hp-adv-cared__tall .hp-adv-tile { height: 100%; min-height: 0; }
.hp-adv-tile--footbar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hp-adv-tile--footbar .hp-adv-tile__foot {
  flex: 0 0 auto;
}

.hp-adv-mosaic__labels {
  position: absolute;
  left: 6%;
  width: 62%;
  bottom: -8px;
  display: flex;
  gap: 24px;
  z-index: 3;
}
.hp-adv-mosaic__labels:empty { display: none; }
.hp-adv-label {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 28px;
  color: #fff !important;
  font-size: 22px;
  background: url("../img/ecology/text-wrapper_11.png") center/100% 100% no-repeat;
  background-color: rgba(40,40,40,.9);
  flex: 1 1 0;
}
.hp-adv-label:hover { color: #fff !important; opacity: .9; }

.hp-adv-cta {
  background: #fff;
  padding: 56px 0 0;
}
.hp-adv-cta__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1577px;
  margin: 0 auto 28px;
  padding: 0 24px;
}
.hp-adv-cta__deco {
  width: min(588px, 48%);
  height: auto;
  display: block;
}
.hp-adv-cta__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 172px;
  height: 51px;
  padding: 0 22px;
  color: #fff !important;
  background: url("../img/ecology/box_9.png") center/100% 100% no-repeat;
  background-color: #2980d6;
  font-size: 16px;
}
.hp-adv-cta__more:hover { color: #fff !important; opacity: .92; }

/* ---------- Home News（双栏列表，对齐设计稿） ---------- */
.hp-news {
  background: #fff;
  padding: 72px 0 80px;
}
.hp-news__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.hp-news__heading {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.hp-news__zh {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}
.hp-news__en {
  font-size: 22px;
  font-weight: 400;
  color: #b0b0b0;
  line-height: 1.2;
}
.hp-news__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 44px;
  padding: 0 18px;
  background: #333;
  color: #fff !important;
  font-size: 15px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.hp-news__more:hover { background: #222; color: #fff !important; }
.hp-news__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 72px;
}
.hp-news-row {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid #e8e8e8;
  color: inherit;
}
.hp-news-row:first-child { padding-top: 0; }
.hp-news-row__date {
  display: block;
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 10px;
  line-height: 1.2;
}
.hp-news-row__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hp-news-row__title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hp-news-row__arrow {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  position: relative;
}
.hp-news-row__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #999;
  border-right: 1.5px solid #999;
  transform: translate(-60%, -50%) rotate(45deg);
}
.hp-news-row:hover .hp-news-row__title { color: var(--hp-accent); }
.hp-news-row:hover .hp-news-row__arrow { border-color: var(--hp-accent); }
.hp-news-row:hover .hp-news-row__arrow::before { border-color: var(--hp-accent); }

.hp-contact-block { padding: 72px 0; }
.hp-contact-block__title { font-size: 32px; font-weight: 700; margin-bottom: 20px; }
.hp-contact-block__info { line-height: 2; color: #444; }
.hp-contact-block__qr img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  background: #fff;
  border: 1px solid #eee;
}
.hp-contact-block__qr span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* ---------- 关于我们页（对齐演示稿截图） ---------- */
.hp-about-banner--default {
  background-image: url("../img/about/fill_box_3.png");
}
.hp-apage {
  padding: 48px 0 0;
  background: #fff;
}
.hp-apage > .container,
.hp-apage-glp-band > .container,
.hp-apage-park-band > .container {
  max-width: 1257px;
}
.hp-apage__head { margin-bottom: 28px; }
/* 普洛斯：白底独立板块 */
.hp-apage-glp-band {
  background: #fff;
  padding: 48px 0 56px;
}
/* 北京环普：通栏浅灰底，与上方白底板块留间距 */
.hp-apage-park-band {
  background: #f5f5f5;
  padding: 72px 0 80px;
  margin-top: 24px;
}
.hp-apage__title {
  margin: 0;
  color: #222;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
.hp-apage__en {
  margin: 6px 0 0;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.hp-apage-glp {
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(320px, 1.15fr);
  gap: 36px 40px;
  align-items: start;
}
.hp-apage-glp__media {
  position: relative;
  width: 100%;
  aspect-ratio: 524 / 407;
  overflow: hidden;
  background: #111 center/cover no-repeat;
  border-radius: 2px;
}
.hp-apage-glp__media--default {
  background-image: url("../img/about/fill_box_3.png");
}
.hp-apage-glp__video,
.hp-apage-glp__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.hp-apage-glp__rich > p {
  margin: 0 0 12px;
  color: #555;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}
.hp-apage-glp__rich > p:first-child {
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 14px;
}
.hp-apage-glp__rich > p:last-child { margin-bottom: 0; }
.hp-apage-glp__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #222;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.hp-apage-glp__brand-bar {
  display: block;
  width: 37px;
  height: 2px;
  background: #8490a1;
  flex-shrink: 0;
}
.hp-apage-glp__lead {
  margin: 0 0 14px;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}
.hp-apage-glp__text {
  margin: 0 0 12px;
  color: #555;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}
.hp-apage-glp__text:last-of-type { margin-bottom: 0; }
.hp-apage-metrics { margin-top: 28px; }
.hp-apage-metrics__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  padding-bottom: 22px;
}
.hp-apage-metrics__h {
  margin: 0 0 14px;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.hp-apage-metrics__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.hp-apage-metric {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.hp-apage-metric__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.hp-apage-metric__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.hp-apage-metric__label {
  color: #333;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.hp-apage-metric__val {
  color: #222;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
}
.hp-apage-metric__val em {
  font-style: normal;
  font-weight: 700;
  color: #68a451;
  margin-right: 2px;
}
.hp-apage-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 5px;
}
.hp-apage-fcard {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 67px;
  padding: 12px 14px;
  border: 1px solid #cacfd8;
  border-radius: 10px;
  background: #fff;
}
.hp-apage-fcard__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.hp-apage-fcard__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.hp-apage-fcard__label {
  color: #222;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.hp-apage-fcard__val {
  color: #68a451;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.hp-apage-park {
  margin-top: 0;
  padding: 0;
  background: transparent;
}
.hp-apage-park__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 1fr);
  gap: 36px 40px;
  align-items: start;
}
.hp-apage-park__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #222;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.hp-apage-park__bar {
  display: block;
  width: 37px;
  height: 2px;
  background: #8490a1;
  flex-shrink: 0;
}
.hp-apage-park__lead,
.hp-apage-park__rich > p:first-child {
  margin: 0 0 16px;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}
.hp-apage-park__body,
.hp-apage-park__rich .hp-apage-park__body {
  color: #555;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}
.hp-apage-park__body p,
.hp-apage-park__rich .hp-apage-park__body p { margin: 0 0 14px; }
.hp-apage-park__body p:last-child,
.hp-apage-park__rich .hp-apage-park__body p:last-child { margin-bottom: 0; }
.hp-apage-park__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
}
.hp-apage-card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 240 / 183;
  overflow: hidden;
  background: #1a1a1a center/cover no-repeat;
  border-radius: 2px;
}
.hp-apage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.12) 100%);
  pointer-events: none;
}
.hp-apage-card--1,
.hp-apage-card--2,
.hp-apage-card--3,
.hp-apage-card--4 { /* 默认切图已含文案，去掉遮罩避免发灰 */
}
.hp-apage-card--1::before,
.hp-apage-card--2::before,
.hp-apage-card--3::before,
.hp-apage-card--4::before {
  display: none;
}
.hp-apage-card--1 { background-image: url("../img/about/card_group_13.png"); }
.hp-apage-card--2 { background-image: url("../img/about/card_group_15.png"); }
.hp-apage-card--3 { background-image: url("../img/about/card_box_14.png"); }
.hp-apage-card--4 { background-image: url("../img/about/card_box_16.png"); }
.hp-apage-card__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 16px 16px 16px 18px;
}
.hp-apage-card__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 17px;
}
.hp-apage-card__bar {
  display: block;
  width: 4px;
  height: 17px;
  flex-shrink: 0;
  background: rgba(254, 194, 0, 0.66);
}
.hp-apage-card__title {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: normal;
}
.hp-apage-card__desc {
  margin: 12px 0 0;
  max-width: 92%;
  color: rgba(220, 220, 220, 0.92);
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
  display: block;
  overflow: visible;
}

/* ---------- 园区优势页（对齐设计图三套网格） ---------- */
.hp-ecology-banner--default {
  background-image: url("../img/ecology/fill_group_2.png");
}
.hp-ecology {
  padding: 0 0 80px;
  background: #fff;
}

/* 园区优势：通栏浅灰底；Tab 为紧凑块，不撑满灰条 */
.hp-ecology-jump {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  min-width: 0;
  height: auto;
  background: transparent;
}
.hp-ecology-jump__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  min-height: 0;
  color: #333 !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none !important;
  white-space: nowrap;
  background: transparent;
  transition: background .2s ease, color .2s ease;
}
.hp-ecology-jump__item:hover {
  color: #111 !important;
}
.hp-ecology-jump__item.is-active {
  color: #fff !important;
  font-weight: 400;
  background: #2a2a2a;
}
/* 通栏改为与 banner 同宽浅灰底；灰条加高，Tab 紧凑不撑满 */
body:has(.hp-ecology-jump) .hp-nlist-crumb {
  margin-top: 0;
  background: #fff;
}
body:has(.hp-ecology-jump) .hp-nlist-crumb .container,
body:has(.hp-ecology-jump) .hp-nlist-crumb__row {
  background: #f2f2f2;
  min-height: 64px;
  padding-left: 15px;
  padding-right: 15px;
  align-items: center;
}

.hp-ecology-block {
  padding-top: 56px;
  scroll-margin-top: 100px;
}
.hp-ecology-block__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.hp-ecology-block__line {
  display: block;
  width: 164px;
  height: 1px;
  background: #b2b2b2;
  flex-shrink: 0;
}
.hp-ecology-block__title {
  margin: 0;
  color: #222;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  flex: 0 1 auto;
  overflow: visible;
}

/* 通用格子 — 比例对齐设计切图 1256/1257 宽 */
.hp-eco-grid-wrap {
  --eco-green: #68a451;
  max-width: 1257px;
  margin: 0 auto;
  padding: 0 15px 8px;
}
.hp-eco-tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  color: #fff;
  text-decoration: none !important;
}
.hp-eco-tile--photo {
  background: #5a5a5a center/cover no-repeat;
  transition: transform .45s ease;
}
.hp-eco-tile--photo:hover {
  transform: scale(1.02);
}
.hp-eco-tile--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .5) 100%);
  pointer-events: none;
}
.hp-eco-tile__cap {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 1;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}
.hp-eco-tile__cap--center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.hp-eco-tile--green {
  background: #68a451;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hp-eco-tile__t1 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}
.hp-eco-tile__t2 {
  margin: 10px 0 0;
  font-size: clamp(15px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}
.hp-eco-tile__t1--lg { font-size: clamp(28px, 2.8vw, 44px); line-height: 1.2; }
.hp-eco-tile__t2--lg { font-size: clamp(22px, 2.2vw, 36px); }
.hp-eco-tile__t1--inline { font-size: clamp(24px, 2.4vw, 40px); white-space: nowrap; }
.hp-eco-tile__gap {
  display: inline-block;
  width: 1.2em;
}
.hp-eco-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}
.hp-eco-more__link {
  color: #999 !important;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;
  text-decoration: none !important;
  transition: color .2s ease;
}
.hp-eco-more__link:hover { color: #68a451 !important; }

/* Powered：上 313|42|430|41|430 ×421；下三等分 400×233；行距 34 */
.hp-eco-powered {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.7vw, 34px);
}
.hp-eco-powered__top {
  display: grid;
  grid-template-columns: 313fr 430fr 430fr;
  gap: clamp(20px, 3.3vw, 42px);
  aspect-ratio: 1256 / 421;
  max-height: 421px;
}
.hp-eco-powered__bot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(16px, 2.4vw, 30px);
  aspect-ratio: 1257 / 233;
  max-height: 233px;
}
.hp-eco-powered .hp-eco-cell--stack {
  display: grid;
  grid-template-rows: 180fr 215fr;
  gap: clamp(12px, 2vw, 26px);
  min-height: 0;
  height: 100%;
}
.hp-eco-powered .hp-eco-cell--stack .hp-eco-tile {
  min-height: 0;
}
.hp-eco-powered .hp-eco-cell--stack .hp-eco-tile--green {
  padding: clamp(24px, 3vw, 48px) clamp(16px, 1.8vw, 24px);
  justify-content: center;
  text-align: left;
}
.hp-eco-tile--green-slogan {
  padding: clamp(20px, 2.4vw, 48px) clamp(24px, 3vw, 48px);
  justify-content: center;
  text-align: left;
}

/* Housed：左 539（顶183+底362）| 右 677（上双高406 + 底绿146）*/
.hp-eco-housed-wrap { width: 100%; }
.hp-eco-housed {
  display: grid;
  grid-template-columns: 539fr 677fr;
  gap: clamp(18px, 3vw, 39px);
  aspect-ratio: 1255 / 586;
  max-height: 586px;
  align-items: stretch;
}
.hp-eco-housed__left {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 38px);
  min-height: 0;
}
.hp-eco-housed__ltop {
  flex: 183 1 0;
  min-height: 0;
}
.hp-eco-housed__ltop .hp-eco-tile { height: 100%; }
.hp-eco-housed__lbot {
  flex: 362 1 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 27px);
  min-height: 0;
}
.hp-eco-housed__right {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.4vw, 31px);
  min-height: 0;
}
.hp-eco-housed__rtall {
  flex: 406 1 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.8vw, 37px);
  min-height: 0;
}
.hp-eco-housed__rtall .hp-eco-tile {
  min-height: 0;
  height: 100%;
}
.hp-eco-housed__overlay {
  flex: 146 1 0;
  min-height: 0;
}
.hp-eco-housed__overlay .hp-eco-tile {
  height: 100%;
  min-height: 0;
}
.hp-eco-tile--hero-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hp-eco-tile--hero-text::after {
  background: linear-gradient(90deg, rgba(104, 164, 81, .82) 0%, rgba(104, 164, 81, .55) 55%, transparent 100%);
}
.hp-eco-tile__hero {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 2.4vw, 40px) clamp(24px, 3vw, 44px);
  color: #fff;
}
.hp-eco-tile__t1--hero {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}
.hp-eco-tile__t2--hero {
  margin: 8px 0 0;
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}
.hp-eco-tile--green-bar {
  padding: 24px 36px;
  justify-content: center;
}
.hp-eco-tile--green-bar .hp-eco-tile__t1 {
  font-size: clamp(26px, 2.8vw, 48px);
}
.hp-eco-tile--green-bar .hp-eco-tile__t2 {
  font-size: clamp(18px, 1.8vw, 30px);
}
.hp-eco-tile--housed-overlay {
  padding: 0 clamp(24px, 4vw, 48px);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hp-eco-tile--housed-overlay .hp-eco-tile__t1--inline {
  font-size: clamp(22px, 2.4vw, 40px);
}

/* Cared：上 755|449 ×298；下三等分 400×297；行距 31；竖条 201 */
.hp-eco-cared {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vw, 31px);
}
.hp-eco-cared__top {
  display: grid;
  grid-template-columns: 755fr 449fr;
  gap: clamp(20px, 4vw, 51px);
  aspect-ratio: 1255 / 298;
  max-height: 298px;
}
.hp-eco-cared__bot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(14px, 2.2vw, 28px);
  aspect-ratio: 1254 / 297;
  max-height: 297px;
}
.hp-eco-cared-text {
  height: 100%;
  min-height: 0;
}
.hp-eco-cared-hero {
  container-type: size;
  position: relative;
  display: block;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
/* 底图铺满整格；绿条叠在左侧半透明 */
.hp-eco-cared-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #5a5a5a center / cover no-repeat;
  text-decoration: none;
  transition: transform .45s ease;
}
.hp-eco-cared-hero:hover .hp-eco-cared-hero__img {
  transform: scale(1.03);
}
.hp-eco-cared-hero__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(140px, 26.6%, 201px);
  background: rgba(104, 164, 81, .72);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(16px, 3.3cqi, 25px);
  padding: clamp(12px, 6cqb, 20px) clamp(36px, 8.6cqi, 65px) clamp(12px, 5cqb, 18px) clamp(28px, 6.8cqi, 51px);
  box-sizing: border-box;
  font-size: clamp(18px, 10cqb, 30px);
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
}
.hp-eco-cared-hero__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: 0 0 auto;
  width: 1em;
  height: auto;
  max-height: 100%;
  margin: 0;
  padding: 0;
  min-height: 0;
  overflow: hidden;
}
/* 效果图：右列相对左列下沉，两列顶底不平齐 */
.hp-eco-cared-hero__col--sub {
  height: auto;
  max-height: calc(100% - clamp(32px, 18%, 52px));
  margin-top: clamp(32px, 18%, 52px);
  align-self: flex-start;
}
.hp-eco-cared-hero__col i {
  display: block;
  flex: 0 0 auto;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  width: 1em;
  height: 1em;
  text-align: center;
}
.hp-eco-tile--footbar::after { display: none; }
.hp-eco-tile--footbar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hp-eco-tile__foot {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: auto;
  padding: clamp(14px, 1.4vw, 20px) 18px;
  background: #68a451;
  color: #fff;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.hp-ecology-tenants {
  padding-top: 64px;
  background: #f5f5f5;
  margin-top: 48px;
  padding-bottom: 64px;
}
.hp-ecology-tenants .hp-ecology-block__head { margin-bottom: 36px; }
.hp-ecology-tenants .container { max-width: 1257px; }
.hp-ecology-tenants__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}
.hp-ecology-tenants__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}
.hp-ecology-tenants__item img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- 园区优势详情列表（Powered / Housed / Cared） ---------- */
.hp-eco-back {
  color: #333 !important;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color .2s ease;
}
.hp-eco-back:hover { color: #68a451 !important; }
.hp-eco-list {
  padding: 48px 0 72px;
  background: #fff;
}
.hp-eco-list .container { max-width: 1257px; }
.hp-eco-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
}
.hp-eco-list__item {
  position: relative;
  display: block;
  aspect-ratio: 400 / 299;
  overflow: hidden;
  background: #5a5a5a center/cover no-repeat;
  color: #fff;
  text-decoration: none !important;
}
.hp-eco-list__item--green {
  background: #68a451;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-eco-list__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
}
.hp-eco-list__item--green::after { display: none; }
.hp-eco-list__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  padding: 18px 20px 22px;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}
.hp-eco-list__item--green .hp-eco-list__title {
  position: relative;
  bottom: auto;
  padding: 24px 28px;
}
.hp-eco-list__pager { margin-top: 56px; }
body:has(.hp-eco-list) .hp-nlist-crumb__row {
  min-height: 80px;
  background: #f4f4f4;
}

/* ---------- 联系我们页（对齐演示稿 contact.html） ---------- */
.hp-contact-banner--default {
  background-image: url("../img/contact/fill_text-wrapper_2.png");
}
.hp-contact-page {
  padding: 72px 0 80px;
  background: #fff;
}
.hp-contact-page .container { max-width: 1257px; }
.hp-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 40px;
  align-items: start;
}
.hp-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hp-contact-card__icon {
  width: 90px;
  height: 90px;
  margin-bottom: -45px;
  position: relative;
  z-index: 2;
  background: center/100% 100% no-repeat;
  flex-shrink: 0;
}
.hp-contact-card__icon--1 { background-image: url("../img/contact/icon_circle_1.png"); }
.hp-contact-card__icon--2 { background-image: url("../img/contact/icon_circle_2.png"); }
.hp-contact-card__icon--3 { background-image: url("../img/contact/icon_circle_3.png"); }
.hp-contact-card__icon--4 { background-image: url("../img/contact/icon_circle_4.png"); }
.hp-contact-card__panel {
  width: 100%;
  min-height: 316px;
  padding: 64px 16px 36px;
  background: #f6f6f6;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.hp-contact-card__zh {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
}
.hp-contact-card__en {
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
}
.hp-contact-card__val {
  margin: 48px 0 0;
  padding-top: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  word-break: break-word;
}
.hp-contact-card__qr {
  margin-top: 36px;
  padding-top: 0;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.hp-contact-card__qr img {
  width: 118px;
  height: 115px;
  object-fit: cover;
  display: block;
  background: #fff;
}
.hp-contact-map {
  margin-top: 72px;
  width: 100%;
}
.hp-contact-map__link {
  display: block;
  line-height: 0;
}
.hp-contact-map__canvas {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  object-fit: cover;
  background: #eee;
}

/* ---------- Inner banner ---------- */
.hp-banner-inner {
  min-height: 220px;
  background: var(--hp-blue) center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.hp-banner-inner--default {
  background-image: url("../img/common/banner-default.png");
}
.hp-banner-inner__title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 12px;
}
.hp-banner-inner__crumb { font-size: 14px; opacity: .92; }
.hp-banner-inner__crumb a { color: #fff; }

/* ---------- Content pages ---------- */
.hp-main { padding: 48px 0 72px; }
.hp-article { line-height: 1.9; color: #444; }
.hp-article img { margin: 12px 0; }
.hp-meta { color: var(--hp-text-muted); font-size: 13px; margin-bottom: 20px; }
.hp-news-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}
.hp-news-item__thumb {
  flex: 0 0 160px;
  height: 110px;
  background: #eef2f7 center/cover no-repeat;
  border-radius: 2px;
}
.hp-news-item__title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.hp-news-item__desc { color: #666; font-size: 14px; margin: 0; }
.hp-pager { margin-top: 32px; }

/* ---------- 新闻列表（对齐演示稿 news.html） ---------- */
.hp-nlist-banner {
  width: 100%;
  max-width: 1257px;
  height: 240px;
  margin: 0 auto;
  background: #d8d8d8 center/cover no-repeat;
}
.hp-nlist-banner--default {
  background-image: url("../img/news/banner.png");
}
/* 内页统一面包屑：内容宽浅灰条（与主内容同宽 1257） */
.hp-nlist-crumb {
  background: #fff;
  padding: 0;
}
.hp-nlist-crumb .container,
.hp-nlist-crumb__row {
  max-width: 1257px;
  width: 100%;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
}
.hp-nlist-crumb__left {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}
.hp-nlist-crumb__inner {
  color: #333;
  font-size: 16px;
  white-space: nowrap;
  flex: 0 0 auto;
  margin-left: auto;
}
.hp-nlist-crumb__inner a { color: #333; }
.hp-nlist-crumb__inner a:hover { color: #68a451; }
.hp-nlist {
  padding: 32px 0 56px;
  background: #fff;
}
.hp-nlist .container { max-width: 1257px; }
.hp-nlist__head { margin-bottom: 16px; }
.hp-nlist__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #222;
}
.hp-nlist__en {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 22px;
  color: #999;
}
.hp-nlist-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  min-height: 224px;
  margin-top: 22px;
  padding: 18px 15px 14px;
  background: #fff;
  border-bottom: 1px solid #efefef;
  color: inherit;
}
.hp-nlist-item:first-of-type { margin-top: 16px; }
.hp-nlist-item:hover { color: inherit; }
.hp-nlist-item:hover .hp-nlist-item__title { color: var(--hp-accent); }
.hp-nlist-item__date {
  flex: 0 0 54px;
  padding-top: 22px;
  text-align: left;
}
.hp-nlist-item__day {
  display: block;
  color: #68a451;
  font-size: 48px;
  line-height: 1;
  font-weight: 400;
}
.hp-nlist-item__ym {
  display: block;
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}
.hp-nlist-item__body {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 673px;
  padding-top: 13px;
}
.hp-nlist-item__title {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-nlist-item__desc {
  margin: 20px 0 0;
  color: #666;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-nlist-item__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #666;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  white-space: nowrap;
}
.hp-nlist-item__more img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.hp-nlist-item__thumb {
  flex: 0 0 269px;
  width: 269px;
  height: 184px;
  margin-left: auto;
  background: #eee center/cover no-repeat;
}
.hp-nlist-pager {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
.hp-nlist-pager .pagination-block,
.hp-nlist-pager .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 21px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hp-nlist-pager .pagination li {
  margin: 0;
  list-style: none;
}
.hp-nlist-pager .pagination li a,
.hp-nlist-pager .pagination li span {
  box-sizing: border-box;
  width: 49px;
  height: 49px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #999;
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 47px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.hp-nlist-pager .pagination li.active span,
.hp-nlist-pager .pagination li a:hover {
  background: #68a451;
  border-color: #68a451;
  color: #fff;
}
.hp-nlist-pager .pagination li:first-child a,
.hp-nlist-pager .pagination li:first-child span,
.hp-nlist-pager .pagination li:last-child a,
.hp-nlist-pager .pagination li:last-child span {
  border: 0;
  background: transparent center/contain no-repeat;
  color: transparent;
  font-size: 0;
}
.hp-nlist-pager .pagination li:first-child a,
.hp-nlist-pager .pagination li:first-child span {
  background-image: url("../img/news/page-prev.png");
}
.hp-nlist-pager .pagination li:last-child a,
.hp-nlist-pager .pagination li:last-child span {
  background-image: url("../img/news/page-next.png");
}
.hp-nlist-pager .pagination li:first-child a:hover,
.hp-nlist-pager .pagination li:last-child a:hover {
  background-color: transparent;
  opacity: .85;
}

/* ---------- 新闻详情（精简：对齐列表页风格，仅当前文章） ---------- */
.hp-ndetail {
  padding: 40px 0 64px;
  background: #fff;
}
.hp-ndetail .container { max-width: 1257px; }
.hp-ndetail__article { max-width: 960px; margin: 0 auto; }
.hp-ndetail__head {
  text-align: center;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid #efefef;
}
.hp-ndetail__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  color: #222;
}
.hp-ndetail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 14px;
  color: #999;
  font-size: 14px;
  line-height: 1.4;
}
.hp-ndetail__meta-item {
  display: inline-flex;
  align-items: center;
}
.hp-ndetail__meta-item--author { color: #6b7c93; }
.hp-ndetail__body {
  color: #333;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}
.hp-ndetail__body p { margin: 0 0 1.1em; }
.hp-ndetail__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}
.hp-ndetail__body h2,
.hp-ndetail__body h3,
.hp-ndetail__body h4 {
  margin: 1.4em 0 .6em;
  color: #222;
  font-weight: 700;
  line-height: 1.35;
}
.hp-ndetail__nav {
  max-width: 960px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #efefef;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.hp-ndetail__nav-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #333;
}
.hp-ndetail__nav-item--next { text-align: right; align-items: flex-end; }
.hp-ndetail__nav-label {
  font-size: 13px;
  color: #999;
}
.hp-ndetail__nav-title {
  font-size: 15px;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.hp-ndetail__nav-item:hover .hp-ndetail__nav-title { color: #68a451; }
.hp-ndetail__nav-item.is-disabled {
  opacity: .45;
  pointer-events: none;
}
.hp-ndetail__back {
  max-width: 960px;
  margin: 24px auto 0;
  padding-top: 0;
  border-top: 0;
}
.hp-ndetail__back a {
  color: #666;
  font-size: 15px;
}
.hp-ndetail__back a:hover { color: #68a451; }

.hp-prenext {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 14px;
}

/* ---------- Footer（设计稿：深色 Contact Us） ---------- */
.hp-footer {
  background: #2e2e2e url("../img/footer/group_18.png") center bottom / cover no-repeat;
  color: #fff;
  padding: 80px 0 36px;
  margin-top: 0;
}
.hp-footer__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 20px;
}
.hp-footer__en {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
}
.hp-footer__cn {
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
}
.hp-footer__cn:hover { color: #fff; opacity: .85; }
.hp-footer__line {
  height: 1px;
  background: rgba(255,255,255,.3);
  margin-bottom: 28px;
}
.hp-footer__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 48px;
  flex-wrap: wrap;
  padding-bottom: 56px;
}
.hp-footer__info {
  flex: 1 1 280px;
  max-width: 560px;
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  color: #fff;
}
.hp-footer__info p { margin: 0 0 .2em; }
.hp-footer__qrs {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.hp-footer__qr {
  width: 162px;
  background: #fff;
  padding: 12px 10px 14px;
  text-align: center;
  color: #333;
}
.hp-footer__qr img {
  width: 129px;
  height: 125px;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  background: #f5f5f5;
}
.hp-footer__qr span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
}
.hp-footer__copy {
  padding-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
}
.hp-footer__copy p { margin: 0; }
.hp-footer__copy a { color: rgba(255,255,255,.7); }
.hp-footer__links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 99;
  display: none;
}

/* ---------- Responsive（仅 max-width，不影响 ≥992px 桌面） ---------- */
@media (max-width: 1199px) {
  :root { --hp-nav-size: 17px; }
}

@media (max-width: 991px) {
  :root { --hp-nav-size: 16px; }
  .site-header .navbar-nav {
    align-items: flex-start !important;
    width: 100%;
  }
  .site-header .nav-item { width: auto; max-width: 100%; }
  .site-header .hp-navbar .nav-link,
  .site-header .dropdown-item {
    display: inline-block;
    width: auto;
    padding: .75rem .25rem !important;
    margin: 0 .75rem;
    min-height: 44px;
  }
  /* 下划线贴合文字宽度（inline-block 后 left/right 相对文字盒） */
  .site-header .hp-navbar .nav-link.active::after,
  .site-header .hp-navbar .nav-item.active > .nav-link::after {
    left: 0;
    right: 0;
    width: auto;
    bottom: 4px;
    height: 3px;
  }
  .site-header .navbar-collapse {
    max-height: calc(100vh - var(--hp-header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .is-home .site-header .navbar-collapse {
    background: rgba(20,40,70,.96);
    margin-top: 12px;
    padding: 12px;
    border-radius: 4px;
  }
  .is-home .site-header.is-scrolled .navbar-collapse {
    background: #fff;
  }
  .hp-section { padding: 48px 0; }
  .hp-section__title { font-size: 26px; }
  .hp-banner-inner__title { font-size: 28px; }
  .hp-about__media { max-width: 100%; height: 400px; }
  .hp-about__img-main img { height: 340px; }
  .hp-about__img-overlay img { height: 280px; }
  .hp-about__en { font-size: 36px; }
  .hp-about__cn { font-size: 22px; }
  .hp-about__content { padding-left: 0; }
  .hp-about__slogan-text { white-space: normal; }
  .hp-adv-head__title {
    font-size: 32px;
    white-space: normal;
  }
  .hp-adv-head__cn { font-size: 24px; }
  .hp-adv-tabs {
    width: 100%;
    justify-content: stretch;
    flex-wrap: wrap;
  }
  .hp-adv-tabs__item {
    flex: 1 1 auto;
    justify-content: center;
    padding: 12px 14px;
    min-height: 44px;
    font-size: 15px;
    white-space: normal;
    text-align: center;
  }
  .hp-adv-tile--housed-overlay .hp-adv-tile__t1--inline {
    white-space: normal;
  }
  .hp-adv-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
    max-height: none;
    grid-template-areas:
      "stack stack"
      "a b"
      "bot bot"
      "tall tall";
  }
  .hp-adv-cell--stack {
    grid-template-rows: auto auto;
    min-height: 280px;
  }
  .hp-adv-cell--a,
  .hp-adv-cell--b { min-height: 200px; }
  .hp-adv-mosaic__bot {
    grid-template-columns: 1fr 1fr;
  }
  .hp-adv-mosaic__bot > .hp-adv-tile { min-height: 160px; }
  .hp-adv-mosaic__bot > .hp-adv-tile:last-child { grid-column: 1 / -1; }
  .hp-adv-cell--tall { min-height: 320px; }
  .hp-adv-housed,
  .hp-adv-cared {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    max-height: none;
  }
  .hp-adv-housed__main,
  .hp-adv-cared__main { height: auto; }
  .hp-adv-housed__grid {
    aspect-ratio: auto;
    max-height: none;
    height: auto;
    grid-template-columns: 1fr;
  }
  .hp-adv-housed__rtall { grid-template-columns: 1fr 1fr; }
  .hp-adv-cared__top {
    grid-template-columns: 1fr;
    min-height: 220px;
    flex: none;
  }
  .hp-adv-cared__bot {
    grid-template-columns: 1fr 1fr;
    flex: none;
  }
  .hp-adv-housed__tall .hp-adv-tile,
  .hp-adv-cared__tall .hp-adv-tile { min-height: 320px; }
  .hp-adv-mosaic__labels { position: static; width: 100%; margin-top: 12px; }
  .hp-adv-cta__bar { flex-direction: column; align-items: flex-start; }
  .hp-adv-cta__deco { width: 100%; max-width: 588px; }
  .hp-news__zh { font-size: 28px; }
  .hp-news__en { font-size: 18px; }
  .hp-news__cols { gap: 0 36px; }
  .hp-news-row__title {
    font-size: 16px;
    white-space: normal;
  }
  .hp-nlist-banner { height: 200px; }
  .hp-eco-list__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-nlist__title { font-size: 30px; }
  .hp-nlist-crumb .container,
  .hp-nlist-crumb__row {
    flex-wrap: wrap;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hp-nlist-crumb__left {
    flex: 1 1 100%;
    order: 2;
    min-width: 0;
  }
  .hp-nlist-crumb__inner {
    flex: 1 1 100%;
    order: 1;
    text-align: right;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #e5e5e5;
    white-space: normal;
  }
  .hp-nlist-item {
    flex-wrap: wrap;
    gap: 16px 20px;
    min-height: 0;
  }
  .hp-nlist-item__thumb {
    flex: 0 1 180px;
    width: 180px;
    height: 124px;
  }
  .hp-nlist-item__body { max-width: none; min-width: 0; }
  .hp-nlist-item__title { white-space: normal; }
  .hp-nlist-item__day { font-size: 40px; }
  .hp-ndetail__title { font-size: 24px; }
  .hp-apage__title { font-size: 30px; }
  .hp-apage-glp {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .hp-apage-glp__brand { font-size: 24px; }
  .hp-apage-metrics__cols { grid-template-columns: 1fr; }
  .hp-apage-metric__val { white-space: normal; }
  .hp-apage-feature-cards { grid-template-columns: 1fr; }
  .hp-apage-glp-band { padding: 36px 0 40px; }
  .hp-apage-park-band { padding: 48px 0 56px; margin-top: 16px; }
  .hp-apage-park__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .hp-apage-park__title {
    font-size: 24px;
    white-space: normal;
  }
  .hp-apage-park__cards { grid-template-columns: 1fr 1fr; }
  .hp-apage-card__title { white-space: normal; }
  .hp-ecology-jump {
    width: auto;
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .hp-ecology-jump__item {
    flex: 0 0 auto;
    padding: 8px 14px;
    min-height: 0;
    font-size: 14px;
  }
  body:has(.hp-ecology-jump) .hp-nlist-crumb .container,
  body:has(.hp-ecology-jump) .hp-nlist-crumb__row {
    min-height: 56px;
  }
  .hp-ecology-block__title { white-space: normal; text-align: center; }
  .hp-ecology-block__line { width: 48px; }
  /* 平板：取消 ecology 固定比例，避免挤压溢出（桌面 ≥992 不变） */
  .hp-eco-powered__top,
  .hp-eco-powered__bot,
  .hp-eco-cared__top,
  .hp-eco-cared__bot,
  .hp-eco-housed {
    aspect-ratio: auto;
    max-height: none;
    height: auto;
  }
  .hp-eco-powered__top {
    grid-template-columns: 1fr 1fr;
  }
  .hp-eco-powered__top > :first-child { grid-column: 1 / -1; min-height: 220px; }
  .hp-eco-powered__top > :nth-child(2),
  .hp-eco-powered__top > :nth-child(3) { min-height: 220px; }
  .hp-eco-powered .hp-eco-cell--stack {
    grid-template-rows: 1fr 1fr;
    min-height: 360px;
  }
  .hp-eco-powered__bot { grid-template-columns: 1fr 1fr 1fr; }
  .hp-eco-powered__bot > * { min-height: 160px; }
  .hp-eco-housed { grid-template-columns: 1fr 1fr; }
  .hp-eco-housed__ltop { flex: none; min-height: 140px; }
  .hp-eco-housed__lbot { flex: none; }
  .hp-eco-housed__lbot .hp-eco-tile { min-height: 180px; }
  .hp-eco-housed__rtall { flex: none; }
  .hp-eco-housed__rtall .hp-eco-tile { min-height: 200px; }
  .hp-eco-housed__overlay { flex: none; }
  .hp-eco-housed__overlay .hp-eco-tile { min-height: 100px; }
  .hp-eco-tile__t1--inline { white-space: normal; }
  .hp-eco-cared__top { grid-template-columns: 1fr 1fr; }
  .hp-eco-cared__top > * { min-height: 220px; }
  .hp-eco-cared__bot { grid-template-columns: 1fr 1fr 1fr; }
  .hp-eco-cared__bot > * { min-height: 180px; }
  .hp-ecology-tenants__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hp-contact-cards { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .hp-contact-card__panel { min-height: 280px; }
  .hp-contact-map { margin-top: 48px; }
  .hp-contact-map__canvas { height: 420px; }
  .hp-footer__en { font-size: 36px; }
  .hp-footer__cn { font-size: 22px; }
  .hp-footer__info { font-size: 16px; }
  /* 遗留 default 结构模板：仅平板/手机补间距 */
  .main-container { padding: 28px 0 48px; }
  .main-container .sidebar { margin-bottom: 24px; }
  .main-container .column-title { font-size: 26px; word-break: break-word; }
}

@media (max-width: 767px) {
  /* Mobile QA adjustments: keep every change in the phone breakpoint. */
  .is-home .site-header .site-navigation {
    min-height: 62px;
  }
  .is-home .site-header .logo-img {
    height: 32px;
  }
  .is-home .site-header .logo-link { gap: 10px; }
  .is-home .site-header .navbar-toggler {
    padding: .32rem .5rem;
  }
  .is-home .hp-hero {
    height: 240px;
    aspect-ratio: auto;
  }
  .is-home .hp-hero__slide {
    background-position: 35% top;
  }

  .is-home .hp-advantages {
    padding-top: 48px;
  }
  .is-home .hp-adv-head {
    margin-bottom: 24px;
  }

  .hp-news-item { flex-direction: column; }
  .hp-news-item__thumb { flex-basis: auto; width: 100%; height: 160px; }
  .hp-nlist-banner { height: 160px; max-width: none; }
  .hp-nlist-crumb .container,
  .hp-nlist-crumb__row { justify-content: space-between; }
  .hp-nlist__title { font-size: 26px; }
  .hp-nlist-item {
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 16px 0;
  }
  .hp-nlist-item__date { flex-basis: 48px; padding-top: 0; }
  .hp-nlist-item__day { font-size: 36px; }
  .hp-nlist-item__body { max-width: none; flex: 1 1 calc(100% - 70px); padding-top: 0; }
  .hp-nlist-item__title { white-space: normal; font-size: 18px; }
  .hp-nlist-item__thumb {
    flex: 1 1 100%;
    width: 100%;
    height: 180px;
    margin-left: 0;
  }
  .hp-nlist-pager .pagination-block,
  .hp-nlist-pager .pagination { gap: 10px; }
  .hp-nlist-pager .pagination li a,
  .hp-nlist-pager .pagination li span {
    width: 44px;
    height: 44px;
    line-height: 42px;
    font-size: 14px;
  }
  .hp-eco-list { padding: 28px 0 48px; }
  .hp-eco-list__grid { grid-template-columns: 1fr; gap: 16px; }
  .hp-eco-list__title { white-space: normal; font-size: 16px; padding: 14px 12px 16px; }
  .hp-eco-list__pager { margin-top: 32px; }
  .hp-ndetail { padding: 28px 0 48px; }
  .hp-ndetail__title { font-size: 20px; }
  .hp-ndetail__nav { flex-direction: column; gap: 16px; }
  .hp-ndetail__nav-item--next { text-align: left; align-items: flex-start; }
  .hp-apage { padding: 28px 0 0; }
  .hp-apage-glp-band { padding: 28px 0 32px; }
  .hp-apage-park-band { padding: 40px 0 56px; margin-top: 12px; }
  .hp-apage__title { font-size: 24px; }
  .hp-apage-glp__brand { font-size: 22px; }
  .hp-apage-metrics__row { grid-template-columns: 1fr; }
  .hp-apage-park__cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hp-nlist-crumb__row {
    flex-wrap: wrap;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hp-nlist-crumb__left { flex: 1 1 100%; order: 2; }
  .hp-nlist-crumb__inner {
    flex: 1 1 100%;
    order: 1;
    text-align: right;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid #e5e5e5;
    white-space: normal;
  }
  .hp-ecology-jump {
    width: auto;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .hp-ecology-jump__item {
    flex: 0 0 auto;
    justify-content: center;
    padding: 8px 12px;
    min-height: 0;
    font-size: 13px;
    white-space: nowrap;
  }
  body:has(.hp-ecology-jump) .hp-nlist-crumb .container,
  body:has(.hp-ecology-jump) .hp-nlist-crumb__row {
    min-height: 52px;
  }
  .hp-ecology-block { padding-top: 36px; scroll-margin-top: 80px; }
  .hp-ecology-block__head { gap: 10px; margin-bottom: 24px; }
  .hp-ecology-block__line { width: 36px; }
  .hp-ecology-block__title { font-size: 22px; white-space: normal; }
  .hp-eco-powered__top {
    grid-template-columns: 1fr;
  }
  .hp-eco-powered__top > :first-child { grid-column: auto; min-height: 200px; }
  .hp-eco-powered__top > :nth-child(2),
  .hp-eco-powered__top > :nth-child(3) { min-height: 200px; }
  .hp-eco-powered .hp-eco-cell--stack {
    grid-template-rows: 1fr 1fr;
    min-height: 340px;
  }
  .hp-eco-powered__bot { grid-template-columns: 1fr 1fr; }
  .hp-eco-powered__bot > :last-child { grid-column: 1 / -1; min-height: 130px; }
  .hp-eco-powered__bot > :not(:last-child) { min-height: 180px; }
  .hp-eco-housed { grid-template-columns: 1fr; }
  .hp-eco-housed__ltop { flex: none; min-height: 140px; }
  .hp-eco-housed__lbot { flex: none; }
  .hp-eco-housed__lbot .hp-eco-tile { min-height: 180px; }
  .hp-eco-housed__rtall { flex: none; }
  .hp-eco-housed__rtall .hp-eco-tile { min-height: 220px; }
  .hp-eco-housed__overlay { flex: none; }
  .hp-eco-housed__overlay .hp-eco-tile { min-height: 100px; }
  .hp-eco-tile__t1--inline { white-space: normal; }
  .hp-eco-cared__top { grid-template-columns: 1fr; }
  .hp-eco-cared__top > * { min-height: 220px; }
  .hp-eco-cared__bot { grid-template-columns: 1fr; }
  .hp-eco-cared__bot > * { min-height: 200px; }
  .hp-eco-cared-hero__bar {
    width: clamp(110px, 32%, 140px);
    gap: 14px;
    padding: 16px 28px 14px 22px;
    font-size: 16px;
  }
  .hp-eco-cared-hero__col--sub {
    max-height: calc(100% - 24px);
    margin-top: 24px;
  }
  .hp-eco-tile__cap { font-size: 16px; left: 14px; bottom: 12px; }
  .hp-eco-tile__foot { font-size: 15px; padding: 12px 14px; }
  .hp-ecology-tenants { padding-top: 40px; padding-bottom: 40px; margin-top: 24px; }
  .hp-ecology-tenants__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hp-ecology-tenants__item { min-height: 64px; }
  .hp-ecology-tenants__item img { max-height: 44px; }
  .hp-contact-page { padding: 40px 0 56px; }
  .hp-contact-cards { grid-template-columns: 1fr; gap: 28px; max-width: 360px; margin: 0 auto; }
  .hp-contact-card__zh { font-size: 20px; }
  .hp-contact-map { margin-top: 36px; }
  .hp-contact-map__canvas { height: 320px; }
  .hp-contact-block__qr img { width: 120px; height: 120px; }
  .hp-prenext { flex-direction: column; }
  .hp-about__media { height: 320px; }
  .hp-about__img-main { width: 56%; }
  .hp-about__img-main img { height: 270px; }
  .hp-about__img-overlay { width: 54%; border-width: 8px; border-radius: 10px; }
  .hp-about__img-overlay img { height: 220px; }
  .hp-about__en { font-size: 28px; }
  .hp-about__zh { font-size: 16px; }
  .hp-adv-head__title { font-size: 26px; white-space: normal; }
  .hp-adv-head__line { width: 48px; }
  .hp-adv-tabs__item { font-size: 14px; padding: 10px 14px; }
  .hp-adv-mosaic {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    max-height: none;
    grid-template-areas:
      "stack"
      "a"
      "b"
      "bot"
      "tall";
  }
  .hp-adv-cell--stack { min-height: 240px; }
  .hp-adv-mosaic .hp-adv-cell--stack {
    grid-template-rows: auto minmax(260px, 1fr);
    min-height: 400px;
  }
  .hp-adv-mosaic .hp-adv-cell--stack > .hp-adv-tile--photo {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eef1f2;
  }
  .hp-adv-cell--a,
  .hp-adv-cell--b,
  .hp-adv-mosaic__bot > .hp-adv-tile,
  .hp-adv-cell--tall > .hp-adv-tile { min-height: 180px; }
  .hp-adv-mosaic__bot {
    grid-template-columns: 1fr;
  }
  .hp-adv-mosaic__bot > .hp-adv-tile:last-child { grid-column: auto; }
  .hp-adv-cell--tall { min-height: 260px; }
  .hp-adv-housed__lbot,
  .hp-adv-housed__rtall,
  .hp-adv-cared__bot { grid-template-columns: 1fr; }
  .hp-adv-housed {
    gap: 14px;
  }
  .hp-adv-housed__grid,
  .hp-adv-housed__left,
  .hp-adv-housed__right {
    gap: 14px;
  }
  .hp-adv-housed__ltop {
    min-height: 150px;
  }
  .hp-adv-housed__ltop .hp-adv-tile {
    background-size: cover;
    background-position: center;
  }
  .hp-adv-housed__tall:has(.hp-adv-tile--placeholder) {
    display: none;
  }
  .hp-adv-cared-hero { min-height: 240px; }
  .hp-adv-cared__main,
  .hp-adv-cared__top,
  .hp-adv-cared__bot {
    gap: 14px;
  }
  .hp-adv-cared__top > .hp-adv-tile--footbar,
  .hp-adv-cared__bot > .hp-adv-tile--footbar {
    min-height: 230px;
    background-size: cover;
    background-position: center;
  }
  .hp-adv-cared__top > .hp-adv-tile--footbar .hp-adv-tile__foot,
  .hp-adv-cared__bot > .hp-adv-tile--footbar .hp-adv-tile__foot {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hp-adv-cared__tall:has(.hp-adv-tile--placeholder) {
    display: none;
  }
  .hp-adv-cta__pair { flex-direction: column; }
  .hp-adv-cta__pair img { width: 100%; }
  .hp-news__bar { flex-wrap: wrap; }
  .hp-news__cols { grid-template-columns: 1fr; gap: 0; }
  .hp-footer { padding: 48px 0 28px; }
  .hp-footer__en { font-size: 28px; }
  .hp-footer__cn { font-size: 18px; }
  .hp-footer__body { padding-bottom: 32px; }
  .hp-footer__qr { width: 148px; }
  .hp-footer__qr img { width: 120px; height: 116px; }

  .hp-ecology > .hp-ecology-block:first-child {
    padding-top: 16px;
  }

  .hp-eco-cared-hero__bar,
  .hp-adv-cared-hero__bar {
    width: clamp(98px, 25%, 108px);
    gap: 10px;
    padding: 14px 12px 12px;
    font-size: 16px;
    justify-content: center;
  }
  .hp-eco-cared-hero__col--sub,
  .hp-adv-cared-hero__col--sub {
    max-height: calc(100% - 2em);
    margin-top: 2em;
  }

  .hp-contact-banner {
    background-size: auto 100%;
    background-position: left center;
    background-repeat: no-repeat;
    background-color: #767570;
  }
}

@media (max-width: 575px) {
  :root { --hp-header-h: 72px; --hp-nav-size: 15px; }
  .site-header .logo-img { height: 40px; }
  .site-header .logo-link { gap: 8px; }
  .hp-section__title { font-size: 22px; }
  .hp-footer__qrs { gap: 12px; justify-content: flex-start; width: 100%; }
  .hp-apage-park__cards { grid-template-columns: 1fr; }
  .hp-ecology-tenants__grid { grid-template-columns: repeat(2, 1fr); }
}
