:root {
  --page: #f4f1eb;
  --paper: #fffcf6;
  --paper-2: #f9f5ed;
  --ink: #1c252b;
  --muted: #65727a;
  --line: #d9d0c3;
  --line-strong: #b9aa96;
  --accent: #1f5d70;
  --accent-2: #9b5d32;
  --accent-soft: #e2eef1;
  --warning-soft: #f5eadc;
  --shadow: 0 24px 70px rgba(39, 45, 49, 0.14);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(31, 93, 112, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(31, 93, 112, 0.06) 1px, transparent 1px),
    var(--page);
  background-size: 44px 44px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  overflow-x: hidden;
}

.page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.notice,
.panel,
.closing {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  max-width: 100%;
}

.notice {
  border-top: 6px solid var(--accent);
  padding: 34px;
}

.notice-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding-top: 28px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
}

h1,
h2,
p,
dl,
dt,
dd {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(31, 93, 112, 0.24);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(155, 93, 50, 0.14);
}

.lead {
  max-width: 820px;
  margin-top: 24px;
  color: #3e4b53;
  font-size: 1.04rem;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.summary-grid dl {
  padding: 18px 20px;
}

.summary-grid dl + dl {
  border-left: 1px solid var(--line);
}

.summary-grid dt,
.panel-index {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-grid dd {
  margin-top: 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.panel {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 252, 246, 0.96);
}

.accent-panel {
  background: linear-gradient(180deg, var(--warning-soft), var(--paper));
  border-color: var(--line-strong);
}

.panel-index {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent-2);
}

.panel h2 {
  font-size: 1.34rem;
  line-height: 1.32;
  font-weight: 800;
}

.panel p {
  margin-top: 14px;
  color: #48555d;
  font-size: 0.98rem;
  line-height: 1.86;
  overflow-wrap: anywhere;
}

.closing {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  padding: 20px 24px;
  background: #17252c;
  color: #f8f1e7;
  border-color: #17252c;
}

.closing p {
  max-width: 730px;
  color: rgba(248, 241, 231, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

.closing strong {
  color: #f4c16f;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 0.58s ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .notice-header,
  .summary-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .summary-grid dl + dl {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  body {
    padding: 20px 24px;
  }

  .page {
    width: 100%;
    padding: 0;
  }

  .notice {
    padding: 18px;
  }

  h1 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    line-height: 1.16;
    word-break: break-all;
  }

  .notice,
  .panel,
  .closing,
  .notice p,
  .panel p,
  .summary-grid dd {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .notice-meta,
  .closing {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-badge {
    width: fit-content;
  }

  .panel {
    min-height: auto;
    padding: 20px;
  }

  .lead,
  .panel p,
  .closing p {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
