/* =====================================================
   兔兔办公 · 全站样式（设计系统 + 内页 + 响应式）
   主色：商务绿 #16a34a；强调色：活力橙 #ff7a1a；纯色扁平，不用渐变
   断点：992px（平板）、768px（手机）
   ===================================================== */

:root {
  --primary: #16a34a;
  --primary-dark: #0e7a3a;
  --primary-soft: #e6f6ec;
  --violet: #0e7a3a;
  --accent: #ff7a1a;
  --accent-dark: #e8620a;
  --ink: #132a1e;
  --ink-2: #3a4a40;
  --muted: #6d7f72;
  --bg: #f4f8f5;
  --line: #e2ece5;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(19, 42, 30, .08);
  --shadow-lg: 0 18px 50px rgba(19, 42, 30, .14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn-lg { padding: 14px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 122, 26, .35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 122, 26, .45); color: #fff; }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(22, 163, 74, .3);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; }
.btn-ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .2); color: #fff; }

/* ---------- 顶部通告条 ---------- */
.topbar {
  background: #0d2718;
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.tb-note { display: flex; align-items: center; gap: 8px; }
.tb-note .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, .25);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 6px rgba(255,122,26,.08); } }
.tb-contact { display: flex; gap: 18px; }
.tb-contact b { color: #fff; }

/* ---------- 头部导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { width: 40px; height: 40px; }
.logo-name { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: .5px; }
.logo-name i { font-style: normal; color: var(--primary); }

.main-nav { flex: 1; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav li { position: relative; }
.main-nav li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 15px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 10px;
}
.main-nav li > a:hover { color: var(--primary); background: var(--primary-soft); }
.main-nav li.active > a { color: var(--primary); background: var(--primary-soft); }
.nav-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .6;
}
.nav-contact > a { color: var(--primary); }

/* 下拉（两列面板，容纳 11 个产品分类） */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 480px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
}
.main-nav li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  transition: background .2s;
}
.dd-item:hover { background: var(--bg); }
.dd-badge {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dd-text { flex: 1; line-height: 1.3; }
.dd-text strong { display: block; font-size: 14px; color: var(--ink); }
.dd-text small { color: var(--muted); font-size: 12px; }
.dd-arrow { display: none; }

.header-cta { flex-shrink: 0; }

.nav-toggle { display: none; background: 0; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: all .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #0f2f1f;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 75%);
  z-index: 1;
}
/* 背景轮播（图源：后台轮播图片 gid=1），内容压在照片上 */
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-bg img.on { opacity: 1; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: rgba(10, 38, 24, .55); }
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
  padding: 88px 0 96px;
}
.hero-kicker {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.hero h1 { font-size: 44px; line-height: 1.28; font-weight: 800; letter-spacing: 1px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { margin-top: 18px; font-size: 16.5px; color: rgba(255, 255, 255, .82); max-width: 560px; }
.hero-points { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; max-width: 620px; }
.hero-points li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: rgba(255,255,255,.92); }
.hero-points svg { width: 18px; height: 18px; flex-shrink: 0; padding: 3px; border-radius: 50%; background: rgba(255,122,26,.9); stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Hero 右侧视觉：浮动卡片 */
.hero-visual { position: relative; height: 400px; }
.hv-card {
  position: absolute;
  background: rgba(255, 255, 255, .97);
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(6, 15, 44, .45);
  padding: 18px 20px;
  animation: floaty 5.5s ease-in-out infinite;
}
.hv-card h5 { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.hv-card b { font-size: 22px; }
.hv-card small { display: block; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.hv-1 { top: 4%; left: 6%; animation-delay: 0s; }
.hv-2 { top: 30%; right: 0; animation-delay: 1.2s; }
.hv-3 { bottom: 14%; left: 0; animation-delay: 2.2s; }
.hv-4 { bottom: 0; right: 12%; animation-delay: 3.1s; }
.hv-ico { display: flex; align-items: center; gap: 10px; }
.hv-ico i {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 20px;
}
.hv-badge {
  position: absolute;
  top: 12%; right: 22%;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(255, 122, 26, .5);
  animation: floaty 4.5s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-12px); } }

/* ---------- 数据带 ---------- */
.stats { background: #fff; border-bottom: 1px solid var(--line); }
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 0;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--line); }
.stat b { font-size: 32px; color: var(--ink); font-weight: 800; }
.stat b i { font-style: normal; color: var(--primary); font-size: 20px; margin-left: 2px; }
.stat span { display: block; color: var(--muted); font-size: 13.5px; margin-top: 2px; }

/* ---------- 通用区块 ---------- */
.section { padding: 78px 0; }
.section-white { background: var(--bg); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 42px;
}
.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-title { font-size: 32px; font-weight: 800; letter-spacing: 1px; }
.section-sub { color: var(--muted); margin-top: 8px; font-size: 15.5px; }
.section-more {
  flex-shrink: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--primary);
  padding: 9px 20px;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  transition: all .2s;
}
.section-more:hover { background: var(--primary); color: #fff; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 服务分类卡片 ---------- */
.cat-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.cat-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card b { display: block; font-size: 19px; margin-bottom: 6px; }
.cat-card span { display: block; color: var(--muted); font-size: 14px; min-height: 42px; }
.cat-card em {
  font-style: normal;
  display: inline-block;
  margin-top: 14px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}
.cat-num {
  position: absolute;
  right: 18px; top: 14px;
  font-size: 44px;
  font-weight: 800;
  color: var(--bg);
  line-height: 1;
}

/* ---------- 服务卡片 ---------- */
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 18px;
}
.svc-card h3 { font-size: 19px; margin-bottom: 10px; }
.svc-card h3 a:hover { color: var(--primary); }
.svc-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.svc-meta {
  display: flex;
  gap: 10px;
  margin: 16px 0 14px;
  flex-wrap: wrap;
}
.svc-meta span {
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-2);
}
.svc-meta span.svc-price { color: var(--accent); background: #fff3e9; }
.more-link { font-size: 14px; font-weight: 700; color: var(--primary); }
.more-link:hover { color: var(--primary-dark); }

/* ---------- 优势/流程 ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num {
  width: 46px; height: 46px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(22, 163, 74, .3);
}
.step-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--muted); }

.why-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; margin-top: 40px; }
.why-item { display: flex; gap: 14px; }
.why-ico {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.why-item h4 { font-size: 16.5px; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--muted); }

/* ---------- 案例卡片 ---------- */
.case-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-img {
  height: 190px;
  background: var(--primary-soft);
  position: relative;
  overflow: hidden;
}
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.case-card:hover .case-img img { transform: scale(1.05); }
.case-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255, 255, 255, .95);
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 999px;
}
.case-info { padding: 20px 22px 22px; }
.case-info h3 { font-size: 17px; margin-bottom: 14px; line-height: 1.5; }
.case-card:hover .case-info h3 { color: var(--primary); }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.case-metrics > div {
  background: var(--bg);
  border-radius: 10px;
  padding: 10px 12px;
  line-height: 1.4;
}
.case-metrics b { display: block; font-size: 14.5px; color: var(--accent); }
.case-metrics span { font-size: 12px; color: var(--muted); }

/* ---------- 新闻卡片 ---------- */
.news-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.nc-head {
  height: 6px;
  background: var(--primary);
}
.nc-body { padding: 22px 24px 24px; }
.nc-meta { display: flex; gap: 12px; font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.nc-meta .nc-cat { color: var(--primary); font-weight: 700; }
.news-card h3 { font-size: 17px; line-height: 1.55; margin-bottom: 8px; }
.news-card:hover h3 { color: var(--primary); }
.news-card p { font-size: 14px; color: var(--muted); }

/* ---------- 合作品牌 ---------- */
.brands { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.brand-pill {
  padding: 12px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  color: var(--ink-2);
  font-size: 15px;
  letter-spacing: 1px;
  transition: all .2s;
}
.brand-pill:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-3px); }

/* ---------- CTA ---------- */
.cta-band {
  background: #0f2f1f;
  color: #fff;
  border-radius: 20px;
  padding: 44px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-band h2 { font-size: 26px; margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, .75); font-size: 15px; }
.cta-right { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.cta-tel { font-size: 24px; font-weight: 800; letter-spacing: 1px; }

/* ---------- 内页横幅 ---------- */
.page-banner {
  background: #0f2f1f;
  color: #fff;
  padding: 56px 0;
}
.page-title { font-size: 32px; letter-spacing: 2px; }
/* 栏目大图（后台-栏目-栏目大图）：有图时压深色遮罩保证文字可读 */
/* 大图铺满裁切（bg-cover），小图按原比例靠右完整展示（bg-contain），由 JS 按图片实际宽度判定 */
.page-banner.has-bg { background-repeat: no-repeat; background-position: right center; position: relative; }
.page-banner.has-bg.bg-cover { background-size: cover; background-position: center; }
.page-banner.has-bg.bg-contain { background-size: contain; background-position: right center; }
.page-banner.has-bg::before { content: ""; position: absolute; inset: 0; background: rgba(10, 38, 24, .55); }
.page-banner.has-bg .container { position: relative; z-index: 1; }
.breadcrumb { margin-top: 10px; font-size: 14px; color: rgba(255, 255, 255, .65); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb em { font-style: normal; color: #fff; }

/* ---------- 关于我们 ---------- */
.about-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.about-intro h2 { font-size: 26px; margin-bottom: 18px; }
.about-intro p { color: var(--ink-2); margin-bottom: 14px; font-size: 15.5px; }
.about-numbers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.an-card {
  background: var(--primary-soft);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.an-card b { font-size: 30px; color: var(--primary); }
.an-card b i { font-style: normal; font-size: 18px; }
.an-card span { display: block; color: var(--ink-2); font-size: 14px; margin-top: 4px; }

.culture { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.culture-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.culture-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.culture-card i {
  font-style: normal;
  font-size: 30px;
  display: inline-flex;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--primary-soft);
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.culture-card h3 { font-size: 18px; margin-bottom: 8px; }
.culture-card p { font-size: 14px; color: var(--muted); }

.timeline { position: relative; max-width: 900px; margin: 0 auto; padding-left: 30px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--primary);
}
.tl-item { position: relative; padding: 0 0 30px 26px; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -29px; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3.5px solid var(--primary);
}
.tl-item b { color: var(--primary); font-size: 17px; margin-right: 12px; }
.tl-item h4 { display: inline; font-size: 16.5px; }
.tl-item p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

.honors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.honor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.honor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.honor-card i {
  font-style: normal;
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff7ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.honor-card div b { display: block; font-size: 15px; }
.honor-card div span { font-size: 12.5px; color: var(--muted); }

.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar {
  width: 74px; height: 74px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: var(--primary-soft);
}
.team-card h4 { font-size: 17px; }
.team-card span { display: block; color: var(--primary); font-size: 13px; font-weight: 700; margin: 4px 0 10px; }
.team-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- 列表页通用 ---------- */
.with-side { display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: start; }

.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-tabs a {
  padding: 9px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .2s;
}
.filter-tabs a:hover { color: var(--primary); border-color: var(--primary); }
.filter-tabs a.on { background: var(--primary); border-color: var(--primary); color: #fff; }

/* 侧栏 */
.side-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 22px;
}
.side-box h4 { font-size: 16.5px; padding-bottom: 12px; margin-bottom: 14px; border-bottom: 2px solid var(--ink); display: inline-block; }
.side-cats li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px;
  font-size: 14.5px;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}
.side-cats li:last-child a { border-bottom: 0; }
.side-cats li a:hover, .side-cats li a.on { color: var(--primary); font-weight: 700; }
.side-cats li a em { font-style: normal; color: var(--muted); font-size: 13px; }

.hot-list li { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.hot-list li:last-child { border-bottom: 0; }
.hot-list a { display: flex; gap: 12px; align-items: flex-start; }
.hot-list i {
  font-style: normal;
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--bg);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hot-list li:nth-child(-n+3) i { background: #fff3e9; color: var(--accent); }
.hot-list b { font-size: 14px; font-weight: 600; line-height: 1.5; display: block; }
.hot-list a:hover b { color: var(--primary); }
.hot-list time { font-size: 12px; color: var(--muted); }

.side-cta {
  background: #0f2f1f;
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.side-cta h4 { color: #fff; border: 0; margin-bottom: 8px; font-size: 18px; }
.side-cta p { font-size: 13.5px; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.side-cta .cta-tel { font-size: 21px; display: block; margin-bottom: 14px; }

/* ---------- 详情页 ---------- */
.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 42px;
}
.article-head { margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.article-head h1 { font-size: 26px; line-height: 1.45; margin-bottom: 12px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13.5px; color: var(--muted); }
.article-meta span b { color: var(--accent); }
.article-body { font-size: 15.5px; color: var(--ink-2); }
.article-body h2, .article-body h3 { color: var(--ink); margin: 26px 0 12px; font-size: 19px; }
.article-body p { margin-bottom: 14px; }
.article-body ul { margin: 0 0 14px 4px; }
.article-body ul li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.article-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--primary);
}
.article-body img { border-radius: 12px; margin: 10px 0; }

.detail-block { margin-top: 34px; }
.detail-block > h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
}
.flow-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; counter-reset: flow; }
.flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  counter-increment: flow;
}
.flow-step::before {
  content: counter(flow, decimal-leading-zero);
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.flow-step h5 { font-size: 15px; margin-bottom: 6px; }
.flow-step p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-size: 15.5px;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q"; color: var(--accent); font-weight: 800; }
.faq-item[open] summary { color: var(--primary); border-bottom: 1px dashed var(--line); }
.faq-item .faq-a { padding: 14px 20px 16px 42px; font-size: 14.5px; color: var(--muted); }

.meta-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.meta-table th, .meta-table td { padding: 13px 18px; font-size: 14.5px; text-align: left; }
.meta-table th { background: var(--bg); color: var(--ink-2); width: 130px; font-weight: 700; }
.meta-table tr + tr th, .meta-table tr + tr td { border-top: 1px solid var(--line); }
.meta-table td b { color: var(--accent); }

.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 26px; }
.post-nav a {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 14.5px;
  color: var(--ink-2);
  transition: all .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-nav a:hover { color: var(--primary); border-color: var(--primary); }
.post-nav a.pn-next { text-align: right; }

/* ---------- 服务方案（pricing） ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.plan-hot { border-color: var(--accent); box-shadow: 0 16px 44px rgba(255, 122, 26, .16); }
.plan-flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 999px;
  letter-spacing: 1px;
}
.plan-card h3 { font-size: 19px; margin-bottom: 6px; }
.plan-for { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price b { font-size: 38px; color: var(--primary); font-weight: 800; }
.plan-price b i { font-style: normal; font-size: 17px; margin-right: 2px; }
.plan-price span { color: var(--muted); font-size: 13.5px; }
.plan-note { font-size: 12.5px; color: var(--muted); margin-bottom: 18px; }
.plan-list { flex: 1; margin-bottom: 24px; }
.plan-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--ink-2);
}
.plan-list li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 800;
}
.plan-list li.na { color: #b6c0d8; }
.plan-list li.na::before { content: "—"; color: #cfd7e8; }

.compare { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.compare th, .compare td { padding: 14px 16px; font-size: 14.5px; text-align: center; border-bottom: 1px solid var(--line); }
.compare th { background: var(--bg); font-weight: 700; }
.compare td:first-child, .compare th:first-child { text-align: left; font-weight: 600; color: var(--ink-2); }
.compare tr:last-child td { border-bottom: 0; }
.compare td { color: var(--muted); }
.compare td.yes { color: var(--primary); font-weight: 800; }
.compare td.no { color: #cfd7e8; }

.industry { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ind-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .25s, box-shadow .25s;
}
.ind-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ind-card i {
  font-style: normal;
  font-size: 26px;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ind-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.ind-card p { font-size: 13.5px; color: var(--muted); }

/* ---------- 联系我们 ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: start; }
.contact-lead { color: var(--muted); font-size: 14.5px; margin: 10px 0 22px; }
.contact-list li {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.contact-list .cl-label { width: 90px; flex-shrink: 0; color: var(--muted); }
.contact-list .cl-value { color: var(--ink); font-weight: 600; }
.contact-list .cl-value a:hover { color: var(--primary); }

.contact-form-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 34px 36px;
}
.contact-form-box h2 { font-size: 22px; margin-bottom: 6px; }
.cf-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.msg-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.msg-form input, .msg-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  margin-bottom: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: var(--bg);
}
.msg-form input:focus, .msg-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .12);
}
.form-code { display: flex; gap: 14px; align-items: center; }
.form-code input { flex: 1; margin-bottom: 14px; }
.form-code img {
  height: 48px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.map-box {
  margin-top: 50px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, #e2ece5 39px, #e2ece5 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, #e2ece5 39px, #e2ece5 40px),
    #f2f8f4;
  height: 300px;
  position: relative;
}
.map-pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  text-align: center;
}
.map-pin i {
  font-style: normal;
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(255, 122, 26, .4);
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.map-pin i svg { width: 24px; height: 24px; transform: rotate(45deg); fill: #fff; }
.map-pin b { display: block; background: #fff; padding: 8px 18px; border-radius: 999px; box-shadow: var(--shadow); font-size: 14px; }

/* ---------- 搜索页 ---------- */
.search-bar { display: flex; gap: 12px; max-width: 640px; margin: 0 auto 40px; }
.search-bar input {
  flex: 1;
  border: 2px solid var(--primary);
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
}
.search-bar button { border-radius: 999px; }
.search-result-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: box-shadow .2s;
}
.search-result-list li:hover { box-shadow: var(--shadow); }
.srl-meta { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.srl-meta b { color: var(--primary); }
.search-result-list h3 { font-size: 17.5px; margin-bottom: 8px; }
.search-result-list h3 a:hover { color: var(--primary); }
.search-result-list p { font-size: 14px; color: var(--muted); }
.search-empty { text-align: center; color: var(--muted); padding: 60px 0; }

/* ---------- 分页（DOM 对齐 PbootCMS {$pagebar} 输出） ---------- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.pagination a {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14.5px;
  color: var(--ink-2);
  transition: all .2s;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination span { background: none; border: 0; padding: 0; }
.pagination .page-status { color: var(--muted); font-size: 14px; margin-right: 8px; }
.pagination .page-numbar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pagination .page-num { display: inline-flex; align-items: center; justify-content: center; }
.pagination span.page-num { color: var(--muted); padding: 0 4px; }
.pagination .page-num-current,
.pagination .page-num-current:hover { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 700; }
.pagination .page-none { color: var(--muted); }

/* ---------- 页脚 ---------- */
.site-footer {
  background: #0e2b1c;
  color: rgba(255, 255, 255, .72);
  margin-top: 0;
  padding: 64px 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { width: 36px; height: 36px; }
.footer-logo b { color: #fff; font-size: 20px; }
.footer-desc { line-height: 1.8; font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-quals { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-quals a { margin-right: 12px; color: rgba(255,255,255,.68); }
.footer-quals a:hover { color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: rgba(255, 255, 255, .62); font-size: 14px; }
.footer-nav a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { margin-bottom: 10px; font-size: 13.5px; color: rgba(255, 255, 255, .62); line-height: 1.6; }
.friend-links {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
}
.friend-links a { margin-right: 18px; color: rgba(255, 255, 255, .65); }
.friend-links a:hover { color: #fff; }
.copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  text-align: center;
}
.copyright a { color: rgba(255, 255, 255, .5); margin: 0 6px; }
.copyright a:hover { color: #fff; }

/* ---------- 浮动按钮 ---------- */
.float-call {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-call a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
}
.fc-tel { background: var(--accent); }
.fc-tel svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fc-top { background: #fff; color: var(--ink-2); border: 1px solid var(--line); }
.fc-top:hover { color: var(--primary); border-color: var(--primary); }

/* ---------- 响应式 ---------- */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; padding: 60px 0 70px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 34px; }
  .grid-4, .steps, .flow-steps, .honors, .team, .industry { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .with-side { grid-template-columns: 1fr; }
  .about-intro, .contact-grid { grid-template-columns: 1fr; }
  .culture { grid-template-columns: 1fr; }
  .why-band { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tb-contact span:last-child { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 54px 0; }
  .section-title { font-size: 25px; }
  .topbar .tb-note span:last-child { font-size: 12px; }
  .tb-contact { display: none; }

  .header-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 80px 24px 40px;
    transition: right .3s;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(19, 42, 30, .2);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav li > a { padding: 13px 10px; font-size: 16px; border-bottom: 1px solid var(--bg); border-radius: 0; }
  .dropdown {
    position: static;
    transform: none;
    width: auto;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    padding: 0 0 6px 12px;
    display: none;
    grid-template-columns: 1fr;
  }
  .main-nav li:hover .dropdown { display: block; }
  .dd-text small, .dd-arrow { display: none; }

  .stats .container { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(even)::before { display: block; left: -2px; }
  .stat b { font-size: 26px; }
  .grid-2, .grid-3, .grid-4, .steps, .honors, .team, .industry, .culture, .why-band { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .hero-points { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .article { padding: 26px 20px; }
  .msg-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .post-nav { flex-direction: column; }
  .compare { font-size: 13px; }
  .compare th, .compare td { padding: 10px 8px; }
  .float-call { right: 14px; bottom: 70px; }
}
