/* ===================================================
   预见能源 - 全站通用样式
   主色：深绿 #1a6b3a  辅色：#2d9b5a  暗色：#0d3d21
   =================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #1a6b3a;
  --primary-dark:  #0d3d21;
  --primary-light: #2d9b5a;
  --primary-pale:  #e8f5ee;
  --accent:        #f0a500;
  --accent-red:    #e53935;
  --text-main:     #1a1a1a;
  --text-sub:      #555;
  --text-light:    #888;
  --border:        #e8e8e8;
  --bg:            #f4f6f4;
  --bg-card:       #ffffff;
  --header-h:      116px;
  --container-w:   1280px;
  --radius:        6px;
  --shadow:        0 2px 12px rgba(0,0,0,.08);
  --shadow-hover:  0 4px 20px rgba(26,107,58,.18);
  --transition:    all .22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

@font-face {
  font-family: 'Noto Serif SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Noto Serif SC'), local('Source Han Serif SC'), local('思源宋体 SC'),
       url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700;900&display=swap');
}
@font-face {
  font-family: 'Noto Sans SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Noto Sans SC'), local('Source Han Sans SC'), local('思源黑体 SC'),
       url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700&display=swap');
}

/* 全局字体 —— 学习强国风格：标题用宋体，正文用黑体 */
body {
  font-family: "Noto Sans SC", "Source Han Sans SC", "思源黑体 SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 所有标题统一用宋体 */
h1, h2, h3, h4, h5, h6,
.logo-cn,
.section-title,
.widget-header h3,
.slide-content h2,
.news-card.featured .news-body h3,
.news-item-body h4,
.cni-right h4,
.report-info h4,
.video-card h4,
.event-name,
.channel-name,
.slide-tag,
.slide-content .slide-meta {
  font-family: "Noto Serif SC", "Source Han Serif SC", "思源宋体 SC", "STSong", "SimSun", "Songti SC", serif;
}

/* Logo英文和等宽数字用黑体 */
.logo-en,
.dc-value,
.qn-time,
.ed-day,
.hot-num {
  font-family: "Noto Sans SC", "Source Han Sans SC", "思源黑体 SC", "PingFang SC", sans-serif;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   深色科技风导航栏 (替代旧 top-bar + header)
   ========================================= */

/* -- 全局变量补充 -- */
:root {
  --header-h-tech: 108px;
  --dark-1: #0a0f14;
  --dark-2: #111920;
  --dark-3: #19232e;
  --green-glow: rgba(45, 155, 90, 0.35);
}

/* -- 整体容器 -- */
.header-tech {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-1);
  /* 不覆盖旧 --header-h，其他页面仍用旧值 */
}

/* -- 顶部热点滚动条 -- */
.ht-topbar {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: 34px;
  line-height: 34px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.ht-topbar .container { height: 100%; }
.ht-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.ht-hot-news {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}
.ht-badge-hot {
  background: linear-gradient(135deg, #e53935, #ff6b35);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 1px;
  flex-shrink: 0;
  animation: ht-pulse 2s ease-in-out infinite;
}
@keyframes ht-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}
.ht-ticker {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}
.ht-ticker-track {
  display: inline-block;
  animation: ht-scroll 35s linear infinite;
}
.ht-ticker-track:hover { animation-play-state: paused; }
@keyframes ht-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ht-ticker-item { color: rgba(255,255,255,.72); }
.ht-ticker-sep { color: rgba(255,255,255,.2); margin: 0 6px; }
.ht-topbar-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.ht-action-link {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  transition: var(--transition);
}
.ht-action-link:hover { color: rgba(255,255,255,1); }
.ht-app-link {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(45, 155, 90, .15);
  color: #2d9b5a !important;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px !important;
}
.ht-app-link:hover { background: rgba(45, 155, 90, .25); }

/* -- 主导航区 -- */
.ht-main {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%);
  position: relative;
}
.ht-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(45,155,90,.3) 15%,
    rgba(45,155,90,.5) 50%,
    rgba(45,155,90,.3) 85%,
    transparent 100%
  );
}
.ht-main-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}

/* -- Logo -- */
.ht-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ht-logo-icon { flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(45,155,90,.4)); }
.ht-logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.ht-logo-cn {
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(45,155,90,.3);
}
.ht-logo-en {
  font-size: 9px;
  color: rgba(255,255,255,.4);
  letter-spacing: 2.5px;
  font-weight: 500;
  margin-top: 1px;
}

/* -- 导航菜单 -- */
.ht-nav { flex: 1; min-width: 0; }
.ht-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.ht-nav ul li { position: relative; height: 100%; display: flex; align-items: center; }
.ht-nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
}
.ht-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: #2d9b5a;
  border-radius: 1px;
  transition: transform .25s ease;
  box-shadow: 0 0 8px rgba(45,155,90,.5);
}
.ht-nav ul li a:hover {
  color: #fff;
}
.ht-nav ul li a:hover::after,
.ht-nav ul li.active > a::after {
  transform: translateX(-50%) scaleX(1);
}
.ht-nav ul li.active > a { color: #fff; font-weight: 700; }
.ht-nav .arrow { font-size: 9px; opacity: .4; margin-left: 2px; }
.ht-nav .nav-hot {
  background: linear-gradient(90deg, #ff6b35, #e53935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 13px;
}

/* -- 下拉子菜单（深色版） -- */
.header-tech .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid #2d9b5a;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 1px rgba(45,155,90,.3);
  padding: 20px 24px;
  min-width: 400px;
  gap: 28px;
  z-index: 1001;
  backdrop-filter: blur(16px);
}
.header-tech .has-sub:hover .sub-menu { display: flex; }
.header-tech .sub-menu-group h4 {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: 1.5px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}
.header-tech .sub-menu-group a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  height: auto;
}
.header-tech .sub-menu-group a:hover {
  color: #2d9b5a;
  padding-left: 6px;
}
.header-tech .sub-menu-group a::after { display: none; }

/* -- 右侧功能区 -- */
.ht-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* 搜索框 */
.ht-search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 0 12px;
  height: 36px;
  transition: var(--transition);
  gap: 6px;
}
.ht-search-box:focus-within {
  background: rgba(255,255,255,.1);
  border-color: rgba(45,155,90,.4);
  box-shadow: 0 0 0 3px rgba(45,155,90,.08);
}
.ht-search-icon { color: rgba(255,255,255,.35); flex-shrink: 0; }
.ht-search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 13px;
  width: 140px;
}
.ht-search-box input::placeholder { color: rgba(255,255,255,.3); }
.ht-search-kbd {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.3);
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0;
  font-family: inherit;
}

/* VIP 按钮 */
.ht-btn-vip {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #f0a500, #e87800);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: .5px;
  box-shadow: 0 2px 8px rgba(240,165,0,.3);
  transition: var(--transition);
}
.ht-btn-vip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(240,165,0,.4);
  color: #fff;
}

/* 投稿按钮 */
.ht-btn-write {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--transition);
}
.ht-btn-write:hover {
  color: #fff;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
}

/* 用户按钮 */
.ht-user-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.ht-user-btn:hover {
  border-color: #2d9b5a;
  color: #2d9b5a;
  box-shadow: 0 0 12px rgba(45,155,90,.15);
}

/* -- 底部发光线条 -- */
.ht-glow-line {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(45,155,90,0) 10%,
    rgba(45,155,90,.6) 30%,
    #2d9b5a 50%,
    rgba(45,155,90,.6) 70%,
    rgba(45,155,90,0) 90%,
    transparent 100%
  );
  position: relative;
}
.ht-glow-line::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 10%,
    rgba(45,155,90,.12) 30%,
    rgba(45,155,90,.18) 50%,
    rgba(45,155,90,.12) 70%,
    transparent 90%,
    transparent 100%
  );
  filter: blur(4px);
}

/* -- 兼容旧 .header 选择器（其他子页面仍用旧头部） -- */
.header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0 12px;
}
.logo a { display: flex; align-items: center; gap: 10px; }
.logo-icon svg { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-cn {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}
.logo-en {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 2px;
  font-weight: 500;
}
.header-search {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.header-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,107,58,.1);
}
.header-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text-main);
  background: transparent;
}
.header-search input::placeholder { color: var(--text-light); }
.search-btn {
  background: var(--primary);
  border: none;
  color: white;
  padding: 7px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.search-btn:hover { background: var(--primary-dark); }
.header-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-subscribe {
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-subscribe:hover { background: var(--primary-dark); color: white; }
.btn-write {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
}
.btn-write:hover { background: var(--primary-pale); }
.user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-sub);
  transition: var(--transition);
}
.user-avatar:hover { border-color: var(--primary); color: var(--primary); }

/* 主导航菜单（旧页面兼容） */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  height: 34px;
  line-height: 34px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left { display: flex; align-items: center; gap: 10px; overflow: hidden; flex: 1; }
.tag-hot {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 2px;
  white-space: nowrap;
  letter-spacing: .5px;
}
.top-bar-left marquee { flex: 1; font-size: 12px; }
.top-bar-right a { color: rgba(255,255,255,.8); font-size: 12px; }
.top-bar-right a:hover { color: #fff; }
.top-bar-right .divider { color: rgba(255,255,255,.3); margin: 0 8px; }

.main-nav { border-top: 1px solid var(--border); }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}
.main-nav ul li { position: relative; }
.main-nav ul li a {
  display: block;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.active > a { color: var(--primary); }
.main-nav ul li.active > a {
  border-bottom: 2px solid var(--primary);
  font-weight: 700;
}
.main-nav .arrow { font-size: 10px; opacity: .5; }
.main-nav .nav-special {
  background: linear-gradient(90deg, #ff6b35, #e53935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* 下拉子菜单（旧页面兼容 - 白底） */
.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  padding: 16px;
  min-width: 380px;
  display: none;
  gap: 20px;
  z-index: 1000;
}
.has-sub:hover .sub-menu { display: flex; }
.sub-menu-group h4 {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.sub-menu-group a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: var(--text-sub);
}
.sub-menu-group a:hover { color: var(--primary); padding-left: 4px; }

/* =========================================
   底部 Footer
   ========================================= */
.footer {
  background: #111a13;
  color: rgba(255,255,255,.7);
  margin-top: 48px;
}
.footer-top { padding: 48px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-logo span {
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.footer-desc {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2);
  padding: 3px 10px;
  border-radius: 12px;
}
.footer-social a:hover { color: white; border-color: var(--primary-light); background: rgba(26,107,58,.3); }
.footer-nav h4 {
  font-size: 13px;
  color: white;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav ul li a {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer-nav ul li a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  line-height: 1.8;
}
.footer-links a { color: rgba(255,255,255,.35); font-size: 11px; }
.footer-links a:hover { color: var(--primary-light); }
.footer-beian { margin: 2px 0; }
.footer-beian .beian-link { color: rgba(255,255,255,.3); font-size: 11px; text-decoration: none; transition: color .2s; }
.footer-beian .beian-link:hover { color: rgba(255,255,255,.6); }

/* =========================================
   全局商务咨询联系条 —— 高级深色毛玻璃
   ========================================= */
.biz-contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #0a2615 0%, #0d3d21 40%, #145a2e 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-top: 18px;
}
/* 微妙网格纹理 */
.biz-contact-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
/* 顶部高光线 */
.biz-contact-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45,155,90,0.6), transparent);
  border-radius: 0 0 4px 4px;
}

.biz-contact-left {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.biz-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.biz-contact-left-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}
.biz-contact-left-value {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  letter-spacing: 0.5px;
}

.biz-contact-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.biz-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.biz-contact-cta:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transform: translateY(-1px);
}
.biz-contact-cta svg {
  transition: transform 0.25s ease;
}
.biz-contact-cta:hover svg {
  transform: translateX(2px);
}

/* =========================================
   悬浮工具栏
   ========================================= */
.float-toolbar {
  position: fixed;
  right: 24px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 998;
}
.ft-item {
  width: 42px; height: 42px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--text-sub);
  transition: var(--transition);
}
.ft-item:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

/* =========================================
   通用工具类
   ========================================= */
.section-title { font-size: 18px; font-weight: 800; color: var(--text-main); }
.section-more { font-size: 13px; color: var(--primary); white-space: nowrap; }
.section-more:hover { opacity: .75; }
.section-dot {
  display: inline-block;
  width: 4px; height: 20px;
  background: var(--primary);
  border-radius: 2px;
  margin-right: 10px;
  flex-shrink: 0;
}
.section-badge {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  font-weight: 600;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-header-left { display: flex; align-items: center; gap: 4px; }

/* Tag标签 */
.category-tag, .tag, .ni-tag, .video-tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  background: rgba(255,255,255,.2);
  color: white;
  font-weight: 600;
}
.tag {
  background: var(--primary-pale);
  color: var(--primary);
  margin-right: 4px;
}

/* 分类标签切换 */
.section-tabs { display: flex; gap: 4px; margin-left: 12px; }
.tab {
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 12px;
  cursor: pointer;
  color: var(--text-sub);
  transition: var(--transition);
  white-space: nowrap;
}
.tab:hover { color: var(--primary); }
.tab.active {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

/* =========================================
   侧边栏通用
   ========================================= */
.sidebar-widget {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  overflow: hidden;
}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.widget-header h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
}
.widget-tabs { display: flex; gap: 4px; }
.wtab {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}
.wtab.active { background: var(--primary); color: white; font-weight: 600; }
.widget-more { font-size: 12px; color: var(--primary); }

/* 返回顶部可见控制 */
.float-toolbar { transition: var(--transition); }

/* ========== 全站通用：面包屑 ========== */
.breadcrumb-bar {
  background: var(--bg-card, #f8fafb);
  border-bottom: 1px solid var(--border, #e8eeef);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light, #999);
}
.breadcrumb a {
  color: var(--text-light, #999);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb .current {
  color: var(--text-sub, #666);
}

/* ========== 全站通用：主体区域 ========== */
.main-content {
  padding: 32px 0 0;
}

/* ========== 全站通用：统一栏头 ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.section-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-dot {
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}
.section-badge {
  display: inline-block;
  padding: 2px 10px;
  background: #fff3e0;
  color: #e65100;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.section-more {
  font-size: 13px;
  color: var(--text-light, #999);
  text-decoration: none;
  transition: color 0.2s;
}
.section-more:hover {
  color: var(--primary);
}

/* ========== 全站通用：标签 ========== */
.tag {
  display: inline-block;
  padding: 2px 10px;
  background: #e8f5ed;
  color: var(--primary);
  border-radius: 4px;
  font-size: 12px;
  margin-right: 6px;
}

/* ========== 全站通用：筛选器栏 ========== */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 12px 20px;
  background: #f8fafb;
  border-radius: 12px;
  border: 1px solid #e8eeef;
}
.filter-tabs {
  display: flex;
  gap: 4px;
}
.filter-tab {
  padding: 8px 18px;
  border: none;
  background: transparent;
  color: #555;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  font-family: 'Noto Sans SC', sans-serif;
}
.filter-tab:hover {
  background: #e8f5ed;
  color: var(--primary);
}
.filter-tab.active {
  background: var(--primary);
  color: #fff;
  font-weight: 500;
}
.sort-select {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  color: #555;
  background: #fff;
  cursor: pointer;
  font-family: 'Noto Sans SC', sans-serif;
}

/* ========== 全站通用：CTA区域 ========== */
.cta-section {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, #f0f7f3, #e8f5ed);
  border-radius: 16px;
  margin: 32px 0;
}
.cta-section h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
}
.cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26,107,58,0.3);
}
