/* Site UI — modern header, nav dropdown, inner page hero */
:root {
  --hs-brand: #22b565;
  --hs-brand-dark: #16804a;
  --hs-brand-light: #e8f7ef;
  --hs-ink: #0f172a;
  --hs-muted: #64748b;
  --hs-border: #e2e8f0;
  --hs-header-h: 72px;
  --hs-logo-h: 36px;
  --hs-radius: 12px;
  --hs-radius-lg: 16px;
  --hs-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --hs-shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.06);
  --hs-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
}

body.page-home,
body.page-inner {
  font-family: var(--hs-font);
  color: var(--hs-ink);
}

body.page-inner {
  background: #f8fafc;
}

/* —— 全站统一顶栏（首页 + 内页同高同样式） —— */
.hs-header .header-area,
.hs-header .hs-header__bar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hs-header .header-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--hs-header-h);
  min-height: var(--hs-header-h);
}

.hs-header__brand {
  line-height: 0;
  flex-shrink: 0;
}

.hs-header__brand .sticky-img {
  display: none !important;
}

.hs-header .header-sticky.is-active .hs-header__brand .primary-img {
  display: none !important;
}

.hs-header .header-sticky.is-active .hs-header__brand .sticky-img {
  display: block !important;
}

.hs-header__brand img {
  max-height: var(--hs-logo-h);
  width: auto;
  transition: transform 0.25s ease;
}

.hs-header__brand:hover img {
  transform: scale(1.02);
}

.hs-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hs-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hs-header__cta {
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  background: linear-gradient(135deg, var(--hs-brand) 0%, var(--hs-brand-dark) 100%);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(34, 181, 101, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-header__cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 181, 101, 0.45);
}

.hs-header__cta--block {
  display: flex;
  margin-top: 24px;
  width: 100%;
}

.hs-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: var(--hs-radius);
  background: var(--hs-brand-light);
  color: var(--hs-brand-dark);
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.hs-header__toggle:hover {
  background: var(--hs-brand);
  color: #fff;
}

/* Nav list */
.hs-nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-header .header-menu-nav > ul > li,
.hs-header .hs-nav-list > li {
  height: auto;
  align-self: center;
}

.hs-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--hs-muted);
  text-decoration: none;
  border-radius: var(--hs-radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.hs-nav-list > li > a::after {
  display: none;
}

.hs-nav-list > li > a:hover,
.hs-nav-list > li.active > a,
.onepage-nav.hs-nav-list > li.active > a {
  color: var(--hs-brand);
  background: var(--hs-brand-light);
}

.hs-nav-chevron {
  font-size: 12px;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.hs-nav-item--dropdown:hover .hs-nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown — prevent header from clipping submenu */
.hs-header,
.hs-header .header-area,
.hs-header .hs-header__bar,
.hs-header .header-container,
.hs-header .hs-header__inner,
.hs-header .hs-header__nav,
.hs-header .header-menu,
.hs-header .header-menu-nav,
.hs-header .hs-nav-list {
  overflow: visible !important;
}

.hs-header .header-drop-holder,
.hs-header .hs-nav-item--dropdown {
  position: relative;
  z-index: 1;
}

/* 填补导航与下拉之间的空隙，避免移入时菜单消失/点不到 */
.hs-header .header-drop-holder::before,
.hs-header .hs-nav-item--dropdown::before {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 14px;
}

.hs-header .header-drop-holder:hover,
.hs-header .hs-nav-item--dropdown:hover {
  z-index: 200;
}

.hs-header .header-drop-menu,
.hs-header .hs-nav-dropdown {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 10px) !important;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(6px) scaleY(1) !important;
  -ms-transform: translateX(-50%) translateY(6px) scaleY(1) !important;
  transform: translateX(-50%) translateY(6px) scaleY(1) !important;
  -webkit-transform-origin: top center !important;
  -ms-transform-origin: top center !important;
  transform-origin: top center !important;
  min-width: 200px;
  width: max-content;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-lg);
  box-shadow: var(--hs-shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.hs-header .header-drop-holder:hover .header-drop-menu,
.hs-header .hs-nav-item--dropdown:hover .hs-nav-dropdown,
.hs-header .header-drop-menu:hover,
.hs-header .hs-nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0) scaleY(1) !important;
  -ms-transform: translateX(-50%) translateY(0) scaleY(1) !important;
  transform: translateX(-50%) translateY(0) scaleY(1) !important;
}

.hs-header .header-drop-menu > li,
.hs-header .hs-nav-dropdown > li {
  padding: 0;
}

.hs-header .header-drop-menu a,
.hs-header .hs-nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hs-ink);
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.hs-header .header-drop-menu a:hover,
.hs-header .hs-nav-dropdown a:hover {
  color: var(--hs-brand);
  background: var(--hs-brand-light);
}

/* Override legacy style.css dropdown offset (was pulled up and clipped) */
.hs-header .header-area .header-drop-menu,
.hs-header .header-area:not(.is-active) .header-drop-menu,
.hs-header .header-area:not([class*="is-active"]) .header-drop-menu {
  top: calc(100% + 10px) !important;
  left: 50% !important;
  width: max-content !important;
  min-width: 200px;
  padding: 8px !important;
  z-index: 1000 !important;
}

/* Homepage: header floats over hero */
.page-home .hs-header {
  position: relative;
  z-index: 500;
}

.page-home .hs-header .hs-header__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  overflow: visible !important;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.page-home .hs-header .header-sticky.is-active .hs-header__bar {
  position: fixed;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--hs-shadow-sm);
}

/* Inner pages: solid header bar (no overlap on banner) */
.page-inner .hs-header {
  position: relative;
  z-index: 500;
}

.page-inner .hs-header .header-area,
.page-inner .hs-header .hs-header__bar {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  overflow: visible !important;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--hs-shadow-sm);
}

.page-inner .hs-header .header-sticky.is-active {
  z-index: 999;
}

/* 内页导航文字：与首页滚动后顶栏一致 */
.page-inner .hs-header .hs-nav-list > li > a,
.page-inner .header-style-3 .header-menu-nav > ul > li > a {
  color: var(--hs-muted) !important;
}

.page-inner .hs-header .hs-nav-list > li > a:hover,
.page-inner .hs-header .hs-nav-list > li.active > a,
.page-inner .header-style-3 .header-menu-nav > ul > li > a:hover {
  color: var(--hs-brand) !important;
  background: var(--hs-brand-light);
}

/* 首页滚动固定后 = 内页顶栏 */
.page-home .hs-header .header-sticky.is-active .hs-nav-list > li > a {
  color: var(--hs-muted) !important;
}

.page-home .hs-header .header-sticky.is-active .hs-nav-list > li > a:hover,
.page-home .hs-header .header-sticky.is-active .hs-nav-list > li.active > a {
  color: var(--hs-brand) !important;
  background: var(--hs-brand-light);
}

.page-inner .hs-header .header-logo img.primary-img {
  display: block;
}

.page-inner .hs-header .header-logo img.sticky-img {
  display: none;
}

.page-inner .hs-header .header-sticky.is-active {
  animation: none;
}

.page-inner .hs-header .header-sticky.is-active .header-area,
.hs-header .header-sticky.is-active .header-area,
.hs-header .header-sticky.is-active .hs-header__bar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Homepage: refined transparent → sticky header */
.page-home .hs-header .hs-nav-list > li > a {
  color: rgba(255, 255, 255, 0.88);
}

.page-home .hs-header .hs-nav-list > li > a:hover,
.page-home .hs-header .hs-nav-list > li.active > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.page-home .hs-header__cta {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.page-home .hs-header__cta:hover {
  background: #fff;
  color: var(--hs-brand-dark) !important;
  box-shadow: var(--hs-shadow-sm);
}

.page-home .hs-header .header-sticky.is-active .hs-header__cta {
  background: linear-gradient(135deg, var(--hs-brand) 0%, var(--hs-brand-dark) 100%);
  border: none;
  color: #fff !important;
}

.page-home .hs-header .header-sticky.is-active .hs-header__cta:hover {
  color: #fff !important;
}

.page-home .hs-header__toggle {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.page-home .hs-header .header-sticky.is-active .hs-header__toggle {
  background: var(--hs-brand-light);
  color: var(--hs-brand-dark);
}

/* 首页下拉：白底深字（避免被顶栏白色链接样式覆盖） */
.page-home .hs-header .header-drop-menu a,
.page-home .hs-header .hs-nav-dropdown a,
.page-home .header-style-3:not(.is-active) .header-menu-nav .header-drop-menu a,
.page-home .header-style-3:not(.is-active) .header-menu-nav .hs-nav-dropdown a {
  color: #0f172a !important;
}

.page-home .hs-header .header-drop-menu,
.page-home .hs-header .hs-nav-dropdown {
  background: #ffffff !important;
}

.page-home .hs-header .header-drop-menu a:hover,
.page-home .hs-header .hs-nav-dropdown a:hover {
  color: #22b565 !important;
  background: #e8f7ef !important;
}

/* —— Page hero (breadcrumb banner) —— */
.hs-page-hero {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 48px 0 56px;
  background-color: var(--hs-brand-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hs-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(13, 122, 66, 0.92) 0%,
    rgba(34, 181, 101, 0.85) 50%,
    rgba(61, 212, 127, 0.75) 100%
  );
  pointer-events: none;
}

.hs-page-hero__overlay::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -180px;
  right: -120px;
}

.hs-page-hero__overlay::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  bottom: -140px;
  left: -80px;
}

.hs-page-hero .container {
  position: relative;
  z-index: 1;
}

.hs-page-hero__crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hs-page-hero__crumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hs-page-hero__crumb a:hover {
  color: #fff;
}

.hs-page-hero__sep {
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
}

.hs-page-hero__current {
  color: rgba(255, 255, 255, 0.95);
}

.hs-page-hero__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

.hs-page-hero__desc {
  margin: 12px 0 0;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

/* Override legacy breadcrumb sizing */
.page-inner .breadcrumb-height {
  height: auto;
}

.page-inner .breadcrumb-item {
  height: auto;
  align-items: flex-start;
}

/* Mobile offcanvas — modern drawer */
.offcanvas-backdrop.show {
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hs-offcanvas {
  width: min(320px, 88vw);
  border: none;
  box-shadow: 12px 0 48px rgba(15, 23, 42, 0.14);
  background: #fff;
}

.hs-offcanvas__header,
.hs-offcanvas .offcanvas-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 18px;
  border-bottom: none;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
}

.hs-offcanvas__header::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 181, 101, 0.2), transparent);
}

.hs-offcanvas__logo {
  display: inline-flex;
  line-height: 0;
}

.hs-offcanvas__logo img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.hs-offcanvas__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--hs-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hs-offcanvas__close:hover {
  background: var(--hs-brand-light);
  color: var(--hs-brand-dark);
}

.hs-offcanvas__body,
.hs-offcanvas .offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 24px;
  overflow-y: auto;
}

.hs-mobile-nav {
  flex: 1;
}

.hs-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hs-mobile-nav__item {
  margin: 0;
}

/* 覆盖 style.css 旧主题分隔线 */
.hs-offcanvas .onepage-offcanvas-nav > ul > li:not(:last-child),
.hs-offcanvas .hs-mobile-nav__list > .hs-mobile-nav__item:not(:last-child) {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.hs-mobile-nav__link,
.hs-offcanvas .onepage-offcanvas-nav > ul > li > a,
.hs-offcanvas .onepage-offcanvas-nav > ul li .dropdown .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--hs-ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.hs-mobile-nav__link:hover,
.hs-offcanvas .onepage-offcanvas-nav > ul > li > a:hover,
.hs-offcanvas .onepage-offcanvas-nav > ul li .dropdown .btn:hover,
.hs-offcanvas .onepage-offcanvas-nav > ul li .dropdown .btn.show {
  background: var(--hs-brand-light);
  color: var(--hs-brand-dark);
}

.hs-mobile-nav__item.is-active > .hs-mobile-nav__link,
.hs-offcanvas .onepage-offcanvas-nav > ul > li.active > a {
  background: var(--hs-brand-light);
  color: var(--hs-brand);
  font-weight: 600;
  box-shadow: inset 3px 0 0 var(--hs-brand);
}

.hs-mobile-nav__chevron {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--hs-muted);
  transition: transform 0.25s ease, color 0.2s ease;
}

.hs-mobile-nav__toggle.show .hs-mobile-nav__chevron,
.hs-offcanvas .onepage-offcanvas-nav > ul li .dropdown .btn.show .hs-mobile-nav__chevron {
  transform: rotate(180deg);
  color: var(--hs-brand);
}

.hs-mobile-nav__toggle.dropdown-toggle::after,
.hs-offcanvas .dropdown-toggle::after,
.hs-offcanvas .onepage-offcanvas-nav > ul li .dropdown .btn::after {
  display: none !important;
  content: none !important;
  border: none !important;
  margin: 0 !important;
}

.hs-mobile-nav__dropdown {
  width: 100%;
}

.hs-mobile-nav__sub,
.hs-offcanvas .dropdown-menu,
.hs-offcanvas .onepage-offcanvas-nav > ul li .dropdown-menu {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  float: none;
  width: 100%;
  margin: 2px 0 4px;
  padding: 4px 0 4px 8px;
  border: none;
  border-left: 2px solid rgba(34, 181, 101, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hs-mobile-nav__sublink,
.hs-offcanvas .dropdown-item,
.hs-offcanvas .onepage-offcanvas-nav > ul li .dropdown-menu li a.dropdown-item {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hs-muted);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.hs-mobile-nav__sublink:hover,
.hs-offcanvas .dropdown-item:hover,
.hs-offcanvas .onepage-offcanvas-nav > ul li .dropdown-menu li a.dropdown-item:hover {
  background: rgba(34, 181, 101, 0.08);
  color: var(--hs-brand-dark);
}

.hs-offcanvas .onepage-offcanvas-nav > ul li .dropdown-menu li:not(:last-child) {
  padding-bottom: 0;
  margin-bottom: 2px;
}

.hs-offcanvas__footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--hs-border);
}

.hs-offcanvas__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(135deg, var(--hs-brand) 0%, var(--hs-brand-dark) 100%);
  box-shadow: 0 4px 16px rgba(34, 181, 101, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-offcanvas__cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(34, 181, 101, 0.42);
}

@media (max-width: 991px) {
  :root {
    --hs-header-h: 64px;
    --hs-logo-h: 32px;
  }

  .hs-header__inner {
    gap: 16px;
  }

  /* 移动端统一显示 primary logo（修复 style.css 与 site-ui 冲突导致 logo 消失） */
  .hs-header .hs-header__brand .primary-img {
    display: block !important;
  }

  .hs-header .hs-header__brand .sticky-img {
    display: none !important;
  }

  .hs-header .header-sticky.is-active .hs-header__brand .primary-img {
    display: block !important;
  }

  .hs-header .header-sticky.is-active .hs-header__brand .sticky-img {
    display: none !important;
  }

  .hs-header__brand {
    flex: 1;
    min-width: 0;
  }

  .hs-header__brand img {
    max-height: var(--hs-logo-h);
    max-width: min(160px, 48vw);
    object-fit: contain;
    object-position: left center;
  }

  .hs-page-hero {
    min-height: 200px;
    padding: 40px 0 48px;
  }
}

@media (max-width: 767px) {
  .hs-nav-list > li > a {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* —— Footer —— */
.hs-footer {
  position: relative;
  margin-top: 0;
  background: linear-gradient(165deg, #0b1f17 0%, #0f2922 42%, #0d3328 100%);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.hs-footer__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(34, 181, 101, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 100%, rgba(34, 181, 101, 0.12) 0%, transparent 50%);
}

.hs-footer__main {
  position: relative;
  z-index: 1;
  padding: 64px 0 48px;
}

.hs-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 2fr);
  gap: 48px 40px;
  align-items: start;
}

.hs-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
}

.hs-footer__logo img {
  max-height: 40px;
  width: auto;
}

.hs-footer__desc {
  margin: 0 0 24px;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

.hs-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hs-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.hs-footer__contact li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 18px;
  color: var(--hs-brand);
}

.hs-footer__contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hs-footer__contact a:hover {
  color: #fff;
}

.hs-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
}

.hs-footer__title {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}

.hs-footer__title::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--hs-brand), transparent);
}

.hs-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-footer__col ul li {
  margin: 0;
}

.hs-footer__col ul li a {
  display: inline-block;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hs-footer__col ul li a:hover {
  color: var(--hs-brand);
  transform: translateX(4px);
}

.hs-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}

.hs-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 20px 0;
}

.hs-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.hs-footer__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.hs-footer__icp {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.hs-footer__icp a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hs-footer__icp a:hover {
  color: var(--hs-brand);
}

.hs-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.hs-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hs-footer__bottom-links a:hover {
  color: var(--hs-brand);
}

.hs-scroll-top.scroll-to-top {
  background: var(--hs-brand);
}

.hs-scroll-top.scroll-to-top:hover {
  background: var(--hs-brand-dark);
}

@media (max-width: 1199px) {
  .hs-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hs-footer__main {
    padding: 48px 0 36px;
  }

  .hs-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hs-footer__desc {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .hs-footer__brand {
    text-align: left;
  }

  .hs-footer__logo {
    display: block;
  }

  .hs-footer__contact {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .hs-footer__links {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .hs-footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 18px 0 20px;
  }

  .hs-footer__legal {
    align-items: center;
    width: 100%;
  }

  .hs-footer__copy,
  .hs-footer__icp {
    font-size: 12px;
    line-height: 1.7;
    max-width: 100%;
  }

  .hs-footer__bottom-links {
    justify-content: center;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    gap: 12px 20px;
  }
}

/* —— Buttons (内页通用) —— */
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.hs-btn--ghost {
  background: #fff;
  color: var(--hs-brand-dark);
  border-color: var(--hs-border);
}

.hs-btn--ghost:hover {
  color: var(--hs-brand);
  border-color: var(--hs-brand);
  background: var(--hs-brand-light);
}

.hs-btn--primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--hs-brand) 0%, var(--hs-brand-dark) 100%);
  border: none;
  box-shadow: 0 4px 14px rgba(34, 181, 101, 0.35);
}

.hs-btn--primary:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 181, 101, 0.45);
}

/* —— 联系我们 —— */
.hs-contact {
  padding: 48px 0 72px;
  background: #f8fafc;
}

.hs-contact__lead {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--hs-muted);
}

.hs-contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.hs-contact__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hs-contact__card {
  padding: 28px;
  background: #fff;
  border-radius: var(--hs-radius-lg);
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-sm);
}

.hs-contact__card--brand {
  background: linear-gradient(145deg, #0d7a42 0%, #22b565 55%, #3dd47f 100%);
  border: none;
  color: #fff;
  box-shadow: 0 12px 40px rgba(34, 181, 101, 0.25);
}

.hs-contact__card-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hs-ink);
}

.hs-contact__card--brand .hs-contact__card-title {
  color: #ffffff;
}

.hs-contact__card-desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.9;
}

.hs-contact__qq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-brand-dark);
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-contact__qq:hover {
  color: var(--hs-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hs-contact__info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hs-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border-radius: var(--hs-radius-lg);
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-sm);
}

.hs-contact__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  font-size: 20px;
  color: var(--hs-brand);
  background: var(--hs-brand-light);
}

.hs-contact__info-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hs-muted);
}

.hs-contact__info-item a,
.hs-contact__info-item span:not(.hs-contact__info-icon):not(.hs-contact__info-label) {
  font-size: 15px;
  line-height: 1.5;
  color: var(--hs-ink);
  text-decoration: none;
}

.hs-contact__info-item a:hover {
  color: var(--hs-brand);
}

.hs-contact__form-wrap {
  padding: 36px 40px;
  background: #fff;
  border-radius: var(--hs-radius-lg);
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-sm);
}

.hs-contact__form-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--hs-ink);
  letter-spacing: -0.02em;
}

.hs-contact__form-sub {
  margin: 0 0 28px;
  font-size: 14px;
  color: var(--hs-muted);
}

.hs-contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hs-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-ink);
}

.hs-input,
.hs-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--hs-ink);
  background: #f8fafc;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hs-input:focus,
.hs-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--hs-brand);
  box-shadow: 0 0 0 3px rgba(34, 181, 101, 0.15);
}

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

.hs-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hs-captcha .hs-input {
  flex: 1;
  min-width: 140px;
}

.hs-captcha__img {
  height: 46px;
  border-radius: var(--hs-radius);
  cursor: pointer;
  border: 1px solid var(--hs-border);
}

.hs-contact__submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .hs-contact__grid {
    grid-template-columns: 1fr;
  }

  .hs-contact__form-wrap {
    padding: 28px 24px;
  }
}

@media (max-width: 575px) {
  .hs-contact {
    padding: 32px 0 48px;
  }

  .hs-contact__form-wrap {
    padding: 24px 20px;
  }
}

/* —— 新闻列表 / 详情 —— */
.hs-news {
  padding: 48px 0 72px;
  background: #f8fafc;
}

.hs-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.hs-news__layout--article {
  grid-template-columns: minmax(0, 1fr) 280px;
}

.hs-news__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hs-news-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--hs-radius-lg);
  border: 1px solid var(--hs-border);
  overflow: hidden;
  box-shadow: var(--hs-shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hs-news-card:hover {
  box-shadow: var(--hs-shadow);
  transform: translateY(-2px);
}

.hs-news-card__thumb {
  display: block;
  overflow: hidden;
  background: #e2e8f0;
  min-height: 180px;
}

.hs-news-card__thumb img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hs-news-card:hover .hs-news-card__thumb img {
  transform: scale(1.04);
}

.hs-news-card__body {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
}

.hs-news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--hs-muted);
}

.hs-news-card__tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hs-brand-dark);
  background: var(--hs-brand-light);
}

.hs-news-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.hs-news-card__title a {
  color: var(--hs-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hs-news-card__title a:hover {
  color: var(--hs-brand);
}

.hs-news-card__desc {
  margin: 0 0 16px;
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--hs-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hs-news-card__more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--hs-brand);
  text-decoration: none;
}

.hs-news-card__more:hover {
  color: var(--hs-brand-dark);
}

/* 侧边栏 */
.hs-news__sidebar {
  position: sticky;
  top: calc(var(--hs-header-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hs-news__widget {
  padding: 22px;
  background: #fff;
  border-radius: var(--hs-radius-lg);
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-sm);
}

.hs-news__widget-title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--hs-ink);
  border-bottom: 2px solid var(--hs-brand-light);
}

.hs-news__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-news__nav li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hs-news__nav li.is-active,
.hs-news__nav li:hover {
  background: var(--hs-brand-light);
}

.hs-news__nav a {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--hs-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hs-news__nav li.is-active a,
.hs-news__nav li:hover a {
  color: var(--hs-brand-dark);
  font-weight: 600;
}

.hs-news__nav-count {
  padding-right: 12px;
  font-size: 12px;
  color: var(--hs-muted);
}

.hs-news__hot {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-news__hot li + li {
  border-top: 1px solid var(--hs-border);
}

.hs-news__hot-link {
  display: block;
  padding: 12px 0;
  text-decoration: none;
}

.hs-news__hot-title {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--hs-ink);
  transition: color 0.2s ease;
}

.hs-news__hot-link:hover .hs-news__hot-title {
  color: var(--hs-brand);
}

.hs-news__hot-link time {
  font-size: 12px;
  color: var(--hs-muted);
}

/* 分页 */
.hs-news__pager {
  margin-top: 32px;
  padding: 0;
}

.hs-news__pager .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hs-news__pager .pagination a,
.hs-news__pager .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--hs-muted);
  background: #fff;
  border: 1px solid var(--hs-border);
  text-decoration: none;
  transition: all 0.2s ease;
}

.hs-news__pager .pagination a:hover {
  color: var(--hs-brand);
  border-color: var(--hs-brand);
  background: var(--hs-brand-light);
}

.hs-news__pager .pagination a.page-num-current {
  color: #fff;
  background: var(--hs-brand);
  border-color: var(--hs-brand);
}

.hs-news__pager-info {
  pointer-events: none;
}

.hs-news__empty {
  padding: 64px 24px;
  text-align: center;
  font-size: 15px;
  color: var(--hs-muted);
  background: #fff;
  border-radius: var(--hs-radius-lg);
  border: 1px dashed var(--hs-border);
}

/* 文章详情 */
.hs-article {
  background: #fff;
  border-radius: var(--hs-radius-lg);
  border: 1px solid var(--hs-border);
  box-shadow: var(--hs-shadow-sm);
  padding: 36px 40px 32px;
}

.hs-article__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hs-border);
}

.hs-article__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hs-brand-dark);
  background: var(--hs-brand-light);
  border-radius: 999px;
}

.hs-article__title {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--hs-ink);
}

.hs-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--hs-muted);
}

.hs-article__meta time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hs-article__content {
  font-size: 16px;
  line-height: 1.85;
  color: #334155;
}

.hs-article__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--hs-radius);
  margin: 16px 0;
}

.hs-article__content p {
  margin-bottom: 1em;
}

.hs-article__footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hs-border);
}

/* 相关推荐 */
.hs-news-related {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--hs-border);
}

.hs-section-head {
  margin-bottom: 24px;
}

.hs-section-head__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--hs-ink);
}

.hs-news-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hs-news-card--compact {
  grid-template-columns: 1fr;
}

.hs-news-card--compact .hs-news-card__thumb {
  min-height: 160px;
}

.hs-news-card--compact .hs-news-card__thumb img {
  min-height: 160px;
}

.hs-news-card--compact .hs-news-card__body {
  padding: 16px 18px;
}

.hs-news-card--compact .hs-news-card__title {
  margin: 8px 0 0;
  font-size: 16px;
}

.hs-news-card--compact time {
  font-size: 12px;
  color: var(--hs-muted);
}

@media (max-width: 1199px) {
  .hs-news__layout,
  .hs-news__layout--article {
    grid-template-columns: 1fr;
  }

  .hs-news__sidebar {
    position: static;
  }

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

@media (max-width: 767px) {
  .hs-news {
    padding: 32px 0 48px;
  }

  .hs-news-card {
    grid-template-columns: 1fr;
  }

  .hs-news-card__thumb {
    min-height: 200px;
  }

  .hs-news-card__body {
    padding: 20px;
  }

  .hs-article {
    padding: 24px 20px;
  }

  .hs-news-related__grid {
    grid-template-columns: 1fr;
  }
}

/* —— About page —— */
.hs-about-page {
  padding: 64px 0 96px;
}

.hs-about-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hs-about-page__img {
  position: relative;
}

.hs-about-page__img img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.12));
}

.hs-about-page__img::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 70%;
  left: 10%;
  bottom: 0;
  background: var(--hs-brand-light);
  border-radius: var(--hs-radius-lg);
  z-index: -1;
}

.hs-about-page__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--hs-brand);
  margin-bottom: 12px;
  display: block;
}

.hs-about-page__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.hs-about-page__content {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

.hs-about-page__content p {
  margin: 0 0 1em;
}

.hs-about-page__content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--hs-radius-md);
}

.hs-about-page__cta {
  margin-top: 28px;
}

@media (max-width: 991px) {
  .hs-about-page__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hs-about-page {
    padding: 48px 0 72px;
  }
}
