/* ============================================================
   modern.css v3.0 — 北京市国韬律师事务所 全新视觉体系
   设计语言：专业 · 信赖 · 通透 · 精致
   依赖：Bootstrap 5.3 + Bootstrap Icons 1.11
   色调：主红 #3385cc / 深色背景 #1A1A1A / 页面底 #FAFAFA
   ============================================================ */

/* ── 1. 设计变量 ─────────────────────────────────────────── */
:root {
  /* ★ 主色 */
  --primary:           #3385cc;
  --primary-dark:      #1060ac;
  --primary-deeper:    #2f81c8;
  --primary-light:     #daebfa;
  --primary-border:    #86c2f8;

  /* ☆ 强调色 */
  --accent-gold:       #C8A45C;
  --accent-gold-light: #F5EDD6;

  /* ◇ 中性色 */
  --bg-page:           #FAFAFA;
  --bg-card:           #FFFFFF;
  --bg-dark:           #1A1A1A;

  --bg-muted:          #F0F0F0;
  --bg-footer:         #1E1E1E;

  /* □ 文字色 */
  --text-primary:      #1A1A1A;
  --text-body:         #333333;
  --text-secondary:    #555555;
  --text-muted:        #888888;
  --text-light:        #AAAAAA;
  --text-white:        #FFFFFF;

  /* ▦ 边框 */
  --border:            #E8E8E8;
  --border-light:      #F0F0F0;

  /* ◆ 圆角体系 */
  --radius-sm:         6px;
  --radius-md:         10px;
  --radius-lg:         14px;
  --radius-xl:         18px;
  --radius-full:       9999px;

  /* ▤ 阴影体系 */
  --shadow-xs:    0 1px 3px rgba(0,0,0,0.05);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg:    0 8px 30px rgba(0,0,0,0.09);
  --shadow-xl:    0 12px 40px rgba(0,0,0,0.12);
  --shadow-red:   0 6px 24px rgb(48 130 201 / 20%);

  /* ▤ 过渡 */
  --ease:            all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:     all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-fast:       all 0.15s ease;

  /* ★ 向后兼容别名（旧模板内联引用不断） */
  --primary-red:        var(--primary);
  --primary-red-hover:  var(--primary-dark);
  --primary-red-light:  var(--primary-light);
  --primary-red-border: var(--primary-border);

  /* ▣ 尺寸 */
  --header-top-h:    80px;
  --header-nav-h:    52px;
  --header-total:    calc(var(--header-top-h) + var(--header-nav-h));
}

/* ── 2. 全局基础 ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  background-color: var(--bg-page);
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-body);
  padding-top: var(--header-total);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 991px) {
  body { padding-top: 60px; }
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--ease);
}
a:hover { color: var(--primary-dark); }

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

/* ============================================================
   3. 头部
   ============================================================ */

/* -- 3a. 顶部信息栏 -- */
.header-top {
  background: var(--bg-card);
  height: var(--header-top-h);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 1px 0 var(--border);
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 52px;
  width: auto;
  transition: var(--ease-spring);
}
.logo-img:hover {
  transform: scale(1.02);
}

.hotline-wrapper {
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  transition: var(--ease);
}
.hotline-wrapper:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.hotline-wrapper:hover .hotline-label,
.hotline-wrapper:hover .hotline-number {
  color: #fff;
}
.hotline-wrapper:hover .hotline-number::before {
  background: rgba(255,255,255,0.3);
}

.hotline-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: var(--ease);
}

.hotline-number {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--ease);
}
.hotline-number:hover {
  color: var(--primary-dark);
}

/* 向后兼容 */
.header-top .hotline-text {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--ease);
}
.header-top .hotline-text:hover {
  color: var(--primary-dark);
}

/* -- 3b. 导航条 -- */
.header-nav {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: fixed;
  top: var(--header-top-h);
  width: 100%;
  z-index: 1020;
  box-shadow: 0 3px 16px rgb(48 130 201 / 25%);
  min-height: var(--header-nav-h);
}

/* 导航列表 */
.navbar-dark .navbar-nav {
  position: relative;
}
.navbar-dark .navbar-nav .nav-item {
  position: relative;
  z-index: 1;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.90);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 15px 18px;
  position: relative;
  transition: color 0.25s ease;
  z-index: 1;
  letter-spacing: 0.5px;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
}
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
  font-weight: 700;
}

/* 导航滑动跟随条 */
.nav-slide-bar {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: rgba(255,255,255,0.85);
  border-radius: 3px 3px 0 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

/* 移动端导航 */
@media (max-width: 991px) {
  .header-top { display: none !important; }
  .header-nav { top: 0; min-height: 60px; }
  .nav-slide-bar { display: none !important; }
  .navbar-collapse {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 8px 15px 12px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255,255,255,0.10);
    z-index: 1040;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding: 10px 14px;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
  }
  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link.active {
    background: rgba(255,255,255,0.08);
    border-left-color: #ffffff;
    border-radius: 0 4px 4px 0;
  }
  .navbar-dark .navbar-nav .nav-link::before { display: none; }
}

/* ============================================================
   4. 通用卡片
   ============================================================ */
.modern-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 24px;
  overflow: hidden;
  padding: 24px;
  transition: var(--ease);
}
.modern-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.modern-card .card-body { padding: 12px 0 0; }
.modern-card .card-header {
  padding: 0 0 16px;
  background: transparent;
  border-bottom: none;
}

/* ── 5. 标题装饰 ─────────────────────────────────────────── */
.title-decorator {
  border-left: 4px solid var(--primary);
  padding-left: 12px;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.02rem;
  line-height: 1.4;
}

/* ── 6. 按钮 ─────────────────────────────────────────────── */
.btn-primary-red {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border: none;
  transition: var(--ease);
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgb(48 130 201 / 25%);
  position: relative;
  overflow: hidden;
}
.btn-primary-red::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.btn-primary-red:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2f81c8 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-primary-red:active {
  transform: translateY(0);
}

/* ── 7. 律师卡片 ─────────────────────────────────────────── */
.chief-lawyer-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.chief-lawyer-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deeper) 100%);
  color: var(--text-white);
  text-align: center;
  padding: 18px 20px 14px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}
.chief-lawyer-header i {
  font-size: 1.1rem;
}
.chief-lawyer-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid var(--primary-deeper);
}

.chief-lawyer-card .card-body {
  padding: 28px 22px 22px;
}

/* 律师头像 */
.lawyer-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-card);
  box-shadow: 0 4px 20px rgb(48 130 201 / 25%);
  margin: -8px auto 16px;
  display: block;
  background: var(--bg-muted);
  transition: var(--ease-spring);
}
.chief-lawyer-card:hover .lawyer-avatar {
  box-shadow: 0 6px 28px rgb(48 130 201 / 35%);
  transform: scale(1.02);
}

/* 律师标签 */
.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.lawyer-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  transition: var(--ease-fast);
}
.lawyer-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* 律师简介 */
.lawyer-brief {
  margin: 14px 0 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* 律师战绩卡片 */
.lawyer-stats {
  display: flex;
  justify-content: space-around;
  background: linear-gradient(135deg, var(--primary-light), #daebfa);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  margin: 16px 0;
  border: 1px solid var(--primary-border);
}
.lawyer-stat-item {
  text-align: center;
  flex: 1;
}
.lawyer-stat-item + .lawyer-stat-item {
  border-left: 1px solid var(--primary-border);
}
.lawyer-stat-num {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.lawyer-stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* 律师信息列表 */
.lawyer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.lawyer-info-list li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.55;
}
.lawyer-info-list li:last-child { border-bottom: none; }

/* 长文本项：块级显示，不受宽度限制 */
.lawyer-info-list li.info-block-item {
  display: block;
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
  line-height: 1.7;
}
.lawyer-info-list li.info-block-item .info-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  min-width: auto;
  white-space: normal;
}
.lawyer-info-list li.info-block-item span:last-child {
  color: var(--text-secondary);
  font-size: 0.82rem;
  display: block;
}
.lawyer-info-list .info-label {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 68px;
}
.lawyer-info-list .info-phone {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

/* 律师CTA区域 */
.lawyer-cta-group {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.lawyer-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-border);
  background: var(--bg-card);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--ease);
}
.lawyer-phone-link:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* 律师弹窗（电话浮层） */
.lawyer-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
}
.lawyer-modal-box {
  background: #fff;
  border-radius: 10px;
  padding: 36px 40px;
  min-width: 300px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  position: relative;
}
.lawyer-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.lawyer-modal-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 8px;
}
.lawyer-modal-org {
  font-size: 13px;
  color: #999;
  margin-bottom: 18px;
}
.lawyer-modal-phone-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #daebfa;
  border-radius: 8px;
  padding: 16px 24px;
}
.lawyer-modal-phone-icon {
  color: #c0392b;
  font-size: 22px;
}
.lawyer-modal-phone-num {
  font-size: 26px;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: 2px;
}
.lawyer-modal-hours {
  font-size: 12px;
  color: #aaa;
  margin-top: 14px;
}

/* ── 8. 律师移动端底栏 ────────────────────────────────────── */
.lawyer-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  border-top: 1px solid rgba(198,40,40,0.10);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
}

.lawyer-mobile-bar__inner {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
}

.lawyer-mobile-bar__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(198,40,40,0.10);
}

.lawyer-mobile-bar__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
}

.lawyer-mobile-bar__meta {
  margin: 4px 0 0;
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.lawyer-mobile-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(198,40,40,0.18);
  transition: var(--ease);
}
.lawyer-mobile-bar:hover .lawyer-mobile-bar__btn {
  color: #fff;
  box-shadow: 0 10px 24px rgba(198,40,40,0.25);
  transform: translateY(-1px);
}

body.has-mobile-lawyer-bar { padding-bottom: 0; }

/* ── 9. 固定侧边栏 ────────────────────────────────────────── */
.lawyer-sticky-wrapper {
  position: sticky;
  top: calc(var(--header-total) + 16px);
}

/* 平板中屏保持悬浮，缩小顶部偏移避免遮挡 */
@media (max-width: 991px) and (min-width: 768px) {
  .lawyer-sticky-wrapper {
    position: sticky !important;
    top: 180px;
  }
  .lawyer-mobile-hide {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .lawyer-sticky-wrapper { position: static !important; }
}

/* ── 10. 列表样式 ────────────────────────────────────────── */
.list-group-flush > .list-group-item {
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  transition: var(--ease-fast);
  background: transparent;
  border-left: none;
  border-right: none;
  border-top: none;
}
.list-group-flush > .list-group-item:last-child { border-bottom: none; }
.list-group-flush > .list-group-item:hover {
  padding-left: 8px;
  background: transparent;
}
.list-group-flush > .list-group-item a {
  transition: var(--ease-fast);
}
.list-group-flush > .list-group-item:hover a {
  color: var(--primary) !important;
}

/* ── 11. 罪名知识网格 ────────────────────────────────────── */
.crime-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 575px) {
  .crime-list { grid-template-columns: repeat(2, 1fr); }
}

.crime-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-body);
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  transition: background 0.2s, color 0.2s;
  min-height: 44px;
  gap: 8px;
}
/* 每行最后一列去掉右边框 */
.crime-item:nth-child(3n) { border-right: none; }
@media (max-width: 575px) {
  .crime-item:nth-child(3n) { border-right: 1px solid var(--border-light); }
  .crime-item:nth-child(2n) { border-right: none; }
}
/* 最后一行去掉底边框 */
.crime-item:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 575px) {
  .crime-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border-light); }
  .crime-item:nth-last-child(-n+2) { border-bottom: none; }
}

.crime-item:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.crime-item:hover .crime-arrow {
  color: var(--primary);
  opacity: 1;
}

.crime-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 4px;
  font-weight: 500;
}

.crime-arrow {
  font-size: 0.7rem;
  color: #ccc;
  opacity: 0.5;
  flex-shrink: 0;
  transition: color 0.2s, opacity 0.2s;
}

/* ── 14. 罪名卡片（新版） ──────────────────────────── */
.charge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 991px) {
  .charge-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
  .charge-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.charge-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-body);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.charge-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.charge-card:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.charge-card:hover::before {
  opacity: 1;
}

.charge-card-icon {
  width: 34px;
  height: 34px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}
.charge-card:hover .charge-card-icon {
  background: var(--primary);
  color: #fff;
}

.charge-card-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s;
}
.charge-card:hover .charge-card-name {
  color: var(--primary);
}

/* ── 12. 面包屑 ──────────────────────────────────────────── */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 8px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.article-breadcrumb a { color: var(--text-muted); }
.article-breadcrumb a:hover { color: var(--primary); }
.article-breadcrumb .bi {
  font-size: 0.8rem;
  margin: 0 4px;
}

/* ── 13. FAQ 模块 ────────────────────────────────────────── */
.article-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--ease);
  margin-bottom: 12px;
  background: var(--bg-card);
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item:hover {
  border-color: var(--primary-border);
  box-shadow: var(--shadow-xs);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  margin: 0 !important;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  cursor: pointer;
  background: var(--bg-card);
  transition: background 0.2s;
  position: relative;
}
.faq-q i:first-child {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.faq-q::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-a {
  display: none;
  padding: 0 18px 14px 44px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.85;
  border-top: 1px dashed var(--border-light);
  margin-top: 0;
}
.faq-a div { margin: 0; }
.faq-a p:last-child { margin-bottom: 0; }

/* 点击展开（通过JS或open属性） */
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(180deg); }
.faq-item.open .faq-q { border-bottom: 1px dashed var(--border-light); }

/* ── 14. Hero Banner 区 ──────────────────────────────────── */
.hero-banner-section {
  margin-top: 0;
  padding-top: 0;
}

.hero-carousel {
  border-radius: 0;
  overflow: hidden;
}
.hero-carousel .carousel-inner {
  border-radius: 0;
}

/* 轮播文字叠加层 */
.hero-caption {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 520px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: heroFadeIn 0.8s ease both;
}
@media (max-width: 768px) {
  .hero-caption {
    left: 5%;
    right: 5%;
    max-width: none;
    text-align: center;
    top: 40%;
  }
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-shadow: none;
}

.hero-title {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .hero-title { font-size: 1.3rem; }
  .hero-badge { font-size: 0.7rem; padding: 3px 10px; }
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .hero-desc { font-size: 0.82rem; }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(198,40,40,0.35);
  transition: var(--ease-spring);
}
.hero-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198,40,40,0.45);
}
@media (max-width: 768px) {
  .hero-btn { font-size: 0.82rem; padding: 10px 20px; }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(-50%); }
}

/* ── 15. 数据看板 ────────────────────────────────────── */
.stats-section {
  padding: 28px 0 8px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 576px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: var(--ease);
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.stat-card:hover::before { opacity: 1; }

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.stat-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .stat-number { font-size: 1.6rem; }
  .stat-card { padding: 18px 12px; }
}

/* ── 16. 内容区块容器 ──────────────────────────────────── */
.content-section {
  padding: 28px 0;
}
.content-section.pt-0 { padding-top: 0; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title i {
  color: var(--primary);
  font-size: 1.1rem;
}

.more-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--ease-fast);
}
.more-link:hover {
  color: var(--primary);
  gap: 8px;
}

/* ── 17. 案例列表项(新) ──────────────────────────────── */
.case-card-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: 2px 0;
}

/* ── 编号左侧 ── */
.case-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  flex-shrink: 0;
  margin-right: 4px;
  padding-top: 2px;
}
.case-card-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #daebfa 0%, #86c2f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  transition: var(--ease-spring);
  box-shadow: 0 2px 6px rgba(198,40,40,0.06);
}
.case-card-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(46,128,200,0.15) 0%, rgba(198,40,40,0.04) 100%);
  margin: 6px 0 0;
  min-height: 20px;
}
.case-card-item:last-child .case-card-line {
  background: transparent;
}

/* ── 卡片主体 ── */
.case-card-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--ease);
  cursor: default;
}
.case-card-item:first-child { padding-top: 4px; }
.case-card-item:last-child { border-bottom: none; }
.case-card-item:hover {
  background: #FAFBFC;
  border-radius: var(--radius-sm);
  padding-left: 8px;
}
.case-card-item:hover .case-card-num {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgb(48 130 201 / 55%);
}

.case-card-body {
  flex: 1;
  min-width: 0;
}

.case-card-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.5;
  text-decoration: none;
  transition: var(--ease-fast);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-card-title:hover { color: var(--primary); }

.case-card-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.case-card-meta .meta-dot {
  color: var(--border);
  margin: 0 8px;
  font-size: 0.75rem;
}

.case-card-tag {
  display: inline-flex;
  align-items: center;
  background: #daebfa;
  color: var(--primary-deeper);
  border: 1px solid rgb(48 130 201 / 52%);
  border-radius: 4px;
  padding: 1px 9px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.case-card-date {
  font-size: 0.72rem;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.case-card-date i { font-size: 0.65rem; }

.case-card-hits {
  font-size: 0.72rem;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.case-card-hits i { font-size: 0.65rem; }

/* 左栏博文卡片自动撑高对齐 */
/* 左栏博客微型卡片 */
.blog-mini-card {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--ease-fast);
}
.blog-mini-card:first-child { padding-top: 2px; }
.blog-mini-card:last-child { border-bottom: none; }
.blog-mini-card:hover {
  padding-left: 8px;
  padding-right: 4px;
  background: #FAFBFC;
  border-radius: var(--radius-sm);
}

.blog-mini-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: 3px;
  padding: 1px 8px;
  font-size: 0.68rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.blog-mini-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 6px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--ease-fast);
}
.blog-mini-title:hover { color: var(--primary); }

.blog-mini-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-mini-meta {
  display: flex;
  gap: 14px;
  font-size: 0.72rem;
  color: var(--text-light);
}
.blog-mini-meta i { margin-right: 3px; }

/* ── 18. 快速入口(侧边栏) ──────────────────────────────── */
.quick-entry-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  text-decoration: none;
  transition: var(--ease-fast);
  border-bottom: 1px solid var(--border-light);
}
.quick-entry-item:last-child { border-bottom: none; }
.quick-entry-item i:first-child {
  color: var(--primary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.quick-entry-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 16px;
}
.quick-entry-item:hover i:last-child {
  color: var(--primary);
}

/* ── 19. 律师博文卡片(新) ────────────────────────────── */
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  height: 100%;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-border);
}
.blog-card-body {
  padding: 22px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  transition: var(--ease-fast);
}
.blog-card-title:hover { color: var(--primary); }
.blog-card-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: 3px;
  padding: 1px 8px;
  font-size: 0.68rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.blog-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.blog-card-footer {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.blog-card-footer i { margin-right: 3px; }

/* ── 20. 业务领域卡片(新) ────────────────────────────── */
.biz-card {
  display: block;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 16px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text-body);
  border: 1px solid var(--border-light);
  transition: var(--ease);
  height: 100%;
}
.biz-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-border);
  color: var(--text-body);
}

.biz-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--ease-spring);
}
.biz-card:hover .biz-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.biz-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.biz-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── 21. 律师团队网格(新) ────────────────────────────── */
.lawyer-team-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}


.f-nav {background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);font-size: 0;}
.f-nav ul{margin: 0;padding:0;}
.f-nav a ,.f-nav span{color: #fff;line-height: 70px;display: block;font-size: 16px;}
.f-nav li {display: inline-block;vertical-align: middle;margin-right: 20px;}

.footer {background: url(../picture/fobxg2.png) repeat center bottom #252525;color: #fff;padding-top: 50px;}
.footer a {color: #a09f9f;}
.footer-logo {float: left;}
.footer-tit {font-size: 18px;font-weight: bold;margin-bottom: 20px;}
.footer-contact {float: left;margin-left: 160px;}
.footer-contact p {margin: 20px 0 0;font-size: 15px;background: no-repeat 0 center;padding-left: 36px;line-height: 30px;    background-size: 25px;}
.footer-contact p.i1 {background-image: url(../picture/ftico1.png);}
.footer-contact p.i2 {background-image: url(../picture/ftico2.png);}
.footer-contact p.i3 {background-image: url(../picture/ftico4.png);}
.footer-ewm {float: right;margin-left: 30px;}
.footer-ewm ul {margin-left: -10px;padding:0}
.footer-ewm li {float: left;width: 120px;margin-left: 10px;list-style: none}
.footer-ewm li p {margin: 10px 0 0;text-align: center;font-size: 12px;}
.footer-copy {text-align: center;padding: 18px 0;font-size: 12px;margin-top: 10px;color: #999;border-top: 1px solid #444;}

.footer-fix {box-shadow: 0 0 10px rgba(0,0,0,0.2);position: fixed;bottom: 0;left: 0;width: 100%;background-color: #fff;z-index: 10;display: none;}
.footer-fix li {float: left;width: 25%;}
.footer-fix li a {display: block;text-align: center;padding: 7px 0;font-size: 12px;line-height: 1;}
.footer-fix li i {display: block;height: 20px;background: no-repeat center;background-size: contain;margin-bottom: 4px;}
.footer-fix li i.i1 {background-image: url(../picture/f_01.png);}
.footer-fix li i.i2 {background-image: url(../picture/f_02.png);}
.footer-fix li i.i3 {background-image: url(../picture/f_03.png);}
.footer-fix li i.i4 {background-image: url(../picture/f_04.png);}

@media (max-width: 768px) {
  .lawyer-team-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .lawyer-team-grid { grid-template-columns: repeat(3, 1fr); }
  .f-nav {
        display: none;
    }
        .footer {padding-top: 30px;}
    .footer-tit {font-size: 16px;margin-bottom: 15px;}
    .footer-logo {float: none;margin-bottom: 20px;height: 100px;line-height: 100px;}
    .footer-contact {float: none;margin: 0;}
    .footer-contact p {font-size: 12px;background-size: 24px auto;padding-left: 30px;margin-top: 5px;}
    .footer-ewm {float: none;margin: 20px 0 0;}
    .footer-ewm ul {margin-left: -20px;overflow: hidden;}
    .footer-ewm li {width: 50%;margin: 0;}
    .footer-ewm li .wrap {margin-left: 20px;}
    .footer-copy {margin-top: 30px;}

}

.lawyer-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 20px 12px 14px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--ease-spring);
}
.lawyer-team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-border);
}

.lawyer-team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  border: 3px solid var(--border-light);
  transition: var(--ease);
}
.lawyer-team-card:hover .lawyer-team-avatar {
  border-color: var(--primary-border);
  box-shadow: 0 4px 16px rgb(48 130 201 / 55%);
}
.lawyer-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.lawyer-team-card:hover .lawyer-team-avatar img {
  transform: scale(1.08);
}

.lawyer-team-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.lawyer-team-title {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ── 22. FAQ预览(新) ──────────────────────────────────── */
.faq-preview-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-preview-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--ease);
}
.faq-preview-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-border);
}

.faq-preview-q {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  transition: var(--ease-fast);
}
.faq-preview-q::-webkit-details-marker { display: none; }
.faq-preview-q i:first-child {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.faq-preview-item[open] .faq-preview-q {
  background: var(--primary-light);
  border-bottom: 1px solid var(--primary-border);
}

.faq-toggle {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.3s ease;
}
.faq-preview-item[open] .faq-toggle {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-preview-a {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  background: var(--bg-card);
}
.faq-preview-a i {
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.faq-preview-a p {
  margin: 0;
}

/* ── 23. 轮播图基础 ──────────────────────────────────────── */
.carousel-inner {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  opacity: 0.7;
}
.carousel-indicators .active {
  background: #fff;
  border-color: #fff;
  opacity: 1;
}

/* ── 24. 业务领域卡片 ─────────────────────────────────────── */
.business-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: 28px 24px;
  height: 100%;
  transition: var(--ease);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.business-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.business-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-border);
}
.business-card:hover::before { opacity: 1; }

.business-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--ease);
}
.business-card:hover .business-card-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}

.business-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.business-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.business-card-desc p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  line-height: 1.6;
  max-height: 4.8em;
}

.business-card-link {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.business-card-link:hover { color: var(--primary-dark); gap: 8px; }

/* 业务领域详情区块 */
.business-detail-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px 40px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-total) + 16px);
}
@media (max-width: 991px) {
  .business-detail-section { scroll-margin-top: 76px; }
}

.business-detail-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.business-detail-section h3 .bi {
  color: var(--primary);
  font-size: 1.1rem;
}
.business-detail-section p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 0;
}

/* 业务领域 Hero 区 */
.business-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D0A0A 50%, #1A1A1A 100%);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.business-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(198,40,40,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.business-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(198,40,40,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.business-hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.business-hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 600px;
  position: relative;
  z-index: 1;
}
.business-hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* ── 25. 近期办案轨迹 ────────────────────────────────────── */
.case-track-item {
  padding: 11px 0;
  border-bottom: 1px dashed var(--border-light);
}
.case-track-item:last-child { border-bottom: none; }
.case-track-item .track-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.case-track-item .track-addr {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── 26. 页脚 ────────────────────────────────────────────── */
.modern-footer {
  background-color: var(--bg-footer);
  color: #CCCCCC;
  color: rgba(255,255,255,0.78);
  margin-top: 32px;
  padding: 44px 0 20px;
}
.modern-footer a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: var(--ease);
}
.modern-footer a:hover { color: var(--primary); }
.modern-footer hr {
  border-color: rgba(255,255,255,0.08);
  margin: 20px 0 14px;
  opacity: 0.5;
}
.modern-footer .footer-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgb(48 130 201 / 35%);
  display: inline-block;
}
.modern-footer .footer-nav li {
  margin-bottom: 8px;
  font-size: 0.88rem;
}
.modern-footer .footer-nav li a:hover {
  color: #fff;
}

/* 底部电话按钮 */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-top: 6px;
  text-decoration: none;
  transition: var(--ease);
}
.footer-phone:hover {
  background: var(--primary-dark) !important;
  transform: scale(1.03);
  color: #fff !important;
}

/* 联系列表 */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-contact-list li i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.footer-contact-list li a {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
}
.footer-contact-list li a:hover {
  color: #fff !important;
}

/* 底部版权区块 */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}
.footer-bottom .disclaimer {
  margin-top: 0;
  border-top: none;
  padding: 0 0 12px;
}
.footer-bottom .sep {
  color: rgba(255,255,255,0.2);
  margin: 0 6px;
}

.modern-footer .footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.modern-footer .footer-copy a { color: rgba(255,255,255,0.5); }
.modern-footer .footer-copy a:hover { color: var(--primary); }

/* 社交图标 */
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: #CCCCCC !important;
  transition: var(--ease-spring);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.social-icon-btn:hover {
  background: var(--primary);
  color: #ffffff !important;
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(198,40,40,0.25);
}

/* QR 二维码悬浮弹窗：图片加载失败时白色背景兜底 */
.footer-qrcode-img {
  display: none;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px !important;
  height: 150px !important;
  min-width: 150px;
  min-height: 150px;
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  z-index: 10;
  background: #fff;
}

/* 法律声明 */
.disclaimer {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  line-height: 1.7;
}
.disclaimer p { margin-bottom: 0; }

/* ── 27. 侧边栏 Widget ────────────────────────────────────── */
.widget {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
  border: 1px solid var(--border);
}
.widget__header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}
.widget__body { padding: 18px 20px; }
.widget__list-item {
  padding: 9px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.85rem;
  list-style: none;
}
.widget__list-item:last-child { border-bottom: none; }
.widget__list-item a {
  color: var(--text-body);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: var(--ease-fast);
}
.widget__list-item a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* ── 28. 案件信息卡片(详情页) ────────────────────────────── */
.case-info {
  background: linear-gradient(135deg, #FAFBFC, #F5F6F8);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
  list-style: none;
  border: 1px solid var(--border-light);
}
.case-info__item {
  width: 50%;
  padding: 8px 0;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .case-info__item { width: 100%; }
}
.case-info__label {
  color: var(--primary);
  font-weight: 700;
}

/* ── 29. 文章内容组件 ────────────────────────────────────── */
.section-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  border-left: 5px solid var(--primary);
  padding-left: 14px;
  margin: 36px 0 18px;
  background: var(--primary-light);
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-content p,
.article-content div {
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 18px;
  color: var(--text-body);
}

/* 双栏布局（案例页专用） */
.article-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .article-two-col { grid-template-columns: 1fr; }
}

/* 关键要点列表 */
.article-key-points,.list-paddingleft-2{
  list-style: none;
  padding-left: 0;
}
.article-key-points li {
  font-size: 0.93rem;
  padding: 10px 0 10px 26px;
  position: relative;
  line-height: 1.75;
  border-bottom: 1px dashed var(--border-light);
  color: var(--text-body);
}
.article-key-points li:last-child { border-bottom: none; }
.article-key-points li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 18px;
}

/* 文章通知栏 */
.article-notice {
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
  margin: 28px 0 8px;
  padding: 16px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--primary-border);
}

/* 上下篇导航 */
.fc-show-prev-next {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.fc-show-prev-next a { color: var(--text-body); }
.fc-show-prev-next a:hover { color: var(--primary); }

/* ── 30. 列表页公共样式 ──────────────────────────────────── */

/* 列表项卡片 */
.list-article-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--ease-fast);
}
.list-article-item:first-child { padding-top: 0; }
.list-article-item:last-child { border-bottom: none; }
.list-article-item:hover { background: #FAFBFC; }

/* 缩略图 */
.list-article-thumb {
  width: 210px;
  height: 140px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--bg-muted);
}
.list-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.list-article-thumb:hover img { transform: scale(1.08); }
.list-article-thumb::after {
  content: '\F52D';
  font-family: 'bootstrap-icons';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(0,0,0,0.4);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.list-article-thumb:hover::after { transform: translate(-50%, -50%) scale(1); }

/* 文章信息区 */
.list-article-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.list-article-title {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-article-title a { color: inherit; }
.list-article-title a:hover { color: var(--primary); }

.list-article-summary {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.list-article-summary a { color: inherit; }

/* 关键词标签 */
.list-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.list-article-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: 3px;
  padding: 1px 8px;
  font-size: 0.72rem;
  font-weight: 500;
  transition: var(--ease-fast);
}
.list-article-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* 元信息（时间、阅读量等） */
.list-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: auto;
}
.list-article-meta i { font-size: 0.82rem; margin-right: 3px; }
.list-article-meta-right {
  margin-left: auto;
  display: flex;
  gap: 14px;
  align-items: center;
}

/* 无缩略图样式 */
.list-article-item.no-thumb .list-article-title {
  font-size: 1.08rem;
}
.list-article-item.no-thumb .list-article-summary {
  -webkit-line-clamp: 2;
}

/* 列表页响应式 */
@media (max-width: 768px) {
  .list-article-item { flex-direction: column; gap: 12px; }
  .list-article-thumb { width: 100%; height: 190px; }
  .list-article-meta { flex-wrap: wrap; }
  .list-article-meta-right { margin-left: 0; }
}

/* ── 31. 分页 ────────────────────────────────────────────── */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
}

.pagination .page-num {
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin: 0 3px;
  font-size: 0.85rem;
  padding: 7px 14px;
  transition: var(--ease-fast);
  min-width: 38px;
  text-align: center;
}
.pagination .page-num:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-border);
}

.pagination .page-num-current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 10px rgb(48 130 201 / 25%);
}



.pagination .page-item .page-link {
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin: 0 3px;
  font-size: 0.85rem;
  padding: 7px 14px;
  transition: var(--ease-fast);
  min-width: 38px;
  text-align: center;
}
.pagination .page-item .page-link:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-border);
}
.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(198,40,40,0.25);
}
.pagination .page-item.disabled .page-link {
  color: var(--text-light);
  background: #F8F8F8;
  border-color: var(--border-light);
}

/* ── 32. 列表页标题 ──────────────────────────────────────── */
.list-page-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.list-page-title i { color: var(--primary); }
.list-page-subtitle {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--primary-light);
}

/* ── 33. 图片预览遮罩 ────────────────────────────────────── */
.img-preview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.img-preview-overlay.active { display: flex; }
.img-preview-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.img-preview-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.img-preview-close:hover { opacity: 1; }

/* ── 34. 荣誉滚动区 ──────────────────────────────────────── */
.honor-scroll-box {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.honor-scroll-box::-webkit-scrollbar {
  height: 4px;
}
.honor-scroll-box::-webkit-scrollbar-track {
  background: transparent;
}
.honor-scroll-box::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.honor-scroll-box img {
  height: 140px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.3s;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* ── 35. 机构卡片 ────────────────────────────────────────── */
.institution-case-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--ease);
}
.institution-case-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

/* ── 36. 单页面内容 ──────────────────────────────────────── */
.single-content {
  line-height: 1.85;
  font-size: 0.95rem;
  color: var(--text-body);
}
.single-content p { margin-bottom: 1.4rem; }

/* ── 37. 简单分隔线装饰 ──────────────────────────────────── */
.divider-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.divider-text::before,
.divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── 38. 工具类 ──────────────────────────────────────────── */
.text-primary-red { color: var(--primary) !important; }
.bg-primary-red-light { background: var(--primary-light) !important; }
.border-primary-red { border-color: var(--primary) !important; }
.rounded-card { border-radius: var(--radius-lg) !important; }
.shadow-card { box-shadow: var(--shadow-sm) !important; }

/* ── 39. GEO 结构化工具 ───────────────────────────────── */
.key-points-box {
background: #e4f2ff;
    border: 1px solid #86c2f8;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 18px;
}
.key-points-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.key-points-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.key-points-list li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  border-bottom: none !important;
}
.key-points-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary);
  font-weight: 700;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none !important;
}
.key-points-contact {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #bcdffd;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.key-points-contact-icon {
  width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.key-points-contact-label {
  font-size: 0.82rem;
  color: #6b7280;
  white-space: nowrap;
}
.key-points-contact-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  white-space: nowrap;
}
.key-points-contact-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff !important;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.author-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #F7F9FC;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-info { flex: 1; min-width: 0; }
.author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.author-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 1px 8px;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
}
.author-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 1px;
}
.author-date {
  font-size: 0.78rem;
  color: var(--text-light);
  flex-shrink: 0;
  white-space: nowrap;
}
.author-date i { color: var(--primary); }

.toc-box {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 1.5rem;
}
.toc-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc-list a {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: var(--ease-fast);
  border: 1px solid var(--primary-border);
}
.toc-list a:hover {
  background: var(--primary);
  color: #fff;
}

.source-footnote {
  margin-top: 16px;
  padding: 10px 14px;
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.source-footnote i {
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.related-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-muted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--ease-fast);
}
.related-item:hover {
  border-color: var(--primary-border);
  color: var(--primary);
  background: var(--primary-light);
}
.related-item i { color: var(--primary); font-size: 1rem; }
@media (max-width: 768px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 40. 响应式微调 ──────────────────────────────────────── */
@media (max-width: 768px) {
  .business-detail-section { padding: 24px 20px; }
  .business-hero { padding: 28px 22px; }
  .business-hero-title { font-size: 1.4rem; }
  .modern-footer { padding: 28px 0 16px; }
  .article-faq { padding: 20px 18px; }
}

@media (max-width: 576px) {
  .lawyer-stats { flex-direction: column; gap: 8px; }
  .lawyer-stat-item + .lawyer-stat-item {
    border-left: none;
    border-top: 1px solid var(--primary-border);
    padding-top: 10px;
  }
  .author-date{width: 100%;}
}

@media (max-width: 991px) {
  body.has-mobile-lawyer-bar {
    padding-bottom: 96px;
  }
  .lawyer-mobile-hide {
    display: none !important;
  }
  .lawyer-mobile-bar {
    display: block;
  }
}

/* ── 41. 卡片悬停效果统一 ────────────────────────────────── */
.institution-section,.business-card,.case-card-item,.jigou-card-item,.charge-card,.lawyer-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.institution-section:hover {
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}
.business-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* ── 42. FAQ手风琴动画 ──────────────────────────────────── */
.faq-item.open .faq-a {
  max-height: 500px;
  opacity: 1;
  padding-top: 0.75rem;
  padding-bottom: 0.25rem;
}
.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 0.25rem;
}
.faq-q {
  cursor: pointer;
  user-select: none;
}

/* ── 43. 列表页卡片统一样式 ──────────────────────────────── */
.list-layout-card .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.list-layout-card .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* ── 44. 移动端悬浮栏关闭按钮 ────────────────────────────── */
.lawyer-mobile-bar__close {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 24px;
  height: 24px;
  border: none;
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}
.lawyer-mobile-bar__close:hover {
  background: rgba(0,0,0,0.4);
}
.lawyer-mobile-bar__link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
