/* ========== 全局根修复 专门解决无故出现横向滚动条 ========== */
:root {
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100vw;
  margin: 0;
  padding: 0;
}
body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
}

/* 所有 section / 大容器默认剪横向溢出，避免伪元素/负定位撑出滚动条 */
/* Hero首屏 ——— 仅修改此块，其余全部保留原样 */
.hero {
  position: relative;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 40%, #B2DFDB 100%);
  padding: 80px 0;
  overflow: hidden;
  /* 建立完整裁剪上下文，强制裁剪伪元素渲染光晕 */
  contain: layout paint;
}
.hero::before {
  content: '';
  /* ❗不要使用right:-100px往外跑，改用inset，限制在盒子内部 */
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: radial-gradient(circle, rgba(255,183,77,0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(80px,-80px);
}
.hero::after {
  content: '';
  inset:0;
  width:100%;
  height:100%;
  position:absolute;
  background: radial-gradient(circle, rgba(79,195,247,0.15) 0%, transparent 70%);
  border-radius:50%;
  transform: translate(-60px,60px);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 50px;
  font-size: 13px;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--primary-dark); }
.hero p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; }
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img {
  width: 480px;
  height: 360px;
  background: linear-gradient(135deg, #fff, #f0f9f0);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-stats {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 28px;
}
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block;
  font-size: 24px;
  color: var(--primary-dark);
  font-weight: 700;
}
.hero-stats span {
  font-size: 12px;
  color: var(--text-light);
}


.promises {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  padding: 70px 0;
  overflow-x: hidden; /*新增 */will-change: transform; /*新增*/
}

.cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow-x: hidden; /*新增 */will-change: transform; /*新增*/
}

.page-banner {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 60%, #B2DFDB 100%);
  padding: 60px 0;
  position: relative;
  overflow-x: hidden; /*新增 */will-change: transform; /*新增*/
}


img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.25s; }
ul, ol { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; transition: all 0.25s; }
input, textarea, select { font-family: inherit; font-size: 14px; outline: none; }

/* ===== 颜色变量 ===== */
:root {
  --primary: #66BB6A;
  --primary-dark: #4CAF50;
  --primary-light: #A5D6A7;
  --primary-pale: #E8F5E9;
  --accent: #FFB74D;
  --accent-light: #FFE0B2;
  --blue: #4FC3F7;
  --text: #2d3a35;
  --text-light: #6b7c76;
  --text-lighter: #9aa8a3;
  --bg: #f8fbf9;
  --bg-white: #ffffff;
  --border: #e4efe6;
  --shadow-sm: 0 2px 8px rgba(102, 187, 106, 0.08);
  --shadow-md: 0 6px 20px rgba(102, 187, 106, 0.12);
  --shadow-lg: 0 12px 36px rgba(102, 187, 106, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
}

/* ===== 容器 ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 顶部通栏 ===== */
.topbar {
  background: #f0f7f2;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-light);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.topbar-left { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-right a { display: flex; align-items: center; gap: 4px; }
.topbar-right a:hover { color: var(--primary); }

/* ===== 导航栏 ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
  width: 100%;
  max-width: 100%;
  overflow: visible; /* 允许 nav-toggle 层级穿透显示，防止被 navbar 自身裁剪 */
}
/* 移动端下让 nav-toggle 始终保持可点击，不被任何 sticky 层裁剪 */
@media (max-width: 768px) {
  .navbar { z-index: 10003; }
  .navbar .container { overflow: visible; position: relative; }
}
.navbar.scrolled {
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu { display: flex; gap: 4px; }
.nav-menu a {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--primary-pale);
  color: var(--primary-dark);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
}
.nav-phone:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(102, 187, 106, 0.4);
}

/* 汉堡菜单按钮 — z-index 必须高于 nav-mask(10000)，否则遮罩展开后点不到 */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  z-index: 10002;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 40%, #B2DFDB 100%);
  padding: 80px 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,183,77,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79,195,247,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 50px;
  font-size: 13px;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--primary-dark); }
.hero p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(102, 187, 106, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 187, 106, 0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid var(--primary-light);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
}
.btn-secondary:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
}
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-img {
  width: 480px;
  height: 360px;
  background: linear-gradient(135deg, #fff, #f0f9f0);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-stats {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 28px;
}
.hero-stats div { text-align: center; }
.hero-stats strong {
  display: block;
  font-size: 24px;
  color: var(--primary-dark);
  font-weight: 700;
}
.hero-stats span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== 快速服务入口 ===== */
.quick-entry {
  padding: 50px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.quick-entry-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
}
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
}
.quick-item:hover {
  background: var(--primary-pale);
  transform: translateY(-4px);
}
.quick-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}
.quick-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ===== 通用区块 ===== */
.section { padding: 80px 0; }
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.bg-white { background: #fff; }
.bg-pale { background: var(--primary-pale); }

/* ===== 服务项目 ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.service-card-body {
  padding: 22px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.service-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
  min-height: 44px;
}
.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
}
.service-price span { font-size: 12px; font-weight: 400; color: var(--text-light); }
.btn-sm {
  padding: 8px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}
.btn-sm:hover { background: var(--primary-dark); }

/* ===== 四大优势 ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.adv-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  border: 1px solid var(--border);
}
.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.adv-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}
.adv-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.adv-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== 五个承诺 ===== */
.promises {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  padding: 70px 0;
}
.promises-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.promise-item {
  text-align: center;
  padding: 30px 16px;
}
.promise-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}
.promise-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.promise-item p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== 合作流程 ===== */
.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 68px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-light), var(--primary), var(--primary-light));
  border-radius: 2px;
  z-index: 0;
}
.step-item {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.2);
}
.step-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.step-item p {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== 案例展示 ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
  border: 1px solid var(--border);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.case-img {
  height: 220px;
  background: linear-gradient(135deg, #B2DFDB, #80CBC4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.case-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.95);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.case-body {
  padding: 18px 20px;
}
.case-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.case-body span {
  font-size: 12px;
  color: var(--text-lighter);
}

/* ===== 客户评价 ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote {
  font-size: 40px;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 10px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  min-height: 100px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.testimonial-author-info h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.testimonial-author-info span {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== 新闻资讯 ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.35s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-body { padding: 22px; }
.news-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-lighter);
}
.news-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.5;
}
.news-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}
.news-more:hover { color: var(--primary-dark); }

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta .container { position: relative; z-index: 2; }
.cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* ===== 页脚 ===== */
.footer {
  background: #2d3a35;
  color: #b8c5bf;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer-contact div { display: flex; align-items: center; gap: 8px; }
.footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; }
.footer-links a:hover { color: var(--primary-light); }
.footer-qr {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 12px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #7a8a84;
}

/* ===== 右侧客服工具条 ===== */
.floating-service {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fs-item {
  position: relative;
  width: 52px;
  height: 52px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  cursor: pointer;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.fs-item:hover {
  width: 60px;
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.fs-item.fs-top { display: none; }
.fs-item.fs-top.visible { display: flex; }
.fs-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  pointer-events: none;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
}
.fs-item:hover .fs-tooltip {
  opacity: 1;
  visibility: visible;
  right: 68px;
}
.fs-tooltip strong { color: var(--primary-dark); font-size: 16px; }
.fs-qr-tooltip { padding: 16px; }
.fs-qr-tooltip .qr-box {
  width: 120px;
  height: 120px;
  background: var(--primary-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 12px;
  margin-bottom: 8px;
}
.fs-qr-tooltip p {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

/* ===== 页面 Banner（子页面） ===== */
.page-banner {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 60%, #B2DFDB 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,183,77,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }
.page-banner h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
}

/* ===== 列表页面布局 ===== */
.page-content {
  padding: 60px 0;
  background: var(--bg);
}
.two-col {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}
/* services 页面：桌面端三 widget 都占左栏，main 占右栏 */
.two-col-services {
  grid-template-columns: 260px 1fr;
  grid-template-areas:
    "category main"
    "phone    main"
    "booking  main";
  grid-auto-rows: auto;
  align-items: start;
  gap: 20px 30px;
}
.two-col-services > .widget-category { grid-area: category; }
.two-col-services > .widget-phone { grid-area: phone; }
.two-col-services > .widget-booking { grid-area: booking; }
.two-col-services > .services-main { grid-area: main; align-self: start; }
.sidebar-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.sidebar-widget h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-pale);
  position: relative;
}
.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.cat-list li {
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s;
}
.cat-list li:hover, .cat-list li.active {
  background: var(--primary-pale);
  color: var(--primary-dark);
}
.cat-list li span {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-lighter);
}
.sidebar-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}
.sidebar-phone-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.sidebar-phone strong {
  font-size: 18px;
  color: var(--primary-dark);
  font-weight: 700;
}
.sidebar-phone p {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== 筛选栏 ===== */
.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== 分页 ===== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.pagination a:hover, .pagination a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== 服务详情 ===== */
.detail-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.detail-main-img {
  height: 360px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-info {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.detail-info h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-light);
}
.detail-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.detail-price span { font-size: 14px; font-weight: 400; color: var(--text-light); }
.detail-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.detail-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.detail-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.detail-btns { display: flex; gap: 12px; }

/* ===== Tab ===== */
.tab-nav {
  display: flex;
  gap: 4px;
  background: #fff;
  padding: 8px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
}
.tab-nav button {
  padding: 12px 28px;
  background: transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
}
.tab-nav button.active {
  background: var(--primary-pale);
  color: var(--primary-dark);
}
.tab-content {
  background: #fff;
  padding: 30px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--border);
  border-top: none;
  margin-bottom: 30px;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}
.tab-panel p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.tab-panel ul { margin-bottom: 16px; }
.tab-panel ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}
.tab-panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-q::before {
  content: 'Q';
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.faq-a {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 30px;
}

/* ===== 预约表单 ===== */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  transition: all 0.25s;
  background: #fafdfb;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
}
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form button {
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.booking-form button:hover { background: var(--primary-dark); }

/* ===== 关于我们 ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  height: 380px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80%;
  height: 80%;
  border: 3px solid var(--primary-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.about-feature h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* 时间轴 */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-light), var(--primary));
  transform: translateX(-50%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  margin-bottom: 20px;
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-dot {
  position: absolute;
  top: 28px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid var(--primary);
  border-radius: 50%;
  z-index: 2;
}
.timeline-item:nth-child(odd) .timeline-dot { right: -9px; }
.timeline-item:nth-child(even) .timeline-dot { left: -9px; }
.timeline-year {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.timeline-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* 团队 */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-info { padding: 18px; }
.team-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.team-info span {
  font-size: 13px;
  color: var(--primary-dark);
}

/* 价值观 */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}
.value-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* 联系信息卡片 */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.contact-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}
.contact-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}
.contact-form-box {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-form-box > p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.25s;
  background: #fafdfb;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-full {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
}
.btn-full:hover { background: var(--primary-dark); }

.map-placeholder {
  height: 420px;
  background: linear-gradient(135deg, #e0f0e3, #c8e6ca);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
}

/* ===== 新闻详情 ===== */
.article-main {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 30px;
}
.article-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-lighter);
}
.article-cover {
  height: 320px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  border-radius: var(--radius);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-content {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
}
.article-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 14px;
}
.article-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 12px;
}
.article-content p { margin-bottom: 14px; color: var(--text-light); }
.article-tags {
  display: flex;
  gap: 8px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.article-tags a {
  padding: 4px 14px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 12px;
}
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.article-share span { font-size: 13px; color: var(--text-light); }
.share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 12px;
}
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.article-nav a {
  padding: 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.article-nav a:hover { border-color: var(--primary); }
.article-nav-label {
  font-size: 12px;
  color: var(--text-lighter);
  margin-bottom: 6px;
}
.article-nav-title {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-nav-next { text-align: right; }

.hot-news li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.hot-news li:last-child { border-bottom: none; }
.hot-news-num {
  width: 22px;
  height: 22px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.hot-news li:nth-child(1) .hot-news-num,
.hot-news li:nth-child(2) .hot-news-num,
.hot-news li:nth-child(3) .hot-news-num {
  background: var(--accent);
  color: #fff;
}
.hot-news-title {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.hot-news-title:hover { color: var(--primary); }

/* 相关推荐 */
.related-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

/* ===== 响应式 ===== */
/* ====== 移动端适配（≤768px）====== */
@media (max-width: 768px) {
  /* 防止横向滚动条 */
  html, body { overflow-x: hidden; max-width: 100%; }
  .container { width: 100%; padding: 0 16px; max-width: 100%; }
  * { -webkit-tap-highlight-color: transparent; }

  /* 1. 顶部通栏：分两行，超长文字自适应不溢出 */
  .topbar { height: auto; width: 100%; overflow: hidden; }
  .topbar .container {
    flex-direction: column;
    gap: 6px;
    padding: 8px 14px;
    height: auto;
    min-height: auto;
  }
  .topbar-left, .topbar-right {
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    flex-wrap: wrap;
  }
  .topbar-left svg { flex-shrink: 0; }
  .topbar-right { gap: 10px 14px; }
  .topbar-right a {
    padding: 2px 0;
    font-size: 12px;
  }

  /* 2. 导航栏汉堡菜单 */
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  .navbar .container { height: 60px; }
  .logo { font-size: 17px; gap: 8px; }
  .logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
  .logo-icon svg { width: 20px; height: 20px; }

  /* 移动端下拉菜单 */
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 70px 0 30px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    z-index: 10001;
    display: flex !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.is-open { right: 0; }
  .nav-menu a {
    padding: 14px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-menu a:hover, .nav-menu a.active {
    background: var(--primary-pale);
    color: var(--primary-dark);
  }
  /* 遮罩 */
  .nav-mask {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .nav-mask.is-open {
    display: block;
    opacity: 1;
  }

  /* 3. Hero 首屏整体移动端重排 */
  .hero {
    padding: 40px 0 48px;
  }
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
  }
  .hero-tag {
    font-size: 12px;
    padding: 5px 14px;
    margin-bottom: 16px;
  }
  .hero h1 {
    font-size: 26px;
    margin-bottom: 14px;
    line-height: 1.3;
  }
  .hero p {
    font-size: 14px;
    margin-bottom: 22px;
    line-height: 1.7;
  }

  /* Hero按钮垂直排列，宽度100%，不溢出 */
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    gap: 12px;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 46px;
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Hero 视觉图卡片：自适应手机宽度，不超出屏幕 */
  .hero-visual {
    width: 100%;
    flex: none;
  }
  .hero-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    min-height: 240px;
    padding: 28px 20px 20px;
    margin: 0 auto;
    border-radius: 20px;
  }
  .hero-img svg {
    width: 90px;
    height: 90px;
  }
  .hero-img div[style*="margin-top: 16px"] {
    margin-top: 10px !important;
    font-size: 15px !important;
  }

  /* 4. Hero数据统计居中（改为内嵌到hero-img底部下方） */
  .hero-stats {
    position: static;
    justify-content: center;
    margin: 24px auto 0;
    width: 100%;
    max-width: 340px;
    padding: 14px 10px;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    background: #fff;
    border-radius: 14px;
  }
  .hero-stats div {
    text-align: center;
    flex: 1;
    min-width: 0;
  }
  .hero-stats strong { font-size: 18px; }
  .hero-stats span {
    font-size: 11px;
    display: block;
    line-height: 1.4;
  }

  /* 5. 合作单位居中（仅兜底） */
  .partner-section, .partner-section * { text-align: center; }
  .partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .partner-logos > * {
    margin: 0 auto;
    justify-self: center;
  }

  /* 6. 服务导航 4列×2行 */
  .quick-entry {
    padding: 28px 0;
  }
  .quick-entry-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px 6px;
  }
  .quick-item {
    padding: 10px 4px;
    min-height: auto;
    height: auto;
  }
  .quick-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .quick-icon svg {
    width: 20px;
    height: 20px;
  }
  .quick-item span {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* 7. 页脚全部居中 */
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 32px;
  }
  .footer-grid h4 { text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-links { text-align: center; }
  .footer-links a { text-align: center; display: inline-block; width: auto; }
  .footer-contact {
    text-align: center;
    align-items: center;
  }
  .footer-contact div { justify-content: center; }
  .footer-qr { margin: 0 auto; }
  .footer-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom { text-align: center; font-size: 12px; padding: 16px; line-height: 1.6; }

  /* 8. 回到顶部按钮（移动端独立显示） */
  .back-to-top-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 16px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(102, 187, 106, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99;
    border: none;
  }
  .back-to-top-mobile.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* 左右分栏改单列 */
  .detail-layout, .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .detail-sidebar-section { order: 2; }
  .detail-main-section { order: 1; }

  /* 卡片网格 */
  .services-grid,
  .cases-grid,
  .advantages-grid,
  .team-grid,
  .values-grid,
  .contact-info-grid,
  .news-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .promises-grid { grid-template-columns: repeat(2, 1fr); }

  /* 字号调整 */
  body { font-size: 14px; }
  .section { padding: 44px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 22px; line-height: 1.4; }
  .section-desc { font-size: 13px; padding: 0 4px; }

  /* 列表详情页字号 */
  .detail-info-card h1 { font-size: 22px; }
  .detail-price-big { font-size: 28px; }
  .article-head h1 { font-size: 22px; }
  .article-main-card { padding: 24px; }

  /* Tab导航换行 */
  .tab-nav-horizontal { flex-wrap: wrap; }
  .tab-nav-horizontal button {
    flex: 0 0 calc(50% - 4px);
    font-size: 13px;
    padding: 10px;
  }

  /* 相关推荐2列 */
  .related-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* 新闻横向卡片改纵向 */
  .news-h-card { flex-direction: column; }
  .news-h-card-img { width: 100%; min-width: 0; aspect-ratio: 16/9; }
  .news-h-card-body { padding: 20px; }

  /* 上下篇文章导航 */
  .article-nav-row { grid-template-columns: 1fr; }

  /* 按钮最小点击高度 */
  .btn-primary, .btn-secondary, .btn-sm, .btn-full {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* 特色服务项两列 */
  .detail-features { grid-template-columns: repeat(2, 1fr); }

  /* CTA 字号 */
  .cta { padding: 44px 0; }
  .cta h2 { font-size: 22px; }
  .cta p { font-size: 14px; }
  .cta-phone {
    font-size: 18px;
    padding: 14px 30px;
    max-width: 100%;
  }

  /* 服务卡片内容收紧 */
  .service-card-body, .case-body, .news-body { padding: 18px; }
  .case-card-footer, .news-card-footer { padding: 14px 18px; }
}

@media (max-width: 992px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 36px; }
  .hero-btns { justify-content: center; }
  .quick-entry-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .promises-grid { grid-template-columns: repeat(3, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  /* services 移动端排序：分类 → 服务列表 → 电话 → 预约 */
  .two-col-services {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }
  .two-col-services > .widget-category { order: 1; width: 100%; padding: 12px; }
  .two-col-services > .widget-category h3 { display: none; }
  .two-col-services > .widget-category .cat-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
  }
  .two-col-services > .widget-category .cat-list::-webkit-scrollbar { display: none; }
  .two-col-services > .widget-category .cat-list li {
    flex: 0 0 auto;
    padding: 8px 14px;
    margin: 0;
    white-space: nowrap;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 20px;
    font-size: 13px;
  }
  .two-col-services > .widget-category .cat-list li svg { display: none; }
  .two-col-services > .widget-category .cat-list li span {
    margin-left: 4px;
    font-size: 12px;
    color: var(--text-light);
  }
  .two-col-services > .widget-category .cat-list li.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }
  .two-col-services > .widget-category .cat-list li.active span { color: rgba(255,255,255,0.8); }
  .two-col-services > .services-main { order: 2; width: 100%; }
  .two-col-services > .widget-phone { order: 3; width: 100%; }
  .two-col-services > .widget-booking { order: 4; width: 100%; }
  .detail-hero { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-section { grid-template-columns: 1fr; }
  .process-timeline { flex-wrap: wrap; }
  .step-item { flex: 0 0 33.33%; margin-bottom: 20px; }
  .process-timeline::before { display: none; }
  .nav-menu { display: none; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 40px; }
  .timeline::before { left: 20px; }
  .timeline-dot { left: 11px !important; right: auto !important; }
}

@media (max-width: 576px) {
  .section { padding: 50px 0; }
  .section-title { font-size: 26px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .quick-entry-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .promises-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta h2 { font-size: 24px; }
  .cta-phone { font-size: 18px; padding: 14px 28px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .article-main { padding: 24px; }
  .article-title { font-size: 22px; }
  .step-item { flex: 0 0 50%; }
  .floating-service { display: none; }
}

/* ====== 动画效果 ====== */

/* 滚动渐入 */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 首屏依次淡入 */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}
.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tab内容淡入 */
.tab-panel.active {
  animation: tabFadeIn 0.4s ease-out;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 按钮悬浮缩放 */
.btn-primary, .btn-secondary, .btn-sm, .btn-full {
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary:hover {
  transform: translateY(-2px);
}

/* 图片悬浮缩放 */
.service-card-img, .case-img, .news-img, .detail-main-img,
.team-avatar, .about-img {
  overflow: hidden;
}
.service-card-img svg, .case-img svg, .news-img svg,
.detail-main-img svg, .team-avatar svg, .about-img svg {
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img svg,
.case-card:hover .case-img svg,
.news-card:hover .news-img svg,
.team-card:hover .team-avatar svg {
  transform: scale(1.1);
}

/* 卡片悬浮 */
.service-card, .case-card, .news-card, .testimonial-card,
.adv-card, .value-card, .contact-card, .team-card,
.sidebar-widget, .article-main {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* 分页悬浮 */
.pagination a {
  transition: all 0.25s ease;
}

/* 数字跳动动画 */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ====== 服务详情页布局修正 ====== */
.detail-layout {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 30px;
  align-items: start;
}
.detail-main-section { min-width: 0; }
.detail-sidebar-section { min-width: 0; }

.detail-banner {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #E8F5E9 0%, #A5D6A7 50%, #81C784 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.detail-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.detail-banner svg { position: relative; z-index: 2; }
.detail-banner span {
  margin-top: 16px;
  color: #2E7D32;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  z-index: 2;
}

.detail-info-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.detail-info-card h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.detail-rating-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-light);
}
.detail-rating-row .stars { color: #FFB74D; letter-spacing: 2px; }
.detail-price-big {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.detail-price-big span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 4px;
}
.detail-desc-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.detail-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--primary-pale);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text);
  transition: all 0.3s;
}
.detail-feature-item:hover {
  background: #d8eedd;
  transform: translateY(-2px);
}
.detail-feature-item svg { flex-shrink: 0; color: var(--primary-dark); }
.detail-feature-item span { font-size: 12px; color: var(--text-light); display: block; }
.detail-feature-item strong { font-size: 13px; font-weight: 600; display: block; }

.detail-action-row {
  display: flex;
  gap: 12px;
}
.detail-action-row .btn-primary, .detail-action-row .btn-secondary {
  flex: 1;
  justify-content: center;
}

/* Tab横向 */
.tab-nav-horizontal {
  display: flex;
  gap: 8px;
  background: #fff;
  padding: 10px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  overflow: hidden;
}
.tab-nav-horizontal button {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.tab-nav-horizontal button:hover {
  background: var(--primary-pale);
  color: var(--primary-dark);
}
.tab-nav-horizontal button.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3);
}
.tab-content-box {
  background: #fff;
  padding: 32px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--border);
  border-top: none;
  margin-bottom: 32px;
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.tab-pane p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 12px;
}
.tab-pane ul { margin-bottom: 16px; }
.tab-pane ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}
.tab-pane ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* FAQ */
.faq-item-box {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item-box:last-child { border-bottom: none; }
.faq-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-q-badge {
  width: 24px; height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-answer {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  padding-left: 34px;
}

/* 边栏通用 */
.side-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.side-widget ul,.sidebar-widget ul{margin:0;padding:0}
.side-widget:hover { box-shadow: var(--shadow-md); }
.side-widget h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-pale);
  position: relative;
}
.side-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.side-cat-list li {
  padding: 11px 14px;
  border-radius: 10px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  transition: all 0.25s;
}
.side-cat-list li:hover {
  background: var(--primary-pale);
  color: var(--primary-dark);
  transform: translateX(4px);
}
.side-cat-list li.active {
  background: var(--primary);
  color: #fff;
}
.side-cat-list li.active svg { color: #fff; }
.side-cat-list li span.count {
  margin-left: auto;
  font-size: 12px;
  opacity: 0.7;
}

.side-phone-card {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-pale), #d4edd8);
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}
.side-phone-icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(102, 187, 106, 0.5); }
}
.side-phone-card strong {
  font-size: 20px;
  color: var(--primary-dark);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.side-phone-card p {
  font-size: 13px;
  color: var(--text-light);
}

.side-form input, .side-form select, .side-form textarea {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  background: #fafdfb;
  transition: all 0.25s;
  box-sizing: border-box;
}
.side-form input:focus, .side-form select:focus, .side-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.1);
}
.side-form textarea { resize: vertical; min-height: 70px; }
.side-form button {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.side-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 187, 106, 0.35);
}

.side-qr-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.side-qr-box {
  width: 130px; height: 130px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #f0f9f0, #fff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.side-qr-card p {
  font-size: 13px;
  color: var(--text-light);
}

/* ====== 新闻列表页 横向卡片 ====== */
.news-horizontal-list { display: flex; flex-direction: column; gap: 24px; }
.news-h-card {
  display: flex;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.35s;
}
.news-h-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.news-h-card-img {
  width: 35%;
  min-width: 260px;
  aspect-ratio: auto;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.news-h-card-img svg { transition: transform 0.5s ease; }
.news-h-card:hover .news-h-card-img svg { transform: scale(1.1); }
.news-h-card-body {
  flex: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.news-h-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
  align-self: flex-start;
}
.news-h-card-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.25s;
}
.news-h-card:hover h3 { color: var(--primary-dark); }
.news-h-card-body .news-h-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-h-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-lighter);
}
.news-h-meta span { display: flex; align-items: center; gap: 4px; }
.news-h-more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.25s;
}
.news-h-more:hover { color: var(--primary-dark); gap: 10px; }

/* 热门排行 */
.hot-rank{padding:0;}
.hot-rank li {
  display: flex;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  transition: all 0.25s;
}
.hot-rank li:hover { transform: translateX(4px); }
.hot-rank li:last-child { border-bottom: none; }
.hot-rank-num {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  background: #f0f5f2;
  color: var(--text-light);
}
.hot-rank li:nth-child(1) .hot-rank-num { background: linear-gradient(135deg, #FFD54F, #FFA726); color: #fff; }
.hot-rank li:nth-child(2) .hot-rank-num { background: linear-gradient(135deg, #E0E0E0, #BDBDBD); color: #fff; }
.hot-rank li:nth-child(3) .hot-rank-num { background: linear-gradient(135deg, #FFB74D, #F57C00); color: #fff; }
.hot-rank-title {
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
  transition: color 0.25s;
}
.hot-rank li:hover .hot-rank-title { color: var(--primary); }

/* ====== 新闻详情页 ====== */
.article-layout {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 30px;
  align-items: start;
}
.article-main-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 30px;
}
.article-head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.article-head h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 16px;
}
.article-meta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-lighter);
}
.article-meta-row span { display: flex; align-items: center; gap: 6px; }

.article-cover-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #E8F5E9 0%, #A5D6A7 50%, #81C784 100%);
  border-radius: var(--radius);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.article-cover-img::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.article-cover-img svg { position: relative; z-index: 2; }

.article-content-text {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
}
.article-content-text h2 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 16px;
  padding-left: 12px;
  border-left: 4px solid var(--primary);
}
.article-content-text h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 12px;
}
.article-content-text p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 2;
}
.article-content-text ul { margin-bottom: 16px; padding-left: 8px; }
.article-content-text ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}
.article-content-text ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.article-content-text blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--primary-pale);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  color: var(--text);
  font-style: italic;
  line-height: 1.9;
  font-size: 15px;
}

.article-tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article-tag-row span.tag-label {
  font-size: 13px;
  color: var(--text-light);
  margin-right: 4px;
  line-height: 28px;
}
.article-tag-row a {
  padding: 5px 14px;
  background: var(--primary-pale);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 12px;
  transition: all 0.25s;
}
.article-tag-row a:hover {
  background: var(--primary);
  color: #fff;
}

.article-share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.article-share-row span.share-label {
  font-size: 13px;
  color: var(--text-light);
}
.share-icon-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.25s;
}
.share-icon-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.article-nav-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.article-nav-card {
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: block;
}
.article-nav-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.article-nav-card.article-nav-next { text-align: right; }
.nav-card-label {
  font-size: 12px;
  color: var(--text-lighter);
  margin-bottom: 8px;
}
.nav-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 相关推荐卡片 - 横排3列 */
.related-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.35s;
}
.related-news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.related-news-img {
  height: 140px;
  background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.related-news-img svg { transition: transform 0.5s; }
.related-news-card:hover .related-news-img svg { transform: scale(1.1); }
.related-news-body { padding: 16px 18px; }
.related-news-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s;
}
.related-news-card:hover h4 { color: var(--primary-dark); }
.related-news-body span {
  font-size: 12px;
  color: var(--text-lighter);
}

/* 响应式补充 */
@media (max-width: 992px) {
  .detail-layout, .article-layout {
    grid-template-columns: 1fr;
  }
  .detail-features { grid-template-columns: repeat(2, 1fr); }
  .related-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .news-h-card { flex-direction: column; }
  .news-h-card-img { width: 100%; min-width: 0; aspect-ratio: 16/9; }
}
@media (max-width: 576px) {
  .detail-features { grid-template-columns: 1fr; }
  .tab-nav-horizontal { flex-wrap: wrap; }
  .tab-nav-horizontal button { flex: 0 0 calc(50% - 4px); font-size: 13px; padding: 10px; }
  .related-grid-3 { grid-template-columns: 1fr; }
  .article-nav-row { grid-template-columns: 1fr; }
  .article-main-card { padding: 24px; }
  .article-head h1 { font-size: 22px; }
  .article-head { text-align: left; }
  .article-meta-row { justify-content: flex-start; }
  .detail-info-card { padding: 24px; }
  .detail-info-card h1 { font-size: 22px; }
  .detail-price-big { font-size: 28px; }
  .tab-content-box { padding: 20px; }
}
