/* ==========================================================================
   艾尼尚新 · 行业信息平台 主题样式
   设计目标：权威、克制、可读性优先；层级清晰便于长文阅读与结构化信息呈现。
   ========================================================================== */

:root {
  /* —— 品牌色（保留原值，仅扩出色阶） —— */
  --brand: #1c4e80;
  --brand-dark: #143a60;
  --brand-mid: #2a6ba8;
  --brand-light: #eaf1f8;
  --accent: #c8963e;
  --accent-dark: #a87a2c;
  --accent-light: #f6efdf;

  /* —— 墨色阶：替换原先散落的硬编码灰 —— */
  --ink-900: #101822;
  --ink-700: #1f2328;
  --ink-500: #5b6672;
  --ink-400: #8a949e;
  --text: var(--ink-700);
  --text-soft: var(--ink-500);
  --text-mute: var(--ink-400);

  --line: #e3e7ec;
  --line-strong: #d2d9e2;
  --bg: #f5f7f9;
  --card: #ffffff;

  /* —— 间距阶：全站统一档位，不再出现 22/26/34 这类散值 —— */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 88px;

  /* —— 字阶：clamp 让大屏「大气」成立、小屏不溢出 —— */
  --fs-display: clamp(26px, 3.6vw, 44px);
  --fs-h1: clamp(24px, 3vw, 36px);
  --fs-h2: clamp(19px, 2vw, 26px);
  --fs-h3: clamp(16px, 1.5vw, 19px);
  --fs-body: 15px;
  --fs-sm: 13px;
  --fs-xs: 12px;

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

  /* —— 三级阴影：层级感的来源，替代原先单一的 box-shadow —— */
  --shadow-1: 0 1px 2px rgba(20, 40, 70, .05), 0 1px 3px rgba(20, 40, 70, .06);
  --shadow-2: 0 8px 24px rgba(20, 40, 70, .10);
  --shadow-3: 0 20px 48px rgba(20, 40, 70, .16);

  --brand-grad: linear-gradient(135deg, #143a60 0%, #1c4e80 52%, #2a6ba8 100%);

  --wrap: 1280px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 15px/1.75 -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
        "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans SC", sans-serif;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* 键盘用户可见的焦点环（鼠标点击不显示，避免视觉噪音） */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* 尊重系统的「减少动态效果」偏好 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 站点头部 ---------- */

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(20, 40, 70, .04);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* 两排结构：上排「品牌 + 搜索」、下排「主导航」。
   为什么不再挤成一行：7 个栏目 + Logo + 搜索框在 1280px 视口已用满
   （317 + 643 + 224 + 两个 28px 间距 = 1240 = 容器内宽），再窄一点就折行，
   折行后搜索落在导航下方、行高从 83px 跳到 136px，观感与层级都很乱。 */
.header-top {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 66px;
}

/* 品牌占满余量，把搜索推到最右——即「搜索永远在右上角」，与宽度无关 */
.site-brand { flex: 1 1 auto; min-width: 0; }

/* inline-block 而非 block：.site-brand 在桌面端是 flex:1 1 auto（为了把搜索推到最右），
   block 会让 <a> 撑满整条余量，站名右侧的空白也变成「回首页」的点击热区 */
.site-logo {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--brand-dark);
}

.site-logo:hover { color: var(--brand); }

.site-slogan {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--text-mute);
}

/* 导航条：独占一行，底部细分隔线把「导航」与上排的品牌/搜索分开 */
.site-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 50px;
  border-top: 1px solid var(--line);
}

.nav-inner { min-width: 0; }

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  /* 左移一个 .nav-link 的内边距：让首个栏目的文字左边缘与上方 Logo 对齐，
     否则整条导航看起来比品牌缩进了 14px */
  margin: 0 0 0 -14px;
  padding: 0;
  list-style: none;
}

.nav-item { position: relative; }

/* 下划线式 hover：比「整块底色」更轻，导航条拉满一行时不显得笨重；
   固定在 baseline 上，各栏目文字长度不同也不会跳动 */
.nav-link {
  position: relative;
  display: block;
  padding: 14px 14px;
  font-size: 15px;
  color: var(--text);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s ease;
}

/* 桌面端：.nav-link 现在嵌在 .nav-row 内（为了移动端的折叠按钮布局），
   故用后代选择器而非直接子选择器 */
/* hover 只变颜色、不改字重：字重一变整条导航会跟着回流，指针扫过时抖得厉害 */
.nav-item:hover > .nav-row > .nav-link { color: var(--brand-dark); }
.nav-item.is-active > .nav-row > .nav-link { color: var(--brand-dark); font-weight: 600; }

.nav-item:hover > .nav-row > .nav-link::after,
.nav-item.is-active > .nav-row > .nav-link::after { transform: scaleX(1); }

.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 148px;
  margin: 6px 0 0;
  padding: 6px;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(20, 40, 70, .12);
}

.nav-item.has-sub:hover .nav-sub { display: block; }

.nav-sub a {
  display: block;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-soft);
  white-space: nowrap;
}

.nav-sub a:hover { background: var(--brand-light); color: var(--brand-dark); }
.nav-sub li.is-active a { color: var(--brand-dark); font-weight: 600; }

.header-tools { flex: 0 0 auto; }

.site-search { display: flex; }

.site-search input {
  width: 168px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px;
  outline: none;
}

.site-search input:focus { border-color: var(--brand); }

.site-search button {
  padding: 7px 14px;
  border: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.site-search button:hover { background: var(--brand-dark); }

/* ---------- 布局 ---------- */

.main-wrap {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding-top: 26px;
  padding-bottom: 40px;
}

.main-col { flex: 1 1 auto; min-width: 0; }
.side-col { flex: 0 0 300px; }

/* ---------- 首页 Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: var(--sp-6) var(--sp-5);
  margin-bottom: var(--sp-3);
  background: var(--brand-grad);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow-3);
}

/* 金色顶线：克制的「品牌仪式感」，纯 CSS，不引入图片资源 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(200, 150, 62, 0));
}

/* 右侧光晕：制造纵深，零网络请求 */
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(200, 150, 62, .22), transparent 70%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-title {
  margin: 0 0 var(--sp-1);
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .5px;
}

.hero-sub {
  margin: 0 0 var(--sp-2);
  font-size: clamp(14px, 1.3vw, 17px);
  color: #d7e3f0;
  letter-spacing: 1.5px;
}

.hero-desc {
  margin: 0;
  max-width: 68ch;
  font-size: var(--fs-body);
  line-height: 1.95;
  color: #cfdcea;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.hero-btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.hero-btn:hover { background: var(--accent-dark); color: #fff; }

.hero-btn-ghost {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .34);
}

.hero-btn-ghost:hover { background: rgba(255, 255, 255, .20); color: #fff; }

/* 统计数字：低成本的专业感抓手 */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.hero-stat-num {
  display: block;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}

.hero-stat-label {
  display: block;
  margin-top: 2px;
  font-size: var(--fs-sm);
  color: #a9c1d8;
}

/* ---------- 栏目头 ---------- */

.cate-head {
  position: relative;
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
  margin-bottom: var(--sp-3);
  background: linear-gradient(180deg, #fff, #fbfcfe);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

/* 左侧渐变条：比原先的单色左边框更有质感 */
.cate-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
  border-radius: var(--radius) 0 0 var(--radius);
}

.cate-title {
  margin: 0;
  font-size: var(--fs-h1);
  color: var(--brand-dark);
  letter-spacing: .5px;
}

.cate-desc {
  margin: var(--sp-1) 0 0;
  max-width: 78ch;
  font-size: var(--fs-body);
  line-height: 1.9;
  color: var(--text-soft);
}

.cate-count { margin: var(--sp-2) 0 0; font-size: var(--fs-sm); color: var(--text-mute); }

/* ---------- 文章列表 ---------- */

.post-list {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 24px;
}

.post-item { padding: 20px 0; border-bottom: 1px dashed var(--line); }
.post-item:last-child { border-bottom: 0; }

.post-item-title { margin: 0 0 8px; font-size: 18px; line-height: 1.5; }
.post-item-title a { color: var(--text); }
.post-item-title a:hover { color: var(--brand); }

.badge-top {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 7px;
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  vertical-align: 2px;
}

.post-item-intro {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

.post-item-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-mute);
}

.meta-cate {
  padding: 1px 9px;
  border-radius: 3px;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 12px;
}

/* ---------- 文章卡片（栏目聚合用） ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.card-cover { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--brand-light); }
.card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-cover img { transform: scale(1.03); }

.card-body { padding: var(--sp-2) var(--sp-2) 18px; }
.card-meta { display: flex; gap: 10px; font-size: var(--fs-xs); color: var(--text-mute); margin-bottom: 7px; }
.card-cate { color: var(--brand); }
.card-title { margin: 0 0 8px; font-size: var(--fs-h3); line-height: 1.55; }
.card-title a { color: var(--text); }
.card-title a:hover { color: var(--brand); }
.card-intro { margin: 0; font-size: var(--fs-sm); color: var(--text-soft); }

/* 正文可读性：限制每行字数（约 74 字符），长文阅读更舒适 */
.entry-body { max-width: 74ch; }

/* ---------- 文章页 ---------- */

.breadcrumb { margin-bottom: 16px; font-size: 13px; color: var(--text-mute); }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb .sep { margin: 0 7px; }

.entry {
  padding: 32px 38px 38px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.entry-head { padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.entry-title { margin: 0 0 12px; font-size: 27px; line-height: 1.45; color: var(--text); }
.entry-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mute); flex-wrap: wrap; }
.entry-meta .dot { color: var(--line); }
.entry-cate { color: var(--brand); }

.entry-body { font-size: 16px; line-height: 1.95; color: #262b31; }
.entry-body h2 { margin: 32px 0 14px; padding-left: 12px; border-left: 4px solid var(--brand); font-size: 20px; }
.entry-body h3 { margin: 26px 0 12px; font-size: 17px; color: var(--brand-dark); }
.entry-body p { margin: 0 0 16px; }
.entry-body ul, .entry-body ol { margin: 0 0 16px; padding-left: 24px; }
.entry-body li { margin-bottom: 6px; }
.entry-body blockquote {
  margin: 18px 0;
  padding: 12px 18px;
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  color: var(--text-soft);
}
.entry-body img { display: block; margin: 18px auto; border-radius: var(--radius); }
.entry-body table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.entry-body th, .entry-body td { padding: 9px 12px; border: 1px solid var(--line); text-align: left; }
.entry-body th { background: var(--brand-light); color: var(--brand-dark); }

.entry-tags { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.entry-tags .tag {
  padding: 3px 11px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-soft);
}
.entry-tags .tag:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- GEO 区块 ---------- */

.geo-summary {
  margin: 0 0 24px;
  padding: 18px 20px;
  background: #fbfaf6;
  border: 1px solid #ece2cd;
  border-radius: var(--radius);
}

.geo-summary-hd { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.geo-summary-tip { font-size: 12px; color: var(--text-mute); }
.geo-summary p { margin: 0; font-size: 15px; line-height: 1.85; color: #4a4232; }

.geo-badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 3px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .5px;
  white-space: nowrap;
}

.geo-block {
  margin: 30px 0 0;
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.geo-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  font-size: 16px;
  color: var(--text);
}

.geo-facts ul, .geo-authority ul, .geo-intent ul { margin: 0; padding-left: 0; list-style: none; }

.geo-facts li {
  position: relative;
  padding: 7px 0 7px 22px;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.geo-facts li:last-child { border-bottom: 0; }
.geo-facts li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.faq-item {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.faq-item:last-child { border-bottom: 0; }

.faq-item summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-dark);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q "; color: var(--accent); }
.faq-item[open] summary { margin-bottom: 8px; }

.faq-answer {
  padding: 10px 14px;
  background: var(--card);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.85;
}

.geo-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--card); }
.geo-table th, .geo-table td { padding: 9px 12px; border: 1px solid var(--line); text-align: left; }
.geo-table th { background: var(--brand-light); color: var(--brand-dark); font-weight: 600; }

.authority-list li, .intent-list li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14px;
  color: var(--text-soft);
}
.authority-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: #3f8a5b;
  font-weight: 700;
}
.intent-list li::before {
  content: "?";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}

.geo-score {
  margin-top: 26px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
}
.geo-score strong { font-size: 14px; }
.geo-score span { color: var(--text-mute); }
.geo-score-good { background: #eef7f0; border: 1px solid #cfe7d6; color: #2f6a45; }
.geo-score-mid  { background: #fdf7e9; border: 1px solid #efe0bd; color: #8a6a1f; }
.geo-score-low  { background: #fdf0f0; border: 1px solid #eed4d4; color: #8a3a3a; }

/* ---------- 相关阅读 ---------- */

.related { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); }
.related-title { margin: 0 0 14px; font-size: 17px; color: var(--brand-dark); }
.related-list { margin: 0; padding: 0; list-style: none; }
.related-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.related-list li:last-child { border-bottom: 0; }
.related-list time { flex: 0 0 auto; color: var(--text-mute); font-size: 13px; }

/* ---------- 侧栏 ---------- */

.widget {
  margin-bottom: 20px;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.widget-title {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-light);
  font-size: 16px;
  color: var(--brand-dark);
}

.widget-cate-group { margin-bottom: 12px; }
.widget-cate-group:last-child { margin-bottom: 0; }

.widget-cate-main { display: block; font-size: 15px; font-weight: 600; margin-bottom: 5px; }

.widget-cate-subs { display: flex; flex-wrap: wrap; gap: 6px; }
.widget-cate-subs a {
  padding: 2px 9px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 13px;
  color: var(--text-soft);
}
.widget-cate-subs a:hover { border-color: var(--brand); color: var(--brand); }

.widget-latest ul, .widget-links { margin: 0; padding: 0; list-style: none; }
.widget-latest li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.widget-latest li:last-child { border-bottom: 0; }
.widget-latest a { color: var(--text); }
.widget-latest a:hover { color: var(--brand); }
.widget-latest time { display: block; font-size: 12px; color: var(--text-mute); margin-top: 2px; }

.widget-about p { margin: 0 0 12px; font-size: 14px; color: var(--text-soft); }
.widget-links li { padding: 5px 0; font-size: 14px; }

/* ---------- 分页 ---------- */

.pagebar { margin: 24px 0 0; text-align: center; }

.pagebar .page {
  display: inline-block;
  min-width: 34px;
  margin: 0 3px;
  padding: 6px 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-soft);
}

.pagebar a.page:hover { border-color: var(--brand); color: var(--brand); }
.pagebar .now-page { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- 评论 ---------- */

.comments { margin-top: 28px; padding: 26px 30px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.comments-title { margin: 0 0 18px; font-size: 18px; color: var(--brand-dark); }

.comment-list, .comment-children { margin: 0; padding: 0; list-style: none; }
.comment-children { margin-top: 14px; padding-left: 20px; border-left: 2px solid var(--brand-light); }

.comment-item { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.comment-item:last-child { border-bottom: 0; }
.comment-avatar { flex: 0 0 auto; border-radius: 50%; }

.comment-main { flex: 1 1 auto; min-width: 0; }
.comment-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; font-size: 13px; }
.comment-name a { font-weight: 600; color: var(--text); }
.comment-time { color: var(--text-mute); }
.comment-reply a { color: var(--text-mute); }
.comment-reply a:hover { color: var(--brand); }
.comment-content { font-size: 15px; line-height: 1.85; color: var(--text-soft); }

.comment-empty { margin: 0; color: var(--text-mute); font-size: 14px; }

.comment-form { margin-top: 26px; padding: 24px 28px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.comment-form-title { margin: 0 0 18px; font-size: 17px; color: var(--brand-dark); }
.comment-as { margin: 0 0 14px; font-size: 14px; color: var(--text-soft); }

.form-row { margin-bottom: 14px; }
.form-row label { display: block; margin-bottom: 6px; font-size: 13px; color: var(--text-soft); }
.form-row .text {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.form-row .text:focus { border-color: var(--brand); }
.form-verify img { vertical-align: middle; margin-left: 10px; cursor: pointer; }

.form-submit { margin: 0; }
.form-submit .button {
  padding: 9px 26px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
.form-submit .button:hover { background: var(--brand-dark); }

/* ---------- 空状态 / 404 ---------- */

.empty-tip {
  padding: 46px 20px;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-mute);
}

.nf { padding: 50px 30px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.nf-code { margin: 0; font-size: 64px; font-weight: 700; color: var(--brand-light); line-height: 1; }
.nf-title { margin: 10px 0 12px; font-size: 20px; color: var(--text); }
.nf-desc { margin: 0 0 18px; color: var(--text-soft); font-size: 14px; }
.nf-cates { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
.nf-cates a { padding: 4px 12px; background: var(--bg); border: 1px solid var(--line); border-radius: 3px; font-size: 14px; }
.nf-cates a:hover { border-color: var(--brand); color: var(--brand); }
.nf-home { display: inline-block; padding: 8px 24px; background: var(--brand); color: #fff; border-radius: var(--radius); }
.nf-home:hover { background: var(--brand-dark); color: #fff; }

/* ---------- 页脚 ---------- */

.site-footer {
  position: relative;
  margin-top: var(--sp-5);
  background: linear-gradient(180deg, #143a60, #0f2d4c);
  color: #c5d4e2;
}

/* 顶部金色细线：与 Hero 呼应，形成整站的品牌收口 */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(200, 150, 62, .12));
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--sp-5);
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-4);
}

.footer-col { min-width: 0; }
.footer-brand { min-width: 0; }
.footer-logo { margin: 0 0 10px; font-size: 19px; }
.footer-logo a { color: #fff; }
.footer-desc { margin: 0 0 10px; font-size: 14px; color: #a9bdd0; }
.footer-note { margin: 0; font-size: 13px; color: #8ba3b8; line-height: 1.8; }

.footer-col h4 { margin: 0 0 14px; font-size: 15px; color: #fff; font-weight: 600; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin-bottom: 9px; font-size: 14px; }
.footer-col a { color: #a9bdd0; }
.footer-col a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 16px 0; }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: 13px; color: #8ba3b8; }
.footer-powered a { color: #8ba3b8; }

/* ---------- 移动端抽屉导航（桌面端全部隐藏） ---------- */

.nav-toggle,
.nav-drawer-head,
.nav-drawer-search,
.nav-mask,
.nav-sub-toggle,
.nav-close { display: none; }

/* ---------- 响应式 ---------- */

@media (max-width: 980px) {
  .main-wrap { flex-direction: column; }
  .side-col { flex: 1 1 auto; width: 100%; }

  /* 抽屉形态下不需要导航条本身，它退化为定位容器（尺寸由内部抽屉决定） */
  .site-nav {
    display: block;
    min-height: 0;
    border-top: 0;
  }

  /* 抽屉自身已有 16px 内边距，这里要把 .wrap 的 20px 让掉，否则内容被挤进 36px */
  .nav-inner {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0;
  }

  /* 只改上下内边距，不要写 padding 简写——
     那会一并覆盖 .wrap 的左右 20px，让 Logo 贴死屏幕左边缘 */
  .header-top {
    min-height: 64px;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 12px;
  }

  /* 品牌名可收缩：否则长站名会把整行撑出视口（390px 时实测溢出 127px） */
  .site-brand { flex: 1 1 auto; min-width: 0; }

  .site-logo {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* 表头搜索在小屏让位给抽屉内的那份，避免整行放不下 */
  .header-tools { display: none; }

  .nav-drawer-search {
    display: flex;
    margin: 0 0 10px;
  }

  .nav-drawer-search input {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    padding: 9px 12px;
  }

  /* --- 汉堡按钮 --- */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    /* 必须显式写 stretch：按钮是 <button>，浏览器 UA 样式表给它设了
       align-items: flex-start，作者样式不覆盖的话三条横杠宽度会算成 0，
       汉堡按钮就只剩一个空白方框（实测 390px 下 bar 宽度 = 0） */
    align-items: stretch;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0 11px;
    background: var(--card);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    cursor: pointer;
  }

  .nav-toggle-bar {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-dark);
    transition: transform .22s ease, opacity .18s ease;
  }

  /* 展开时三横条变叉 */
  .nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* --- 抽屉：从右侧滑入 --- */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 340px);
    max-width: 100%;
    /* 关键：取消原先的 flex:1 1 100% 折行堆叠，改为固定定位的抽屉 */
    order: 0;
    flex: 0 0 auto;
    z-index: 60;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 16px 44px;
    background: var(--card);
    border-left: 1px solid var(--line);
    box-shadow: -14px 0 44px rgba(20, 40, 70, .20);
    transform: translateX(102%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  }

  .nav-open .site-nav { transform: translateX(0); }

  /* --- 遮罩 ---
     z-index 必须小于 .site-header 的 50：.site-header 是 position:sticky + z-index:50，
     会创建层叠上下文，抽屉（.site-nav，z-index:60）只在该上下文**内部**有效。
     若遮罩层级高于 50，它会盖住整个 header（连同抽屉），实测会挡住抽屉的点击与视觉。
     低于 50 时遮罩只压暗页面内容、header 与抽屉保持在上层 —— 这也正是期望的效果。 */
  .nav-mask {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(12, 28, 46, .50);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
  }

  .nav-open .nav-mask { opacity: 1; pointer-events: auto; }

  /* 抽屉打开时锁住背景滚动 */
  body.nav-open { overflow: hidden; }

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
  }

  .nav-drawer-title { font-size: 15px; font-weight: 600; color: var(--brand-dark); }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: none;
    font-size: 26px;
    line-height: 1;
    color: var(--text-mute);
    cursor: pointer;
  }

  /* --- 抽屉内的导航列表 --- */
  .nav-list { flex-direction: column; gap: 0; margin-left: 0; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-item:last-child { border-bottom: 0; }

  .nav-row { display: flex; align-items: center; justify-content: space-between; }

  /* 纵向排布，只需上下内边距；下划线也不适用（横向导航才需要） */
  .nav-link { padding: 13px 4px; font-size: 16px; }
  .nav-link::after { display: none; }

  /* 移动端不用 hover 高亮，避免触摸设备上的粘滞状态 */
  .nav-item:hover > .nav-row > .nav-link { background: transparent; color: inherit; }
  .nav-item.is-active > .nav-row > .nav-link { color: var(--brand); font-weight: 600; }

  .nav-sub-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    cursor: pointer;
  }

  .nav-sub-toggle .chev {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--ink-400);
    border-bottom: 2px solid var(--ink-400);
    transform: rotate(45deg);
    transition: transform .2s ease;
  }

  .nav-item.is-open .nav-sub-toggle .chev { transform: rotate(-135deg); }

  /* --- 子栏目：折叠面板，不再全量铺开 --- */
  .nav-sub {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 6px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  /* 子栏目显隐完全由 .is-open 驱动。
     不要再加 :hover 规则：触摸设备上指针会停留在最后点击处，
     hover 规则会把刚收起的子菜单又「撑开」，表现为点击无效 */
  .nav-item.is-open > .nav-sub { display: block; }

  .nav-sub a { padding: 10px 6px; font-size: 15px; white-space: normal; }

  .header-tools { order: 0; margin-left: 0; flex: 0 0 auto; }
  .site-search input { width: 120px; }

  /* 页脚由 4 列折为 2 列 */
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
}

@media (max-width: 640px) {
  .entry { padding: 22px 18px 26px; }
  .entry-title { font-size: 21px; }
  .entry-body { font-size: 15px; }
  .hero { padding: var(--sp-4) var(--sp-3); }
  .hero-stats { gap: var(--sp-4); }
  .post-list { padding: 4px 16px; }
  .comments, .comment-form { padding: 20px 18px; }
  .site-slogan { display: none; }
  .site-logo { font-size: 20px; }
  .footer-main { grid-template-columns: 1fr; gap: var(--sp-3); }
}

/* 981–1200px：7 个栏目在该宽度下已接近满行，收紧内边距与字号让它们留在一行内，
   不折成两行、也不触发横向滚动（折行会让导航条忽高忽低，比紧凑更难接受）。 */
@media (max-width: 1200px) and (min-width: 981px) {
  .nav-link { padding: 14px 9px; font-size: 14px; }
  .nav-link::after { left: 9px; right: 9px; }
  .nav-list { gap: 0; margin-left: -9px; }
  .site-search input { width: 150px; }
}

/* ==========================================================================
   视频中心
   ========================================================================== */

/* ---------- 视频卡片网格 ---------- */

/* 显式媒体查询而非 auto-fill/minmax：后者列数会随容器宽度碎变，
   在 980 / 640 这两个断点上不可控 */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.vcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.vcard:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.vcard-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d1b2a;
}

.vcard-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.vcard:hover .vcard-cover img { transform: scale(1.04); }

/* 无封面时的纯色底：避免破图或高度塌陷 */
.vcard-nocover {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #143a60, #2a6ba8);
}

/* 播放按钮遮罩：居中圆形 + 三角 */
.vcard-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: rgba(20, 40, 70, .62);
  border: 2px solid rgba(255, 255, 255, .86);
  transition: background .2s ease, transform .2s ease;
}

.vcard-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}

.vcard:hover .vcard-play { background: var(--accent); transform: scale(1.08); }

/* 右下角时长角标 */
.vcard-dur {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(8, 18, 30, .82);
  color: #fff;
  font-size: var(--fs-xs);
  font-variant-numeric: tabular-nums;
  letter-spacing: .3px;
}

.vcard-body { padding: var(--sp-2); }

.vcard-title {
  margin: 0 0 8px;
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.55;
}

.vcard-title a { color: var(--text); }
.vcard-title a:hover { color: var(--brand); }

.vcard-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  color: var(--text-mute);
}

.vcard-plat {
  padding: 1px 8px;
  border-radius: 3px;
  background: var(--brand-light);
  color: var(--brand);
}

/* ---------- 平台筛选条 ---------- */

.video-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-bottom: var(--sp-3);
}

.video-filter button {
  padding: 6px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: var(--fs-sm);
  color: var(--text-soft);
  cursor: pointer;
  transition: all .18s ease;
}

.video-filter button:hover { border-color: var(--brand); color: var(--brand); }

.video-filter button.is-on {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ---------- 播放器（16:9 自适应） ---------- */

.vplayer {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-bottom: var(--sp-3);
  background: #0d1b2a;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.vplayer-media,
.vplayer iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 点击封面才注入 iframe：第三方播放器脚本不进首屏 */
.vplayer-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.vplayer-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: opacity .2s ease;
}

.vplayer-btn:hover .vplayer-poster { opacity: .74; }

.vplayer-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  margin: -37px 0 0 -37px;
  border-radius: 50%;
  background: rgba(28, 78, 128, .92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  transition: background .2s ease, transform .2s ease;
}

.vplayer-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-38%, -50%);
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}

.vplayer-btn:hover .vplayer-play { background: var(--accent); transform: scale(1.06); }

/* 视频详情页的正文不再限宽：上方已有通栏播放器，正文继承容器宽度更协调 */
.entry-video .entry-body { max-width: none; }

/* 相关视频区块内的网格：比主列表密一档 */
.related-video .video-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-2); }
.related-video .vcard-title { font-size: var(--fs-sm); }

/* ---------- 视频区块的响应式 ---------- */

@media (max-width: 980px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .related-video .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; gap: var(--sp-2); }
  .related-video .video-grid { grid-template-columns: 1fr; }
  .vplayer-play { width: 56px; height: 56px; margin: -28px 0 0 -28px; }
  .vplayer-play::after { border-width: 10px 0 10px 17px; }
  .vcard-play { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
  .vcard-play::after { border-width: 8px 0 8px 13px; }
}

/* ==========================================================================
   栏目版式
   ==========================================================================
   7 个一级栏目各有自己的信息结构。全部复用上面的设计令牌，未引入新色值，
   且只新增类、不改动任何一个既有选择器——把对其它页面的回归面压到零。 */

/* ---------- 栏目头 ---------- */

.col-head { margin-bottom: var(--sp-3); }

.col-title {
  margin: var(--sp-2) 0 0;
  font-size: var(--fs-h1);
  color: var(--brand-dark);
  letter-spacing: .5px;
}

/* 与 .cate-head 的左侧渐变条呼应，但用于栏目版式时可更轻 */
.col-head .cate-desc { margin-top: var(--sp-1); }
.col-head .breadcrumb { margin-bottom: 0; }

/* ---------- 子栏目导航 ---------- */

/* 空栏目页唯一的「出口」：栏目本身没内容时，读者仍要能顺着子栏目往下走 */
.col-subnav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: var(--sp-3);
}

.col-subnav-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-1);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.col-subnav-card:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}

.col-subnav-card.is-active { border-left-color: var(--brand); background: var(--brand-light); }

.col-subnav-name { font-size: var(--fs-body); color: var(--text); font-weight: 600; }
.col-subnav-card:hover .col-subnav-name { color: var(--brand); }

.col-subnav-desc {
  font-size: var(--fs-xs);
  color: var(--text-mute);
  line-height: 1.7;
  /* 子栏目简介长度不一：截到 2 行，避免长简介把卡片撑得一高一低 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.col-subnav-count { font-size: var(--fs-xs); color: var(--text-mute); }

/* ---------- 通用分区 ---------- */

.col-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-3) var(--sp-2);
  margin-bottom: var(--sp-3);
}

.col-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2);
}

.col-section-title {
  margin: 0;
  font-size: var(--fs-h2);
  color: var(--brand-dark);
}

.col-section-title a { color: inherit; }
.col-section-title a:hover { color: var(--brand); }

.col-section-desc {
  margin: var(--sp-1) 0 var(--sp-2);
  max-width: 78ch;
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--text-soft);
}

.col-section-more { font-size: var(--fs-sm); color: var(--accent-dark); white-space: nowrap; }
.col-section-more:hover { color: var(--accent); }

/* ---------- 版式：行业资讯（时间线） ---------- */

.timeline-month {
  padding-bottom: var(--sp-1);
  border-bottom: 2px solid var(--brand-light);
}

.timeline { position: relative; padding-left: 26px; }

/* 竖线：时间轴的视觉主干 */
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-light), var(--line));
}

.timeline-item { position: relative; padding: var(--sp-2) 0; }
.timeline-item:not(:last-child) { border-bottom: 1px dashed var(--line); }

/* 节点圆点：压在竖线上 */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--brand-mid);
}

.timeline-date {
  display: inline-block;
  margin-bottom: 6px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--accent-dark);
}

.timeline-title { margin: 0 0 8px; font-size: 18px; line-height: 1.5; }
.timeline-title a { color: var(--text); }
.timeline-title a:hover { color: var(--brand); }

.timeline-intro { margin: 0 0 10px; font-size: 14px; color: var(--text-soft); line-height: 1.8; }

.timeline-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-sm);
  color: var(--text-mute);
}

/* ---------- 版式：产品中心（产品族） ---------- */

.col-families {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-2);
}

.col-family {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-3);
  box-shadow: var(--shadow-1);
}

.col-family .col-section-title { font-size: var(--fs-h3); }
.col-family-count { font-size: var(--fs-xs); color: var(--text-mute); white-space: nowrap; }
.col-family .col-section-desc { margin-bottom: 12px; }

.col-family-empty { margin: 0; font-size: var(--fs-sm); color: var(--text-mute); }

/* ---------- 栏目版式通用标题列表 ---------- */

/* 用于「解决方案 / 保养知识 / 产品中心」的分区列表：
   1 篇和 10 篇下版面都成立，不会像卡片网格那样在小数据量下留一大片空白 */
.col-postlist { margin: 0; padding: 0; list-style: none; }

.col-postlist li {
  padding: 12px 0 12px 15px;
  position: relative;
  border-bottom: 1px dashed var(--line);
}
.col-postlist li:last-child { border-bottom: 0; }

.col-postlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.col-postlist-title { font-size: 15px; line-height: 1.7; color: var(--text); }
.col-postlist-title:hover { color: var(--brand); }

.col-postlist-intro {
  margin: 5px 0 0;
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.75;
}

.col-postlist-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 7px;
  font-size: var(--fs-xs);
  color: var(--text-mute);
}

/* ---------- 版式：选购指南（编号卡） ---------- */

.col-grid-num { display: flex; flex-direction: column; gap: var(--sp-2); }

.col-num-card {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-3);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  transition: box-shadow .2s ease, transform .2s ease;
}

.col-num-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }

/* 序号用金色描边而非实心块：醒目但不抢标题的注意力 */
.col-num {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent-dark);
  font-size: 19px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.col-num-body { flex: 1 1 auto; min-width: 0; }
.col-num-title { margin: 6px 0 8px; font-size: var(--fs-h3); line-height: 1.55; }
.col-num-title a { color: var(--text); }
.col-num-title a:hover { color: var(--brand); }
.col-num-intro { margin: 0; font-size: var(--fs-sm); color: var(--text-soft); line-height: 1.8; }

/* ---------- 版式：企业与资质（企业档案） ---------- */

.col-profile {
  position: relative;
  padding: var(--sp-4);
  margin-bottom: var(--sp-3);
  border-radius: var(--radius);
  background: var(--brand-grad);
  color: #fff;
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

/* 右侧光晕：与 Hero 同款手法，零网络请求 */
.col-profile::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, .34), transparent 68%);
  pointer-events: none;
}

.col-profile-title { position: relative; margin: 0; font-size: var(--fs-h2); color: #fff; }
.col-profile-sub { position: relative; margin: 6px 0 0; font-size: var(--fs-sm); color: rgba(255, 255, 255, .82); }
.col-profile-desc {
  position: relative;
  margin: var(--sp-2) 0 0;
  max-width: 74ch;
  font-size: var(--fs-body);
  line-height: 1.9;
  color: rgba(255, 255, 255, .92);
}

.col-factlist { margin: 0; padding: 0; list-style: none; }

.col-factlist li {
  padding: 9px 0 9px 16px;
  position: relative;
  font-size: var(--fs-sm);
  border-bottom: 1px dashed var(--line);
}
.col-factlist li:last-child { border-bottom: 0; }

.col-factlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-mid);
}

/* ---------- 栏目空态 ---------- */

/* 不写「建设中，敬请期待」这类空话：说明这里将有什么、以及现在能看什么 */
.col-empty {
  padding: var(--sp-4) var(--sp-3);
  text-align: center;
  background: var(--card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}

.col-empty-title { margin: 0 0 8px; font-size: var(--fs-h3); color: var(--text-soft); }
.col-empty-desc { margin: 0; font-size: var(--fs-sm); color: var(--text-mute); }

/* ---------- 栏目版式的响应式 ---------- */

@media (max-width: 980px) {
  .col-subnav { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .col-families { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .col-subnav { grid-template-columns: 1fr; gap: 10px; }
  .col-section { padding: var(--sp-2) var(--sp-2) 6px; }
  .col-profile { padding: var(--sp-3) var(--sp-2); }
  /* 时间线缩进减半：390px 宽下 26px 缩进会明显压缩正文可用宽度 */
  .timeline { padding-left: 20px; }
  .timeline-item::before { left: -20px; top: 22px; width: 10px; height: 10px; }
  .timeline-title { font-size: var(--fs-h3); }
  .col-num-card { padding: var(--sp-2); gap: 12px; }
  .col-num { width: 38px; height: 38px; font-size: 16px; }
}
