@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@500;600;700&family=Noto+Sans+SC:wght@400;500;700&display=swap');

/* ===== 蓝金律师：深蓝底 + 金线点缀的个人名片站 ===== */
:root {
  --navy-950: #0b1d30;
  --navy-900: #0f2740;
  --navy-800: #15304f;
  --navy-700: #1a3a5c;
  --navy-600: #244f7a;
  --navy-500: #2c5f8a;
  --navy-100: #d7e4f0;
  --navy-50: #edf3f9;

  --gold-700: #9a7a1f;
  --gold-600: #b8912f;
  --gold-500: #c8a24a;
  --gold-400: #d6b362;
  --gold-100: #f3e9d0;
  --gold-50: #faf5e8;

  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #1f2d3d;
  --muted: #5c6b7a;
  --border: #e2e8f0;
  --shadow: 0 8px 30px rgba(15, 39, 64, 0.08);
  --radius-lg: 14px;
  --radius-md: 8px;
  --radius-full: 999px;
  --header-h: 72px;
  --bar-h: 84px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Noto Sans SC", -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--bar-h);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; cursor: pointer; }
a:hover { opacity: 0.88; }

h1, h2, h3, h4 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  color: var(--navy-900);
  line-height: 1.35;
  font-weight: 600;
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  box-shadow: 0 8px 20px rgba(184, 145, 47, 0.28);
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(184, 145, 47, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--navy-100);
}
.btn-ghost:hover { background: var(--navy-50); }
.btn-navy { background: var(--navy-700); color: #fff; }
.btn-navy:hover { background: var(--navy-600); }

/* ===== 顶栏 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.brand { display: flex; flex-direction: column; line-height: 1.25; }
.brand-primary { font-family: "Noto Serif SC", serif; font-size: 19px; font-weight: 700; color: var(--navy-800); }
.brand-secondary { font-size: 12px; color: var(--muted); margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-link {
  padding: 8px 14px;
  font-size: 15px;
  color: var(--text);
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--navy-600); background: var(--navy-50); opacity: 1; }
.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  font-weight: 500;
  margin-left: 6px;
  box-shadow: 0 4px 12px rgba(184, 145, 47, 0.28);
}
.nav-link.nav-cta:hover { box-shadow: 0 6px 16px rgba(184, 145, 47, 0.4); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--navy-700);
  white-space: nowrap;
  font-size: 15px;
}
.header-phone i { color: var(--gold-500); font-size: 18px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--navy-800);
  font-size: 22px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 16px;
}
.mobile-nav a {
  display: block;
  padding: 10px 4px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a.nav-cta {
  margin-top: 8px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  border-radius: var(--radius-md);
  border: 0;
  padding: 12px;
}
body.nav-open .mobile-nav { display: block; }

/* ===== 首页律师 Hero ===== */
.lawyer-hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lawyer-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.22), transparent 70%);
  pointer-events: none;
}
.lawyer-hero::after {
  content: "";
  position: absolute;
  bottom: -140px; left: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 24px;
}
.hero-photo {
  width: 420px; height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid rgba(200, 162, 74, 0.5);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-family: "Noto Serif SC", serif;
  font-size: 36px;
  line-height: 1.3;
  color: var(--gold-400);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-text h1 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.hero-city {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold-400);
  margin-bottom: 12px;
  text-transform: none;
}
.hero-meta {
  font-size: 16px;
  color: var(--gold-400);
  margin-bottom: 8px;
  font-weight: 500;
}
.hero-firm { font-size: 15px; color: rgba(255, 255, 255, 0.82); margin-bottom: 20px; }
.hero-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 640px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.hero-phone i { color: var(--gold-400); }
.lawyer-hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.lawyer-hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.hero-about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-400);
  font-size: 15px;
  border-bottom: 1px dashed var(--gold-400);
  padding-bottom: 2px;
}

/* ===== 栏目头图（无图时走深蓝金线渐变） ===== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-600));
  color: #fff;
  padding: 64px 0;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 74, 0.22), transparent 70%);
  pointer-events: none;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 48, 0.55), rgba(11, 29, 48, 0.72));
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { color: #fff; font-size: 38px; }
.page-hero-desc {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
}

/* ===== 区块 ===== */
.section { padding: 64px 0; }
.section-alt { background: var(--surface); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.section-title {
  font-size: 28px;
  position: relative;
  padding-left: 18px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-600));
}
.section-more { color: var(--navy-600); font-size: 14px; white-space: nowrap; }

/* ===== 卡片网格 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.practice-card, .case-card, .news-card, .banner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.practice-card:hover, .case-card:hover, .news-card:hover, .banner-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-400);
  opacity: 1;
}
.practice-card h3, .case-card h3, .news-card h3, .banner-card h2 { font-size: 18px; margin-bottom: 10px; }
.practice-card p, .case-card p, .news-card p { font-size: 14px; color: var(--muted); flex: 1; }
.practice-card .card-more, .case-card .card-more, .news-card .card-more {
  margin-top: 16px;
  color: var(--gold-600);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.case-result {
  color: var(--gold-700) !important;
  font-weight: 500;
}
.news-date { font-size: 12px; color: var(--muted); margin-top: 12px; }
.banner-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}
.banner-card .btn { align-self: flex-start; margin-top: auto; }

/* ===== 步骤 ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-item h3 { font-size: 18px; margin-bottom: 10px; }
.step-item p { font-size: 14px; color: var(--muted); }

/* ===== 表单 ===== */
.form-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-panel h3 { font-size: 22px; margin-bottom: 8px; }
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--text);
}
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.15);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-check { display: flex; align-items: flex-start; gap: 8px; }
.form-check input { margin-top: 3px; }
.form-check label { font-size: 13px; color: var(--muted); margin: 0; }
.form-check a { color: var(--navy-600); text-decoration: underline; }
.form-disclaimer { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.6; }
.form-btn { width: 100%; font-size: 16px; padding: 14px; }

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* ===== 信任条 ===== */
.trust-bar {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 34px 0;
}
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item i { font-size: 26px; color: var(--gold-400); margin-top: 2px; }
.trust-item strong { display: block; font-size: 15px; margin-bottom: 3px; }
.trust-item span { font-size: 13px; color: rgba(255, 255, 255, 0.72); }

/* ===== 页脚 ===== */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 0.9fr; gap: 40px; }
.footer-title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 18px;
  font-family: "Noto Sans SC", sans-serif;
}
.footer-nap p { font-size: 14px; margin-bottom: 8px; line-height: 1.7; }
.footer-nap a { color: var(--gold-400); }
.footer-name { font-size: 17px; color: #fff; font-weight: 600; }
.footer-practices { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-practices a {
  font-size: 13px;
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s, color 0.2s;
}
.footer-practices a:hover { border-color: var(--gold-400); color: var(--gold-400); opacity: 1; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; }
.footer-links a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 40px;
  padding: 22px 24px;
  text-align: center;
}
.footer-disclaimer { font-size: 12px; color: rgba(255, 255, 255, 0.55); line-height: 1.7; }
.footer-beian { font-size: 12px; color: rgba(255, 255, 255, 0.45); margin-top: 6px; }
.footer-beian a { color: rgba(255, 255, 255, 0.45); }

/* ===== PC 转化条 ===== */
.pc-convert {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(15, 39, 64, 0.08);
  display: none;
}
.pc-convert-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.pc-convert-text strong { display: block; font-size: 16px; color: var(--navy-800); }
.pc-convert-text span { font-size: 13px; color: var(--muted); }
.pc-convert-actions { display: flex; align-items: center; gap: 16px; }
.pc-convert-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-700);
  white-space: nowrap;
}
.pc-convert-phone i { color: var(--gold-500); font-size: 20px; }

/* ===== 手机底栏 ===== */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border);
  display: none;
  grid-template-columns: repeat(4, 1fr);
}
.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  font-size: 12px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.mobile-bar-item i { font-size: 20px; color: var(--navy-600); }
.mobile-bar-item.mobile-cta { color: var(--gold-700); }
.mobile-bar-item.mobile-cta i { color: var(--gold-500); }

/* ===== 微信弹窗 ===== */
#wechat-modal,
.wechat-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 29, 48, 0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#wechat-modal.is-open,
.wechat-modal.is-open { display: flex; }
.wechat-modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  max-width: 340px;
  width: 100%;
  box-shadow: var(--shadow);
}
.wechat-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border: none;
  background: var(--bg);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
}
.wechat-modal-box h3 { font-size: 19px; margin-bottom: 16px; }
.wechat-qr { width: 220px; height: 220px; margin: 0 auto 16px; border-radius: var(--radius-md); object-fit: cover; }
.wechat-id { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; flex-wrap: wrap; }
.wechat-id .btn-copy {
  padding: 5px 12px;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  color: var(--navy-700);
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* ===== 正文富文本 ===== */
.prose { font-size: 15.5px; line-height: 1.85; color: var(--text); }
.prose h2 { font-size: 24px; margin: 30px 0 14px; }
.prose h3 { font-size: 19px; margin: 24px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 6px; }
.prose img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 16px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.prose table th, .prose table td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.prose table th { background: var(--navy-50); font-weight: 600; }
.prose blockquote { border-left: 4px solid var(--gold-500); padding-left: 16px; color: var(--muted); margin: 16px 0; }
.prose a { color: var(--navy-600); text-decoration: underline; }

/* ===== 面包屑 ===== */
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--navy-600); }
.crumb-sep { color: var(--border); }

/* ===== 文章布局 ===== */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 40px 24px 64px; }
.article-main { min-width: 0; }
.article-title { font-size: 30px; margin-bottom: 16px; }
.article-meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.article-meta span { margin-right: 16px; }
.article-practice {
  display: inline-block;
  font-size: 13px;
  padding: 4px 12px;
  background: var(--gold-50);
  color: var(--gold-700);
  border: 1px solid var(--gold-100);
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}
.article-lead { font-size: 16px; color: var(--muted); border-left: 3px solid var(--gold-500); padding-left: 14px; margin-bottom: 24px; }
.article-side { position: sticky; top: 88px; align-self: start; }

/* ===== 作者卡 ===== */
.author-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 32px;
  box-shadow: var(--shadow);
}
.author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-name { font-size: 16px; font-weight: 600; color: var(--navy-800); }
.author-title { font-size: 13px; color: var(--gold-700); margin-left: 6px; }
.author-lead { font-size: 13px; color: var(--muted); margin-top: 4px; }
.author-firm { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 26px; }
.faq-item h3 { font-size: 17px; margin-bottom: 10px; color: var(--navy-800); }
.faq-item p { font-size: 14px; color: var(--muted); }

/* ===== 相关推荐 ===== */
.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 15px;
  transition: border-color 0.2s;
}
.related-item:hover { border-color: var(--gold-400); opacity: 1; }
.related-item i { color: var(--gold-500); }
.related-lawyer {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.related-lawyer img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.related-lawyer-name { font-size: 16px; font-weight: 600; color: var(--navy-800); }
.related-lawyer-lead { font-size: 13px; color: var(--muted); margin-top: 4px; }
.related-block { margin-bottom: 28px; }
.related-block h3 { font-size: 19px; margin-bottom: 16px; }

/* ===== 致谢页 ===== */
.thanks { padding: 80px 0; }
.thanks-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.thanks-icon { font-size: 60px; color: var(--gold-500); margin-bottom: 18px; }
.thanks-inner h1 { font-size: 32px; margin-bottom: 16px; }
.thanks-main { font-size: 17px; margin-bottom: 28px; }
.thanks-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.thanks-wechat { margin-bottom: 28px; }
.thanks-wechat img { width: 200px; height: 200px; margin: 0 auto 16px; border-radius: var(--radius-md); }
.thanks-hours { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; text-align: left; }
.thanks-hours h2 { font-size: 18px; margin-bottom: 8px; }
.thanks-hours p { font-size: 14px; color: var(--muted); }
.thanks-disclaimer { font-size: 12px; color: var(--muted); }
.off-hours-tip-inner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--gold-50);
  border: 1px solid var(--gold-100);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--gold-700);
  text-align: left;
}
.off-hours-tip-inner i { font-size: 18px; margin-top: 1px; }

/* ===== 404 ===== */
.error-page { padding: 100px 0; text-align: center; }
.error-inner { max-width: 640px; margin: 0 auto; }
.error-code { font-size: 80px; font-weight: 700; color: var(--navy-100); line-height: 1; margin-bottom: 8px; }
.error-inner h1 { font-size: 28px; margin-bottom: 16px; }
.error-desc { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.error-practice-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.error-practice-links a {
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--surface);
}

/* ===== 通用布局 ===== */
.about-layout, .contact-layout, .page-layout, .consult-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 40px 24px 64px;
}
.about-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold-700);
  background: var(--gold-50);
  border: 1px solid var(--gold-100);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: 20px;
}
.contact-item { display: flex; gap: 14px; margin-bottom: 18px; }
.contact-item i { font-size: 22px; color: var(--gold-500); margin-top: 3px; }
.contact-item strong { display: block; font-size: 15px; color: var(--navy-800); margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 14px; color: var(--muted); }
.contact-item a { color: var(--navy-600); }
.consult-intro { font-size: 15px; color: var(--muted); margin-bottom: 22px; }
.consult-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 26px;
}
.consult-phone i { color: var(--gold-500); }
.privacy-layout { padding: 40px 24px 64px; max-width: 860px; margin: 0 auto; }

/* ===== 响应式 ===== */
@media (min-width: 1025px) {
  .pc-convert { display: block; }
  .mobile-bar { display: none; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .hero-photo { width: 100%; max-width: 420px; height: 420px; margin: 0 auto; }
  .hero-text h1 { font-size: 32px; }
  .card-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout, .about-layout, .contact-layout, .page-layout, .consult-layout { grid-template-columns: 1fr; }
  .article-side { position: static; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  :root { --header-h: 62px; }
  .mobile-bar { display: grid; }
  .pc-convert { display: none; }
  .header-inner { height: 62px; }
  .header-phone span { display: none; }
  .hero-text h1 { font-size: 27px; }
  .hero-photo { height: 340px; }
  .page-hero { padding: 44px 0; }
  .page-hero-content h1 { font-size: 27px; }
  .section { padding: 44px 0; }
  .section-title { font-size: 23px; }
  .card-grid, .steps-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-panel { padding: 24px; }
  .about-layout, .contact-layout, .page-layout, .consult-layout { padding: 28px 20px 48px; }
  .article-layout { padding: 28px 20px 48px; }
  .article-title { font-size: 24px; }
}
