:root {
  color-scheme: light;
  --red: #943c48;
  --ink: #263b39;
  --muted: #61716d;
  --line: #d8e2dc;
  --green: #32695e;
  --gold: #ad8951;
  --paper: #fcfdfb;
}
* { box-sizing: border-box; letter-spacing: 0; }
body { margin: 0; color: var(--ink); background: #f1f5f2; font-family: "Microsoft YaHei", "PingFang SC", sans-serif; line-height: 1.8; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
a, button, input, select { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid #287e9b; outline-offset: 4px; }
header { background: var(--red); color: white; border-top: 4px solid #7d303b; }
.brand { max-width: 1120px; margin: auto; padding: 23px 36px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand strong { font-size: 21px; font-weight: 600; }
.brand span { color: #f0e2df; font-size: 12px; }
nav { display: flex; gap: 32px; max-width: 1120px; margin: auto; padding: 0 36px; background: #fcfdfb; border-bottom: 1px solid var(--line); color: var(--muted); }
nav a { padding: 14px 0 12px; min-height: 50px; border-bottom: 3px solid transparent; font-size: 14px; }
nav a:hover { color: var(--red); }
nav a[aria-current=page] { color: var(--red); border-color: var(--red); font-weight: 700; }
main { min-height: 70vh; max-width: 1120px; margin: auto; background: var(--paper); }
.wrap { max-width: 1044px; margin: auto; padding: 44px 36px; }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--green); margin: 0 0 14px; }
.eyebrow::before { content: ""; display: inline-block; flex: 0 0 20px; height: 3px; background: var(--gold); }
h1 { font-family: "Noto Serif CJK SC", "Songti SC", SimSun, serif; font-size: 32px; line-height: 1.6; margin: 0 0 18px; overflow-wrap: anywhere; font-weight: 700; }
h2 { font-size: 22px; line-height: 1.6; margin: 0 0 18px; overflow-wrap: anywhere; }
h3 { font-size: 17px; line-height: 1.7; margin: 0 0 8px; overflow-wrap: anywhere; }
.lead { font-size: 15px; line-height: 1.95; color: var(--muted); max-width: 780px; }
.prose { max-width: 780px; }
.prose p { font-size: 16px; line-height: 2.15; text-align: justify; overflow-wrap: anywhere; margin: 0 0 24px; }
.prose h2 { color: var(--green); }
.band { background: #eef4f0; }
.figure, .overview-photo { position: relative; margin: 28px 0; padding: 10px; border: 1px solid #cfdbd3; background: #eff4f0; }
.figure::before, .overview-photo::before { content: ""; position: absolute; width: 20px; height: 20px; left: 4px; top: 4px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); pointer-events: none; }
.figure img { width: 100%; max-height: 540px; object-fit: contain; display: block; }
.figure figcaption { font-size: 12px; color: var(--muted); margin-top: 8px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.action { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 10px 18px; background: var(--red); color: white; border: 1px solid var(--red); border-radius: 4px; font-size: 14px; text-align: center; }
.action:hover { background: #80333f; }
.secondary { background: #eff5f1; color: var(--green); border-color: #c0d5c9; }
.secondary:hover { background: #e3eee7; }
.filterbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 32px 0 18px; padding: 20px 0; border-block: 1px solid var(--line); flex-wrap: wrap; }
.tabs { display: flex; gap: 24px; }
.tabs button { border: 0; background: transparent; padding: 9px 0; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; min-height: 44px; font-size: 14px; white-space: nowrap; }
.tabs button[aria-pressed=true] { color: var(--red); border-color: var(--red); font-weight: bold; }
input[type=search] { width: 100%; max-width: 310px; min-height: 46px; border: 1px solid #bdcfc4; border-radius: 4px; padding: 10px 14px; background: white; color: var(--ink); font-size: 14px; }
input::placeholder { color: #718079; }
.count { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); margin: 0 0 18px; }
.count::after { content: ""; height: 1px; background: var(--line); flex: 1; max-width: 60px; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.card { position: relative; padding: 22px; border: 1px solid var(--line); border-radius: 5px; background: white; display: flex; flex-direction: column; min-height: 238px; transition: border-color .15s, background .15s; }
.card::before { content: ""; position: absolute; left: 22px; top: 0; width: 30px; height: 3px; background: var(--green); }
.card:nth-child(3n+2)::before { background: var(--red); }
.card:nth-child(3n)::before { background: var(--gold); }
.card:hover { border-color: #7a9b8e; background: #f7faf7; }
.card small { color: var(--green); font-size: 12px; margin-bottom: 13px; }
.card h3 { font-size: 16px; }
.card p { font-size: 13px; line-height: 1.9; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin: 8px 0 20px; }
.card .more { margin-top: auto; padding-top: 13px; border-top: 1px solid #edf1eb; color: var(--red); font-size: 13px; }
.breadcrumbs { font-size: 13px; color: var(--green); margin-bottom: 24px; }
.breadcrumbs a { border-bottom: 1px solid #b6cbbf; padding-bottom: 3px; }
.badge { font-size: 12px; display: inline-block; background: #eaf3ed; color: var(--green); border-left: 3px solid var(--gold); padding: 4px 10px; margin-bottom: 18px; }
article.wrap:not(.overview-article):has(>.badge) { max-width: 876px; }
article.wrap>.badge+h1 { padding-bottom: 25px; border-bottom: 1px solid var(--line); margin-bottom: 30px; }
.source { border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); font-size: 12px; overflow-wrap: anywhere; line-height: 1.9; }
.empty { padding: 50px 0; text-align: center; color: var(--muted); }
body>footer { position: relative; max-width: 1120px; margin: auto; border-top: 3px double #c4d5c9; padding: 26px 24px; text-align: center; color: var(--muted); background: var(--paper); font-size: 12px; }
body>footer::before { content: ""; width: 7px; height: 7px; background: var(--gold); position: absolute; left: calc(50% - 4px); top: -5px; transform: rotate(45deg); outline: 6px solid var(--paper); }
.overview-article { max-width: 864px; padding-top: 40px; padding-bottom: 48px; }
.overview-article h1 { margin-bottom: 26px; }
.overview-photo { margin: 0 0 32px; }
.overview-photo img { width: 100%; height: auto; display: block; aspect-ratio: 3/2; }
.overview-article section { margin-top: 38px; }
.overview-article section h2 { font-size: 21px; padding: 14px 18px; border-block: 1px solid #d6e1d9; border-left: 3px solid var(--green); background: #edf4ef; }
.overview-article h3 { color: var(--red); margin: 24px 0 10px; }
.overview-article .closing { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.tier { display: grid; grid-template-columns: 70px 1fr; gap: 24px; border-top: 1px solid var(--line); padding: 30px 0; }
.number { color: var(--red); font-size: 46px; font-family: Georgia,serif; line-height: 1.3; }
.tier:nth-child(2) .number { color: var(--green); }
.tier p { color: var(--muted); margin: 4px 0 18px; }
.links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.links a { background: white; border-bottom: 1px solid #d5e1d8; padding: 14px; font-size: 14px; border-radius: 3px; }
.links a:hover { color: var(--red); }
iframe { width: 100%; height: 75vh; border: 1px solid var(--line); }
.hero { position: relative; min-height: 360px; display: flex; align-items: end; background: #294346; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .wrap { position: relative; color: white; background: #263b39b0; width: 100%; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); padding: 24px 0; margin-bottom: 30px; }
.stats div { padding: 0 16px; border-left: 1px solid var(--line); }
.stats b { display: block; color: var(--red); font-size: 26px; white-space: nowrap; }
.stats span { font-size: 12px; color: var(--muted); }
.sections { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 32px; }
.sections article { padding: 20px 0; border-bottom: 1px solid var(--line); }
@media(max-width:960px) { .cards { grid-template-columns: repeat(2,minmax(0,1fr)); } .filterbar input { max-width: none; } }
@media(max-width:700px) {
  .brand { padding: 18px 20px; }.brand strong { font-size: 19px; }.brand span { display: none; }
  nav { padding: 0 20px; gap: 24px; } nav a { font-size: 13px; }
  .wrap { padding: 28px 20px; } h1 { font-size: 26px; } h2 { font-size: 20px; }
  .lead { font-size: 14px; }.prose p { font-size: 16px; line-height: 2.05; }
  .cards { grid-template-columns: 1fr; gap: 14px; }.card { min-height: 0; padding: 20px; }.card p { -webkit-line-clamp: 2; }
  .filterbar { display: block; margin-top: 24px; padding: 12px 0 18px; }.tabs { justify-content: space-between; gap: 8px; margin-bottom: 14px; }.tabs button { font-size: 13px; }
  .overview-article section h2 { font-size: 19px; padding: 12px 14px; }.overview-article section { margin-top: 28px; }
  .tier { grid-template-columns: 42px 1fr; gap: 14px; }.number { font-size: 34px; }.links { grid-template-columns: 1fr; }
  .stats b { font-size: 17px; }.stats div { padding: 0 6px; }.sections { grid-template-columns: 1fr; }
}
@media(prefers-reduced-motion:reduce) { * { transition: none !important; } }
