@charset "utf-8";
/* ==========================================================================
   仿华尔街见闻 · 财经资讯门户模板 v1.0
   适用于迅睿CMS(XunRuiCMS)模板制作
   配色遵循 A 股惯例：涨=红 / 跌=绿
   ========================================================================== */

/* ---------- 1. 变量 ---------- */
:root {
  --brand:        #1478F0;   /* 品牌蓝：logo / 导航高亮 / 强调（取自华尔街见闻） */
  --brand-hover:  #0F63CC;
  --brand-light:  #EAF3FF;
  --up:           #E02E24;   /* 涨（红，A股惯例） */
  --down:         #12A150;   /* 跌（绿，A股惯例） */
  --ink:          #1A1A1A;   /* 主文字 */
  --ink-2:        #4A4A4A;   /* 次级文字 */
  --ink-3:        #8A8F99;   /* 辅助/时间/来源 */
  --ink-4:        #B4B8BF;
  --line:         #EDEEF0;   /* 分割线 */
  --line-2:       #E2E4E8;
  --bg:           #FFFFFF;
  --bg-2:         #F6F7F9;   /* 浅灰底 */
  --bg-3:         #FBFBFC;
  --dark:         #14161A;   /* 行情条/深色区 */
  --dark-2:       #22252B;

  --radius:       4px;
  --radius-lg:    8px;
  --wrap:         1200px;
  --gap:          24px;
  --hd-h:         64px;

  --shadow-sm:    0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,.07);
  --shadow-lg:    0 12px 32px rgba(0,0,0,.10);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
          "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-num: "SF Mono", "DIN Alternate", "Roboto Mono", Consolas, Menlo, monospace;
}

/* ---------- 2. 基础重置 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, p, figure, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--brand); }
img { max-width: 100%; border: 0; vertical-align: middle; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; }
button { cursor: pointer; border: 0; background: none; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--brand); color: #fff; }

/* 滚动条 */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #D6D9DE; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #BFC4CB; }
::-webkit-scrollbar-track { background: transparent; }

/* ---------- 3. 通用工具类 ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 10px 20px 0 20px; }
.clearfix::after { content: ""; display: block; clear: both; }
.text-up   { color: var(--up); }
.text-down { color: var(--down); }
.text-flat { color: var(--ink-3); }
.ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hide { display: none !important; }

/* 栅格：主栏 + 侧栏 */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.layout-full { display: block; }

/* 区块标题（左侧红竖条） */
.sec-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.sec-hd .sec-t {
  position: relative;
  padding-left: 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.2px;
}
.sec-hd .sec-t::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 18px;
  margin-top: -9px;
  background: var(--brand);
  border-radius: 2px;
}
.sec-hd .sec-sub { font-size: 13px; color: var(--ink-3); font-weight: 400; margin-left: 10px; }
.sec-hd .sec-more { font-size: 13px; color: var(--ink-3); }
.sec-hd .sec-more:hover { color: var(--brand); }
.sec-hd .sec-more::after { content: " ›"; }

/* 标签 */
.tag {
  display: inline-block;
  padding: 0 6px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  border-radius: 2px;
  vertical-align: 1px;
}
.tag-live  { background: var(--brand); color: #fff; }
.tag-vip   { background: linear-gradient(135deg, #E8C77A, #C9A24A); color: #4A3607; font-weight: 600; }
.tag-line  { border: 1px solid var(--line-2); color: var(--ink-3); }
.tag-hot   { background: var(--brand-light); color: var(--brand); }

/* 按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  font-size: 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .18s ease;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); color: #fff; }
.btn-ghost { border-color: var(--line-2); color: var(--ink-2); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* 分页 */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 36px 0 8px;
  flex-wrap: wrap;
}
.pager li a, .pager li span {
  display: block;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #fff;
}
.pager li a:hover { border-color: var(--brand); color: var(--brand); }
.pager li.is-active span { background: var(--brand); border-color: var(--brand); color: #fff; }
.pager li.is-disabled span { color: var(--ink-4); background: var(--bg-3); }

/* 面包屑 */
.crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 0;
  font-size: 13px;
  color: var(--ink-3);
}
.crumb a:hover { color: var(--brand); }
.crumb i { font-style: normal; color: var(--ink-4); }
.crumb .cur { color: var(--ink-2); }

/* ==========================================================================
   4. 头部
   ========================================================================== */
.hd {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.hd-inner {
  display: flex;
  align-items: center;
  height: var(--hd-h);
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.4px;
  color: #222;
}
.logo:hover { color: #222; }
.logo .logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-num);
  letter-spacing: 0;
  flex-shrink: 0;
}
.logo .logo-en {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-left: 2px;
}

.nav { display: flex; align-items: center; gap: 4px; flex: 1; min-width: 0; }
.nav a {
  position: relative;
  display: block;
  height: var(--hd-h);
  line-height: var(--hd-h);
  padding: 0 14px;
  font-size: 15.5px;
  color: var(--ink-2);
  white-space: nowrap;
}
.nav a:hover { color: var(--brand); }
.nav a.is-active { color: var(--brand); font-weight: 600; }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 2px 2px 0 0;
}

.hd-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.hd-search {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 190px;
  height: 34px;
  padding: 0 12px;
  background: var(--bg-2);
  border: 1px solid transparent;
  border-radius: 17px;
  transition: all .2s ease;
}
.hd-search:focus-within { background: #fff; border-color: var(--brand); }
.hd-search svg { flex-shrink: 0; color: var(--ink-3); }
.hd-search input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 13.5px;
  color: var(--ink);
}
.hd-search input::placeholder { color: var(--ink-4); }
.hd-login { font-size: 14px; color: var(--ink-2); white-space: nowrap; }
.hd-app {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 32px;
  padding: 0 13px;
  font-size: 13px;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  white-space: nowrap;
}
.hd-app:hover { color: var(--brand); border-color: var(--brand); }

/* 移动端菜单按钮 */
.hd-menu { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; }

/* ==========================================================================
   5. 行情滚动条
   ========================================================================== */
.ticker {
  background: var(--dark);
  overflow: hidden;
  height: 40px;
}
.ticker-inner {
  display: flex;
  align-items: center;
  height: 40px;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ticker-inner::-webkit-scrollbar { display: none; }
.tk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  white-space: nowrap;
  color: #C9CDD4;
}
.tk:hover { color: #fff; }
.tk-name { color: #8B9099; }
.tk-val { font-family: var(--font-num); color: #E8EAED; font-weight: 500; }
.tk-chg { font-family: var(--font-num); font-size: 12.5px; }
.tk.up   .tk-chg { color: #FF4D4F; }
.tk.down .tk-chg { color: #2BD97C; }
.tk.flat .tk-chg { color: #8B9099; }
.ticker-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6D727A;
  padding-right: 16px;
  border-right: 1px solid #2A2E35;
  height: 18px;
  flex-shrink: 0;
}
.ticker-label::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}

/* ==========================================================================
   6. 首页 · 焦点轮播（左右分栏）
   ========================================================================== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 12px;
  padding: 18px 0 0;
  height: 500px;
}
.hero-main {
  overflow: hidden;
  height: 100%;
}
.hero-swiper {
  overflow: hidden;
  height: 100%;
}
.hero-swiper .swiper-wrapper {
  height: 100%;
}
.hero-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  height: 100%;
  background: var(--bg-2);
}
.hero-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hero-card:hover img { transform: scale(1.06); }
.hero-card .hero-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 30px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.42) 55%, transparent);
}
.hero-card h2 {
  font-size: 14.5px;
  line-height: 1.42;
  font-weight: 600;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-card:hover h2 { color: #fff; }

/* Swiper 分页指示点 */
.hero-swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 12px 0 2px;
}
.hero-swiper .swiper-pagination-bullet {
  width: 18px; height: 3px;
  border-radius: 2px;
  background: var(--line-2);
  opacity: 1;
  transition: background .2s ease;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--brand);
}

/* 右侧图文 */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.hero-mini {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  flex: 1;
  background: var(--bg-2);
}
.hero-mini figure {
  margin: 0;
  width: 100%;
  height: 100%;
}
.hero-mini figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hero-mini:hover figure img { transform: scale(1.06); }
.hero-mini-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 10px 8px;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.42) 55%, transparent);
}
.hero-mini h3 {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 头条标题区（轮播下方） */
.hero-feature { padding: 14px 0 15px; border-bottom: 1px solid var(--line); margin-bottom: 15px;}
.hero-feature a { display: block; }
.hero-feature h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -.4px;
}
.hero-feature a:hover h2 { color: var(--brand); }
.hero-feature p {
  margin-top: 9px;
  font-size: 14.5px;
  line-height: 1.72;
  color: #666B74;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-feature .hf-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-feature .hf-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-4); }

/* ==========================================================================
   7. 信息流
   ========================================================================== */
.feed { padding-bottom: 15px; }
.feed > li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.feed > li:first-child { padding-top: 0; }

/* 图文条目 */
.fitem { display: flex; gap: 20px; }
.fitem-body { flex: 1; min-width: 0; }
.fitem-body h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fitem:hover .fitem-body h3 { color: var(--brand); }
.fitem-body .fdesc {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.72;
  color: #6B7079;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fitem-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.fitem-meta .fm-src { color: var(--ink-2); font-weight: 500; }
.fitem-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-4); }
.fitem-meta .fm-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.fitem-fig {
  width: 208px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10.2;
  background: var(--bg-2);
}
.fitem-fig img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.fitem:hover .fitem-fig img { transform: scale(1.05); }

/* 纯文字条目 */
.ftext h3 { font-size: 17.5px; }
.ftext .fdesc { -webkit-line-clamp: 2; }

/* 快讯条目 */
.flive { display: flex; gap: 16px; }
.flive-time {
  width: 62px;
  flex-shrink: 0;
  padding-top: 1px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-num);
}
.flive-time b { display: block; font-size: 14px; color: var(--ink-2); font-weight: 600; }
.flive-body { flex: 1; min-width: 0; position: relative; padding-left: 18px; }
.flive-body::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}
.flive-body::after {
  content: "";
  position: absolute;
  left: 4px; top: 22px; bottom: -22px;
  width: 1px;
  background: var(--line);
}
.feed > li:last-child .flive-body::after { display: none; }
.flive-body h3 {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.62;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.flive:hover .flive-body h3 { color: var(--brand); }
.flive-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
}

/* 视频/图解条目 */
.fvideo .fitem-fig { position: relative; }
.fvideo .fitem-fig::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  background: rgba(0,0,0,.5) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") no-repeat center / 20px;
  backdrop-filter: blur(2px);
}

/* ==========================================================================
   8. 侧栏
   ========================================================================== */
.side { display: flex; flex-direction: column; gap: 26px; }
.widget { background: #fff; }
.widget-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.widget-hd h3 {
  position: relative;
  padding-left: 11px;
  font-size: 16.5px;
  font-weight: 700;
}
.widget-hd h3::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 15px;
  margin-top: -7.5px;
  background: var(--brand);
  border-radius: 2px;
}
.widget-hd .wh-more { font-size: 12.5px; color: var(--ink-3); }
.widget-hd .wh-more:hover { color: var(--brand); }
.widget-body { padding-top: 6px; }

/* 热门榜 */
.rank li { border-bottom: 1px dashed var(--line); }
.rank li:last-child { border-bottom: 0; }
.rank li a {
  display: flex;
  gap: 10px;
  padding: 11px 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.rank li a:hover { color: var(--brand); }
.rank .rk-no {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-num);
  color: var(--ink-4);
  border-radius: 3px;
}
.rank li:nth-child(1) .rk-no { background: var(--brand); color: #fff; }
.rank li:nth-child(2) .rk-no { background: #FF7A45; color: #fff; }
.rank li:nth-child(3) .rk-no { background: #FFB020; color: #fff; }
.rank .rk-txt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rank .rk-hot { margin-left: auto; font-size: 11.5px; color: var(--ink-4); flex-shrink: 0; padding-top: 2px; }

/* 行情速览 */
.quote { width: 100%; font-size: 13.5px; }
.quote thead th {
  padding: 8px 0;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-3);
  text-align: right;
  border-bottom: 1px solid var(--line);
}
.quote thead th:first-child { text-align: left; }
.quote tbody td {
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  text-align: right;
  font-family: var(--font-num);
  font-size: 14px;
  color: var(--ink-2);
}
.quote tbody td:first-child {
  text-align: left;
  font-family: var(--font);
  color: var(--ink);
  font-weight: 500;
}
.quote tbody tr:last-child td { border-bottom: 0; }
.quote tbody tr:hover td { background: var(--bg-3); }
.quote .q-code { display: block; font-size: 11px; color: var(--ink-4); font-family: var(--font-num); font-weight: 400; }
.quote .up   { color: var(--up); }
.quote .down { color: var(--down); }

/* 财经日历 */
.cal { font-size: 13.5px; }
.cal-day {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 12px;
  font-size: 13px;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.cal-day b { color: var(--ink); font-size: 14px; }
.cal-day .cal-nav { display: flex; gap: 6px; }
.cal-day .cal-nav button {
  width: 22px; height: 22px;
  line-height: 20px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  color: var(--ink-3);
  font-size: 13px;
}
.cal-day .cal-nav button:hover { border-color: var(--brand); color: var(--brand); }
.cal li { padding: 11px 0; border-bottom: 1px dashed var(--line); }
.cal li:last-child { border-bottom: 0; }
.cal .cal-t {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: var(--font-num);
}
.cal .cal-t .cal-star { color: #FFB020; font-family: var(--font); }
.cal .cal-n { margin-top: 4px; font-size: 14px; color: var(--ink); line-height: 1.5; }
.cal .cal-v {
  margin-top: 6px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-3);
}
.cal .cal-v b { color: var(--ink-2); font-family: var(--font-num); font-weight: 600; }
.cal .cal-v .cal-actual b { color: var(--brand); }

/* 特辑卡片 */
.special li { border-bottom: 1px dashed var(--line); }
.special li:last-child { border-bottom: 0; }
.special li a { display: flex; gap: 12px; padding: 13px 0; }
.special .sp-fig {
  width: 78px; height: 78px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
.special .sp-fig img { width: 100%; height: 100%; object-fit: cover; }
.special .sp-body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.special .sp-body h4 {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.special li a:hover h4 { color: var(--brand); }
.special .sp-body p {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--ink-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 广告位 */
.ad-box {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #16233A, #1F3A5F);
  color: #fff;
  padding: 22px 20px;
  position: relative;
}
.ad-box::after {
  content: "";
  position: absolute;
  right: -30px; top: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,120,240,.55), transparent 68%);
}
.ad-box .ad-kicker { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,.45); text-transform: uppercase; }
.ad-box h4 { margin-top: 8px; font-size: 17px; font-weight: 700; line-height: 1.45; }
.ad-box p { margin-top: 8px; font-size: 12.5px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* 榜单切换 tab */
.tabs { display: flex; gap: 16px; }
.tabs button {
  position: relative;
  padding: 0 0 10px;
  font-size: 14.5px;
  color: var(--ink-3);
}
.tabs button.is-on { color: var(--ink); font-weight: 600; }
.tabs button.is-on::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}

/* ==========================================================================
   9. 商城/专题横幅（首页中部）
   ========================================================================== */
.banner-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.banner-strip .bn {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 132px;
  padding: 22px 24px;
  background: linear-gradient(120deg, #23272F, #3A424F);
  color: #fff;
}
.banner-strip .bn.gold { background: linear-gradient(120deg, #3A3122, #6B5630); }
.banner-strip .bn .bn-k { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,.5); }
.banner-strip .bn h4 { margin-top: 8px; font-size: 20px; font-weight: 700; }
.banner-strip .bn p { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,.62); }
.banner-strip .bn .bn-fig {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  object-fit: cover;
  opacity: .5;
  mask-image: linear-gradient(to left, #000 20%, transparent);
  -webkit-mask-image: linear-gradient(to left, #000 20%, transparent);
}

/* ==========================================================================
   10. 列表页
   ========================================================================== */
.page-hd {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 15px;
}
.page-hd h1 { font-size: 26px; font-weight: 700; letter-spacing: -.5px; }
.page-hd p { margin-top: 8px; font-size: 13.5px; color: var(--ink-3); }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.filter-bar .fb-label { font-size: 13.5px; color: var(--ink-3); }
.filter-bar a {
  display: inline-block;
  height: 30px;
  line-height: 28px;
  padding: 0 13px;
  font-size: 13.5px;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 15px;
}
.filter-bar a:hover { border-color: var(--brand); color: var(--brand); }
.filter-bar a.is-on { background: var(--brand); border-color: var(--brand); color: #fff; }
.filter-bar .fb-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.filter-bar .fb-sort { font-size: 13.5px; color: var(--ink-3); }
.filter-bar .fb-sort.is-on { color: var(--brand); }

.list-feed > li { padding: 24px 0; border-bottom: 1px solid var(--line); }
.list-feed > li:first-child { padding-top: 20px; }

/* ==========================================================================
   11. 内容页
   ========================================================================== */
.article { padding-bottom: 20px; }
.article-hd { padding: 6px 0 22px; border-bottom: 1px solid var(--line); }
.article-hd h1 {
  font-size: 30px;
  line-height: 1.42;
  font-weight: 700;
  letter-spacing: -.6px;
}
.article-hd .a-sub {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #6B7079;
  padding-left: 12px;
  border-left: 3px solid var(--line-2);
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-3);
}
.article-meta .am-src { color: var(--ink-2); font-weight: 500; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-4); }
.article-meta .am-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.article-meta .am-right button:hover { color: var(--brand); }
.article-meta .am-fav { font-family: var(--font-num); }

.article-body {
  padding: 26px 0 10px;
  font-size: 16px;
  line-height: 1.92;
  color: #2B2F36;
}
.article-body p { margin-bottom: 22px; }
.article-body h2 {
  margin: 34px 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 12px;
  border-left: 4px solid var(--brand);
}
.article-body h3 { margin: 26px 0 12px; font-size: 17.5px; font-weight: 700; }
.article-body img { display: block; max-width: 100%; margin: 22px auto; border-radius: var(--radius); }
.article-body blockquote {
  margin: 22px 0;
  padding: 16px 20px;
  background: var(--bg-2);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--ink-2);
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 22px; }
.article-body ul li { list-style: disc; margin-bottom: 10px; }
.article-body ol li { list-style: decimal; margin-bottom: 10px; }
.article-body a { color: var(--brand); border-bottom: 1px solid rgba(224,46,36,.3); }
.article-body table { margin: 22px 0; font-size: 14.5px; }
.article-body table th, .article-body table td {
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  text-align: left;
}
.article-body table th { background: var(--bg-2); font-weight: 600; }
.article-body strong { font-weight: 700; }
.article-body figcaption {
  margin-top: -12px;
  margin-bottom: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
}

/* 正文内提示条 */
.article-note {
  margin: 26px 0;
  padding: 14px 18px;
  background: var(--brand-light);
  border-radius: var(--radius);
  font-size: 14px;
  color: #14507A;
  display: flex;
  gap: 10px;
}
.article-note::before { content: "※"; font-weight: 700; }

/* 关键词 */
.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 22px;
}
.article-tags .at-label { font-size: 13.5px; color: var(--ink-3); }
.article-tags a {
  display: inline-block;
  height: 28px;
  line-height: 26px;
  padding: 0 12px;
  font-size: 13px;
  color: var(--ink-2);
  background: var(--bg-2);
  border-radius: 14px;
}
.article-tags a:hover { background: var(--brand-light); color: var(--brand); }

/* 上下篇 */
.pn-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.pn-nav a {
  display: block;
  padding: 14px 16px;
  background: var(--bg-2);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.pn-nav a:hover { background: var(--brand-light); color: var(--brand); }
.pn-nav .pn-k { display: block; margin-bottom: 5px; font-size: 12.5px; color: var(--ink-3); }
.pn-nav .pn-next { text-align: right; }

/* 相关阅读 */
.related { padding: 26px 0 0; }
.related li { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.related li:last-child { border-bottom: 0; }
.related li a { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.related li a:hover { color: var(--brand); }
.related li a::before { content: ""; width: 5px; height: 5px; margin-top: 9px; border-radius: 50%; background: var(--line-2); flex-shrink: 0; }
.related li a:hover::before { background: var(--brand); }
.related .re-time { margin-left: auto; font-size: 12px; color: var(--ink-4); flex-shrink: 0; }

/* 作者卡 */
.author-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  margin-bottom: 26px;
}
.author-card .au-ava {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
}
.author-card .au-body { min-width: 0; }
.author-card .au-name { font-size: 15px; font-weight: 600; }
.author-card .au-desc { margin-top: 4px; font-size: 12.5px; color: var(--ink-3); line-height: 1.6; }
.author-card .au-btn {
  margin-left: auto;
  align-self: center;
  flex-shrink: 0;
  height: 32px;
  padding: 0 16px;
  font-size: 13px;
  color: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
}
.author-card .au-btn:hover { background: var(--brand); color: #fff; }

/* ==========================================================================
   12. 快讯直播页
   ========================================================================== */
.live-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--line);
}
.live-hd .lh-l { display: flex; align-items: center; gap: 12px; }
.live-hd h1 { font-size: 24px; font-weight: 700; }
.live-hd .lh-desc { font-size: 13px; color: var(--ink-3); }
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  font-size: 12px;
  color: #fff;
  background: var(--brand);
  border-radius: 12px;
}
.live-dot::before {
  content: "";
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
.live-day {
  position: sticky;
  top: var(--hd-h);
  z-index: 20;
  padding: 12px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.live-day span {
  display: inline-block;
  padding: 3px 12px;
  font-size: 13px;
  color: var(--ink-2);
  background: var(--bg-2);
  border-radius: 12px;
  font-family: var(--font-num);
}
.live-list { position: relative; padding-top: 6px; }
.live-list::before {
  content: "";
  position: absolute;
  left: 78px; top: 0; bottom: 30px;
  width: 1px;
  background: var(--line);
}
.live-list > li { display: flex; gap: 0; padding: 18px 0; }
.live-list .lv-t {
  width: 78px;
  flex-shrink: 0;
  text-align: right;
  padding-right: 20px;
  padding-top: 1px;
}
.live-list .lv-t b { display: block; font-size: 16px; font-weight: 600; font-family: var(--font-num); color: var(--ink); }
.live-list .lv-t span { font-size: 11.5px; color: var(--ink-4); }
.live-list .lv-c { position: relative; flex: 1; min-width: 0; padding-left: 22px; }
.live-list .lv-c::before {
  content: "";
  position: absolute;
  left: -4.5px; top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line-2);
}
.live-list > li.is-key .lv-c::before { background: var(--brand); border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }
.live-list .lv-c h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
}
.live-list .lv-c .lv-txt { margin-top: 10px; font-size: 14.5px; line-height: 1.85; color: #4A4F57; }
.live-list .lv-c .lv-txt p { margin-bottom: 12px; }
.live-list .lv-c .lv-txt p:last-child { margin-bottom: 0; }
.live-list .lv-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.live-list .lv-src { color: var(--ink-2); }
.live-more { text-align: center; padding: 10px 0 40px; }

/* ==========================================================================
   13. 搜索页
   ========================================================================== */
.search-hero { padding: 40px 0 30px; text-align: center; border-bottom: 1px solid var(--line); }
.search-hero h1 { font-size: 24px; font-weight: 700; }
.search-hero .sh-form {
  display: flex;
  gap: 10px;
  max-width: 620px;
  margin: 22px auto 0;
}
.search-hero .sh-input {
  flex: 1;
  height: 48px;
  padding: 0 20px;
  font-size: 15px;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: #fff;
}
.search-hero .sh-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }
.search-hero .sh-btn {
  height: 48px;
  padding: 0 34px;
  font-size: 15px;
  color: #fff;
  background: var(--brand);
  border-radius: 24px;
}
.search-hero .sh-btn:hover { background: var(--brand-hover); }
.search-hot { margin-top: 18px; font-size: 13px; color: var(--ink-3); display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.search-hot a { color: var(--ink-2); }
.search-hot a:hover { color: var(--brand); }
.search-stat { padding: 18px 0; font-size: 13.5px; color: var(--ink-3); border-bottom: 1px solid var(--line); }
.search-stat b { color: var(--brand); font-family: var(--font-num); }

/* ==========================================================================
   14. 底部
   ========================================================================== */
.ft { margin-top: 50px; background: var(--dark); color: #8B9099; font-size: 13px; }
.ft-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding: 44px 0 36px;
  border-bottom: 1px solid #232730;
}
.ft-brand .ft-logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.4px;
}
.ft-brand p { margin-top: 14px; line-height: 1.85; max-width: 320px; color: #6D727A; }
.ft-qr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.ft-qr .qr {
  width: 76px; height: 76px;
  border-radius: 6px;
  background: #fff;
  padding: 5px;
  flex-shrink: 0;
}
.ft-qr .qr img { width: 100%; height: 100%; display: block; }
.ft-qr .qr-txt { font-size: 12.5px; line-height: 1.7; color: #6D727A; }
.ft-qr .qr-txt b { display: block; color: #C9CDD4; font-size: 13.5px; margin-bottom: 2px; }
.ft-col h4 { font-size: 14.5px; font-weight: 600; color: #E8EAED; margin-bottom: 16px; }
.ft-col li { margin-bottom: 11px; }
.ft-col a { color: #8B9099; }
.ft-col a:hover { color: #fff; }
.ft-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px 0;
  font-size: 12.5px;
  color: #6D727A;
}
.ft-bot .ft-links { display: flex; gap: 16px; flex-wrap: wrap; }
.ft-bot .ft-links a:hover { color: #C9CDD4; }

/* 回到顶部 */
.to-top {
  position: fixed;
  right: 26px; bottom: 34px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 90;
}
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--brand); border-color: var(--brand); }

/* ==========================================================================
   15. 兼容迅睿CMS系统自带分页输出（{$pages}）
   系统输出的分页结构为 ul.pagination > li > a/span，这里统一成本模板的样式
   ========================================================================== */
.pager-wrap { padding: 36px 0 8px; }
.pager-wrap ul,
.pager-wrap .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pager-wrap ul > li,
.pager-wrap .pagination > li { list-style: none; }
.pager-wrap ul > li > a,
.pager-wrap ul > li > span,
.pager-wrap .pagination > li > a,
.pager-wrap .pagination > li > span {
  display: block;
  min-width: 36px;
  height: 36px;
  padding: 0 11px;
  line-height: 34px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #fff;
  text-decoration: none;
}
.pager-wrap ul > li > a:hover,
.pager-wrap .pagination > li > a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.pager-wrap ul > li.active > span,
.pager-wrap ul > li.active > a,
.pager-wrap .pagination > li.active > span,
.pager-wrap .pagination > li.active > a {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.pager-wrap ul > li.disabled > span,
.pager-wrap .pagination > li.disabled > span {
  color: var(--ink-4);
  background: var(--bg-3);
}

/* ==========================================================================
   16. 响应式
   ========================================================================== */
@media (max-width: 1180px) {
  .hd-inner { gap: 18px; }
  .nav a { padding: 0 10px; font-size: 15px; }
  .nav a.is-active::after { left: 10px; right: 10px; }
  .hd-search { width: 150px; }
  .layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 24px; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 1040px) {
  .hd-inner { gap: 14px; }
  .hd-app { display: none; }
}
@media (max-width: 980px) {
  :root { --hd-h: 56px; }
  .nav { display: none; }
  .hd-menu { display: flex; }
  .hd-search { flex: 1; width: auto; max-width: 260px; }
  .layout { grid-template-columns: 1fr; gap: 30px; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-split { grid-template-columns: 1fr 220px; gap: 10px; height: 380px; }
  .banner-strip { grid-template-columns: 1fr; }
  .article-hd h1 { font-size: 24px; }
  .article-body { font-size: 15.5px; line-height: 1.85; }
  .pn-nav { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .hd-app, .hd-login { display: none; }
  .sidebar { grid-template-columns: 1fr; }
  .fitem-fig { width: 116px; }
  .fitem-body h3 { font-size: 16px; }
  .fitem-body .fdesc { display: none; }
  .hero-split { grid-template-columns: 1fr; gap: 8px; padding-top: 12px; height: auto; }
  .hero-main { height: 240px; }
  .hero-side { flex-direction: row; height: auto; }
  .hero-mini { flex: 1; aspect-ratio: 2 / 1; }
  .hero-card h2 { font-size: 12.5px; }
  .hero-card .hero-cap { padding: 22px 9px 8px; }
  .hero-feature h2 { font-size: 19px; }
  .hero-feature p { font-size: 13.5px; }
  .live-list::before { left: 46px; }
  .live-list .lv-t { width: 46px; padding-right: 14px; }
  .live-list .lv-t b { font-size: 14px; }
  .live-list .lv-c { padding-left: 16px; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .quote thead, .quote tbody tr td:nth-child(3) { display: none; }
}
