/* =======================================================================
   电脑版（PC）独立前端 —— 红色维权门户
   导航栏 + 通栏大横幅 + 侧栏多栏布局 + 页脚
   ======================================================================= */
:root {
  --red: #c1121f;
  --red-dark: #8c0d17;
  --red-deep: #6e0a13;
  --gold: #cda23a;
  --gold-light: #e6c259;
  --gold-dark: #a9842a;
  --ink: #241413;
  --muted: #74655f;
  --line: #ebdcd6;
  --cream: #fff8f2;
  --page: #f3ebe5;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
    "PingFang SC", "Hiragino Sans GB", sans-serif;
  color: var(--ink);
  background: var(--page);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.serif { font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", STSong, SimSun, serif; }

/* ---------------- 顶部导航栏 ---------------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, #a3111c, #8c0d17);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 800; font-size: 20px; letter-spacing: .5px; }
.nav-brand svg { flex: none; }
.nav-brand .nb-text { max-width: 26em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: #ffe9e6; font-size: 16px; font-weight: 600;
  padding: 10px 16px; border-radius: 8px; transition: all .15s;
  position: relative;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold-light); border-radius: 2px;
}
.nav-links a.nav-cta {
  background: linear-gradient(160deg, #f0c95a, var(--gold-dark));
  color: #3a2a06; font-weight: 800; margin-left: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.nav-links a.nav-cta:hover { background: linear-gradient(160deg, #f7d572, var(--gold)); color: #3a2a06; }

/* ---------------- 通栏大横幅 ---------------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 50% -120px, rgba(230,194,89,.25), transparent 60%),
    linear-gradient(165deg, #5e0a12 0%, #9a0f1c 52%, #720c15 100%);
  color: #fff;
  text-align: center;
  padding: 54px 28px 60px;
  border-bottom: 4px solid var(--gold);
  overflow: hidden;
}
.hero.compact { padding: 46px 28px 78px; }
.hero::before, .hero::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 220px;
  background: radial-gradient(circle at center, rgba(230,194,89,.10), transparent 70%);
  pointer-events: none;
}
.hero::before { left: -60px; }
.hero::after { right: -60px; }
.hero-inner { position: relative; }
.hero-emblem { margin-bottom: 18px; filter: drop-shadow(0 12px 26px rgba(0,0,0,.45)); }
.hero-title {
  font-size: 46px; font-weight: 800; margin: 0 0 22px; letter-spacing: 1px;
  text-shadow: 0 2px 18px rgba(0,0,0,.5); line-height: 1.25;
}
.ribbon {
  position: relative; display: inline-block;
  background: linear-gradient(180deg, #e23b3b 0%, #b3121b 100%);
  color: #fff8e7; font-size: 22px; font-weight: 800; letter-spacing: 6px;
  padding: 13px 46px; margin-bottom: 36px;
  border: 1.5px solid var(--gold-light); border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
}
.ribbon::before, .ribbon::after { content: ""; position: absolute; top: 0; width: 15px; height: 100%; background: var(--red-dark); }
.ribbon::before { left: -14px; clip-path: polygon(0 0,100% 0,100% 100%,0 100%,100% 50%); }
.ribbon::after  { right: -14px; clip-path: polygon(0 0,100% 0,0 100%,100% 50%,0 50%); }

.hero-stats { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.hstat {
  min-width: 220px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(230,194,89,.45);
  border-radius: 16px; padding: 22px 30px;
  backdrop-filter: blur(2px);
}
.hstat .hn { font-size: 40px; font-weight: 800; color: var(--gold-light); font-variant-numeric: tabular-nums; line-height: 1.05; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.hstat .hl { font-size: 16px; color: #f3dcd6; margin-top: 8px; letter-spacing: 1px; }

/* ---------------- 主体：主栏 + 侧栏 ---------------- */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
  padding-top: 38px;
  padding-bottom: 56px;
}
.col-side { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 92px; }

.card {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(110,10,19,.10);
  padding: 26px 28px;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)); }
.card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #f3e7e4; }
.card-head .ic { font-size: 24px; width: 50px; height: 50px; flex: none; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg,#fdeceb,#fbdedd); border: 1px solid #f6cfcd; border-radius: 14px; }
.card-head h2 { margin: 0; font-size: 23px; color: var(--red-dark); font-weight: 800; letter-spacing: .5px; }
.card-head .sub { display: block; font-size: 14px; color: var(--muted); margin-top: 3px; font-weight: 400; }

/* 时间线 */
.timeline { position: relative; margin: 6px 0 0; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 3px; background: #f0d9d6; border-radius: 2px; }
.tl-item { position: relative; margin-bottom: 26px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -24px; top: 4px; width: 14px; height: 14px; background: var(--red); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--red); }
.tl-item:first-child .tl-dot { background: var(--gold-dark); box-shadow: 0 0 0 2px var(--gold-dark); }
.tl-date { color: var(--red-dark); font-weight: 700; font-size: 16px; }
.tl-title { font-size: 19px; font-weight: 800; margin: 3px 0; color: var(--ink); }
.tl-content { font-size: 16px; line-height: 1.85; color: #443; white-space: pre-wrap; }
.vo-badge { display: inline-block; background: #fdecc8; color: #9a6a12; border-radius: 6px; padding: 1px 8px; font-size: 13px; font-weight: 700; margin-left: 8px; vertical-align: middle; }
.login-hint { margin-top: 18px; background: #fbf3f1; border: 1px dashed #e8c4bf; border-radius: 10px; padding: 14px 16px; font-size: 15px; color: #6b4a47; }
.login-hint a { color: var(--red); font-weight: 700; text-decoration: underline; }
.empty { color: var(--muted); text-align: center; padding: 32px 10px; }

/* 滚动名单（侧栏） */
.roll { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.roll-head, .roll-row { display: flex; align-items: center; padding: 11px 14px; font-size: 15px; }
.roll-head { background: linear-gradient(90deg,#8c0d17,#c1121f); color: #fff; font-weight: 700; border-bottom: 2px solid var(--gold-light); }
.roll-row { border-top: 1px solid var(--line); }
.roll-row:nth-child(even) { background: #fdf7f5; }
.rc-name { flex: 0 0 28%; font-weight: 700; color: #2a1410; }
.rc-region { flex: 1 1 auto; color: var(--muted); }
.rc-amount { flex: 0 0 36%; text-align: right; color: var(--red); font-weight: 800; font-variant-numeric: tabular-nums; }
.roll-head .rc-region, .roll-head .rc-amount { color: #ffe7d9; }
.roll-viewport { height: 380px; overflow: hidden; position: relative; }
.roll-track { display: flex; flex-direction: column; animation: roll-scroll 38s linear infinite; }
@keyframes roll-scroll { from { transform: translateY(0);} to { transform: translateY(-50%);} }
.roll:hover .roll-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .roll-track { animation: none; } .roll-viewport { overflow-y: auto; } }

/* 行动卡片 */
.cta { text-align: center; background: linear-gradient(165deg,#fff 0%,var(--cream) 100%); }
.cta::before { display: none; }
.cta h2 { margin: 0 0 6px; font-size: 22px; color: var(--red-dark); font-weight: 800; }
.cta p { margin: 0 0 18px; font-size: 15px; color: var(--muted); }
.btn { display: block; width: 100%; padding: 15px; border-radius: 12px; font-size: 18px; font-weight: 800; text-align: center; border: none; cursor: pointer; margin-bottom: 12px; transition: all .15s; letter-spacing: 1px; }
.btn:last-child { margin-bottom: 0; }
.btn-primary { background: linear-gradient(165deg,#d9242f,#a3121b); color: #fff; border: 1.5px solid var(--gold-light); box-shadow: 0 10px 24px rgba(140,13,23,.4); }
.btn-primary:hover { background: linear-gradient(165deg,#e23b3b,#b3121b); }
.btn-ghost { background: #fff; color: var(--red-dark); border: 1.5px solid #f0d2cf; }
.btn-ghost:hover { background: #fbeeec; }

/* ---------------- 页脚 ---------------- */
.footer { background: #3a0a0e; color: #e9cfcb; margin-top: 10px; border-top: 4px solid var(--gold); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding: 40px 28px 28px; }
.footer h4 { color: var(--gold-light); font-size: 16px; margin: 0 0 12px; }
.footer p, .footer a { font-size: 14px; line-height: 1.9; color: #e3c4c0; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .f-disc { font-size: 13px; color: #d7b4af; line-height: 1.85; }
.f-switch { display: inline-block; margin-top: 6px; padding: 9px 16px; border: 1px solid #7a3b3b; border-radius: 8px; color: #ffd; font-weight: 700; }
.f-switch:hover { background: rgba(255,255,255,.08); text-decoration: none; }
.f-copy { border-top: 1px solid #5a2024; text-align: center; padding: 16px; font-size: 13px; color: #c79a96; }

/* ---------------- 表单页 ---------------- */
.page-wrap { max-width: 920px; margin: 0 auto; padding: 38px 28px 56px; }
.notice { background: #fffaf0; border: 1px solid #f3dca0; color: #8a5a12; font-size: 15px; line-height: 1.8; padding: 14px 18px; border-radius: 12px; margin-bottom: 22px; }
.flash { padding: 13px 16px; border-radius: 10px; font-size: 15px; margin-bottom: 14px; }
.flash.error { background: #fef2f2; color: var(--red); border: 1px solid #f6cfcd; }
.flash.ok { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 26px; }
.field { margin-bottom: 4px; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; font-size: 16px; margin: 18px 0 7px; }
label .req { color: var(--red); }
label .opt { color: var(--muted); font-weight: 400; font-size: 13px; }
input[type=text], input[type=password], input[type=tel], input[type=number], textarea {
  width: 100%; padding: 13px 15px; border: 1px solid #ddc9c4; border-radius: 10px; font-size: 16px; font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(193,18,31,.12); }
textarea { resize: vertical; min-height: 110px; }
input[type=file] { width: 100%; padding: 16px; border: 1.5px dashed var(--red); border-radius: 10px; background: #fbf3f1; font-size: 15px; }
.hint { color: var(--muted); font-size: 13px; margin: 6px 0 0; }
.submit-row { margin-top: 26px; }
.submit-row .btn { font-size: 19px; padding: 16px; }
.links-row { text-align: center; margin-top: 22px; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.links-row a { color: var(--red); font-weight: 700; font-size: 15px; }
.links-row a:hover { text-decoration: underline; }
.disclaimer { background: #faf4f2; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; font-size: 13px; color: var(--muted); line-height: 1.85; margin-top: 22px; }
.contact { text-align: center; font-size: 14px; color: var(--muted); margin-top: 14px; line-height: 1.7; }

/* 公示页 */
.stats-row { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }
.stat { flex: 1; min-width: 180px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; box-shadow: 0 10px 26px rgba(110,10,19,.08); }
.stat .n { font-size: 30px; font-weight: 800; color: var(--red-dark); font-variant-numeric: tabular-nums; }
.stat .l { font-size: 14px; color: var(--muted); margin-top: 4px; }
table.pub { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; font-size: 16px; }
table.pub th, table.pub td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
table.pub th { background: linear-gradient(90deg,#8c0d17,#c1121f); color: #fff; font-weight: 700; }
table.pub tr:nth-child(even) td { background: #fdf7f5; }
table.pub .amount { color: var(--red); font-weight: 800; text-align: right; font-variant-numeric: tabular-nums; }
table.pub tfoot td { background: #f7ece9; font-weight: 800; }

/* 登录 / 成功 居中卡 */
.center-wrap { min-height: calc(100vh - 74px); display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.center-card { width: 100%; max-width: 480px; background: #fff; border-radius: 18px; box-shadow: 0 20px 50px rgba(110,10,19,.2); border: 1px solid var(--line); padding: 40px 38px; }
.center-card .ttl { font-size: 26px; font-weight: 800; color: var(--red-dark); margin: 0 0 8px; text-align: center; }
.center-card .desc { color: var(--muted); text-align: center; margin: 0 0 22px; line-height: 1.7; }
.success-icon { font-size: 64px; text-align: center; }

/* =======================================================================
   电脑版主页 —— 桌面原生布局（数据卡浮起 / 交替时间线 / 双栏区块 / CTA 横幅）
   ======================================================================= */
/* 数据卡横排，向上浮起叠在横幅下沿 */
.stats-band {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: -58px; margin-bottom: 40px; position: relative; z-index: 5;
}
.stat-card {
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--gold);
  border-radius: 16px; box-shadow: 0 18px 44px rgba(110,10,19,.16);
  padding: 26px 28px; text-align: center;
}
.stat-card .sn { font-size: 44px; font-weight: 800; color: var(--red-dark); font-variant-numeric: tabular-nums; line-height: 1; }
.stat-card .sl { font-size: 16px; color: var(--muted); margin-top: 12px; letter-spacing: .5px; }

/* 通栏区块 */
.block {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 14px 36px rgba(110,10,19,.08);
  padding: 34px 38px; margin-bottom: 34px;
}
.block-head { text-align: center; margin-bottom: 30px; }
.block-head h2 { font-size: 28px; color: var(--red-dark); margin: 0; font-weight: 800; letter-spacing: 1px; }
.block-head .deco { width: 66px; height: 4px; background: linear-gradient(90deg, var(--gold-light), var(--gold-dark)); border-radius: 2px; margin: 12px auto 8px; }
.block-head .sub { color: var(--muted); font-size: 15px; margin: 0; }

/* 交替时间线（桌面专属） */
.tl2 { position: relative; max-width: 940px; margin: 0 auto; padding: 6px 0; }
.tl2::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: #f0d9d6; transform: translateX(-50%); }
.tl2-item { position: relative; width: 50%; box-sizing: border-box; margin-bottom: 28px; }
.tl2-item:nth-child(odd) { left: 0; padding-right: 40px; text-align: right; }
.tl2-item:nth-child(even) { left: 50%; padding-left: 40px; text-align: left; }
.tl2-dot { position: absolute; top: 12px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--red); }
.tl2-item:nth-child(odd) .tl2-dot { right: -8px; }
.tl2-item:nth-child(even) .tl2-dot { left: -8px; }
.tl2-item:first-child .tl2-dot { background: var(--gold-dark); box-shadow: 0 0 0 2px var(--gold-dark); }
.tl2-card { display: inline-block; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; box-shadow: 0 8px 20px rgba(110,10,19,.08); max-width: 100%; }
.tl2-date { color: var(--red-dark); font-weight: 700; font-size: 15px; }
.tl2-title { font-size: 18px; font-weight: 800; margin: 3px 0; }
.tl2-content { font-size: 15px; line-height: 1.8; color: #443; white-space: pre-wrap; }

/* 已登记受害者：左地区统计 + 右名单表 */
.victims-grid { display: grid; grid-template-columns: 340px 1fr; gap: 30px; align-items: start; }
.vg-title { font-size: 17px; color: var(--red-dark); font-weight: 800; margin: 0 0 14px; }
.region-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; background: #fff; }
.region-row:hover { border-color: var(--gold); }
.region-row .rg-name { font-weight: 700; }
.region-row .rg-right { text-align: right; }
.region-row .rg-sum { color: var(--red); font-weight: 800; font-variant-numeric: tabular-nums; }
.region-row .rg-count { color: var(--muted); font-size: 13px; }

.names-wrap { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.names-head, .names-row { display: flex; align-items: center; padding: 12px 18px; font-size: 16px; }
.names-head { background: linear-gradient(90deg,#8c0d17,#c1121f); color: #fff; font-weight: 700; border-bottom: 2px solid var(--gold-light); }
.names-row { border-top: 1px solid var(--line); }
.names-row:nth-child(even) { background: #fdf7f5; }
.nc-no { flex: 0 0 56px; color: var(--muted); }
.nc-name { flex: 0 0 24%; font-weight: 700; color: #2a1410; }
.nc-region { flex: 1 1 auto; color: #6b5b55; }
.nc-amount { flex: 0 0 30%; text-align: right; color: var(--red); font-weight: 800; font-variant-numeric: tabular-nums; }
.names-head .nc-region, .names-head .nc-amount, .names-head .nc-no { color: #ffe7d9; }
.names-view { height: 460px; overflow: hidden; position: relative; }
.names-view.auto { height: auto; }                 /* 人少时不滚动，按内容高度显示 */
.names-track { display: flex; flex-direction: column; animation: roll-scroll 42s linear infinite; }
.names-track.static { animation: none; }           /* 人少时关掉滚动动画，避免重复 */
.names-wrap:hover .names-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .names-track { animation: none; } .names-view { overflow-y: auto; } }

/* CTA 横幅（通栏） */
.cta-band { background: linear-gradient(160deg,#a3111c 0%,#7a0c14 100%); border-top: 4px solid var(--gold); color: #fff; padding: 44px 28px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-text h2 { margin: 0 0 6px; font-size: 28px; font-weight: 800; }
.cta-text p { margin: 0; color: #f3dcd6; font-size: 16px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn { width: auto; margin: 0; padding: 15px 28px; font-size: 17px; }

/* ---------------- 往来文书栏目 ---------------- */
.subhero {
  background:
    radial-gradient(700px 320px at 50% -80px, rgba(230,194,89,.22), transparent 60%),
    linear-gradient(165deg, #5e0a12 0%, #9a0f1c 55%, #720c15 100%);
  color: #fff; text-align: center; padding: 40px 28px 44px; border-bottom: 4px solid var(--gold);
}
.subhero h1 { font-size: 36px; margin: 0 0 10px; font-weight: 800; letter-spacing: 1px; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.subhero p { margin: 0; color: #f3dcd6; font-size: 16px; }
.subhero .sh-emblem { margin-bottom: 14px; }

.docs-grid { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; padding: 38px 0 56px; }
.docs-side { position: sticky; top: 92px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; box-shadow: 0 12px 30px rgba(110,10,19,.08); }
.docs-side h3 { margin: 0 0 14px; font-size: 17px; color: var(--red-dark); font-weight: 800; }
.agency-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: 9px; font-size: 15px; }
.agency-row:hover { background: #fbeeec; }
.agency-row .ag-n { background: #f3e3e0; color: var(--red-dark); border-radius: 20px; padding: 1px 10px; font-size: 13px; font-weight: 700; }

.doc-card {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--gold);
  border-radius: 14px; padding: 22px 26px; margin-bottom: 20px;
  box-shadow: 0 12px 30px rgba(110,10,19,.08);
}
.doc-card.t-问询 { border-left-color: #1d4ed8; }
.doc-card.t-申请 { border-left-color: #b45309; }
.doc-card.t-答复 { border-left-color: #15803d; }
.doc-card.t-通知 { border-left-color: #7c3aed; }
.doc-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.doc-badge { font-size: 13px; font-weight: 800; padding: 3px 12px; border-radius: 20px; color: #fff; background: #6b7280; }
.doc-badge.t-问询 { background: #1d4ed8; }
.doc-badge.t-申请 { background: #b45309; }
.doc-badge.t-答复 { background: #15803d; }
.doc-badge.t-通知 { background: #7c3aed; }
.doc-agency { font-weight: 700; color: var(--ink); font-size: 16px; }
.doc-date { color: var(--muted); font-size: 14px; margin-left: auto; }
.doc-title { font-size: 20px; font-weight: 800; margin: 4px 0 8px; color: var(--ink); }
.doc-content { font-size: 16px; line-height: 1.85; color: #443; white-space: pre-wrap; }
.doc-files { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.doc-file { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: #fbf3f1; border: 1px solid #f0d2cf; border-radius: 10px; color: var(--red-dark); font-weight: 700; font-size: 15px; }
.doc-file:hover { background: #f6e3e0; border-color: var(--gold); }
.vo-tag { display: inline-block; background: #fdecc8; color: #9a6a12; border-radius: 6px; padding: 2px 10px; font-size: 13px; font-weight: 700; }

@media (max-width: 1040px) {
  .main-grid { grid-template-columns: 1fr; }
  .col-side { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .hero-title { font-size: 34px; }
  .nav-brand .nb-text { display: none; }
  .stats-band { grid-template-columns: 1fr; margin-top: -40px; }
  .victims-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .docs-side { position: static; }
  .tl2, .tl2-item { width: auto; }
  .tl2::before { left: 9px; }
  .tl2-item { left: 0 !important; width: 100%; padding: 0 0 0 34px !important; text-align: left !important; }
  .tl2-item .tl2-dot { left: 1px !important; right: auto !important; }
  .cta-inner { justify-content: center; text-align: center; }
}

/* ---------------- 嫌疑人照片 ---------------- */
.suspects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; padding: 36px 0 56px; }
.suspect-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px rgba(110,10,19,.08); }
.suspect-photos { display: flex; overflow-x: auto; background: #111; min-height: 210px; }
.suspect-photos img { height: 230px; width: auto; object-fit: cover; flex: none; }
.suspect-photos .no-photo { height: 210px; width: 100%; display: flex; align-items: center; justify-content: center; color: #999; background: #f1f1f1; font-size: 15px; }
.suspect-body { padding: 14px 18px 18px; }
.suspect-name { font-size: 20px; font-weight: 800; color: var(--ink); }
.suspect-alias { color: var(--red); font-size: 14px; font-weight: 700; margin-left: 6px; }
.suspect-desc { font-size: 15px; color: #555; margin-top: 8px; line-height: 1.75; white-space: pre-wrap; }
