:root {
      --gold: #c9a227;
      --gold-light: #e8c547;
      --gold-dark: #9a7b1a;
      --gold-pale: #f5ecd4;
      --gold-bg: #faf6eb;
      --brown: #2a2218;
      --brown-mid: #4a3f2f;
      --ink: #1a1612;
      --ink-soft: #5c5348;
      --muted: #8a8178;
      --card: #fffcf7;
      --line: #e8dcc4;
      --line-gold: #d4bc6a;
      --crimson: #8b2635;
      --surface: #ffffff;
      --surface-warm: #fffdf8;
      --nav-hover: rgba(201, 162, 39, 0.1);
      --shadow-sm: 0 1px 3px rgba(42, 34, 24, 0.05);
      --shadow-nav: 0 4px 16px rgba(42, 34, 24, 0.06);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "PingFang SC", "Microsoft YaHei", "SimSun", serif;
      font-size: 14px;
      color: var(--ink);
      background: var(--gold-bg);
      line-height: 1.65;
    }

    a { color: var(--brown-mid); text-decoration: none; transition: color .2s; }
    a:hover { color: var(--gold-dark); }

    .wrap { max-width: 1200px; margin: 0 auto; padding: 0 18px; }

    .gov-bar {
      background:
        linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)) top / 100% 2px no-repeat,
        var(--surface-warm);
      color: var(--muted);
      font-size: 12px;
      padding: 8px 0;
    }

    .gov-bar .wrap {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
    }

    .gov-bar a {
      color: var(--gold-dark);
      font-weight: 500;
      transition: color .2s;
    }

    .gov-bar a:hover { color: var(--gold); }

    .breadcrumb-bar {
      background: linear-gradient(180deg, #faf7f1 0%, #f3ede3 100%);
      border-bottom: 1px solid var(--line);
      padding: 10px 0;
      font-size: 13px;
      color: var(--muted);
    }

    .breadcrumb-bar a {
      color: var(--brown);
      text-decoration: none;
    }

    .breadcrumb-bar a:hover { color: var(--gold); }

    .breadcrumb-sep {
      margin: 0 8px;
      color: #c4b9a8;
    }

    .breadcrumb-current {
      color: var(--text);
      font-weight: 600;
    }

    .charge-nav-back {
      margin: 0 0 12px;
      font-size: 13px;
    }

    .charge-nav-back a { color: var(--brown); font-weight: 600; }

    .charge-nav-list li.is-current a {
      color: var(--gold);
      font-weight: 700;
    }

    /* 头部 */
    .site-header {
      background: var(--surface);
      padding: 0;
      box-shadow: 0 2px 12px rgba(42, 34, 24, 0.06);
      position: relative;
    }

    .header-main {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      gap: 20px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      line-height: 0;
    }

    .brand-logo {
      display: block;
      height: 64px;
      width: auto;
      max-width: min(420px, 72vw);
      object-fit: contain;
      object-position: left center;
    }

    .nav-gold {
      width: 100%;
      background: var(--surface);
    }

    .nav-gold-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: stretch;
      gap: 2px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 12px;
      box-sizing: border-box;
    }

    .nav-gold a {
      position: relative;
      color: var(--ink-soft);
      padding: 14px 20px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      border-radius: 6px 6px 0 0;
      transition: color .2s, background .2s;
    }

    .nav-gold a:hover {
      color: var(--gold-dark);
      background: var(--nav-hover);
    }

    .nav-gold a.on {
      color: var(--gold-dark);
      font-weight: 600;
      background: var(--nav-hover);
    }

    .nav-gold a.on::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 0;
      height: 3px;
      border-radius: 3px 3px 0 0;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    }

    /* Banner — 首页与各栏目页统一亮色 Hero */
    .hero-gold,
    .lawyer-index-hero,
    .city-hero,
    .lawyer-hero {
      position: relative;
      background: linear-gradient(135deg, var(--surface-warm) 0%, var(--gold-pale) 55%, #fff9ee 100%);
      color: var(--ink);
      overflow: hidden;
    }

    .hero-gold {
      padding: 36px 0 40px;
    }

    .lawyer-index-hero,
    .city-hero,
    .lawyer-hero {
      padding: 40px 0 44px;
    }

    .hero-gold::before,
    .lawyer-index-hero::before,
    .city-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
        repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(201, 162, 39, 0.025) 14px, rgba(201, 162, 39, 0.025) 15px);
      pointer-events: none;
    }

    .hero-gold > .wrap,
    .lawyer-index-hero > .wrap,
    .city-hero > .wrap,
    .lawyer-hero > .wrap {
      position: relative;
      z-index: 1;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 36px;
      align-items: center;
    }

    .hero-main {
      min-width: 0;
    }

    .hero-lead {
      color: var(--ink-soft);
      margin-bottom: 20px;
      font-size: 15px;
      line-height: 1.8;
      letter-spacing: 0.3px;
    }

    .search-gold {
      display: flex;
      align-items: stretch;
      max-width: 520px;
      border: 1px solid var(--line-gold);
      background: var(--surface);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .search-gold--hero {
      max-width: 620px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(42, 34, 24, 0.08);
      transition: box-shadow .2s, border-color .2s;
    }

    .search-gold--hero:focus-within {
      border-color: var(--gold);
      box-shadow: 0 6px 28px rgba(201, 162, 39, 0.18);
    }

    .search-gold input {
      flex: 1;
      border: none;
      padding: 14px 16px;
      font-size: 15px;
      outline: none;
      background: transparent;
      color: var(--ink);
      min-width: 0;
    }

    .search-gold--hero input {
      padding: 16px 18px;
      font-size: 16px;
    }

    .search-gold input::placeholder { color: var(--muted); }

    .search-gold button {
      background: linear-gradient(180deg, var(--gold-light), var(--gold));
      color: var(--brown);
      border: none;
      padding: 0 32px;
      font-weight: 700;
      letter-spacing: 2px;
      cursor: pointer;
      transition: filter .2s;
      white-space: nowrap;
    }

    .search-gold--hero button {
      padding: 0 36px;
      font-size: 15px;
    }

    .search-gold button:hover { filter: brightness(1.06); }

    .hero-tags-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      margin-top: 24px;
    }

    .hero-tags-label {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 1px;
      line-height: 1;
      padding-left: 2px;
    }

    a.hero-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px 30px;
      border: 1px solid var(--line-gold);
      background: linear-gradient(160deg, var(--surface) 0%, var(--gold-pale) 100%);
      border-radius: 14px;
      min-width: 168px;
      color: var(--ink-soft);
      text-decoration: none;
      box-shadow: var(--shadow-nav);
      transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
    }

    a.hero-badge:hover {
      background: linear-gradient(160deg, var(--surface-warm) 0%, #f8efd8 100%);
      border-color: var(--gold);
      color: var(--ink-soft);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(42, 34, 24, 0.1);
    }

    .hero-badge-num {
      display: block;
      font-size: 40px;
      color: var(--gold-dark);
      font-weight: 800;
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .hero-badge-text {
      display: block;
      font-size: 13px;
      color: var(--ink-soft);
      letter-spacing: 0.5px;
      margin-top: 8px;
      font-weight: 500;
    }

    .hero-badge-link {
      display: block;
      font-size: 12px;
      color: var(--gold-dark);
      margin-top: 10px;
      letter-spacing: 0.5px;
      opacity: 0.85;
      transition: opacity .2s;
    }

    a.hero-badge:hover .hero-badge-link {
      opacity: 1;
    }

    .tag-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag-bar a {
      font-size: 12px;
      padding: 7px 15px;
      border: 1px solid var(--line-gold);
      border-radius: 20px;
      background: var(--surface);
      color: var(--brown-mid);
      transition: background .2s, color .2s, border-color .2s, transform .2s;
    }

    .tag-bar a:hover {
      background: var(--gold);
      color: var(--brown);
      border-color: var(--gold);
      transform: translateY(-1px);
    }

    /* 罪名条 */
    .charge-strip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      padding: 14px 20px;
      background: var(--card);
      border: 1px solid var(--line-gold);
      border-left: 5px solid var(--gold);
      margin: 20px 0;
    }

    .charge-strip .lbl {
      font-weight: 800;
      color: var(--gold-dark);
      letter-spacing: 1px;
    }

    .charge-strip a {
      font-size: 13px;
      padding: 4px 12px;
      background: var(--gold-pale);
      border: 1px solid var(--line);
      color: var(--brown-mid);
    }

    .charge-strip a:hover {
      background: var(--gold);
      color: var(--brown);
      border-color: var(--gold-dark);
    }

    .main { padding-bottom: 40px; }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-bottom: 18px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-bottom: 18px;
    }

    /* 栏目标题 — 金黄底 */
    .col-box {
      background: var(--card);
      border: 1px solid var(--line-gold);
      box-shadow: 0 2px 8px rgba(154,123,26,.08);
    }

    .col-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 11px 16px;
      background: linear-gradient(180deg, #f0e0a8 0%, var(--gold) 50%, var(--gold-dark) 100%);
      border-bottom: 1px solid var(--gold-dark);
    }

    .col-head h3 {
      font-size: 16px;
      font-weight: 800;
      color: var(--brown);
      letter-spacing: 2px;
      text-shadow: 0 1px 0 rgba(255,255,255,.3);
    }

    .col-head .more {
      font-size: 12px;
      color: var(--brown);
      font-weight: 600;
    }

    /* 首页罪名栏目：长标题最多两行，栏头高度对齐 */
    .home-charge-grid .col-head {
      align-items: flex-start;
      gap: 8px;
      min-height: 46px;
    }

    .home-charge-grid .col-head h3 {
      flex: 1;
      min-width: 0;
      font-size: 15px;
      letter-spacing: 1px;
      line-height: 1.35;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
    }

    .home-charge-grid .col-head .more {
      flex-shrink: 0;
      white-space: nowrap;
      line-height: 1.35;
      padding-top: 1px;
    }

    .col-body { padding: 10px 16px 16px; }

    /* 列表 — 金色菱形点 */
    .gold-list { list-style: none; }

    .gold-list li {
      padding: 8px 0 8px 16px;
      border-bottom: 1px dashed var(--line);
      position: relative;
    }

    .gold-list li:last-child { border-bottom: none; }

    .gold-list li::before {
      content: "◆";
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 8px;
      top: 13px;
    }

    .gold-list a {
      color: var(--ink);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .gold-list a:hover { color: var(--crimson); }

    .gold-list a.is-current { color: var(--crimson); font-weight: 700; }

    /* 知名律师区 */
    .famous-block {
      margin-bottom: 18px;
      border: 1px solid var(--line-gold);
      background: var(--card);
      box-shadow: 0 2px 8px rgba(154,123,26,.08);
    }

    .famous-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 11px 16px;
      background: linear-gradient(180deg, #f0e0a8 0%, var(--gold) 50%, var(--gold-dark) 100%);
      border-bottom: 1px solid var(--gold-dark);
    }

    .famous-head h2 {
      font-size: 16px;
      font-weight: 800;
      color: var(--brown);
      letter-spacing: 2px;
      text-shadow: 0 1px 0 rgba(255,255,255,.3);
    }

    .famous-head a {
      font-size: 12px;
      color: var(--brown);
      font-weight: 600;
    }

    .famous-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .lawyer-item {
      display: flex;
      padding: 18px 16px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      color: var(--ink);
      transition: background .2s;
    }

    .lawyer-item:hover {
      background: var(--gold-pale);
      color: var(--ink);
    }

    .famous-grid .lawyer-item:nth-child(3n) { border-right: none; }
    .famous-grid .lawyer-item:nth-last-child(-n+3) { border-bottom: none; }

    .lawyer-photo {
      width: 82px;
      height: 102px;
      flex-shrink: 0;
      border: 2px solid var(--gold);
      background: linear-gradient(180deg, #ebe3d0, #d4c4a0);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .lawyer-photo-initial {
      font-size: 30px;
      font-weight: 800;
      color: var(--brown-mid);
      opacity: .45;
    }

    .lawyer-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .lawyer-detail {
      padding-left: 14px;
      flex: 1;
      min-width: 0;
    }

    .lawyer-detail h4 {
      font-size: 18px;
      font-weight: 800;
      color: var(--brown);
      margin-bottom: 8px;
      letter-spacing: 2px;
    }

    .lawyer-detail p {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.85;
    }

    .lawyer-detail .lbl { color: var(--muted); }

    .lawyer-detail .phone {
      display: inline-block;
      margin-top: 8px;
      color: var(--crimson);
      font-weight: 700;
      font-size: 14px;
    }

    /* 热线 */
    .hl-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 13px 0;
      border-bottom: 1px dashed var(--line);
    }

    .hl-row:last-child { border-bottom: none; }

    .hl-row h4 { font-size: 14px; font-weight: 700; color: var(--brown); }
    .hl-row p { font-size: 12px; color: var(--muted); margin-top: 2px; }

    .btn-gold {
      flex-shrink: 0;
      padding: 6px 18px;
      background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
      color: var(--brown) !important;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 1px;
      border: 1px solid var(--gold-dark);
    }

    .btn-gold:hover { filter: brightness(1.05); color: var(--brown) !important; }

    /* 案例 */
    .case-line {
      display: flex;
      gap: 10px;
      padding: 12px 0;
      border-bottom: 1px dashed var(--line);
      align-items: flex-start;
    }

    .case-line:last-child { border-bottom: none; }

    .rst {
      flex-shrink: 0;
      font-size: 11px;
      font-weight: 800;
      padding: 3px 8px;
      border: 1px solid;
      letter-spacing: 1px;
    }

    .rst.r1 { color: #6b21a8; border-color: #c084fc; background: #faf5ff; }
    .rst.r2 { color: #065f46; border-color: #6ee7b7; background: #ecfdf5; }
    .rst.r3 { color: #92400e; border-color: #fcd34d; background: #fffbeb; }
    .rst.r4 { color: #1e40af; border-color: #93c5fd; background: #eff6ff; }

    .case-line h4 { font-size: 14px; font-weight: 500; line-height: 1.45; margin-bottom: 3px; }
    .case-line .meta { font-size: 12px; color: var(--muted); }

    /* 文章行 */
    .art-row {
      display: block;
      padding: 10px 0;
      border-bottom: 1px dashed var(--line);
    }

    .art-row:last-child { border-bottom: none; }

    .art-row h4 {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 4px;
      padding-left: 10px;
      border-left: 3px solid var(--gold);
      color: var(--ink);
    }

    .art-row:hover h4 { color: var(--crimson); border-left-color: var(--crimson); }
    .art-row .meta { font-size: 12px; color: var(--muted); padding-left: 13px; }

    /* 小律师 */
    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .mini-grid a {
      text-align: center;
      padding: 12px 6px;
      border: 1px solid var(--line);
      background: var(--gold-pale);
      font-size: 12px;
      color: var(--brown-mid);
    }

    .mini-grid a:hover { border-color: var(--gold); background: #fff; }

    .mini-grid .av {
      width: 50px;
      aspect-ratio: 82 / 102;
      height: auto;
      margin: 0 auto 6px;
      border: 2px solid var(--gold);
      background: #ebe3d0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .mini-grid .av-initial {
      font-size: 20px;
      font-weight: 800;
      color: var(--gold-dark);
    }

    .mini-grid .av img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 页脚 */
    .site-foot {
      background: linear-gradient(180deg, var(--surface) 0%, var(--gold-pale) 100%);
      color: var(--ink-soft);
      padding: 48px 0 28px;
      border-top: 1px solid var(--line-gold);
      margin-top: auto;
    }

    .site-foot a {
      color: var(--brown-mid);
      transition: color .2s;
    }

    .site-foot a:hover { color: var(--gold-dark); }

    .foot-cols {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-bottom: 28px;
    }

    .site-foot h4 {
      color: var(--brown);
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 14px;
      letter-spacing: 1px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--gold);
    }

    .site-foot ul { list-style: none; }
    .site-foot li { margin-bottom: 8px; font-size: 13px; line-height: 1.6; }

    .foot-copy {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      padding-top: 20px;
      border-top: 1px solid var(--line);
    }

    .foot-disclaimer {
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid var(--line);
      border-radius: 6px;
      font-size: 12px;
      line-height: 1.8;
      color: var(--muted);
    }

    .foot-disclaimer strong {
      color: var(--brown-mid);
      font-weight: 600;
    }

    .foot-disclaimer p { margin: 0; }

    .foot-contact {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-top: 16px;
    }

    .foot-contact a {
      color: var(--brown-mid);
    }

    .foot-contact a:hover { color: var(--gold-dark); }

    .ver-tag {
      display: none;
    }

    /* 律师详情页 */
    .site-header--compact .header-main { display: none; }

    .lawyer-hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 70% 80% at 0% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 100% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    }

    .lawyer-hero-bg::before,
    .lawyer-hero-bg::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(201, 162, 39, 0.12);
    }

    .lawyer-hero-bg::before {
      width: 320px;
      height: 320px;
      right: -80px;
      top: -100px;
    }

    .lawyer-hero-bg::after {
      width: 180px;
      height: 180px;
      left: -40px;
      bottom: -60px;
      border-color: rgba(201, 162, 39, 0.08);
    }

    .lawyer-hero-card {
      color: var(--ink);
      position: relative;
      z-index: 1;
    }

    .lawyer-hero-top {
      display: grid;
      grid-template-columns: 148px minmax(0, 1fr) 220px;
      gap: 36px 40px;
      align-items: center;
    }

    .lawyer-page:not(.firm-page) .lawyer-hero-top {
      align-items: start;
    }

    .lawyer-hero-photo {
      width: 148px;
      height: 148px;
      padding: 4px;
      border-radius: 16px;
      background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
      box-shadow: 0 8px 24px rgba(42, 34, 24, 0.12);
      flex-shrink: 0;
    }

    .lawyer-page:not(.firm-page) .lawyer-hero-photo {
      height: auto;
      aspect-ratio: 82 / 102;
    }

    .lawyer-hero-photo-inner {
      width: 100%;
      height: 100%;
      border-radius: 12px;
      background: linear-gradient(145deg, var(--gold-pale), #ebe3d0);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .lawyer-hero-photo span {
      font-size: 52px;
      font-weight: 700;
      color: var(--gold-dark);
      font-family: "STKaiti", "KaiTi", "PingFang SC", serif;
    }

    .lawyer-hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .lawyer-hero-title {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .lawyer-hero-title h1 {
      font-size: 32px;
      font-weight: 700;
      letter-spacing: 2px;
      line-height: 1.2;
      color: var(--brown);
    }

    .lawyer-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 14px 5px 10px;
      background: var(--surface);
      color: var(--gold-dark);
      border: 1px solid var(--line-gold);
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    .lawyer-badge-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .lawyer-hero-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0;
      font-size: 14px;
      color: var(--ink-soft);
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .lawyer-hero-meta-item + .lawyer-hero-meta-item::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      margin: 0 12px;
      border-radius: 50%;
      background: var(--gold);
      vertical-align: middle;
    }

    .lawyer-tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .lawyer-tag {
      font-size: 12px;
      padding: 6px 14px;
      border: 1px solid var(--line-gold);
      background: var(--surface);
      color: var(--brown-mid);
      border-radius: 20px;
      transition: background .2s, border-color .2s, transform .15s;
    }

    .lawyer-page .lawyer-tag:hover {
      background: var(--gold-pale);
      border-color: var(--gold);
      transform: translateY(-1px);
    }

    .lawyer-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn-icon {
      margin-right: 6px;
      font-size: 13px;
    }

    .lawyer-hero .btn-gold--lg {
      padding: 12px 28px;
      font-size: 14px;
      border-radius: 10px;
      background: linear-gradient(135deg, #e8c547 0%, #c9a227 50%, #b8921f 100%);
      border: none;
      box-shadow: 0 4px 16px rgba(201,162,39,.35), 0 2px 4px rgba(0,0,0,.2);
      transition: transform .2s, box-shadow .2s, filter .2s;
    }

    .lawyer-hero .btn-gold--lg:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(201,162,39,.45), 0 2px 6px rgba(0,0,0,.25);
      filter: brightness(1.06);
    }

    .lawyer-btn-call em {
      font-style: normal;
      font-weight: 800;
      letter-spacing: .5px;
    }

    .lawyer-hero .btn-outline {
      padding: 11px 22px;
      border: 1px solid var(--gold-dark);
      color: var(--brown) !important;
      font-size: 13px;
      border-radius: 10px;
      background: var(--surface);
      transition: border-color .2s, background .2s, transform .2s;
    }

    .lawyer-hero .btn-outline:hover {
      border-color: var(--gold);
      background: var(--gold-pale);
      color: var(--brown) !important;
      transform: translateY(-1px);
    }

    .lawyer-hero-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      align-self: center;
    }

    .lawyer-stat {
      text-align: center;
      padding: 16px 10px;
      background: var(--surface);
      border: 1px solid var(--line-gold);
      border-radius: 10px;
      box-shadow: var(--shadow-sm);
      transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
    }

    .lawyer-stat:hover {
      background: var(--surface-warm);
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: var(--shadow-nav);
    }

    .lawyer-stat strong {
      display: block;
      font-size: 24px;
      color: var(--gold-dark);
      margin-bottom: 4px;
      font-weight: 700;
      line-height: 1.2;
      font-variant-numeric: tabular-nums;
    }

    .lawyer-stat--place strong {
      font-size: 18px;
      letter-spacing: 1px;
    }

    .lawyer-stat span {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: .5px;
    }

    .lawyer-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 22px;
      align-items: start;
      padding-top: 24px;
    }

    .lawyer-main,
    .lawyer-aside {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .lawyer-section .col-body {
      padding: 16px 20px 20px;
    }

    .lawyer-intro-box {
      padding: 18px 20px;
      background: linear-gradient(135deg, #fff 0%, var(--gold-pale) 100%);
      border: 1px solid var(--line);
      border-left: 4px solid var(--gold);
    }

    .lawyer-prose p {
      line-height: 1.9;
      color: var(--ink);
      font-size: 15px;
    }

    .lawyer-specialty-bar {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px dashed var(--line-gold);
    }

    .lawyer-specialty-bar .lbl {
      flex-shrink: 0;
      font-size: 12px;
      font-weight: 700;
      color: var(--gold-dark);
      letter-spacing: 1px;
    }

    .lawyer-specialty-bar .val {
      font-size: 13px;
      color: var(--brown);
      font-weight: 600;
    }

    .lawyer-info-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .lawyer-info-list li {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 0;
      border-bottom: 1px dashed var(--line);
      font-size: 13px;
      transition: background .15s;
    }

    .lawyer-info-list li:hover {
      background: rgba(245,236,212,.35);
      margin: 0 -8px;
      padding-left: 8px;
      padding-right: 8px;
    }

    .lawyer-info-list li:last-child { border-bottom: none; }

    .lawyer-info-list span { color: var(--muted); flex-shrink: 0; }

    .lawyer-info-list strong {
      text-align: right;
      color: var(--brown);
      font-weight: 600;
    }

    .phone-link { color: var(--crimson) !important; }

    .case-line--static { cursor: default; }
    .case-line--static:hover h4 { color: inherit; }

    .case-summary {
      margin-top: 8px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.65;
    }

    .lawyer-empty {
      font-size: 13px;
      color: var(--muted);
      padding: 12px 0;
      text-align: center;
    }

    .lawyer-disclaimer {
      background: var(--gold-pale);
      border-color: var(--gold);
    }

    .lawyer-disclaimer h4 {
      font-size: 13px;
      color: var(--brown);
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .lawyer-disclaimer p {
      font-size: 12px;
      line-height: 1.75;
      color: var(--muted);
    }

    .article-aside-lawyer-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .article-aside-lawyer {
      display: flex;
      gap: 12px;
      padding-bottom: 14px;
      border-bottom: 1px dashed var(--line);
    }

    .article-aside-lawyer:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }

    .article-aside-lawyer-photo {
      flex: 0 0 56px;
      width: 56px;
      height: 68px;
      border-radius: 6px;
      overflow: hidden;
      background: var(--gold-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
    }

    .article-aside-lawyer-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-aside-lawyer-initial {
      font-size: 22px;
      font-weight: 700;
      color: var(--brown);
    }

    .article-aside-lawyer-body {
      flex: 1;
      min-width: 0;
    }

    .article-aside-lawyer-body h4 {
      font-size: 14px;
      margin: 0 0 4px;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .article-aside-lawyer-body h4 a {
      color: var(--ink);
    }

    .article-aside-lawyer-body h4 a:hover {
      color: var(--crimson);
    }

    .article-aside-lawyer-rec {
      font-size: 10px;
      font-weight: 600;
      color: var(--brown);
      background: var(--gold-pale);
      border: 1px solid var(--gold);
      border-radius: 3px;
      padding: 1px 5px;
      line-height: 1.4;
    }

    .article-aside-lawyer-meta {
      font-size: 11px;
      color: var(--muted);
      margin: 0 0 4px;
    }

    .article-aside-lawyer-spec {
      font-size: 11px;
      line-height: 1.55;
      color: var(--ink-soft);
      margin: 0 0 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-aside-lawyer-actions {
      display: flex;
      gap: 8px;
    }

    .article-aside-lawyer-actions .btn-gold,
    .article-aside-lawyer-actions .btn-outline {
      flex: 1;
      padding: 5px 8px;
      font-size: 11px;
      text-align: center;
      line-height: 1.4;
    }

    .site-foot--compact {
      margin-top: 28px;
      padding: 20px 0;
    }

    .site-foot--compact .foot-cols { display: none; }

    .foot-disclaimer--compact {
      margin-bottom: 12px;
      padding: 12px 16px;
      font-size: 11px;
      line-height: 1.7;
    }

    .site-foot--compact .foot-copy {
      padding-top: 12px;
      border-top: 1px solid var(--line);
    }

    .lawyer-page { padding-bottom: 64px; }

    .lawyer-aside-sticky {
      position: sticky;
      top: 12px;
      z-index: 10;
    }

    /* 文章详情页 */
    .article-page { padding-bottom: 48px; }

    .article-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 20px;
      align-items: start;
      padding-top: 20px;
    }

    .article-main,
    .article-aside {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .article-body-wrap { padding: 24px 28px 28px; }

    .article-meta-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 14px;
      padding-bottom: 12px;
      border-bottom: 1px dashed var(--line);
    }

    .article-channel-tag {
      color: var(--brown);
      font-weight: 600;
      padding: 2px 10px;
      background: var(--gold-pale);
      border: 1px solid var(--gold);
    }

    .article-title {
      font-size: 26px;
      font-weight: 700;
      color: var(--brown);
      line-height: 1.45;
      margin-bottom: 12px;
    }

    .article-title-with-author {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: space-between;
      gap: 8px 20px;
    }

    .article-title-text {
      flex: 1 1 auto;
      min-width: 0;
    }

    .article-title-author {
      flex: 0 0 auto;
      font-size: 15px;
      font-weight: 500;
      color: var(--muted);
      white-space: nowrap;
    }

    .article-summary {
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.75;
      margin-bottom: 20px;
      padding: 12px 14px;
      background: var(--gold-pale);
      border-left: 3px solid var(--gold);
    }

    .article-content {
      font-size: 15px;
      line-height: 1.9;
      color: var(--ink);
    }

    .article-content .lead {
      font-size: 16px;
      color: var(--brown-mid);
      margin-bottom: 20px;
      line-height: 1.85;
    }

    .article-content h2 {
      font-size: 18px;
      color: var(--brown);
      margin: 28px 0 12px;
      padding-left: 10px;
      border-left: 4px solid var(--gold);
    }

    .article-content h3 {
      font-size: 16px;
      color: var(--brown-mid);
      margin: 20px 0 10px;
    }

    .article-content p { margin-bottom: 12px; }

    .article-content ul,
    .article-content ol {
      margin: 0 0 16px 20px;
    }

    .article-content li { margin-bottom: 8px; }

    .article-content a {
      color: var(--gold-dark);
      text-decoration: underline;
    }

    .article-content img,
    .rich-text img {
      max-width: 100%;
      height: auto;
      margin: 12px 0;
    }

    .firm-page .rich-text img {
      display: block;
      max-width: min(100%, 480px);
      margin: 16px auto;
      border: 1px solid var(--line);
      border-radius: 6px;
      box-shadow: 0 2px 10px rgba(42, 34, 24, 0.08);
    }

    .article-content strong,
    .article-content b,
    .rich-text strong,
    .rich-text b {
      font-weight: 700;
      color: var(--brown);
    }

    .article-content blockquote,
    .rich-text blockquote {
      margin: 12px 0 16px;
      padding: 10px 14px;
      border-left: 3px solid var(--gold);
      background: var(--gold-pale);
      color: var(--ink-soft);
    }

    .about-honor-highlights {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin: 20px 0 28px;
    }

    .about-honor-item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 220px;
      gap: 20px;
      align-items: start;
      padding: 18px 20px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .about-honor-text h3 {
      font-size: 15px;
      color: var(--brown);
      margin: 0 0 8px;
    }

    .about-honor-text p {
      margin: 0;
      font-size: 14px;
      line-height: 1.85;
      color: var(--ink-soft);
    }

    .about-honor-item figure {
      margin: 0;
    }

    .about-honor-item img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
      margin: 0;
      background: #fff;
      border: 1px solid var(--line);
    }

    .about-honor-item figcaption {
      margin-top: 8px;
      font-size: 11px;
      line-height: 1.5;
      color: var(--muted);
      text-align: center;
    }

    @media (max-width: 720px) {
      .about-honor-item {
        grid-template-columns: 1fr;
      }
      .about-honor-item figure {
        max-width: 240px;
      }
    }

    .article-table {
      width: 100%;
      border-collapse: collapse;
      margin: 12px 0 18px;
      font-size: 13px;
    }

    .article-table th,
    .article-table td {
      border: 1px solid var(--line);
      padding: 10px 12px;
      text-align: left;
    }

    .article-table th {
      background: var(--gold-pale);
      color: var(--brown);
    }

    .article-pre {
      background: #f8f4ea;
      border: 1px solid var(--line);
      padding: 16px;
      font-size: 13px;
      line-height: 1.7;
      overflow-x: auto;
      white-space: pre-wrap;
      margin: 12px 0 18px;
    }

    .article-footnote {
      margin-top: 28px;
      padding-top: 16px;
      border-top: 1px dashed var(--line);
      font-size: 13px;
      color: var(--muted);
    }

    .article-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 24px 0 8px;
    }

    .article-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
    }


    .lawyer-quick-bar {
      background: var(--card);
      border-bottom: 1px solid var(--line-gold);
      padding: 0;
      box-shadow: 0 4px 12px rgba(154,123,26,.06);
    }

    .lawyer-quick-bar .wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    .lawyer-quick-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 18px 14px;
      background: transparent;
      border: none;
      border-right: 1px solid var(--line);
      text-align: center;
      transition: background .2s, color .2s;
      position: relative;
    }

    .lawyer-quick-item:last-child { border-right: none; }

    .lawyer-quick-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: var(--gold);
      transition: width .25s;
    }

    .lawyer-quick-item:hover {
      background: var(--gold-pale);
    }

    .lawyer-quick-item:hover::after {
      width: 60%;
    }

    .lawyer-quick-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 8px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
      border: 2px solid var(--gold-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--brown);
      font-weight: 800;
    }

    .lawyer-quick-item--1 .lawyer-quick-icon::before { content: '罪'; }
    .lawyer-quick-item--2 .lawyer-quick-icon::before { content: '引'; }
    .lawyer-quick-item--3 .lawyer-quick-icon::before { content: '线'; }
    .lawyer-quick-item--4 .lawyer-quick-icon::before { content: '例'; }

    .lawyer-quick-item strong {
      display: block;
      font-size: 14px;
      color: var(--brown);
      margin-bottom: 4px;
      font-weight: 700;
    }

    .lawyer-quick-item span {
      font-size: 11px;
      color: var(--muted);
      line-height: 1.45;
    }

    .lawyer-lead {
      font-size: 15px;
      line-height: 1.95;
      color: var(--ink);
      margin-bottom: 0;
    }

    .lawyer-sub {
      font-size: 13px;
      line-height: 1.75;
      color: var(--muted);
      padding-top: 12px;
      border-top: 1px dashed var(--line);
    }

    .lawyer-service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .lawyer-service-card {
      padding: 20px 16px;
      border: 1px solid var(--line);
      background: #fff;
      text-align: center;
      transition: border-color .2s, box-shadow .2s, transform .2s;
      position: relative;
      overflow: hidden;
    }

    .lawyer-service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
      opacity: 0;
      transition: opacity .2s;
    }

    .lawyer-service-card:hover {
      border-color: var(--gold);
      box-shadow: 0 6px 20px rgba(154,123,26,.1);
      transform: translateY(-2px);
    }

    .lawyer-service-card:hover::before {
      opacity: 1;
    }

    .lawyer-service-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 12px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
      color: var(--brown);
      font-weight: 800;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--gold-dark);
      box-shadow: 0 3px 8px rgba(154,123,26,.2);
    }

    .lawyer-service-card h4 {
      font-size: 14px;
      color: var(--brown);
      margin-bottom: 8px;
      font-weight: 700;
    }

    .lawyer-service-card p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
    }

    .lawyer-process {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .lawyer-process--timeline {
      position: relative;
    }

    .lawyer-process-item {
      display: flex;
      gap: 16px;
      padding: 18px;
      border: 1px solid var(--line);
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
    }

    .lawyer-process-item:hover {
      border-color: var(--gold);
      box-shadow: 0 4px 14px rgba(154,123,26,.08);
    }

    .lawyer-process-num {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--brown) 0%, #3d2914 100%);
      color: var(--gold-light);
      font-weight: 800;
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--gold-dark);
      box-shadow: 0 3px 8px rgba(0,0,0,.15);
    }

    .lawyer-process-item h4 {
      font-size: 14px;
      color: var(--brown);
      margin-bottom: 6px;
      font-weight: 700;
    }

    .lawyer-process-item p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
    }

    .lawyer-case-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .lawyer-case-card {
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-left: 4px solid var(--gold);
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
    }

    .lawyer-case-card:hover {
      border-color: var(--gold);
      box-shadow: 0 4px 16px rgba(154,123,26,.08);
    }

    .lawyer-case-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      flex-wrap: wrap;
    }

    .lawyer-case-charge {
      font-size: 12px;
      color: var(--brown-mid);
      padding: 3px 10px;
      background: var(--gold-pale);
      border: 1px solid var(--gold);
      border-radius: 2px;
      transition: background .2s;
    }

    a.lawyer-case-charge:hover {
      background: var(--gold);
      color: var(--brown) !important;
    }

    .lawyer-case-card h4 {
      font-size: 15px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.55;
      margin-bottom: 6px;
    }

    .lawyer-case-card .meta {
      font-size: 12px;
      color: var(--muted);
    }

    .lawyer-art-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .lawyer-art-row {
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-bottom: 1px solid var(--line) !important;
      background: #fff;
      border-radius: 0;
      transition: border-color .2s, background .2s, box-shadow .2s;
    }

    .lawyer-art-row:hover {
      border-color: var(--gold) !important;
      background: var(--gold-pale);
      box-shadow: 0 2px 8px rgba(154,123,26,.06);
    }

    .lawyer-art-row-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px 16px;
      margin-bottom: 6px;
    }

    .lawyer-art-row-title {
      flex: 1 1 auto;
      min-width: 0;
      font-size: 14px;
      font-weight: 600;
      margin: 0;
      padding-left: 12px;
      border-left: 3px solid var(--gold);
      line-height: 1.45;
      transition: color .2s, border-color .2s;
    }

    .lawyer-art-row:hover .lawyer-art-row-title {
      color: var(--crimson);
      border-left-color: var(--crimson);
    }

    .lawyer-art-row-head .article-row-author {
      flex-shrink: 0;
    }

    .lawyer-art-row h4 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
      padding-left: 12px;
      border-left: 3px solid var(--gold);
      transition: color .2s, border-color .2s;
    }

    .lawyer-art-row:hover h4 {
      color: var(--crimson);
      border-left-color: var(--crimson);
    }

    .lawyer-art-row .meta {
      font-size: 12px;
      color: var(--muted);
      padding-left: 15px;
    }

    .lawyer-faq-list {
      padding: 8px 20px 16px !important;
    }

    .lawyer-faq-item {
      border: 1px solid var(--line);
      border-radius: 2px;
      margin-bottom: 10px;
      padding: 0;
      background: #fff;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }

    .lawyer-faq-item:last-child { margin-bottom: 0; }

    .lawyer-faq-item[open] {
      border-color: var(--gold);
      box-shadow: 0 2px 10px rgba(154,123,26,.08);
    }

    .lawyer-faq-item summary {
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      color: var(--brown);
      list-style: none;
      padding: 14px 36px 14px 16px;
      position: relative;
      background: linear-gradient(180deg, #fff 0%, var(--gold-pale) 100%);
      transition: background .2s;
    }

    .lawyer-faq-item[open] summary {
      background: var(--gold-pale);
      border-bottom: 1px dashed var(--line-gold);
    }

    .lawyer-faq-item summary::-webkit-details-marker { display: none; }

    .lawyer-faq-item summary::after {
      content: '+';
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold-dark);
      font-weight: 800;
      font-size: 18px;
      line-height: 1;
    }

    .lawyer-faq-item[open] summary::after { content: '−'; }

    .lawyer-faq-item p {
      margin: 0;
      padding: 14px 16px 16px;
      font-size: 13px;
      line-height: 1.8;
      color: var(--muted);
      background: #fff;
    }

    .lawyer-contact-card {
      background: linear-gradient(155deg, #3d2e1a 0%, #2d2318 48%, #1f1810 100%);
      border: 1px solid rgba(201, 162, 39, 0.32);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 28px rgba(42, 34, 24, 0.22);
      position: relative;
    }

    .lawyer-contact-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    }

    .lawyer-contact-card .col-body {
      padding: 22px 20px 20px;
    }

    .lawyer-contact-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .lawyer-contact-av {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      border: 2px solid var(--gold);
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 800;
      color: var(--gold-light);
    }

    .lawyer-contact-card h3 {
      color: #f5e6b8;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 6px;
      letter-spacing: 0.5px;
    }

    .lawyer-contact-name {
      color: rgba(255,255,255,.78);
      font-size: 12px;
      margin-bottom: 14px;
      line-height: 1.5;
    }

    .lawyer-contact-head + .btn-gold--block,
    .lawyer-contact-head ~ .btn-gold--block {
      margin-top: 0;
    }

    .lawyer-phone-btn {
      letter-spacing: 1px;
      font-size: 17px !important;
      box-shadow: 0 4px 12px rgba(0,0,0,.3);
    }

    .lawyer-contact-card .btn-gold--block {
      border-radius: 6px;
      font-weight: 700;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
    }

    .lawyer-contact-card .btn-outline--block {
      margin-top: 10px;
      border-color: rgba(201, 162, 39, 0.7);
      color: #f5e6b8 !important;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.05);
    }

    .lawyer-contact-card .btn-outline--block:hover {
      background: rgba(201, 162, 39, 0.18);
      border-color: var(--gold-light);
      color: #fff !important;
    }

    .lawyer-contact-tip {
      margin-top: 12px;
      font-size: 11px;
      color: rgba(255,255,255,.55);
      text-align: center;
      line-height: 1.5;
    }

    .lawyer-contact-card .lawyer-contact-tip {
      margin: 0 0 16px;
      padding: 10px 12px;
      font-size: 11px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.78);
      background: rgba(0, 0, 0, 0.2);
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      text-align: left;
    }

    .lawyer-contact-card .lawyer-contact-tip a {
      color: #f0d998;
      text-decoration: none;
    }

    .lawyer-contact-card .lawyer-contact-tip a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .lawyer-contact-card .lawyer-contact-head .lawyer-contact-name {
      margin-bottom: 0;
    }

    .lawyer-contact-card .lawyer-contact-head + .btn-gold--block {
      margin-top: 4px;
    }

    .lawyer-contact-card .lawyer-contact-head ~ .lawyer-contact-tip {
      margin-top: 12px;
      margin-bottom: 0;
      text-align: center;
      background: transparent;
      border: none;
      padding: 0;
      color: rgba(255, 255, 255, 0.55);
    }

    .btn-gold--block {
      display: block;
      text-align: center;
      padding: 13px;
      font-size: 16px;
      width: 100%;
    }

    .lawyer-charge-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .lawyer-charge-tag {
      display: inline-block;
      font-size: 12px;
      padding: 6px 12px;
      background: var(--gold-pale);
      border: 1px solid var(--line);
      color: var(--brown-mid);
      transition: background .2s, border-color .2s, color .2s;
    }

    .lawyer-charge-tag:hover {
      background: var(--gold);
      border-color: var(--gold-dark);
      color: var(--brown) !important;
    }

    .lawyer-cta-bar {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 999;
      padding: 10px 16px;
      background: rgba(61,41,20,.96);
      backdrop-filter: blur(8px);
      box-shadow: 0 -4px 20px rgba(0,0,0,.2);
    }

    .lawyer-cta-call {
      display: block;
      text-align: center;
      padding: 13px;
      background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
      color: var(--brown) !important;
      font-weight: 800;
      font-size: 15px;
      border: 1px solid var(--gold-dark);
      border-radius: 2px;
      letter-spacing: 1px;
    }

    .btn-outline {
      display: inline-block;
      padding: 10px 20px;
      border: 1px solid var(--gold-dark);
      color: var(--brown) !important;
      font-size: 13px;
      font-weight: 600;
      background: transparent;
      transition: background .2s, border-color .2s, color .2s;
    }

    .btn-outline:hover {
      background: var(--gold-pale);
      border-color: var(--gold);
      color: var(--brown) !important;
    }

    .btn-outline--block {
      display: block;
      text-align: center;
      padding: 12px;
      width: 100%;
      margin-top: 10px;
    }

    /* 地市分站页 */
    .city-page .main { padding-top: 20px; padding-bottom: 48px; }

    .city-hero-inner {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 32px;
      align-items: center;
    }

    .city-hero-tag {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 1px;
      color: var(--gold-dark);
      margin-bottom: 10px;
      padding: 5px 14px;
      border: 1px solid var(--line-gold);
      background: var(--surface);
      border-radius: 20px;
    }

    .city-hero-text h1 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: 3px;
      margin-bottom: 14px;
      color: var(--brown);
    }

    .city-hero-desc {
      font-size: 15px;
      line-height: 1.85;
      color: var(--ink-soft);
      max-width: 640px;
      margin-bottom: 22px;
    }

    .city-hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
    }

    .city-stat strong {
      display: block;
      font-size: 28px;
      font-weight: 800;
      color: var(--gold-dark);
      line-height: 1.1;
    }

    .city-stat span {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.5px;
    }

    .city-hero-badge {
      text-align: center;
      padding: 24px 20px;
      background: var(--surface);
      border: 1px solid var(--line-gold);
      border-radius: 12px;
      box-shadow: var(--shadow-nav);
    }

    .city-map-badge {
      width: 72px;
      height: 72px;
      margin: 0 auto 14px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
      border: 3px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      font-weight: 900;
      color: var(--brown);
      box-shadow: 0 4px 16px rgba(0,0,0,.25);
    }

    .city-hero-cities {
      font-size: 12px;
      line-height: 2;
      color: var(--ink-soft);
      letter-spacing: 0.5px;
    }

    .city-select-box { margin-bottom: 20px; }

    .city-select-body { padding: 16px 20px 24px !important; }

    .city-select-body .article-summary { margin-bottom: 20px; }

    .city-map-stage {
      display: none;
      padding: 20px 24px 16px;
      background: var(--gold-bg);
      border: 1px solid var(--line-gold);
      border-radius: 2px;
      text-align: center;
    }

    .city-map-stage-inner {
      max-width: 860px;
      margin: 0 auto;
    }

    .city-map-stage-inner svg {
      display: block;
      width: 100%;
      height: auto;
    }

    .city-map-hint {
      margin-top: 12px;
      font-size: 13px;
      color: var(--muted);
      letter-spacing: 1px;
    }

    .city-grid--fallback { margin-top: 0; }

    .city-quick-bar {
      background: var(--card);
      border-bottom: 1px solid var(--line-gold);
      box-shadow: 0 4px 12px rgba(154,123,26,.06);
    }

    .city-quick-bar .wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .city-quick-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 18px 14px;
      border-right: 1px solid var(--line);
      text-align: center;
      transition: background .2s;
      position: relative;
    }

    .city-quick-item:last-child { border-right: none; }

    .city-quick-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: var(--gold);
      transition: width .25s;
    }

    .city-quick-item:hover {
      background: var(--gold-pale);
    }

    .city-quick-item:hover::after {
      width: 60%;
    }

    .city-quick-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 8px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
      border: 2px solid var(--gold-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--brown);
      font-weight: 800;
    }

    .city-quick-icon--1::before { content: '律'; }
    .city-quick-icon--2::before { content: '线'; }
    .city-quick-icon--3::before { content: '引'; }
    .city-quick-icon--4::before { content: '罪'; }

    .city-quick-item strong {
      display: block;
      font-size: 14px;
      color: var(--brown);
      margin-bottom: 4px;
      font-weight: 700;
    }

    .city-quick-item span {
      font-size: 12px;
      color: var(--muted);
    }

    .city-grid-wrap { padding-top: 16px !important; }

    .city-grid-wrap .article-summary { margin-bottom: 20px; }

    @media (min-width: 961px) {
      .city-map-stage { display: block; }
      .city-grid--fallback { display: none; }
    }

    .city-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .city-card {
      background: var(--card);
      border: 1px solid var(--line-gold);
      box-shadow: 0 2px 6px rgba(154,123,26,.06);
      transition: border-color .2s, box-shadow .2s, transform .2s;
      overflow: hidden;
    }

    .city-card:hover {
      border-color: var(--gold);
      box-shadow: 0 6px 18px rgba(154,123,26,.14);
      transform: translateY(-2px);
    }

    .city-card-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 12px 14px;
      text-align: center;
      color: var(--ink) !important;
    }

    .city-card-main:hover { color: var(--ink) !important; }

    .city-card-char {
      width: 48px;
      height: 48px;
      margin-bottom: 10px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--gold-pale), #ede0b8);
      border: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 900;
      color: var(--brown);
    }

    .city-card-name {
      font-size: 18px;
      font-weight: 800;
      color: var(--brown);
      letter-spacing: 2px;
      margin-bottom: 2px;
    }

    .city-card-label {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .city-card-meta {
      font-size: 12px;
      color: var(--gold-dark);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .city-card-meta--muted {
      color: var(--muted);
      font-weight: 400;
    }

    .city-card-enter {
      font-size: 12px;
      color: var(--crimson);
      font-weight: 600;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity .2s, transform .2s;
    }

    .city-card:hover .city-card-enter {
      opacity: 1;
      transform: translateY(0);
    }

    .city-card-links {
      display: flex;
      border-top: 1px dashed var(--line);
      background: var(--gold-bg);
    }

    .city-card-links a {
      flex: 1;
      padding: 8px 4px;
      font-size: 12px;
      text-align: center;
      color: var(--brown-mid) !important;
      border-right: 1px dashed var(--line);
      transition: background .2s, color .2s;
    }

    .city-card-links a:last-child { border-right: none; }

    .city-card-links a:hover {
      background: var(--gold-pale);
      color: var(--crimson) !important;
    }

    .city-module-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .city-module-card {
      padding: 18px 16px;
      background: var(--gold-bg);
      border: 1px solid var(--line);
      border-left: 3px solid var(--gold);
      transition: background .2s, border-color .2s;
    }

    .city-module-card:hover {
      background: var(--gold-pale);
      border-color: var(--line-gold);
    }

    .city-module-icon {
      display: inline-flex;
      width: 32px;
      height: 32px;
      align-items: center;
      justify-content: center;
      background: var(--gold);
      color: var(--brown);
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 10px;
      border: 1px solid var(--gold-dark);
    }

    .city-module-card h4 {
      font-size: 15px;
      color: var(--brown);
      margin-bottom: 6px;
      font-weight: 700;
    }

    .city-module-card p {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.65;
    }

    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-badge { display: none; }
      .grid-3, .grid-2 { grid-template-columns: 1fr; }
      .famous-grid { grid-template-columns: repeat(2, 1fr); }
      .famous-grid .lawyer-item:nth-child(3n) { border-right: 1px solid var(--line); }
      .famous-grid .lawyer-item:nth-child(2n) { border-right: none; }
      .famous-grid .lawyer-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
      .famous-grid .lawyer-item:nth-last-child(-n+2) { border-bottom: none; }
      .nav-gold-inner {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
      }

      .nav-gold-inner::-webkit-scrollbar { display: none; }

      .nav-gold a {
        flex-shrink: 0;
        white-space: nowrap;
      }
      .foot-cols { grid-template-columns: 1fr 1fr; }
      .lawyer-hero { padding: 28px 0 32px; }
      .lawyer-hero-top {
        grid-template-columns: 112px 1fr;
        gap: 24px 28px;
      }
      .lawyer-hero-photo { width: 112px; height: 112px; }
      .lawyer-page:not(.firm-page) .lawyer-hero-photo {
        height: auto;
        aspect-ratio: 82 / 102;
      }
      .lawyer-hero-stats {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
      }
      .lawyer-stat--place strong { font-size: 16px; }
      .lawyer-layout { grid-template-columns: 1fr; }
      .lawyer-index-layout { grid-template-columns: 1fr; }
      .lawyer-index-hero-inner { grid-template-columns: 1fr; align-items: start; }
      .lawyer-index-grid { grid-template-columns: 1fr; }
      .lawyer-aside-sticky { position: static; }
      .article-layout { grid-template-columns: 1fr; }
      .city-hero-inner { grid-template-columns: 1fr; }
      .city-quick-bar .wrap { grid-template-columns: repeat(2, 1fr); }
      .city-quick-item:nth-child(2) { border-right: none; }
      .city-quick-item:nth-child(1),
      .city-quick-item:nth-child(2) { border-bottom: 1px solid var(--line); }
      .city-grid { grid-template-columns: repeat(2, 1fr); }
      .city-module-grid { grid-template-columns: 1fr; }
      .city-card-enter { opacity: 1; transform: none; }
      .lawyer-quick-bar .wrap { grid-template-columns: repeat(2, 1fr); }
      .lawyer-quick-item:nth-child(2) { border-right: none; }
      .lawyer-quick-item:nth-child(1),
      .lawyer-quick-item:nth-child(2) {
        border-bottom: 1px solid var(--line);
      }
      .lawyer-service-grid { grid-template-columns: repeat(2, 1fr); }
      .lawyer-process { grid-template-columns: 1fr; }
      .lawyer-cta-bar { display: block; }
      .lawyer-page { padding-bottom: 72px; }
    }

    @media (max-width: 520px) {
      .famous-grid { grid-template-columns: 1fr; }
      .famous-grid .lawyer-item { border-right: none !important; }
      .lawyer-hero { padding: 24px 0 28px; }
      .lawyer-hero-title h1 { font-size: 24px; letter-spacing: 1px; }
      .lawyer-hero-photo { width: 88px; height: 88px; border-radius: 12px; }
      .lawyer-page:not(.firm-page) .lawyer-hero-photo {
        height: auto;
        aspect-ratio: 82 / 102;
      }
      .lawyer-hero-photo-inner { border-radius: 8px; }
      .lawyer-hero-photo span { font-size: 36px; }
      .lawyer-hero-top { grid-template-columns: 88px 1fr; gap: 16px 20px; }
      .lawyer-hero-actions { flex-direction: column; align-items: stretch; }
      .lawyer-hero .btn-gold--lg,
      .lawyer-hero .btn-outline { text-align: center; }
      .lawyer-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .lawyer-stat { padding: 12px 8px; }
      .lawyer-stat strong { font-size: 20px; }
      .lawyer-stat--place strong { font-size: 15px; }
      .lawyer-quick-bar .wrap { grid-template-columns: 1fr; }
      .lawyer-quick-item { border-right: none !important; border-bottom: 1px solid var(--line); }
      .lawyer-quick-item:last-child { border-bottom: none; }
      .lawyer-service-grid { grid-template-columns: 1fr; }
      .lawyer-intro-box { padding: 14px 16px; }
      .city-grid { grid-template-columns: 1fr; }
      .city-quick-bar .wrap { grid-template-columns: 1fr; }
      .city-quick-item { border-right: none !important; border-bottom: 1px solid var(--line); }
      .city-quick-item:last-child { border-bottom: none; }
      .city-hero-text h1 { font-size: 24px; letter-spacing: 1px; }
      .lawyer-index-hero-inner { grid-template-columns: 1fr; }
      .lawyer-index-hero-text h1 { font-size: 24px; letter-spacing: 1px; }
      .lawyer-index-layout { grid-template-columns: 1fr; }
      .lawyer-index-grid { grid-template-columns: 1fr; }
      .lawyer-index-card { padding: 16px; gap: 14px; }
      .lawyer-index-card-photo { width: 80px; height: 100px; }
      .lawyer-index-card-actions { grid-template-columns: 1fr; }
    }

    /* 刑辩律师库列表页 */
    .lawyer-index-page .main { padding-top: 20px; padding-bottom: 48px; }

    .lawyer-index-hero-inner {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 28px;
      align-items: end;
    }

    .lawyer-index-hero-tag {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 1px;
      color: var(--gold-dark);
      margin-bottom: 10px;
      padding: 5px 14px;
      border: 1px solid var(--line-gold);
      background: var(--surface);
      border-radius: 20px;
    }

    .lawyer-index-hero-text h1 {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: 3px;
      margin-bottom: 14px;
      color: var(--brown);
    }

    .lawyer-index-hero-desc {
      font-size: 15px;
      line-height: 1.85;
      color: var(--ink-soft);
      max-width: 640px;
      margin-bottom: 22px;
    }

    .lawyer-index-hero-stats {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }

    .lawyer-index-stat strong {
      display: block;
      font-size: 26px;
      font-weight: 800;
      color: var(--gold-dark);
      line-height: 1.2;
    }

    .lawyer-index-stat span {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.5px;
    }

    .lawyer-index-search {
      display: flex;
      border: 1px solid var(--line-gold);
      background: var(--surface);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .lawyer-index-search input {
      flex: 1;
      min-width: 0;
      padding: 14px 16px;
      border: none;
      background: transparent;
      color: var(--ink);
      font-size: 15px;
      outline: none;
    }

    .lawyer-index-search input::placeholder { color: var(--muted); }

    .lawyer-index-search button {
      flex-shrink: 0;
      padding: 14px 22px;
      border: none;
      background: linear-gradient(180deg, var(--gold-light), var(--gold));
      color: var(--brown);
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      letter-spacing: 2px;
      transition: filter .2s;
    }

    .lawyer-index-search button:hover {
      filter: brightness(1.05);
    }

    .lawyer-index-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 24px;
      align-items: start;
    }

    .lawyer-index-main { min-width: 0; }

    .lawyer-index-filter-box { margin-bottom: 20px; }

    .lawyer-index-filter-body { padding: 16px 20px 20px !important; }

    .lawyer-index-filter-group + .lawyer-index-filter-group {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px dashed var(--line);
    }

    .lawyer-index-filter-label {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 10px;
    }

    .lawyer-index-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .lawyer-index-pill {
      display: inline-block;
      padding: 5px 14px;
      font-size: 13px;
      color: var(--ink-soft);
      background: #fff;
      border: 1px solid var(--line);
      transition: background .2s, border-color .2s, color .2s;
    }

    .lawyer-index-pill:hover {
      border-color: var(--gold);
      color: var(--brown);
      background: var(--gold-pale);
    }

    .lawyer-index-pill.is-on {
      background: var(--gold);
      border-color: var(--gold-dark);
      color: var(--brown);
      font-weight: 700;
    }

    .lawyer-index-filter-active {
      margin-top: 14px;
      font-size: 13px;
      color: var(--muted);
    }

    .lawyer-index-filter-active span {
      display: inline-block;
      margin-right: 6px;
      padding: 2px 8px;
      background: var(--gold-pale);
      color: var(--brown);
      border: 1px solid var(--line-gold);
    }

    .lawyer-index-filter-active a {
      margin-left: 8px;
      color: var(--crimson);
      font-weight: 600;
    }

    .lawyer-index-count {
      font-size: 13px;
      color: var(--muted);
      font-weight: 400;
    }

    .lawyer-index-filter-hint {
      font-size: 12px;
      color: var(--muted);
      font-weight: 400;
    }

    .lawyer-index-pills--scroll {
      flex-wrap: nowrap;
      overflow-x: auto;
      padding-bottom: 4px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }

    .lawyer-index-pills--scroll::-webkit-scrollbar { height: 4px; }
    .lawyer-index-pills--scroll::-webkit-scrollbar-thumb {
      background: var(--line-gold);
      border-radius: 2px;
    }

    .lawyer-index-pills--scroll .lawyer-index-pill { flex-shrink: 0; }

    .lawyer-index-list-body {
      padding: 20px !important;
      background: var(--gold-bg);
    }

    .lawyer-index-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 16px;
    }

    .lawyer-index-card {
      display: flex;
      gap: 18px;
      padding: 20px;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(42,34,24,.04);
      transition: border-color .2s, box-shadow .2s, transform .2s;
    }

    .lawyer-index-card:hover {
      border-color: var(--line-gold);
      box-shadow: 0 6px 20px rgba(42,34,24,.08);
      transform: translateY(-2px);
    }

    .lawyer-index-card-photo {
      flex-shrink: 0;
      width: 96px;
      height: 120px;
      border-radius: 8px;
      border: 2px solid var(--gold);
      background: linear-gradient(160deg, #f0e8d4 0%, #d9c9a0 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .lawyer-index-card-initial {
      font-size: 36px;
      font-weight: 800;
      color: var(--brown-mid);
      opacity: .5;
      line-height: 1;
    }

    .lawyer-index-card-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .lawyer-index-card-body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .lawyer-index-card-head {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 6px;
    }

    .lawyer-index-card-head h4 {
      font-size: 20px;
      font-weight: 800;
      color: var(--brown);
      letter-spacing: 1px;
      margin: 0;
    }

    .lawyer-index-card-head h4 a { color: inherit; }
    .lawyer-index-card-head h4 a:hover { color: var(--crimson); }

    .lawyer-index-card-rec {
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      background: linear-gradient(135deg, var(--crimson), #a83245);
      color: #fff;
      border-radius: 4px;
      letter-spacing: 1px;
    }

    .lawyer-index-card-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px 10px;
      font-size: 13px;
      color: var(--ink-soft);
      margin-bottom: 4px;
    }

    .lawyer-index-card-city {
      font-weight: 700;
      color: var(--brown);
    }

    .lawyer-index-card-line .lawyer-index-card-title::before {
      content: '·';
      margin-right: 10px;
      color: var(--muted);
      font-weight: 400;
    }

    .lawyer-index-card-title { color: var(--ink-soft); }

    .lawyer-index-card-firm {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .lawyer-index-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 14px;
      flex: 1;
    }

    .lawyer-index-tag {
      font-size: 12px;
      line-height: 1.4;
      padding: 4px 10px;
      border-radius: 4px;
      border: 1px solid var(--line-gold);
      background: var(--gold-pale);
      color: var(--brown-mid);
      font-weight: 600;
    }

    .lawyer-index-card-spec {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 14px;
      flex: 1;
    }

    .lawyer-index-card-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: auto;
      padding-top: 4px;
    }

    .lawyer-index-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 8px 12px !important;
      font-size: 13px !important;
      font-weight: 700;
      text-align: center;
      border-radius: 6px;
    }

    .lawyer-index-page .col-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
    }

    .lawyer-index-pagination {
      margin-top: 8px;
      padding: 16px 0 0;
      text-align: center;
    }

    .lawyer-index-pagination .pagination {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
    }

    .lawyer-index-pagination li a,
    .lawyer-index-pagination li span {
      display: inline-block;
      min-width: 36px;
      padding: 6px 12px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--card);
      color: var(--brown);
    }

    .lawyer-index-pagination li.active span {
      background: var(--gold);
      border-color: var(--gold-dark);
      font-weight: 700;
    }

    .lawyer-index-empty {
      padding: 40px 24px;
      text-align: center;
      color: var(--muted);
      line-height: 1.85;
    }

    .lawyer-index-empty a { color: var(--crimson); font-weight: 600; }

    .lawyer-index-charges { margin-top: 20px; }

    .lawyer-index-aside .col-box { margin-bottom: 16px; }

    .lawyer-index-steps {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .lawyer-index-steps li {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px dashed var(--line);
    }

    .lawyer-index-steps li:last-child { border-bottom: none; }

    .lawyer-index-step-num {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gold);
      color: var(--brown);
      font-weight: 800;
      font-size: 12px;
      border: 1px solid var(--gold-dark);
    }

    .lawyer-index-steps strong {
      display: block;
      font-size: 14px;
      color: var(--brown);
      margin-bottom: 4px;
    }

    .lawyer-index-steps p {
      font-size: 12px;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    .lawyer-index-service-item {
      display: flex;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px dashed var(--line);
    }

    .lawyer-index-service-item:last-child { border-bottom: none; }

    .lawyer-index-service-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--gold);
      color: var(--brown);
      font-weight: 800;
      font-size: 12px;
      border: 1px solid var(--gold-dark);
    }

    .lawyer-index-service-item strong {
      display: block;
      font-size: 13px;
      color: var(--brown);
      margin-bottom: 2px;
    }

    .lawyer-index-service-item p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.55;
    }

    .lawyer-index-faq-item {
      border-bottom: 1px dashed var(--line);
      padding: 10px 0;
    }

    .lawyer-index-faq-item:last-child { border-bottom: none; }

    .lawyer-index-faq-item summary {
      font-size: 13px;
      font-weight: 700;
      color: var(--brown);
      cursor: pointer;
      list-style: none;
    }

    .lawyer-index-faq-item summary::-webkit-details-marker { display: none; }

    .lawyer-index-faq-item p {
      margin-top: 8px;
      font-size: 12px;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    .lawyer-index-disclaimer {
      font-size: 12px;
      padding: 0 4px;
      margin: 0;
    }

    .channel-article-list li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
    }

    /* 文章列表行：标题 + 右侧昵称/日期 */
    .article-row {
      display: flex;
      align-items: flex-start;
      gap: 12px 16px;
    }

    .article-row-title {
      flex: 1 1 auto;
      min-width: 0;
      color: var(--ink);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .gold-list a.article-row-title:hover {
      color: var(--crimson);
    }

    .article-row-side {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 2px;
      text-align: right;
      max-width: 38%;
    }

    .article-row-author {
      flex: 0 0 auto;
      font-size: 13px;
      color: var(--muted);
      white-space: nowrap;
      line-height: 1.4;
    }

    .article-row > .article-row-author {
      align-self: baseline;
    }

    .channel-article-meta {
      flex-shrink: 0;
      font-size: 13px;
      color: var(--muted);
    }

    .channel-pagination { margin-top: 20px; }

    /* ===== 门户业务页：罪名库 / 案例 / 热线 ===== */
    .portal-hero .lawyer-index-hero-inner { grid-template-columns: 1fr; }
    .portal-stat-link {
      color: var(--gold-dark);
      text-decoration: none;
      font-size: 22px;
      font-weight: 700;
    }

    .portal-stat-link:hover { color: var(--gold); }

    .portal-list-body { padding: 16px 20px 20px !important; }

    .charge-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .charge-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 18px 18px 16px;
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
    }

    .charge-card:hover {
      border-color: rgba(139, 26, 26, .25);
      box-shadow: 0 4px 16px rgba(60, 40, 20, .08);
    }

    .charge-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
    }

    .charge-card-head h4 {
      font-size: 15px;
      font-weight: 700;
      line-height: 1.45;
      color: var(--brown);
    }

    .charge-card-head h4 a { color: inherit; }
    .charge-card-head h4 a:hover { color: var(--crimson); }

    .charge-card-alias {
      flex-shrink: 0;
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 999px;
      background: rgba(184, 134, 11, .12);
      color: var(--gold-dark);
      font-weight: 600;
    }

    .charge-card-alias--lg {
      display: inline-block;
      margin-bottom: 8px;
      font-size: 12px;
      padding: 4px 12px;
    }

    .charge-card-intro {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.65;
      min-height: 42px;
      margin-bottom: 14px;
    }

    .charge-card-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .portal-btn-sm {
      padding: 6px 14px !important;
      font-size: 12px !important;
      min-height: auto !important;
    }

    .case-card-list { display: flex; flex-direction: column; gap: 0; }

    .case-card {
      border-bottom: 1px solid var(--line);
    }

    .case-card:last-child { border-bottom: none; }

    .case-card-link {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 4px;
      text-decoration: none;
      color: inherit;
      transition: background .15s;
    }

    .case-card-link:hover { background: rgba(139, 26, 26, .03); }
    .case-card-link:hover h4 { color: var(--crimson); }

    .case-card-body { flex: 1; min-width: 0; }

    .case-card-body h4 {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 6px;
      color: var(--brown);
    }

    .case-card-summary {
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .case-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px 12px;
      font-size: 12px;
      color: var(--muted);
    }

    .case-card-meta span:not(:last-child)::after {
      content: '·';
      margin-left: 12px;
      color: var(--line);
    }

    .case-card-list--compact .case-card-link { padding: 12px 4px; }
    .case-card-list--compact .case-card-summary { display: none; }

    .portal-result-legend { padding: 12px 20px 16px !important; }

    .portal-result-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
    }

    .portal-result-item:last-child { border-bottom: none; }
    .portal-result-item p { font-size: 12px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

    .hotline-group-box { margin-bottom: 16px; }

    .hotline-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 4px;
      border-bottom: 1px solid var(--line);
    }

    .hotline-card:last-child { border-bottom: none; }

    .hotline-card-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(139, 26, 26, .12), rgba(184, 134, 11, .15));
      position: relative;
    }

    .hotline-card-icon::after {
      content: '☎';
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .hotline-card-body { flex: 1; min-width: 0; }

    .hotline-card-body h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 4px;
    }

    .hotline-card-addr { font-size: 12px; color: var(--muted); line-height: 1.5; }
    .hotline-card-phone { font-size: 13px; color: var(--ink-soft); font-weight: 600; margin-top: 2px; }

    .hotline-card-btn {
      flex-shrink: 0;
      padding: 8px 16px !important;
      font-size: 12px !important;
    }

    .portal-emergency-bar {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .portal-emergency-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: linear-gradient(180deg, #fff, rgba(184, 134, 11, .04));
    }

    .portal-emergency-item strong { font-size: 14px; color: var(--brown); }
    .portal-emergency-item span { font-size: 12px; color: var(--muted); }

    .portal-hotline-tips { padding: 12px 20px 16px !important; }

    .portal-tip-item {
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
    }

    .portal-tip-item:last-child { border-bottom: none; }
    .portal-tip-item strong { display: block; font-size: 13px; color: var(--brown); margin-bottom: 4px; }
    .portal-tip-item p { font-size: 12px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

    .portal-detail-box { margin-bottom: 16px; }

    .portal-detail-body { padding: 24px 28px !important; }

    .portal-detail-head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
    .portal-detail-head h1 { font-size: 22px; color: var(--brown); line-height: 1.4; margin-top: 8px; }

    .portal-detail-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
      font-size: 13px;
      color: var(--muted);
      margin-top: 10px;
    }

    .portal-detail-meta a { color: var(--crimson); font-weight: 600; }

    .portal-detail-section { margin-bottom: 22px; }

    .portal-detail-section h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 10px;
      padding-left: 10px;
      border-left: 3px solid var(--gold);
    }

    .portal-detail-text {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.8;
    }

    .rich-text p {
      margin: 0 0 12px;
    }

    .rich-text p:last-child {
      margin-bottom: 0;
    }

    .portal-detail-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0 16px;
    }

    .portal-detail-lawyer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding: 16px;
      border-radius: 8px;
      background: rgba(184, 134, 11, .06);
      border: 1px solid rgba(184, 134, 11, .2);
      margin-top: 8px;
    }

    .portal-detail-lawyer strong { display: block; font-size: 13px; color: var(--brown); margin-bottom: 4px; }
    .portal-detail-lawyer p { font-size: 13px; color: var(--ink-soft); margin: 0; }

    .portal-detail-lawyer-actions { display: flex; gap: 8px; flex-wrap: wrap; }

    .portal-detail-disclaimer { margin-top: 20px; font-size: 12px; }

    .lawyer-index-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lawyer-index-grid--compact .lawyer-index-card { padding: 14px; }

    .gold-list a.is-current { color: var(--crimson); font-weight: 700; }

    @media (max-width: 768px) {
      .charge-card-grid { grid-template-columns: 1fr; }
      .portal-emergency-bar { grid-template-columns: 1fr; }
      .lawyer-index-grid--compact { grid-template-columns: 1fr; }
      .hotline-card { flex-wrap: wrap; }
      .hotline-card-btn { width: 100%; text-align: center; }
      .portal-detail-body { padding: 18px 16px !important; }
    }