/* JiangXinJuHome - 橙绿品牌（初始配色） */
:root {
  --jx-primary: #e8870a;
  --jx-primary-dark: #c97208;
  --jx-primary-light: #fff4e0;
  --jx-accent: #3d9a52;
  --jx-accent-dark: #2d7a3e;
  --jx-accent-light: #edf7ef;
  --jx-mint: #9ad9cc;
  --jx-mint-dark: #5fb8a8;
  --jx-green: #3d9a52;
  --jx-green-dark: #2d7a3e;
  --jx-green-light: #edf7ef;
  --jx-text: #333333;
  --jx-text-light: #666666;
  --jx-text-muted: #888888;
  --jx-border: #e8e8e8;
  --jx-bg-light: #f6f7f5;
  --jx-bg-side: #eef3ee;
  --jx-header-bg: #ffffff;
  --jx-topbar-bg: #3d9a52;
  --jx-shadow: 0 8px 30px rgba(42, 42, 42, 0.08);
  --jx-shadow-sm: 0 2px 12px rgba(42, 42, 42, 0.06);
  --jx-radius: 12px;
  --jx-radius-lg: 16px;
  --jx-container: 1320px;
}

* { box-sizing: border-box; }

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--jx-text);
  background: var(--jx-bg-side);
  -webkit-font-smoothing: antialiased;
}

.jx-container {
  width: 100%;
  max-width: var(--jx-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.max-w-6xl { max-width: var(--jx-container) !important; }
.max-w-5xl { max-width: 1180px !important; }

/* SVG 图标 */
.jx-icon { width: 24px; height: 24px; display: inline-block; vertical-align: middle; flex-shrink: 0; }
.jx-icon-sm { width: 18px; height: 18px; }
.jx-icon-md { width: 28px; height: 28px; }
.jx-icon-lg { width: 32px; height: 32px; }
.jx-icon-white { color: #fff; }

/* Layui */
.layui-btn-primary-jx {
  background-color: var(--jx-primary) !important;
  border-color: var(--jx-primary) !important;
  border-radius: 8px !important;
}
.layui-btn-primary-jx:hover { background-color: var(--jx-primary-dark) !important; }

/* 顶部导航 */
.jx-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--jx-shadow-sm);
}

#booking,
#booking-form,
#booking-form-1,
#booking-form-2,
#news-booking-bottom,
#about-hero-booking,
#about-booking-inline,
#cleaning-booking-top,
#cleaning-booking-bottom,
#cleaning-aside-book {
  scroll-margin-top: 88px;
}
.top-bar {
  background: var(--jx-topbar-bg);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 16px;
}
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top-bar-links a {
  color: rgba(255, 255, 255, 0.88);
  transition: color .2s;
}
.top-bar-links a:hover { color: #fff; }
.top-bar-links span { opacity: 0.35; }
.top-bar-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.top-bar-tag {
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}
.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
}
.top-bar-phone:hover { color: var(--jx-mint); }

.site-header {
  background: var(--jx-header-bg);
  border-bottom: 1px solid var(--jx-border);
}
.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--jx-green) 0%, var(--jx-green-dark) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(61, 154, 82, 0.28);
}
.logo-copy { min-width: 0; }
.site-header .logo-text {
  color: var(--jx-green-dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.site-header .logo-sub {
  display: block;
  font-size: 12px;
  color: var(--jx-text-muted);
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.main-nav {
  flex: 1;
  justify-content: center;
  gap: 2px;
}
.nav-link {
  color: var(--jx-text-light);
  font-size: 15px;
  padding: 9px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover {
  color: var(--jx-primary-dark);
  background: var(--jx-primary-light);
}
.nav-link.active {
  color: #fff;
  background: var(--jx-primary);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(232, 135, 10, 0.28);
}
.nav-has-sub::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 152px;
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 10px;
  box-shadow: var(--jx-shadow);
  padding: 6px;
  z-index: 60;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-sub-link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--jx-text-light);
  white-space: nowrap;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-sub-link:hover,
.nav-sub-link.active {
  color: var(--jx-primary);
  background: var(--jx-primary-light);
}
.header-actions-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.header-actions-tag {
  font-size: 12px;
  color: var(--jx-text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  background: var(--jx-primary);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(232, 135, 10, 0.28);
  transition: background .2s, transform .15s;
}
.header-phone-btn:hover {
  background: var(--jx-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}
.header-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--jx-green-dark);
  border: 1px solid var(--jx-green);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.header-book-btn:hover {
  background: var(--jx-green-light);
  color: var(--jx-green-dark);
  transform: translateY(-1px);
}
.phone-badge {
  background: transparent;
  color: var(--jx-primary);
  padding: 0;
  border-radius: 0;
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.phone-badge:hover { color: var(--jx-primary-dark); background: transparent; }

/* 宽屏两侧装饰 */
.jx-side-rails { pointer-events: none; }
.jx-side-deco {
  position: fixed;
  top: 50%;
  transform: translateY(-46%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
  width: 148px;
  isolation: isolate;
}
.jx-side-deco--left {
  left: max(16px, calc((100vw - var(--jx-container)) / 2 - 168px));
}
.jx-side-deco--right {
  right: max(16px, calc((100vw - var(--jx-container)) / 2 - 168px));
}
.jx-deco-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}
.jx-deco-orb--a {
  width: 120px;
  height: 120px;
  top: -20px;
  left: -24px;
  background: rgba(61, 154, 82, 0.22);
}
.jx-deco-orb--b {
  width: 90px;
  height: 90px;
  bottom: 40px;
  right: -10px;
  background: rgba(232, 135, 10, 0.16);
}
.jx-deco-orb--c {
  width: 110px;
  height: 110px;
  top: -16px;
  right: -20px;
  background: rgba(232, 135, 10, 0.14);
}
.jx-deco-orb--d {
  width: 80px;
  height: 80px;
  bottom: 24px;
  left: -8px;
  background: rgba(61, 154, 82, 0.2);
}
.jx-deco-line {
  position: absolute;
  left: 50%;
  top: -48px;
  bottom: -48px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(61, 154, 82, 0.2) 20%, rgba(232, 135, 10, 0.18) 80%, transparent);
  pointer-events: none;
  z-index: -1;
}
.jx-side-panel {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--jx-border);
  border-radius: 16px;
  box-shadow: var(--jx-shadow-sm);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.jx-side-panel--trust { padding: 14px 12px; }
.jx-side-panel-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--jx-green-dark);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--jx-border);
}
.jx-side-panel-head svg { color: var(--jx-primary); }
.jx-side-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
}
.jx-side-trust-item + .jx-side-trust-item {
  border-top: 1px solid rgba(224, 217, 210, 0.65);
}
.jx-side-trust-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--jx-green-light);
  color: var(--jx-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.jx-side-trust-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.jx-side-trust-copy strong {
  font-size: 13px;
  color: var(--jx-text);
  font-weight: 700;
  line-height: 1.3;
}
.jx-side-trust-copy span {
  font-size: 11px;
  color: var(--jx-text-muted);
  line-height: 1.35;
}
.jx-side-panel--contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 14px 14px;
  pointer-events: auto;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
}
.jx-side-panel--contact:hover {
  transform: translateY(-2px);
  box-shadow: var(--jx-shadow);
  color: inherit;
}
.jx-side-contact-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jx-primary) 0%, var(--jx-primary-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(232, 135, 10, 0.28);
}
.jx-side-contact-label {
  font-size: 12px;
  color: var(--jx-text-muted);
  margin: 0 0 4px;
}
.jx-side-contact-phone {
  font-size: 15px;
  font-weight: 800;
  color: var(--jx-primary);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.jx-side-contact-top {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
}
.jx-side-contact-top:hover .jx-side-contact-phone {
  color: var(--jx-primary-dark);
}
.jx-side-contact-btn {
  display: inline-block;
  width: 100%;
  padding: 8px 0;
  border-radius: 999px;
  background: var(--jx-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.jx-side-panel--contact:hover .jx-side-contact-btn {
  background: var(--jx-primary-dark);
}
.jx-side-stat {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--jx-green-light) 0%, #fff 100%);
  border: 1px solid rgba(61, 154, 82, 0.15);
  text-align: center;
}
.jx-side-stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--jx-primary);
  line-height: 1.1;
}
.jx-side-stat-text {
  display: block;
  font-size: 11px;
  color: var(--jx-text-muted);
  margin-top: 2px;
  letter-spacing: 0.08em;
}
@media (min-width: 1440px) {
  .jx-side-deco { display: flex; }
}
@media (min-width: 1600px) {
  .jx-side-deco { width: 160px; }
  .jx-side-deco--left { left: max(20px, calc((100vw - var(--jx-container)) / 2 - 188px)); }
  .jx-side-deco--right { right: max(20px, calc((100vw - var(--jx-container)) / 2 - 188px)); }
}

.menu-btn,
.phone-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--jx-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jx-text);
  background: #fff;
  flex-shrink: 0;
}
.phone-icon-btn {
  color: var(--jx-primary-dark);
  background: var(--jx-primary-light);
  border-color: rgba(232, 135, 10, 0.25);
}

/* Hero / 落地页（浅渐变，对齐 hk-hero-band） */
.hero-banner,
.landing-hero {
  position: relative;
  background: linear-gradient(135deg, #edf7ef 0%, #f6f7f5 42%, #fff4e0 100%);
  overflow: hidden;
  color: var(--jx-text);
}
.hero-banner::before,
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(61, 154, 82, 0.14), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(232, 135, 10, 0.1), transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  background-image: var(--jx-hero-bg);
  background-size: cover;
  background-position: 72% 28%;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.75) 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.75) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--jx-green-dark);
}
.hero-subtitle {
  font-size: 16px;
  line-height: 1.75;
  color: var(--jx-text-light);
  margin: 0 0 24px;
  max-width: 520px;
}
.hero-tag {
  background: #fff;
  color: var(--jx-green-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(61, 154, 82, 0.22);
  box-shadow: 0 2px 8px rgba(42, 42, 42, 0.04);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--jx-primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: background .2s, transform .15s;
  box-shadow: 0 6px 18px rgba(232, 135, 10, 0.26);
}
.hero-cta:hover {
  background: var(--jx-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* 首页 Hero（绿渐变左文案 + 右浮动预约卡） */
.home-landing-hero {
  position: relative;
  overflow: visible;
  background: #f4f6f4;
  padding: 48px 0 56px;
  color: #fff;
}
.home-landing-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.home-landing-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.home-landing-hero-slide.is-active {
  opacity: 1;
}
.home-hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
.home-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.home-hero-dot.is-active {
  width: 28px;
  background: #fff;
}
.home-landing-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(18, 38, 28, 0.62) 0%,
    rgba(18, 38, 28, 0.38) 38%,
    rgba(18, 38, 28, 0.12) 62%,
    rgba(18, 38, 28, 0) 82%
  );
  pointer-events: none;
}
.home-landing-inner { position: relative; z-index: 2; }
.home-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 420px);
  gap: 36px 48px;
  align-items: center;
}
.home-landing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.home-landing-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.home-landing-title {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.home-landing-kicker {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}
.home-landing-desc {
  margin: 0 0 28px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}
.home-landing-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--jx-primary-dark);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition: transform .2s, box-shadow .2s;
}
.home-landing-phone-btn:hover {
  color: var(--jx-primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.home-landing-phone-btn svg { color: var(--jx-primary); flex-shrink: 0; }
.home-landing-deco {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 28px 4%;
  pointer-events: none;
}
.home-landing-deco-text {
  display: inline-block;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-8deg);
  letter-spacing: 0.04em;
}
.home-landing-deco-text:nth-child(2) { transform: rotate(-5deg); margin-left: 24px; }
.home-landing-form-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 440px;
  justify-self: end;
  overflow: visible;
}
.home-landing-stats {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px 16px;
  margin-bottom: 14px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.home-landing-stats-label {
  margin: 0 0 8px;
  font-size: 14px;
  color: #888;
}
.home-landing-stats-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.home-landing-stats-text {
  font-size: 16px;
  color: #444;
  line-height: 1.4;
  padding-bottom: 4px;
}
.home-landing-stats .stats-num {
  font-size: 44px;
}
.home-landing-form-wrap .booking-card--hero {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 14px;
  overflow: visible;
}
.home-landing-form-wrap .booking-card--hero .booking-card-header {
  background: var(--jx-green);
  padding: 18px 22px;
  gap: 12px;
  border-radius: 14px 14px 0 0;
}
.home-landing-form-wrap .booking-card--hero .booking-hero-form {
  border-radius: 0 0 14px 14px;
  background: #fff;
}
.home-landing-form-wrap .booking-card--hero .booking-card-header h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.booking-hero-form { padding: 22px 22px 20px; }
.booking-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
}
.booking-hero-field { min-width: 0; overflow: visible; }
.booking-hero-grid { overflow: visible; }
.home-landing-grid { overflow: visible; }
.booking-hero-label {
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  line-height: 1.4;
}
.booking-hero-req { color: #e74c3c; font-weight: 600; }
.booking-hero-form .layui-input,
.booking-hero-form select {
  width: 100%;
  height: 40px;
  border: 1px solid #e0e6e0;
  border-radius: 6px;
  background: #fafcfb;
  font-size: 14px;
  color: var(--jx-text);
  transition: border-color .2s, background .2s;
}
.booking-hero-form .layui-input:focus,
.booking-hero-form select:focus {
  border-color: rgba(61, 154, 82, 0.5) !important;
  background: #fff;
  outline: none;
}
.booking-hero-form .layui-input::placeholder { color: #bbb; }
.booking-hero-submit { margin-top: 20px; text-align: center; }
.booking-hero-submit .layui-btn-primary-jx {
  width: 100%;
  max-width: 280px;
  height: 44px;
  line-height: 44px;
  padding: 0 24px;
  background: var(--jx-primary) !important;
  border-color: var(--jx-primary) !important;
  border-radius: 6px !important;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(232, 135, 10, 0.28);
}
.booking-hero-submit .layui-btn-primary-jx:hover {
  background: var(--jx-primary-dark) !important;
  border-color: var(--jx-primary-dark) !important;
}
.booking-card--hero .privacy-tip {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.6;
  color: #aaa;
}
@media (max-width: 480px) {
  .booking-hero-grid { grid-template-columns: 1fr; }
  .home-landing-form-wrap { max-width: 100%; justify-self: stretch; }
}
@media (max-width: 1024px) {
  .home-landing-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-landing-form-wrap { max-width: 480px; }
  .home-landing-deco { display: none; }
}
@media (max-width: 640px) {
  .home-landing-hero { padding: 32px 0 40px; }
  .home-landing-title { font-size: 28px; }
  .home-landing-kicker { font-size: 16px; }
  .home-landing-phone-btn { width: 100%; justify-content: center; font-size: 15px; }
}
.booking-form-intro {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}
.booking-form-intro h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: var(--jx-green-dark);
}
.booking-form-intro p {
  margin: 0;
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}
.booking-card--minimal .layui-form-label {
  width: 100%;
  text-align: left;
  padding: 0 0 6px;
  float: none;
  display: block;
  font-size: 13px;
  color: #666;
}
.booking-card--minimal .layui-input-block { margin-left: 0; }
.booking-card--minimal .layui-input,
.booking-card--minimal select {
  height: 40px;
  border-radius: 10px;
  border-color: #e8ece8;
}
.booking-card--minimal .layui-input:focus,
.booking-card--minimal select:focus {
  border-color: rgba(61, 154, 82, 0.45) !important;
}
.booking-card--minimal .layui-btn-primary-jx {
  width: 100%;
  height: 44px;
  line-height: 44px;
  border-radius: 10px;
  font-size: 15px;
}
/* 预约表单 */
.booking-card {
  background: #fff;
  border-radius: var(--jx-radius-lg);
  box-shadow: var(--jx-shadow);
  overflow: visible;
  border: 1px solid rgba(255,255,255,.6);
}
.booking-card .booking-card-header {
  border-radius: var(--jx-radius-lg) var(--jx-radius-lg) 0 0;
}
.booking-card .layui-form-select {
  position: relative;
  z-index: 1;
}
.booking-card .layui-form-select.layui-form-selected,
.home-landing-form-wrap .layui-form-select.layui-form-selected,
.booking-hero-form .layui-form-select.layui-form-selected,
.booking-inline-form .layui-form-select.layui-form-selected,
.cleaning-sidebar-form-inner .layui-form-select.layui-form-selected {
  z-index: 200;
}
.booking-card .layui-form-select dl,
.home-landing-form-wrap .layui-form-select dl,
.booking-hero-form .layui-form-select dl,
.booking-inline-form .layui-form-select dl,
.cleaning-sidebar-form-inner .layui-form-select dl {
  max-height: none;
  overflow: visible;
  z-index: 201;
}
.booking-card-header {
  background: var(--jx-primary);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-card-header h3 { font-size: 17px; font-weight: 600; margin: 0; }
.booking-card--light .booking-card-header {
  background: linear-gradient(135deg, #fffaf3 0%, #edf7ef 100%);
  color: var(--jx-green-dark);
  border-bottom: 1px solid var(--jx-border);
}
.booking-card--light .booking-card-header svg { color: var(--jx-primary); }
.booking-card--light .layui-form-label {
  width: 100%;
  text-align: left;
  padding: 0 0 6px;
  float: none;
  display: block;
}
.booking-card--light .layui-input-block { margin-left: 0; }
.privacy-tip { color: #999; font-size: 12px; }

/* 首页推广图（优势区下方） */
.home-promo-wrap[hidden] { display: none !important; }
.home-promo-wrap {
  margin-top: 40px;
  width: 100%;
}
.home-promo-banner {
  width: 100%;
  height: clamp(140px, 22vw, 220px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(42, 42, 42, 0.08);
  background: #f8faf8;
}
.home-promo-link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.home-promo-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 统计 */
.stats-section {
  background: linear-gradient(180deg, #fff 0%, var(--jx-bg-light) 100%);
  border-block: 1px solid var(--jx-border);
}
.stats-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--jx-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
  line-height: 1;
}

/* 区块标题 */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--jx-text);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--jx-primary);
  border-radius: 4px;
}
.section-title h2.split-title span { color: var(--jx-primary); }
.section-title p { color: var(--jx-text-light); margin-top: 10px; max-width: 560px; margin-inline: auto; }

/* 痛点卡片 - 图文 */
.pain-card {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: var(--jx-radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jx-shadow);
  border-color: rgba(232, 135, 10, 0.25);
}
.pain-card-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pain-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.35));
}
.pain-card-body { padding: 18px 18px 20px; flex: 1; }
.pain-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--jx-primary-light);
  color: var(--jx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* 优势卡片 */
.advantage-card {
  background: #fff;
  border-radius: var(--jx-radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--jx-border);
  transition: all .25s;
  height: 100%;
}
.advantage-card:hover {
  border-color: rgba(232, 135, 10, 0.35);
  box-shadow: var(--jx-shadow);
  transform: translateY(-2px);
}
.advantage-card .icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: var(--jx-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 服务流程 */
.flow-step {
  text-align: center;
  padding: 16px 8px;
  position: relative;
}
.flow-step .step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--jx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 2px solid var(--jx-primary);
}
.flow-step .step-icon-filled {
  background: var(--jx-primary);
  color: #fff;
  border-color: var(--jx-primary);
}
.flow-step h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.flow-step p { font-size: 13px; color: var(--jx-text-light); }
@media (min-width: 768px) {
  .flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 38px;
    right: -8%;
    font-size: 18px;
    color: var(--jx-primary);
    opacity: .6;
    background: none;
    width: auto;
    height: auto;
  }
}

/* 资讯 */
.news-card {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: var(--jx-radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}
.news-card:hover { box-shadow: var(--jx-shadow); transform: translateY(-2px); }
.news-card img { width: 100%; height: 168px; object-fit: cover; }
.news-card-body { padding: 16px 18px 18px; }
.news-card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--jx-text);
}
.news-card-desc {
  font-size: 13px;
  color: var(--jx-text-light);
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-date {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 首页资讯：上 3 图 + 下两列文字 */
.home-news-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.home-news-text-block {
  margin-top: 28px;
  border-top: 1px solid #e8e8e8;
}
.home-news-text-row {
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
}
.home-news-text-row:last-child {
  border-bottom: none;
}
.home-news-text-item {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
.home-news-text-item:hover .home-news-text-title { color: var(--jx-primary); }
.home-news-text-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.home-news-text-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  transition: color .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-news-text-date {
  flex-shrink: 0;
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}
.home-news-text-desc {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 640px) {
  .home-news-featured { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .home-news-featured { grid-template-columns: repeat(3, 1fr); }
}
/* 资讯页门户 */
.news-portal-main { padding-bottom: 48px; }
.news-portal-heading { margin-bottom: 28px; }
.news-portal-heading--faq {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--jx-border);
}
.news-cat-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.6;
  background: var(--jx-primary-light);
  color: var(--jx-primary);
  font-weight: 500;
}
.news-portal-date {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}
.news-portal-empty {
  text-align: center;
  color: #9CA3AF;
  padding: 32px 0;
  margin: 0;
}
.news-portal-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 8px;
}
.news-portal-card {
  display: block;
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: var(--jx-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}
.news-portal-card:hover {
  box-shadow: var(--jx-shadow);
  transform: translateY(-2px);
}
.news-portal-card-media {
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}
.news-portal-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.news-portal-card:hover .news-portal-card-media img { transform: scale(1.03); }
.news-portal-card-body { padding: 18px 20px 22px; }
.news-portal-card-meta,
.news-portal-row-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.news-portal-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--jx-text);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.news-portal-card:hover .news-portal-card-title { color: var(--jx-primary); }
.news-portal-card-desc {
  font-size: 14px;
  color: var(--jx-text-light);
  line-height: 1.7;
  margin: 10px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-portal-list,
.news-portal-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.news-portal-row {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
.news-portal-row:first-child { padding-top: 8px; }
.news-portal-row:last-child { border-bottom: none; }
.news-portal-row:hover { background: rgba(47, 123, 110, 0.03); }
.news-portal-row-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.news-portal-row-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  color: #333;
  transition: color .2s;
}
.news-portal-row:hover .news-portal-row-title { color: var(--jx-primary); }
.news-portal-row-meta {
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 0;
  gap: 6px;
}
.news-portal-row-desc {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-portal-row--faq .news-portal-row-title::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 6px;
  background: var(--jx-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}
.news-business-bottom .section-title { margin-bottom: 24px; }
@media (min-width: 768px) {
  .news-portal-featured { grid-template-columns: repeat(2, 1fr); }
  .news-portal-row-head { align-items: center; }
  .news-portal-row-meta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  .news-portal-featured { grid-template-columns: repeat(3, 1fr); }
}

/* 资讯页列表行（左图右文，对齐原站图2） */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.news-list-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.news-list-row:hover { opacity: .92; }
.news-list-thumb {
  flex: 0 0 240px;
  width: 240px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-list-body {
  flex: 1;
  min-width: 0;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2px;
}
.news-list-content { flex: 1; }
.news-list-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.news-list-row:hover .news-list-title { color: var(--jx-primary); }
.news-list-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin: 10px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-date {
  display: block;
  font-size: 12px;
  color: #999;
  text-align: right;
  margin-top: 12px;
}

/* 资讯详情页相关文章（对齐原站侧边栏样式） */
.article-related-section {
  margin-top: 36px;
}
.article-related-box {
  border: 1px solid #efcaca;
  background: #fff;
  padding: 14px 16px 6px;
}
.article-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.article-related-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #c8161d;
  line-height: 1.2;
  position: relative;
  padding-bottom: 8px;
}
.article-related-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: #c8161d;
}
.article-related-more-link {
  flex-shrink: 0;
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.06em;
  text-decoration: none;
  line-height: 1;
  padding-bottom: 2px;
}
.article-related-more-link:hover {
  color: #777;
}
.article-related-list {
  display: flex;
  flex-direction: column;
}
.article-related-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #f3f3f3;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
}
.article-related-item:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}
.article-related-item:hover {
  background: rgba(200, 22, 29, 0.02);
}
.article-related-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.article-related-item-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s;
}
.article-related-item:hover .article-related-item-title {
  color: #c8161d;
}
.article-related-item-date {
  flex-shrink: 0;
  font-size: 13px;
  color: #999;
  line-height: 1.45;
}
.article-related-item-desc {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-pagination {
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  border-top: 1px solid var(--jx-border);
}
.news-pagination .layui-laypage a,
.news-pagination .layui-laypage span {
  margin: 0 4px;
  border-radius: 4px;
}
.news-pagination .layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: var(--jx-primary) !important;
}
.news-pagination .layui-laypage input:focus,
.news-pagination .layui-laypage button:hover {
  border-color: var(--jx-primary) !important;
}

/* 资讯页推荐服务（上图下文卡片，对齐原站） */
.news-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.news-featured-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(60, 20, 20, 0.06);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.news-featured-card:hover {
  box-shadow: 0 8px 28px rgba(60, 20, 20, 0.12);
  transform: translateY(-2px);
}
.news-featured-card:active { transform: scale(0.995); }
.news-featured-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
}
.news-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.news-featured-card:hover .news-featured-img { transform: scale(1.03); }
.news-featured-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-featured-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.45;
}
.news-featured-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-featured-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 14px;
  padding: 7px 18px;
  background: var(--jx-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1.4;
  white-space: nowrap;
  transition: background .2s;
}
.news-featured-card:hover .news-featured-cta {
  background: var(--jx-primary-dark);
}
@media (min-width: 768px) {
  .news-featured-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1024px) {
  .news-featured-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 清洗保洁子页（产品详情布局） */
.cleaning-flow-band,
#service-main,
.stats-section,
.booking-section {
  background: #fff;
}
.cleaning-flow-band {
  border-bottom: 1px solid var(--jx-border);
}
.cleaning-flow-band:last-of-type {
  border-bottom: none;
  border-top: 1px solid var(--jx-border);
}

/* 保洁产品 Hero（不对称分屏，对齐 hk-hero-band） */
.cl-product-hero-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ef 0%, #f6f7f5 42%, #fff4e0 100%);
  padding: 28px 0 32px;
  margin-bottom: 24px;
}
.cl-hero-inner { position: relative; z-index: 1; }
.cl-hero-grid { align-items: center; }
.cl-hero-copy { max-width: 580px; }
.cl-hero-copy h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--jx-green-dark);
  margin: 0 0 12px;
  line-height: 1.2;
}
.cl-hero-copy .hk-hero-sub {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.cl-hero-copy .hk-hero-tags { margin-bottom: 18px; }
.cl-price-panel {
  padding: 16px 18px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(61, 154, 82, 0.18);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(42, 42, 42, 0.05);
}
.cl-price-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 8px;
}
.cl-price-unit {
  font-size: 13px;
  color: var(--jx-text-muted);
  font-weight: 500;
}
.cl-price-num {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--jx-primary);
  line-height: 1;
}
.cl-price-suffix {
  font-size: 14px;
  color: var(--jx-text-light);
  font-weight: 600;
}
.cl-price-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--jx-text-light);
}
.cl-price-meta strong { color: var(--jx-green-dark); }
.cl-price-market { color: #aaa; }
.cl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cl-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--jx-border);
  color: var(--jx-primary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color .2s, transform .15s;
}
.cl-btn-phone:hover { border-color: var(--jx-primary); color: var(--jx-primary-dark); }
.cl-btn-outline,
.cl-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.cl-btn-outline {
  border: 1px solid var(--jx-primary);
  color: var(--jx-primary);
  background: #fff;
}
.cl-btn-outline:hover { background: var(--jx-primary-light); }
.cl-btn-primary {
  background: var(--jx-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 135, 10, 0.24);
}
.cl-btn-primary:hover { background: var(--jx-primary-dark); color: #fff; }
.cl-btn-primary:active,
.cl-btn-outline:active,
.cl-btn-phone:active { transform: scale(0.98); }
.cl-hero-visual { min-height: 300px; }
.cl-hero-visual-single {
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--jx-shadow);
}
.cl-hero-photo-single {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cl-hero-float {
  position: absolute;
  left: 0;
  bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cl-hero-float-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--jx-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--jx-green-dark);
  box-shadow: 0 4px 12px rgba(42, 42, 42, 0.08);
}
.cl-hero-float-item svg { color: var(--jx-primary); flex-shrink: 0; }
.cleaning-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.cleaning-trust-strip.cl-hero-trust { margin-top: 28px; }
.cleaning-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(61, 154, 82, 0.15);
  border-radius: 10px;
  font-size: 13px;
  color: #555;
}
.cleaning-trust-item svg { color: var(--jx-primary); flex-shrink: 0; }
.cleaning-product-shell {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(60, 20, 20, 0.06);
}
.cleaning-product-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  align-items: start;
}
.cleaning-product-detail {
  padding: 24px;
  border-right: 1px solid var(--jx-border);
}
.cleaning-product-tabs .layui-tab-title {
  border-bottom: 2px solid #f0f0f0;
}
.cleaning-product-tabs .layui-tab-title .layui-this {
  color: var(--jx-primary);
}
.cleaning-product-tabs .layui-tab-title .layui-this:after {
  border-bottom: 2px solid var(--jx-primary);
}
.cleaning-detail-intro {
  color: #666;
  line-height: 1.8;
  margin: 16px 0 20px;
  font-size: 15px;
}
.cleaning-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.cleaning-scope-card {
  padding: 14px 16px;
  background: var(--jx-bg-light);
  border: 1px solid var(--jx-border);
  border-radius: 8px;
}
.cleaning-scope-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin: 0 0 6px;
}
.cleaning-scope-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.cleaning-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0 24px;
}
.cleaning-detail-table th,
.cleaning-detail-table td {
  border: 1px solid var(--jx-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.cleaning-detail-table th {
  width: 80px;
  background: var(--jx-bg-light);
  font-weight: 600;
}
.cleaning-detail-list {
  list-style: disc;
  padding-left: 20px;
  color: #666;
  line-height: 1.8;
  margin: 16px 0 24px;
}
.cleaning-promo-banner {
  margin-top: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.cleaning-promo-banner img {
  width: 100%;
  max-height: 420px;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #eef3ee;
}
.cleaning-promo-caption {
  margin: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--jx-green-dark);
  background: var(--jx-bg-light);
  border-top: 1px solid var(--jx-border);
}
.cleaning-review-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.cleaning-review-item {
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cleaning-review-item:last-child { border-bottom: none; }
.cleaning-review-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
  margin-bottom: 10px;
}
.cleaning-review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cleaning-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf7ef, #fff4e0);
  border: 1px solid rgba(61, 154, 82, 0.2);
  color: var(--jx-green-dark);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cleaning-review-name {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
}
.cleaning-review-area {
  font-size: 12px;
  color: #999;
}
.cleaning-review-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.cleaning-review-stars {
  display: inline-flex;
  gap: 2px;
}
.cleaning-review-star {
  display: inline-flex;
  color: #ddd;
}
.cleaning-review-star.is-on { color: var(--jx-primary); }
.cleaning-review-star svg { width: 14px; height: 14px; }
.cleaning-review-date {
  font-size: 12px;
  color: #aaa;
}
.cleaning-review-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}
.cleaning-empty-review {
  text-align: center;
  color: #999;
  padding: 48px 16px;
  font-size: 14px;
}
.cleaning-product-aside {
  padding: 20px;
  position: sticky;
  top: 88px;
}
.cleaning-aside-card {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.cleaning-aside-card h4,
.cleaning-related-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #333;
}
.cleaning-sidebar-form-inner .layui-form-item { margin-bottom: 12px; }
.cleaning-field-label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}
.cleaning-sidebar-form-inner .layui-input,
.cleaning-sidebar-form-inner select {
  height: 38px;
  border-radius: 6px;
}
.cleaning-sidebar-form-inner .layui-btn-fluid { margin-top: 4px; height: 42px; line-height: 42px; }
.cleaning-related-box { padding: 16px; margin-bottom: 0; }
.cleaning-related-list { list-style: none; margin: 0; padding: 0; }
.cleaning-related-list li { border-bottom: 1px solid #f3f3f3; }
.cleaning-related-list li:last-child { border-bottom: none; }
.cleaning-related-list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.cleaning-related-list a:hover { color: var(--jx-primary); }
.cleaning-related-text {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cleaning-related-date { flex-shrink: 0; font-size: 12px; color: #999; }

.service-related-section { border-top: 1px solid var(--jx-border); }
.service-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-related-grid .news-card { height: 100%; }
.service-related-more {
  margin-top: 28px;
  text-align: center;
}
.service-related-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--jx-primary);
  font-weight: 600;
  font-size: 15px;
}
.service-related-more a:hover { text-decoration: underline; }
.service-related-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #9CA3AF;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .service-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .service-related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .cl-product-hero-band .hk-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .cl-hero-visual { min-height: 240px; }
  .cl-hero-visual .hk-hero-photo-stack { height: 240px; }
  .cl-hero-visual-single { height: 240px; }
  .cl-hero-float { position: static; margin-top: 12px; }
  .cleaning-product-body { grid-template-columns: 1fr; }
  .cleaning-product-detail { border-right: none; border-bottom: 1px solid var(--jx-border); }
  .cleaning-product-aside { position: static; }
  .cleaning-trust-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cleaning-scope-grid { grid-template-columns: 1fr; }
  .cl-hero-actions { flex-direction: column; align-items: stretch; }
  .cl-btn-phone,
  .cl-btn-outline,
  .cl-btn-primary { width: 100%; justify-content: center; }
}

/* 页脚 */
.site-footer {
  background: #242424;
  color: #fff;
  font-size: 14px;
}
.site-footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}
.site-footer p,
.site-footer span,
.site-footer li {
  color: rgba(255, 255, 255, 0.92);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.92);
  transition: color .2s;
}
.site-footer a:not(.footer-cta):hover {
  color: var(--jx-primary);
}
.site-footer a.footer-cta,
.site-footer a.footer-cta:hover {
  color: #fff;
  background: var(--jx-primary);
}
.site-footer a.footer-cta:hover {
  background: var(--jx-primary-dark);
}
.site-footer .border-t {
  color: rgba(255, 255, 255, 0.85);
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-col {
  min-width: 0;
}
.footer-qrcodes {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
}
.footer-qr-item {
  text-align: center;
}
.footer-qr-img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  display: block;
}
.footer-qr-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}
@media (min-width: 768px) {
  .footer-main-grid {
    grid-template-columns: minmax(0, 1.15fr) auto minmax(0, 1.25fr) minmax(0, 0.95fr);
    gap: 20px 28px;
    align-items: start;
  }
  .footer-main-grid--no-qr {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-qrcodes {
    justify-content: flex-start;
    align-self: start;
  }
}
@media (max-width: 767px) {
  .footer-qrcodes {
    justify-content: flex-start;
  }
}
.footer-bottom {
  background: #1a1a1a;
  padding: 16px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom a:hover {
  color: var(--jx-primary);
}

/* 内页 Banner（资讯等） */
.page-banner,
.news-hero {
  background: #f5d547 center/cover no-repeat;
  color: #333;
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
}
.news-hero {
  background-image: linear-gradient(rgba(255,255,255,.15), rgba(255,255,255,.15)), var(--jx-news-hero-bg, url('https://28763961.s21i.faiusr.com/2/ABUIABACGAAggJubkQYo6Of3lQMwlgE4lgE.jpg'));
  background-size: cover;
  background-position: center;
}
.news-hero-compact {
  padding: 72px 16px 88px;
}
.news-hero-compact h1,
.news-hero-compact p { display: none; }
.news-search-wrap {
  max-width: 560px;
  margin: 24px auto 0;
  position: relative;
}
.news-search-wrap input {
  width: 100%;
  padding: 14px 48px 14px 18px;
  border: 2px solid var(--jx-primary);
  border-radius: 4px;
  font-size: 15px;
  background: #fff;
}
.news-search-wrap button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: 44px;
  border: none;
  background: var(--jx-primary);
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
}
.page-banner h1, .news-hero h1 { font-size: clamp(28px, 4vw, 36px); font-weight: 700; color: #333; }
.page-banner p, .news-hero p { margin-top: 10px; font-size: 16px; color: #555; }

/* 横排预约条 */
.compact-booking {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--jx-shadow);
}
.compact-booking .layui-form-item { margin-bottom: 12px; }
.compact-booking .layui-form-label { width: 80px; padding: 9px 0; }
.compact-booking .layui-input-block { margin-left: 90px; }

/* 服务页 Hero */
.service-hero-housekeeper .service-hero-overlay h1 { color: var(--jx-primary); }
.service-hero-bg {
  image-rendering: auto;
  transform: scale(1.001);
}

/* 钟点工 Hero */
.hourly-hero-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ef 0%, #f6f7f5 42%, #fff4e0 100%);
  padding: 36px 0 44px;
}
.hourly-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(61, 154, 82, 0.16), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(232, 135, 10, 0.12), transparent 40%);
  pointer-events: none;
}
.hourly-hero-inner { position: relative; z-index: 1; }
.hourly-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hourly-hero-copy { max-width: 560px; }
.hourly-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(61, 154, 82, 0.25);
  color: var(--jx-green-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.hourly-hero-badge svg { color: var(--jx-primary); }
.hourly-hero-copy h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--jx-green-dark);
  margin: 0 0 12px;
  line-height: 1.2;
}
.hourly-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--jx-text-light);
  margin: 0 0 18px;
}
.hourly-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.hourly-hero-tag {
  padding: 7px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--jx-border);
  font-size: 13px;
  color: var(--jx-text);
  box-shadow: 0 2px 8px rgba(42, 42, 42, 0.04);
}
.hourly-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--jx-primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(232, 135, 10, 0.28);
  transition: background .2s, transform .15s;
}
.hourly-hero-cta:hover {
  background: var(--jx-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}
.hourly-hero-visual { position: relative; min-height: 280px; }
.hourly-hero-photo-stack { position: relative; height: 280px; }
.hourly-hero-photo {
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--jx-shadow);
  border: 4px solid #fff;
}
.hourly-hero-photo--main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 240px;
  z-index: 2;
}
.hourly-hero-photo--sub {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 160px;
  z-index: 3;
  box-shadow: 0 12px 28px rgba(42, 42, 42, 0.15);
}
.hourly-hero-price {
  position: absolute;
  right: 8px;
  bottom: -8px;
  z-index: 4;
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--jx-shadow-sm);
  max-width: 220px;
}
.hourly-hero-price span {
  display: block;
  font-size: 12px;
  color: var(--jx-text-muted);
  margin-bottom: 4px;
}
.hourly-hero-price strong {
  display: block;
  font-size: 14px;
  color: var(--jx-primary-dark);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .hourly-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hourly-hero-visual { min-height: 240px; }
  .hourly-hero-photo-stack { height: 240px; }
  .hourly-hero-photo--main { width: 85%; height: 200px; }
  .hourly-hero-photo--sub { width: 55%; height: 130px; }
  .hourly-hero-price { position: static; margin-top: 12px; max-width: none; }
}

/* 家务保姆页 */
.hk-hero-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ef 0%, #f6f7f5 42%, #fff4e0 100%);
  padding: 36px 0 44px;
}
.hk-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(61, 154, 82, 0.16), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(232, 135, 10, 0.12), transparent 40%);
  pointer-events: none;
}
.hk-hero-inner { position: relative; z-index: 1; }
.hk-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hk-hero-copy { max-width: 560px; }
.hk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(61, 154, 82, 0.25);
  color: var(--jx-green-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.hk-hero-badge svg { color: var(--jx-primary); }
.hk-hero-copy h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--jx-green-dark);
  margin: 0 0 12px;
  line-height: 1.2;
}
.hk-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--jx-text-light);
  margin: 0 0 18px;
}
.hk-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hk-hero-tag {
  padding: 7px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--jx-border);
  font-size: 13px;
  color: var(--jx-text);
  box-shadow: 0 2px 8px rgba(42, 42, 42, 0.04);
}
.hk-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--jx-primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(232, 135, 10, 0.28);
  transition: background .2s, transform .15s;
}
.hk-hero-cta:hover { background: var(--jx-primary-dark); color: #fff; transform: translateY(-1px); }
.hk-hero-visual { position: relative; min-height: 280px; }
.hk-hero-photo-stack { position: relative; height: 280px; }
.hk-hero-photo {
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--jx-shadow);
  border: 4px solid #fff;
}
.hk-hero-photo--main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 240px;
  z-index: 2;
}
.hk-hero-photo--sub {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 160px;
  z-index: 3;
  box-shadow: 0 12px 28px rgba(42, 42, 42, 0.15);
}
.hk-hero-price {
  position: absolute;
  right: 8px;
  bottom: -8px;
  z-index: 4;
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--jx-shadow-sm);
  max-width: 240px;
}
.hk-hero-price span { display: block; font-size: 12px; color: var(--jx-text-muted); margin-bottom: 4px; }
.hk-hero-price strong { display: block; font-size: 13px; color: var(--jx-primary-dark); line-height: 1.45; }

.hk-page .hk-block { padding: 48px 0; }
.hk-page .hk-block--alt { background: var(--jx-bg-light); }
.hk-page .hk-block--green {
  background: linear-gradient(160deg, #edf7ef 0%, #f8faf8 100%);
}
.hk-page .hk-block--cta { padding: 32px 0 48px; }

.hk-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--jx-container, 1320px);
  margin: 0 auto;
  padding: 28px 16px;
  background: #fff;
  border-bottom: 1px solid var(--jx-border);
}
.hk-stat {
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid var(--jx-border);
}
.hk-stat:last-child { border-right: none; }
.hk-stat strong {
  display: block;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--jx-primary);
  line-height: 1.2;
}
.hk-stat span { display: block; margin-top: 6px; font-size: 13px; color: var(--jx-text-muted); }

.hk-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.hk-feature-card { border-radius: 14px; overflow: hidden; }
.hk-feature-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.hk-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.hk-feature-card:hover .hk-feature-img { transform: scale(1.06); }
.hk-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 60, 40, 0.88) 0%, rgba(30, 60, 40, 0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
}
.hk-feature-overlay h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; }
.hk-feature-overlay p { font-size: 12px; line-height: 1.5; margin: 0; opacity: 0.92; }

.hk-duty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.hk-duty-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--jx-border);
  box-shadow: var(--jx-shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.hk-duty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jx-shadow);
}
.hk-duty-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hk-duty-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.hk-duty-card:hover .hk-duty-img { transform: scale(1.05); }
.hk-duty-icon {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--jx-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--jx-shadow-sm);
}
.hk-duty-body { padding: 16px 14px 18px; }
.hk-duty-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--jx-green-dark);
  margin: 0 0 8px;
}
.hk-duty-body p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--jx-text-light);
  margin: 0;
}

.hk-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.hk-type-card {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--jx-shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.hk-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jx-shadow);
}
.hk-type-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--jx-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hk-type-card h3 { font-size: 18px; font-weight: 700; color: var(--jx-green-dark); margin: 0 0 10px; }
.hk-type-card > p { font-size: 14px; line-height: 1.7; color: var(--jx-text-light); margin: 0 0 14px; min-height: 72px; }
.hk-type-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.hk-type-tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--jx-primary-light);
  color: var(--jx-primary-dark);
}
.hk-type-price { font-size: 14px; color: var(--jx-text-muted); border-top: 1px dashed var(--jx-border); padding-top: 14px; }
.hk-type-price em { font-style: normal; font-size: 20px; font-weight: 800; color: var(--jx-primary); }

.hk-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.hk-slot-card {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--jx-shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.hk-slot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--jx-shadow);
}
.hk-slot-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--jx-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.hk-slot-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--jx-green-dark);
  margin: 0 0 8px;
}
.hk-slot-time {
  font-size: 15px;
  font-weight: 700;
  color: var(--jx-primary);
  margin: 0 0 10px;
}
.hk-slot-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--jx-text-light);
  margin: 0;
}

.hk-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.hk-scene-card {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--jx-shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.hk-scene-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jx-shadow);
}
.hk-scene-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--jx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hk-scene-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--jx-green-dark);
  margin: 0 0 10px;
}
.hk-scene-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--jx-text-light);
  margin: 0 0 14px;
  min-height: 72px;
}

.hk-scope-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.hk-scope-visual { position: relative; border-radius: 16px; overflow: hidden; }
.hk-scope-img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.hk-scope-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 600;
  color: var(--jx-green-dark);
  box-shadow: var(--jx-shadow-sm);
}
.section-title--left { text-align: left; }
.section-title--left p { margin-left: 0; margin-right: 0; }
.hk-scope-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--jx-border);
}
.hk-scope-row--reverse { direction: rtl; }
.hk-scope-row--reverse .hk-scope-body { direction: ltr; }
.hk-scope-num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--jx-green);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hk-scope-body h3 { font-size: 13px; color: var(--jx-text-muted); margin: 0 0 4px; font-weight: 600; }
.hk-scope-body p { font-size: 15px; color: var(--jx-text); margin: 0; line-height: 1.6; font-weight: 500; }

.hk-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.hk-adv-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid rgba(61, 154, 82, 0.12);
  box-shadow: 0 4px 16px rgba(42, 42, 42, 0.04);
}
.hk-adv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--jx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.hk-adv-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; color: var(--jx-green-dark); }
.hk-adv-card p { font-size: 13px; line-height: 1.6; color: var(--jx-text-light); margin: 0; }

.hk-price-table {
  margin-top: 28px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--jx-border);
  box-shadow: var(--jx-shadow-sm);
}
.hk-price-head,
.hk-price-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.6fr;
  gap: 12px;
  padding: 16px 20px;
  align-items: center;
}
.hk-price-head {
  background: var(--jx-green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.hk-price-row { border-top: 1px solid var(--jx-border); font-size: 14px; }
.hk-price-type { font-weight: 700; color: var(--jx-green-dark); }
.hk-price-val { font-weight: 700; color: var(--jx-primary); }
.hk-price-note { color: var(--jx-text-light); line-height: 1.5; }
.hk-price-tip { text-align: center; margin-top: 14px; font-size: 13px; color: var(--jx-text-muted); }

.hk-flow-rail {
  width: 100%;
  margin: 0 auto 28px;
  padding: 28px 32px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #edf7ef 0%, #fff 52%, #fff8ee 100%);
  border: 1px solid var(--jx-border);
  box-shadow: var(--jx-shadow-sm);
}
.hk-flow-rail-head { text-align: center; margin-bottom: 28px; }
.hk-flow-rail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(61, 154, 82, 0.22);
  font-size: 14px;
  font-weight: 600;
  color: var(--jx-green-dark);
}
.hk-flow-rail-badge svg { color: var(--jx-primary); }
.hk-flow-rail-desc {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--jx-text-light);
}
.hk-flow-rail-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hk-flow-rail-node {
  flex: 0 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hk-flow-rail-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--jx-primary);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(232, 135, 10, 0.25);
  margin-bottom: 14px;
}
.hk-flow-rail-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--jx-green-dark);
  line-height: 1.45;
}
.hk-flow-rail-line {
  flex: 1 1 40px;
  max-width: 88px;
  height: 3px;
  margin-top: 27px;
  background: linear-gradient(90deg, var(--jx-primary), var(--jx-green));
  opacity: 0.45;
  border-radius: 1px;
}
.hk-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hk-flow-card {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 12px;
  padding: 20px 14px 18px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.hk-flow-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--jx-shadow-sm);
}
.hk-flow-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: var(--jx-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hk-flow-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--jx-green-dark);
  margin: 0 0 8px;
}
.hk-flow-card p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--jx-text-light);
  margin: 0;
}
.hk-flow-footer {
  margin-top: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hk-faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 28px;
  align-items: start;
}
.hk-faq-aside-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--jx-border);
  box-shadow: var(--jx-shadow-sm);
  position: sticky;
  top: 96px;
}
.hk-faq-aside-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--jx-primary-light);
  color: var(--jx-primary-dark);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}
.hk-faq-aside h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--jx-green-dark);
  margin: 0 0 10px;
  text-align: left;
}
.hk-faq-aside h2::after { display: none; }
.hk-faq-aside-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--jx-text-light);
  margin: 0 0 18px;
}
.hk-faq-hints {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hk-faq-hints li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--jx-text);
  line-height: 1.5;
}
.hk-faq-hints li svg { color: var(--jx-green); flex-shrink: 0; margin-top: 2px; }
.hk-faq-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--jx-primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
}
.hk-faq-phone:hover { background: var(--jx-primary-dark); color: #fff; }

.hk-faq-list { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.hk-faq-item {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.hk-faq-item[open] {
  border-color: rgba(232, 135, 10, 0.45);
  box-shadow: 0 6px 20px rgba(232, 135, 10, 0.1);
}
.hk-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 56px 18px 20px;
  position: relative;
  user-select: none;
}
.hk-faq-item summary::-webkit-details-marker { display: none; }
.hk-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--jx-primary-light);
  color: var(--jx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: background .2s, color .2s;
}
.hk-faq-item[open] summary::after {
  content: '−';
  background: var(--jx-primary);
  color: #fff;
}
.hk-faq-q {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--jx-green-dark);
  line-height: 1.5;
}
.hk-faq-item[open] .hk-faq-q { color: var(--jx-primary-dark); }
.hk-faq-answer {
  padding: 0 20px 18px;
  margin-top: -4px;
}
.hk-faq-answer p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed var(--jx-border);
  font-size: 14px;
  line-height: 1.75;
  color: var(--jx-text-light);
}

.hk-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, #edf7ef 0%, #f6f7f5 48%, #fff8ee 100%);
  color: var(--jx-text);
  border: 1px solid rgba(61, 154, 82, 0.14);
  box-shadow: 0 4px 20px rgba(42, 42, 42, 0.05);
}
.hk-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(61, 154, 82, 0.08), transparent 42%),
    radial-gradient(circle at 92% 80%, rgba(232, 135, 10, 0.06), transparent 38%);
  pointer-events: none;
}
.hk-cta-copy,
.hk-cta-actions { position: relative; z-index: 1; }
.hk-cta h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--jx-green-dark);
}
.hk-cta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--jx-text-light);
}
.hk-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }
.hk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .15s, background .2s, border-color .2s;
}
.hk-cta-btn--primary {
  background: var(--jx-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 135, 10, 0.22);
}
.hk-cta-btn--primary:hover { background: var(--jx-primary-dark); color: #fff; transform: translateY(-1px); }
.hk-cta-btn--outline {
  background: #fff;
  color: var(--jx-green-dark);
  border: 1px solid rgba(61, 154, 82, 0.28);
}
.hk-cta-btn--outline:hover {
  background: #f8fbf8;
  color: var(--jx-green-dark);
  border-color: rgba(61, 154, 82, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .hk-feature-grid,
  .hk-duty-grid { grid-template-columns: repeat(2, 1fr); }
  .hk-type-grid,
  .hk-slot-grid,
  .hk-scene-grid { grid-template-columns: 1fr; }
  .hk-adv-grid { grid-template-columns: repeat(2, 1fr); }
  .hk-scope-layout,
  .hk-faq-layout { grid-template-columns: 1fr; }
  .hk-flow-grid { grid-template-columns: repeat(2, 1fr); }
  .hk-flow-rail-track { flex-wrap: wrap; gap: 8px 0; justify-content: center; }
  .hk-flow-rail-line { display: none; }
  .hk-flow-rail-node { flex: 0 1 calc(50% - 8px); }
  .hk-faq-aside-card { position: static; }
  .hk-scope-img { min-height: 240px; }
}
@media (max-width: 900px) {
  .hk-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hk-hero-visual { min-height: 240px; }
  .hk-hero-photo-stack { height: 240px; }
  .hk-hero-photo--main { width: 85%; height: 200px; }
  .hk-hero-photo--sub { width: 55%; height: 130px; }
  .hk-hero-price { position: static; margin-top: 12px; max-width: none; }
  .hk-stats { grid-template-columns: repeat(2, 1fr); }
  .hk-stat:nth-child(2) { border-right: none; }
  .hk-stat { border-right: none; border-bottom: 1px solid var(--jx-border); }
  .hk-stat:nth-last-child(-n+2) { border-bottom: none; }
  .hk-price-head,
  .hk-price-row { grid-template-columns: 1fr; gap: 4px; }
  .hk-price-head span:not(:first-child) { display: none; }
  .hk-cta { flex-direction: column; text-align: center; padding: 28px 20px; }
  .hk-cta-actions { justify-content: center; }
}
@media (max-width: 640px) {
  .hk-feature-grid,
  .hk-duty-grid { grid-template-columns: 1fr; }
  .hk-adv-grid { grid-template-columns: 1fr; }
  .hk-page .hk-block { padding: 36px 0; }
  .hk-flow-grid { grid-template-columns: 1fr; }
}

/* 育儿嫂 slogan */
.nanny-slogan {
  font-size: clamp(28px, 4vw, 42px);
  color: #e88;
  font-weight: 300;
  line-height: 1.4;
  font-style: italic;
}

/* Layui tab 红主题 */
.layui-tab-brief > .layui-tab-title .layui-this { color: var(--jx-primary) !important; }
.layui-tab-brief > .layui-tab-title .layui-this:after { border-bottom-color: var(--jx-primary) !important; }
.layui-btn-primary-jx { background-color: var(--jx-accent) !important; border-color: var(--jx-accent) !important; border-radius: 4px !important; }
.layui-btn-primary-jx:hover { background-color: #d42d6a !important; }

/* Layui 表单 */
.booking-card .layui-form-label { width: 90px; padding: 9px 10px; }
.booking-card .layui-input-block { margin-left: 110px; }
@media (max-width: 768px) {
  .booking-card .layui-form-label { width: 100%; text-align: left; padding-bottom: 4px; }
  .booking-card .layui-input-block { margin-left: 0; }
}

/* 悬浮联系 */
.float-contact {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-contact a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  transition: transform .2s;
}
.float-contact a:hover { transform: scale(1.06); }
.float-contact a:active { transform: scale(0.96); }
.float-contact .fc-phone { background: var(--jx-primary); }
.float-contact .fc-qq { background: #0ea5e9; }

/* 滚动入场 */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pain-card:hover, .advantage-card:hover, .news-card:hover { transform: none; }
}

/* 关于我们页 */
.about-hero-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #edf7ef 0%, #f6f7f5 48%, #fff8ee 100%);
  color: var(--jx-text);
}
.about-hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(61, 154, 82, 0.1), transparent 40%),
    radial-gradient(circle at 90% 82%, rgba(232, 135, 10, 0.08), transparent 38%);
  pointer-events: none;
}
.about-hero-band .hero-inner { position: relative; z-index: 1; }
.about-hero-band .about-stats-block .stats-num { color: var(--jx-primary); }
.about-hero-band .about-hero-tag {
  background: #fff;
  color: var(--jx-green-dark);
  border: 1px solid rgba(61, 154, 82, 0.22);
  box-shadow: 0 2px 10px rgba(42, 42, 42, 0.06);
}
.about-hero-visual { position: relative; }
.about-hero-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #e8ece8;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  min-height: 320px;
  aspect-ratio: 4 / 3;
}
.about-hero-slides {
  position: absolute;
  inset: 0;
}
.about-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.about-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.about-hero-slide-link {
  display: block;
  width: 100%;
  height: 100%;
}
.about-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.about-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
.about-hero-dot.is-active {
  width: 22px;
  background: #fff;
}
.about-hero-tags {
  position: absolute;
  left: 16px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-hero-tag {
  display: inline-block;
  background: rgba(95, 184, 168, 0.92);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.about-stats-block .stats-num { font-size: 48px; }

.about-brand-news { border-top: 1px solid var(--jx-border); }
.about-brand-news-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 8px;
}
.about-brand-news-featured .news-card { height: 100%; }
.about-brand-news-list { margin-top: 24px; }
.about-brand-news-list .news-list { gap: 20px; }
.about-brand-news-empty {
  text-align: center;
  color: #9CA3AF;
  padding: 32px 0;
  margin: 0;
}
.about-brand-news-more {
  margin-top: 28px;
  text-align: center;
}
.about-brand-news-more a {
  color: var(--jx-primary);
  font-weight: 600;
  font-size: 15px;
}
.about-brand-news-more a:hover { text-decoration: underline; }
@media (min-width: 768px) {
  .about-brand-news-featured { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .about-brand-news-featured { grid-template-columns: repeat(3, 1fr); }
}
.about-trust-badges {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  padding: 14px 20px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.about-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--jx-text-light);
}
.about-trust-item svg { color: var(--jx-primary); }
.booking-btn-accent {
  background: var(--jx-accent) !important;
  border-color: var(--jx-accent) !important;
}
.booking-btn-accent:hover {
  background: var(--jx-accent-dark) !important;
  border-color: var(--jx-accent-dark) !important;
}
.booking-inline {
  background: #fff;
  border-radius: var(--jx-radius);
  box-shadow: var(--jx-shadow);
  border: 1px solid var(--jx-border);
  padding: 16px 20px;
}
.booking-inline-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.booking-inline-item { flex: 1 1 140px; min-width: 120px; }
.booking-inline-btn { flex: 0 0 auto; min-width: 100px; }
.booking-inline-btn .layui-btn { width: 100%; white-space: nowrap; }
.booking-inline-form .layui-input,
.booking-inline-form select { height: 40px; border-radius: 6px; }
.about-map-wrap {
  border-radius: var(--jx-radius-lg);
  overflow: hidden;
  border: 1px solid var(--jx-border);
  box-shadow: var(--jx-shadow);
}
.about-map-img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 280px;
  object-fit: cover;
  background: #f5f5f5;
}
.about-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--jx-bg-light);
  border-radius: var(--jx-radius);
  border: 1px solid var(--jx-border);
}
.about-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--jx-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-contact-label {
  display: block;
  font-size: 13px;
  color: var(--jx-text-light);
  margin-bottom: 4px;
}
.about-contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--jx-text);
  word-break: break-all;
}
.about-contact-value a { color: var(--jx-primary); }

.about-intro-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
}
.about-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--jx-primary-light);
  color: var(--jx-primary-dark);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.about-intro-copy h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--jx-green-dark);
  margin: 0 0 16px;
  line-height: 1.3;
  text-align: left;
}
.about-intro-copy h2::after { display: none; }
.about-intro-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--jx-text-light);
  margin: 0 0 14px;
}
.about-intro-meta {
  font-size: 13px;
  color: var(--jx-text-muted);
  margin: 0;
}
.about-value-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-value-card {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: var(--jx-shadow-sm);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--jx-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-value-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--jx-green-dark);
  margin: 0 0 6px;
}
.about-value-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--jx-text-light);
  margin: 0;
}
.about-milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.about-milestone {
  background: #fff;
  border: 1px solid var(--jx-border);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--jx-shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.about-milestone:hover {
  transform: translateY(-3px);
  box-shadow: var(--jx-shadow);
}
.about-milestone strong {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--jx-primary);
  line-height: 1.2;
  margin-bottom: 8px;
}
.about-milestone h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--jx-green-dark);
  margin: 0 0 8px;
}
.about-milestone p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--jx-text-light);
  margin: 0;
}

@media (max-width: 1024px) {
  .about-intro-layout { grid-template-columns: 1fr; }
  .about-milestone-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .hero-banner { min-height: auto; }
  .stats-num { font-size: 40px; }
  .flow-step:not(:last-child)::after { display: none; }
  .site-header .logo-sub { display: none; }
  .site-header .logo-text { font-size: 17px; }
  .logo-mark { width: 38px; height: 38px; border-radius: 10px; font-size: 17px; }
  .header-book-btn { display: none; }
  .header-phone-btn span { display: none; }
  .top-bar-tag { display: none; }
  .float-contact { right: 12px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .hero-cta { width: 100%; justify-content: center; }
  .booking-card .layui-btn-lg { width: 100%; }
  .about-contact-grid { grid-template-columns: 1fr; }
  .booking-inline-btn { flex: 1 1 100%; }
  .about-hero-tags { left: 12px; bottom: 12px; }
  .about-hero-tag { font-size: 13px; padding: 8px 14px; }
  .about-milestone-grid { grid-template-columns: 1fr; }
  .news-list-row {
    flex-direction: row !important;
    gap: 16px;
  }
  .news-list-thumb {
    flex: 0 0 120px;
    width: 120px;
    height: 90px;
  }
  .news-list-body { min-height: 90px; }
  .news-list-title { font-size: 15px; }
  .news-list-desc { -webkit-line-clamp: 2; font-size: 13px; }
  .layui-tab-title { overflow-x: auto; flex-wrap: nowrap !important; justify-content: flex-start !important; -webkit-overflow-scrolling: touch; }
  .layui-tab-title li { white-space: nowrap; flex-shrink: 0; }
}
