@charset "UTF-8";
/* ==========================================================================
   青年视角 · 全领域新闻知识库 —— 人文杂志质感主题
   墨青主色（理性深度） · 暖琥珀点睛（青年锐评） · 米白纸面（长阅读）
   ========================================================================== */

:root {
  /* 纸面层级 */
  --paper: #FAF8F3;          /* 页面米白底 */
  --paper-2: #F2EFE7;        /* 区块浅灰底 */
  --card: #FFFFFF;
  --line: #E5E0D5;           /* 边框 */
  --line-2: #D6D0C3;

  /* 三级灰阶文字 */
  --ink: #1C2321;            /* 主文 */
  --ink-2: #4E5A56;          /* 次文 */
  --ink-3: #8B918C;          /* 辅助 */

  /* 墨青主色 */
  --teal: #1F4A47;
  --teal-2: #2F6B64;
  --teal-3: #143734;
  --teal-soft: #E7EEED;

  /* 暖琥珀点睛 */
  --amber: #B5823C;
  --amber-2: #C99A4E;
  --amber-soft: #F8F0E2;
  --amber-line: #E8D6B8;

  /* 语义色（低饱和） */
  --major: #A8443A;
  --major-soft: #F8EBE9;
  --major-line: #E8CFCB;
  --important: #B5823C;
  --important-soft: #F8F0E2;
  --normal: #4C7A5A;
  --normal-soft: #EAF1EB;

  --shadow-sm: 0 1px 2px rgba(28, 35, 33, .05);
  --shadow-md: 0 4px 18px rgba(28, 35, 33, .08);
  --shadow-lift: 0 8px 28px rgba(28, 35, 33, .11);

  --radius: 10px;
  --radius-sm: 6px;
  --maxw: 1160px;

  --font: "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC",
          "Noto Sans SC", "Microsoft YaHei", "微软雅黑", -apple-system,
          BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --read: 1.85;              /* 正文行高 */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.7;
  letter-spacing: .2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 极淡纸纹：细网格，避免纯白的空洞感 */
  background-image:
    linear-gradient(rgba(28, 35, 33, .014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 35, 33, .014) 1px, transparent 1px);
  background-size: 32px 32px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }

/* ===================== 顶部：刊物报头 ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 243, .96);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 18px; padding: 13px 18px; }

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 4px;
  background: var(--teal); color: #F5F2EA;
  font-weight: 500; font-size: 20px; letter-spacing: 0;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.brand-text strong {
  font-size: 18px; font-weight: 600; color: var(--teal-3);
  letter-spacing: .5px; white-space: nowrap;
}
.brand-text small {
  color: var(--ink-3); font-size: 11.5px; letter-spacing: 1.2px;
  text-transform: none;
}

.header-search { flex: 1; display: flex; gap: 8px; max-width: 420px; margin-left: auto; }
.header-search input {
  flex: 1; min-width: 0; padding: 8px 13px;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--card); color: var(--ink); font-size: 13.5px; outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.header-search input:focus {
  border-color: var(--teal-2); box-shadow: 0 0 0 3px rgba(47, 107, 100, .1);
}
.header-search button {
  padding: 8px 17px; border: 1px solid var(--teal); border-radius: var(--radius-sm);
  background: var(--teal); color: #F5F2EA; font-weight: 500; font-size: 13.5px;
  letter-spacing: .5px; transition: background .18s;
}
.header-search button:hover { background: var(--teal-2); border-color: var(--teal-2); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2);
  border-radius: 5px; font-size: 17px; padding: 5px 11px; color: var(--ink-2);
}

.site-nav { border-top: 1px solid var(--line); background: transparent; }
.nav-inner { display: flex; gap: 2px; overflow-x: auto; padding: 0 10px; scrollbar-width: thin; }
.nav-inner a {
  padding: 11px 15px; white-space: nowrap; font-size: 14.5px; font-weight: 500;
  color: var(--ink-2); border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s; letter-spacing: .4px;
}
.nav-inner a:hover { color: var(--teal); }
.nav-inner a.active { color: var(--teal); border-bottom-color: var(--amber); font-weight: 600; }

/* 更新条：弱化，仅保留时间 */
.update-strip { background: var(--paper-2); border-top: 1px solid var(--line); }
.update-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  padding: 6px 18px; font-size: 12px; color: var(--ink-3); letter-spacing: .3px;
}
.update-inner b { color: var(--ink-2); font-weight: 600; }
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--normal);
  display: inline-block; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(76,122,90,.35); }
  50% { box-shadow: 0 0 0 5px rgba(76,122,90,0); }
}
.sep { color: var(--line-2); }
.c-major { color: var(--major); font-weight: 600; }

/* ===================== 主体 ===================== */
main { padding: 26px 0 56px; min-height: 70vh; }
.loading { text-align: center; padding: 90px 20px; color: var(--ink-3); font-size: 14px; letter-spacing: 1px; }

.page-head { margin: 4px 0 18px; padding-bottom: 12px; border-bottom: 2px solid var(--teal); }
.page-head h1 { font-size: 24px; font-weight: 600; letter-spacing: 1px; color: var(--teal-3); }
.page-head .sub { color: var(--ink-3); font-size: 13px; margin-top: 3px; }

/* ===================== 第一屏：今日头条 · 青年锐评 ===================== */
.focus-hero { margin-bottom: 34px; }
.focus-label {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.focus-label .kicker {
  font-size: 12px; letter-spacing: 2.5px; color: var(--amber);
  font-weight: 600; text-transform: uppercase;
}
.focus-label .rule { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line-2), transparent); }

.focus-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden;
  transition: box-shadow .2s;
}
.focus-card:hover { box-shadow: var(--shadow-lift); }
.focus-card + .focus-card { margin-top: 18px; }

/* 左：事实 */
.focus-facts { padding: 26px 28px; border-right: 1px solid var(--line); }
.focus-facts .fk {
  display: inline-block; font-size: 11.5px; letter-spacing: 1.5px;
  color: var(--ink-3); margin-bottom: 10px;
}
.focus-facts h2 {
  font-size: 27px; line-height: 1.42; font-weight: 600; color: var(--teal-3);
  letter-spacing: .3px; margin-bottom: 14px;
}
.focus-facts .lede {
  font-size: 15.5px; line-height: var(--read); color: var(--ink-2);
  padding-left: 14px; border-left: 3px solid var(--teal-soft);
  margin-bottom: 16px;
}
.focus-meta {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 12px; color: var(--ink-3); padding-top: 12px; border-top: 1px solid var(--line);
}
.focus-meta .src { color: var(--teal); font-weight: 600; }

/* 右：锐评 */
.focus-commentary {
  padding: 26px 28px; background: var(--amber-soft);
  position: relative;
}
.focus-commentary::before {
  content: "青年锐评"; position: absolute; top: 0; right: 0;
  background: var(--amber); color: #FFFBF4;
  font-size: 11.5px; letter-spacing: 1.5px; padding: 4px 12px;
  border-bottom-left-radius: 8px;
}
.focus-commentary .cm-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
  font-size: 13px; color: var(--amber); font-weight: 600; letter-spacing: 1px;
}
.focus-commentary .cm-body {
  font-size: 15px; line-height: var(--read); color: var(--ink);
  white-space: pre-wrap; text-align: justify;
}
.focus-commentary .cm-body p { margin-bottom: .7em; }
.focus-commentary .cm-sign {
  margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--amber-line);
  font-size: 12px; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}

/* ===================== 标签 ===================== */
.tag-chip {
  display: inline-block; font-size: 11.5px; padding: 2px 9px; border-radius: 3px;
  background: var(--teal-soft); color: var(--teal); border: 1px solid #D5E3E1;
  letter-spacing: .4px; cursor: pointer; transition: background .18s, color .18s;
}
.tag-chip:hover { background: var(--teal); color: #F5F2EA; }
.tag-chip.amber { background: var(--amber-soft); color: var(--amber); border-color: var(--amber-line); }
.tag-chip.amber:hover { background: var(--amber); color: #FFFBF4; }
.tag-chip.active { background: var(--amber); color: #FFFBF4; border-color: var(--amber); }

.tag-bar {
  display: flex; flex-wrap: wrap; gap: 7px; align-items: center;
  padding: 11px 14px; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 16px;
}
.tag-bar .tb-label { font-size: 12px; color: var(--ink-3); letter-spacing: 1px; margin-right: 2px; }

/* ===================== 第二屏：热点观察 ===================== */
.section { margin-bottom: 34px; }
.block-title {
  display: flex; align-items: baseline; gap: 11px; margin-bottom: 15px;
  padding-bottom: 9px; border-bottom: 1px solid var(--line);
}
.block-title .bt-main {
  font-size: 19px; font-weight: 600; color: var(--teal-3); letter-spacing: .8px;
}
.block-title .bt-sub { font-size: 12.5px; color: var(--ink-3); }
.block-title .bt-mark {
  width: 4px; height: 17px; background: var(--amber); border-radius: 1px; flex: 0 0 auto;
  align-self: center;
}

/* 错落卡片布局：首条占满宽，其余两列 */
.obs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.obs-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.obs-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--line-2); }
.obs-card.wide { grid-column: 1 / -1; }

.obs-head { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; flex-wrap: wrap; }
.obs-cat {
  font-size: 11.5px; color: var(--teal); background: var(--teal-soft);
  border: 1px solid #D5E3E1; padding: 1px 8px; border-radius: 3px; letter-spacing: .5px;
}
.obs-src { font-size: 11.5px; color: var(--ink-3); }
.obs-title {
  font-size: 17px; font-weight: 600; line-height: 1.5; color: var(--ink); margin-bottom: 9px;
}
.obs-card:hover .obs-title { color: var(--teal); }
.obs-sum {
  font-size: 14px; line-height: 1.75; color: var(--ink-2); margin-bottom: 13px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
/* 短评：琥珀引用缩进 */
.obs-take {
  position: relative; padding: 11px 14px 11px 16px; margin-bottom: 10px;
  background: var(--amber-soft); border-left: 3px solid var(--amber);
  border-radius: 0 5px 5px 0;
}
.obs-take .tk-label {
  font-size: 11px; color: var(--amber); font-weight: 600; letter-spacing: 1.2px;
  display: block; margin-bottom: 4px;
}
.obs-take .tk-text { font-size: 14px; line-height: 1.75; color: var(--ink); }
/* 群体影响提示 */
.obs-impact {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 12.8px; line-height: 1.7; color: var(--ink-2);
  background: var(--paper-2); border-radius: 5px; padding: 9px 12px;
}
.obs-impact .im-label {
  flex: 0 0 auto; font-size: 11px; color: var(--teal); font-weight: 600;
  letter-spacing: .8px; padding-top: 1px;
}
.obs-foot { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-top: 11px; }

/* ===================== 第三屏：分领域归档 ===================== */
.dom-block { margin-bottom: 20px; }
.dom-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 11px;
}
.dom-head .dh-name {
  font-size: 16px; font-weight: 600; color: var(--teal-3); letter-spacing: 1px;
  padding-left: 10px; border-left: 3px solid var(--teal);
}
.dom-head .dh-count { font-size: 12px; color: var(--ink-3); }
.dom-head .dh-rule { flex: 1; height: 1px; background: var(--line); }

.dom-list { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dom-item {
  padding: 13px 18px; border-bottom: 1px solid var(--line); cursor: pointer;
  transition: background .18s;
}
.dom-item:last-child { border-bottom: none; }
.dom-item:hover { background: var(--paper-2); }
.dom-item .di-title { font-size: 15px; font-weight: 500; line-height: 1.55; color: var(--ink); }
.dom-item:hover .di-title { color: var(--teal); }
.dom-item .di-note {
  font-size: 13.2px; line-height: 1.72; color: var(--ink-2); margin-top: 5px;
  padding-left: 12px; border-left: 2px solid var(--amber-line);
}
.dom-item .di-meta {
  display: flex; flex-wrap: wrap; gap: 8px; font-size: 11.5px;
  color: var(--ink-3); margin-top: 6px;
}

/* ===================== 通用卡片 ===================== */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}

.toolbar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 14px; }
.toolbar .grow { flex: 1; }
.btn {
  padding: 7px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--card); color: var(--ink-2); font-size: 13px; font-weight: 500;
  transition: all .18s;
}
.btn:hover { border-color: var(--teal-2); color: var(--teal); }
.btn.active { background: var(--teal); border-color: var(--teal); color: #F5F2EA; }

select, input[type="date"] {
  padding: 7px 11px; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--card); color: var(--ink); font-size: 13.5px; outline: none;
}
select:focus, input[type="date"]:focus { border-color: var(--teal-2); }

/* ===================== 新闻列表（通用） ===================== */
.news-list { display: grid; gap: 2px; }
.news-item {
  display: flex; gap: 14px; padding: 13px 18px; align-items: flex-start; cursor: pointer;
  border-bottom: 1px solid var(--line); transition: background .16s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover { background: var(--paper-2); }
.news-main { flex: 1; min-width: 0; }
.news-title { font-size: 15.2px; font-weight: 500; line-height: 1.6; }
.news-item:hover .news-title { color: var(--teal); }
.news-sum {
  color: var(--ink-2); font-size: 13.4px; line-height: 1.72; margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.news-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  margin-top: 7px; font-size: 12px; color: var(--ink-3);
}
.news-meta .dot { color: var(--line-2); }
.news-meta .source { color: var(--teal); font-weight: 500; }
.score-pill { font-weight: 600; font-size: 11.5px; }
.score-pill.major { color: var(--major); }
.score-pill.important { color: var(--important); }
.score-pill.normal { color: var(--normal); }

.badge {
  display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: 3px; line-height: 1.5; letter-spacing: .3px;
}
.badge.major { color: var(--major); background: var(--major-soft); border: 1px solid var(--major-line); }
.badge.important { color: var(--important); background: var(--important-soft); border: 1px solid var(--amber-line); }
.badge.normal { color: var(--normal); background: var(--normal-soft); border: 1px solid #CFE0D4; }

/* ===================== 置顶（兼容旧结构） ===================== */
.pinned-block { margin-bottom: 28px; }
.pinned-block .block-title {
  display: flex; align-items: center; gap: 9px; font-size: 17px;
  font-weight: 600; margin-bottom: 13px; color: var(--teal-3);
}
.pinned-block .block-title .tag {
  font-size: 11.5px; font-weight: 600; color: var(--amber); background: var(--amber-soft);
  padding: 2px 9px; border-radius: 3px; border: 1px solid var(--amber-line);
}
.pinned-list { display: grid; gap: 11px; }
.pinned-item {
  display: flex; gap: 14px; align-items: flex-start; background: var(--card);
  border: 1px solid var(--line); border-left: 3px solid var(--teal);
  border-radius: var(--radius); padding: 15px 18px; box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s; cursor: pointer;
}
.pinned-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pinned-rank { flex: 0 0 auto; font-size: 21px; font-weight: 600; color: var(--amber); line-height: 1; }
.pinned-body { min-width: 0; flex: 1; }
.pinned-body h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 5px; line-height: 1.5; }
.pinned-body .sum {
  color: var(--ink-2); font-size: 13.5px; line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ===================== 领域速览 ===================== */
.domain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.domain-card {
  padding: 15px 17px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s;
}
.domain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.domain-card .dc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.domain-card .dc-name { font-size: 15px; font-weight: 600; color: var(--teal-3); letter-spacing: .5px; }
.domain-card .dc-count { font-size: 11.5px; color: var(--ink-3); }
.domain-card ul { list-style: none; display: grid; gap: 7px; }
.domain-card li {
  font-size: 13.2px; color: var(--ink-2); line-height: 1.55; cursor: pointer;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.domain-card li:hover { color: var(--teal); }
.domain-card .dc-more {
  font-size: 12px; color: var(--amber); margin-top: 10px; cursor: pointer; display: inline-block;
}

/* ===================== 统计（弱化处理） ===================== */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 24px; }
.stat-card { text-align: center; padding: 14px 10px; }
.stat-card .num { font-size: 24px; font-weight: 600; color: var(--teal); }
.stat-card .lbl { font-size: 12px; color: var(--ink-3); margin-top: 2px; letter-spacing: .5px; }
.stat-card .num.major { color: var(--major); }
.stat-card .num.important { color: var(--important); }

/* ===================== 热榜 ===================== */
.hot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.hot-panel { padding: 16px 18px; }
.hot-panel h3 {
  font-size: 15px; font-weight: 600; margin-bottom: 11px; display: flex;
  align-items: center; gap: 8px; color: var(--teal-3);
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.hot-panel ol { list-style: none; display: grid; gap: 8px; }
.hot-panel li {
  display: flex; gap: 10px; font-size: 13.4px; color: var(--ink-2);
  align-items: baseline; line-height: 1.6;
}
.hot-panel li .rk {
  flex: 0 0 auto; font-weight: 600; color: var(--ink-3); font-size: 12px; min-width: 15px;
}
.hot-panel li:nth-child(-n+3) .rk { color: var(--amber); }
.hot-panel li a:hover { color: var(--teal); }

/* ===================== 归档 ===================== */
.archive-groups { display: grid; gap: 22px; }
.archive-group h3 {
  font-size: 15px; font-weight: 600; margin-bottom: 11px; color: var(--teal-3);
  padding-left: 10px; border-left: 3px solid var(--teal); letter-spacing: .5px;
}
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.arch-day {
  padding: 10px 12px; text-align: center; cursor: pointer;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.arch-day:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.arch-day .d { font-size: 13.5px; font-weight: 600; }
.arch-day .n { font-size: 11.5px; color: var(--ink-3); }

/* ===================== 简报 ===================== */
.digest-list { display: grid; gap: 18px; }
.digest-card { padding: 24px 26px; }
.digest-card h3 {
  font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--teal-3); letter-spacing: .5px;
}
.digest-card .top { color: var(--ink-3); font-size: 13px; }
.digest-card .news-item { padding: 13px 4px; border-bottom: 1px solid var(--line); }
.digest-card .news-item:last-child { border-bottom: none; }
.digest-card .news-title { font-size: 15.5px; line-height: 1.6; }
.digest-card .news-sum { font-size: 14px; line-height: 1.8; margin: 5px 0 4px; color: var(--ink-2); }
.digest-card .news-meta { font-size: 13px; margin-top: 6px; }
.digest-card .stat-card { padding: 15px 14px; }
.topics-block { margin-top: 24px; }
.topics-block .block-title {
  display: flex; align-items: center; gap: 10px; font-size: 17px;
  font-weight: 600; margin: 8px 0 12px; color: var(--teal-3);
}
.topics-block .card.news-list { margin-top: 6px; padding: 4px 14px; }
.digest-domain { padding: 14px 16px; margin-bottom: 12px; }
.digest-domain h4 {
  font-size: 15.5px; font-weight: 600; display: flex; align-items: center;
  gap: 8px; margin-bottom: 10px; color: var(--teal-3);
}
.digest-domain .news-list { display: block; }
.digest-domain .news-item { padding: 11px 4px; }
.digest-domain .news-title { font-size: 15px; line-height: 1.55; }
.lk { color: var(--teal); font-size: 13px; }
.empty-tip { color: var(--ink-3); font-size: 14px; text-align: center; padding: 44px 20px; }

/* ===================== 信源 ===================== */
.source-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 11px; }
.source-item { padding: 13px 15px; display: flex; align-items: center; gap: 10px; }
.source-item .st { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.source-item .st.up { background: var(--normal); }
.source-item .st.down { background: var(--major); }
.source-item .nm { font-weight: 600; font-size: 13.5px; }
.source-item .tl { font-size: 11.5px; color: var(--ink-3); margin-top: 1px; }
.source-item .ct { margin-left: auto; font-size: 12px; color: var(--ink-2); }

/* ===================== 分页 ===================== */
.pager { display: flex; gap: 6px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.pager .pg {
  padding: 6px 13px; border: 1px solid var(--line-2); border-radius: 5px;
  background: var(--card); color: var(--ink-2); font-size: 13px; transition: all .18s;
}
.pager .pg.active { background: var(--teal); border-color: var(--teal); color: #F5F2EA; font-weight: 600; }
.pager .pg:hover:not(.active) { border-color: var(--teal-2); color: var(--teal); }

/* ===================== 模态 ===================== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(28, 35, 33, .45);
  display: grid; place-items: center; z-index: 100; padding: 20px;
}
.modal {
  background: var(--card); border-radius: var(--radius); max-width: 760px; width: 100%;
  max-height: 86vh; overflow: auto; box-shadow: var(--shadow-lift); position: relative;
}
.modal-close {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--line); background: var(--card);
  font-size: 18px; color: var(--ink-2); z-index: 2; transition: background .18s;
}
.modal-close:hover { background: var(--paper-2); }
.modal-body { padding: 26px 28px; }
.modal-body h2 {
  font-size: 21px; font-weight: 600; line-height: 1.5; margin-bottom: 11px; color: var(--teal-3);
}
.modal-body .meta-row {
  display: flex; flex-wrap: wrap; gap: 8px; font-size: 12.5px;
  color: var(--ink-3); margin-bottom: 15px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.modal-body .fulltext {
  font-size: 15px; color: var(--ink); line-height: var(--read); white-space: pre-wrap; text-align: justify;
}
.modal-body .kw { margin-top: 15px; display: flex; flex-wrap: wrap; gap: 7px; }
.kw-tag {
  font-size: 12px; background: var(--paper-2); border: 1px solid var(--line);
  color: var(--ink-2); padding: 3px 11px; border-radius: 20px;
}
.modal-body .link-btn {
  display: inline-block; margin-top: 17px; padding: 8px 17px; background: var(--teal);
  color: #F5F2EA; border-radius: 5px; font-size: 13.5px; font-weight: 500; letter-spacing: .5px;
}
.modal-body .link-btn:hover { background: var(--teal-2); }

/* ===================== 页脚：署名 + 次要数据 ===================== */
.site-footer {
  border-top: 1px solid var(--line); background: var(--paper-2);
  padding: 28px 0 36px; margin-top: 20px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: end;
}
.site-footer p { color: var(--ink-3); font-size: 12px; line-height: 1.8; margin-bottom: 3px; }
.footer-stats {
  display: flex; flex-wrap: wrap; gap: 14px; font-size: 11.5px; color: var(--ink-3);
}
.footer-stats b { color: var(--ink-2); font-weight: 600; }
.footer-sign {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--teal); letter-spacing: 1.5px; font-weight: 500;
}

/* ===================== 实时更新标记 ===================== */
.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); margin-left: 2px;
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(181, 130, 60, .45); }
  50% { box-shadow: 0 0 0 5px rgba(181, 130, 60, 0); }
}
.focus-label .live-time {
  font-size: 11.5px; color: var(--ink-3); letter-spacing: .5px; font-weight: 400;
}

/* ===================== 官方锐评 · 权威观点 ===================== */
.official-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.official-item {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.official-item:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-md);
  border-color: var(--amber-line);
}
.official-item .ofi-cat {
  align-self: flex-start; font-size: 11px; letter-spacing: 1px;
  color: var(--teal); background: var(--paper-2);
  border: 1px solid var(--line); padding: 2px 8px; border-radius: 3px;
}
.official-item .ofi-title {
  font-size: 15.5px; line-height: 1.55; font-weight: 500; color: var(--ink);
}
.official-item:hover .ofi-title { color: var(--teal); }
.official-item .ofi-sum {
  font-size: 13px; line-height: 1.7; color: var(--ink-2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.official-item .ofi-meta {
  display: flex; flex-wrap: wrap; gap: 7px; align-items: center;
  font-size: 11.5px; color: var(--ink-3); padding-top: 8px; border-top: 1px dashed var(--line);
}
.official-item .ofi-meta .src { color: var(--amber); font-weight: 600; }

/* ===================== 响应式 ===================== */
@media (max-width: 1000px) {
  .focus-card { grid-template-columns: 1fr; }
  .focus-facts { border-right: none; border-bottom: 1px solid var(--line); }
  .focus-commentary::before { border-bottom-left-radius: 8px; }
}
@media (max-width: 960px) {
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .obs-grid { grid-template-columns: 1fr; }
  .official-list { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .header-search { max-width: none; order: 3; width: 100%; }
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .brand-text strong { font-size: 16px; }
  .domain-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .focus-facts { padding: 20px 20px; }
  .focus-facts h2 { font-size: 22px; }
  .focus-commentary { padding: 20px; }
  .modal-body { padding: 20px 18px; }
  .page-head h1 { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .obs-card { padding: 16px; }
}
@media (max-width: 520px) {
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { display: none; }
  .site-nav.open { display: block; }
  .nav-inner { flex-direction: column; padding: 8px; }
  .domain-grid { grid-template-columns: 1fr; }
  .focus-facts h2 { font-size: 20px; }
  .obs-title { font-size: 16px; }
}
