@charset "utf-8";
/* ============================================
   oqwmr.com - 解构主义 + 三色系风格
   风格: Y(解构主义) + D(装饰艺术) + 色彩3(红黄蓝)
   ============================================ */

:root {
  --red: #e53e3e;
  --yellow: #ecc94b;
  --blue: #3182ce;
  --primary: #e53e3e;
  --accent: #ecc94b;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --bg-dark: #1a1a2e;
  --text-dark: #1a1a2e;
  --text-muted: #666666;
  --text-light: #999999;
  --border: #e5e5e5;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.16);
  --radius: 0;
  --radius-sm: 4px;
  --radius-lg: 8px;
  --transition: all 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-light);
  font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, li { list-style: none; }
img { max-width: 100%; height: auto; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { display: inline-block; font-size: 12px; letter-spacing: 4px; color: var(--text-light); margin-bottom: 10px; }
.section-title { font-size: 36px; font-weight: 700; color: var(--text-dark); }

/* ============================================
   头部
   ============================================ */
.header { background: var(--bg-dark); }
.top_header { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: center; }
.top_header a#logo { display: flex; flex-direction: column; align-items: center; } .top_header a#logo img { height: 100px; width: 100px; object-fit: cover; border-radius: 8px; } .top_header a#logo .site-name { display: block; text-align: center; color: #fff; font-size: 1.25rem; font-weight: 700; margin-top: 8px; }

.nav-warp { background: var(--bg-dark); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 100; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: center; padding: 0 24px; }
.nav-item { padding: 16px 24px; font-size: 14px; font-weight: 600; color: #fff; transition: var(--transition); }
.nav-item:hover, .nav-item.active { background: var(--red); }

/* ============================================
   对角线英雄区
   ============================================ */
.diagonal-hero { position: relative; height: 500px; overflow: hidden; background: var(--bg-dark); }
.diagonal-bg { position: absolute; inset: 0; }
.diagonal-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.diagonal-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(229,57,57,0.8) 0%, rgba(26,26,46,0.9) 100%); }
.diagonal-content { position: absolute; top: 50%; left: 10%; transform: translateY(-50%); z-index: 2; max-width: 600px; }
.diagonal-badge { display: inline-block; padding: 8px 20px; border: 2px solid var(--yellow); color: var(--yellow); font-size: 12px; letter-spacing: 4px; margin-bottom: 20px; }
.diagonal-content h1 { font-size: 48px; font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.diagonal-content p { font-size: 16px; color: rgba(255,255,255,0.9); }
.diagonal-shape { position: absolute; bottom: -50px; left: -50px; width: 200px; height: 200px; background: var(--yellow); transform: rotate(45deg); z-index: 1; }
.diagonal-shape::after { content: ''; position: absolute; bottom: 30px; right: -30px; width: 100px; height: 100px; background: var(--blue); }

/* ============================================
   交错时间线
   ============================================ */
.timeline-section { background: var(--bg-white); padding: 80px 0; }
.timeline-container { max-width: 1000px; margin: 0 auto; position: relative; padding: 0 24px; }
.timeline-center-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--red), var(--yellow), var(--blue)); transform: translateX(-50%); }
.timeline-item { position: relative; margin-bottom: 50px; display: flex; }
.timeline-item.left { justify-content: flex-start; padding-right: calc(50% + 40px); }
.timeline-item.right { justify-content: flex-end; padding-left: calc(50% + 40px); }
.timeline-dot { position: absolute; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-white); border: 4px solid; z-index: 2; }
.timeline-item.left .timeline-dot { right: calc(50% - 10px); border-color: var(--red); }
.timeline-item.right .timeline-dot { left: calc(50% - 10px); border-color: var(--blue); }
.timeline-card { background: var(--bg-light); padding: 24px; border: 2px solid var(--border); position: relative; }
.timeline-card::before { content: ''; position: absolute; top: 20px; width: 0; height: 0; border-style: solid; }
.timeline-item.left .timeline-card::before { right: -15px; border-width: 10px 0 10px 15px; border-color: transparent transparent transparent var(--border); }
.timeline-item.right .timeline-card::before { left: -15px; border-width: 10px 15px 10px 0; border-color: transparent var(--border) transparent transparent; }
.timeline-date { display: block; font-size: 28px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.timeline-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.timeline-card p { font-size: 14px; color: var(--text-muted); }

/* ============================================
   三色卡片网格
   ============================================ */
.triple-grid-section { background: var(--bg-light); padding: 80px 0; }
.triple-header { text-align: center; margin-bottom: 50px; }
.triple-title { font-size: 36px; font-weight: 700; color: var(--text-dark); }
.triple-title .t-red { color: var(--red); }
.triple-title .t-yellow { color: var(--yellow); }
.triple-title .t-blue { color: var(--blue); }
.triple-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.triple-card { background: var(--bg-white); padding: 40px 30px; position: relative; overflow: hidden; transition: var(--transition); }
.triple-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.triple-card.red { border-top: 4px solid var(--red); }
.triple-card.yellow { border-top: 4px solid var(--yellow); }
.triple-card.blue { border-top: 4px solid var(--blue); }
.triple-icon { width: 60px; height: 60px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.triple-card.red .triple-icon { background: rgba(229,57,57,0.1); border-radius: 50%; }
.triple-card.red .triple-icon i { font-size: 28px; color: var(--red); }
.triple-card.yellow .triple-icon { background: rgba(236,201,75,0.2); border-radius: 50%; }
.triple-card.yellow .triple-icon i { font-size: 28px; color: var(--yellow); }
.triple-card.blue .triple-icon { background: rgba(49,130,206,0.1); border-radius: 50%; }
.triple-card.blue .triple-icon i { font-size: 28px; color: var(--blue); }
.triple-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.triple-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.triple-num { position: absolute; bottom: 20px; right: 24px; font-size: 64px; font-weight: 700; color: var(--border); line-height: 1; }

/* ============================================
   不对称网格
   ============================================ */
.asym-grid-section { background: var(--bg-white); padding: 80px 0; }
.asym-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.asym-header { margin-bottom: 40px; }
.asym-header h2 { font-size: 32px; font-weight: 700; color: var(--text-dark); }
.asym-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 20px; }
.asym-item { position: relative; overflow: hidden; cursor: pointer; }
.asym-item.large { grid-row: span 2; }
.asym-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: var(--transition); }
.asym-item:hover .asym-img { transform: scale(1.05); }
.asym-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 60%); padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; }
.asym-cat { display: inline-block; padding: 4px 12px; background: var(--red); color: #fff; font-size: 11px; margin-bottom: 8px; width: fit-content; }
.asym-item:nth-child(2) .asym-cat { background: var(--yellow); color: var(--text-dark); }
.asym-item:nth-child(3) .asym-cat, .asym-item:nth-child(4) .asym-cat, .asym-item:nth-child(5) .asym-cat { background: var(--blue); }
.asym-overlay h3 { font-size: 20px; color: #fff; font-weight: 700; }

/* ============================================
   悬浮标签导航
   ============================================ */
.floating-nav-section { background: var(--bg-dark); padding: 60px 0; }
.floating-header { text-align: center; margin-bottom: 30px; }
.floating-header h2 { font-size: 28px; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; gap: 12px; }
.floating-header h2 i { color: var(--yellow); }
.floating-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; padding: 0 24px; }
.f-tab { padding: 12px 28px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); border-bottom: 3px solid transparent; }
.f-tab:hover, .f-tab.active { background: var(--yellow); color: var(--text-dark); border-color: var(--red); }
.floating-content { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.f-panel { display: none; }
.f-panel.active { display: block; }
.f-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.f-item { display: flex; align-items: center; gap: 20px; padding: 24px; background: rgba(255,255,255,0.05); border-left: 3px solid var(--red); transition: var(--transition); }
.f-item:hover { background: rgba(255,255,255,0.1); transform: translateX(10px); }
.f-num { width: 40px; height: 40px; background: var(--red); color: #fff; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.f-info h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.f-info p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ============================================
   大字标题列表 + 侧边栏布局
   ============================================ */
.bigtext-section { background: var(--bg-light); padding: 80px 0; }
.bigtext-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.bigtext-main { min-width: 0; }
.bigtext-header { text-align: left; margin-bottom: 40px; padding-left: 24px; }
.bigtext-header h2 { font-size: 32px; font-weight: 700; color: var(--text-dark); margin-top: 10px; }
.bigtext-list { padding: 0 24px; }
.bigtext-item { display: flex; align-items: center; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--border); transition: var(--transition); }
.bigtext-item:hover { padding-left: 20px; border-color: var(--blue); }
.big-num { width: 60px; font-size: 36px; font-weight: 700; color: var(--border); flex-shrink: 0; transition: var(--transition); }
.bigtext-item:hover .big-num { color: var(--blue); }
.big-content { flex: 1; }
.big-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.big-content h3 a { color: var(--text-dark); }
.big-content h3 a:hover { color: var(--primary); }
.big-content p { font-size: 14px; color: var(--text-muted); }
.big-date { font-size: 14px; color: var(--text-light); flex-shrink: 0; }
/* 侧边栏 */
.bigtext-sidebar { position: sticky; top: 80px; }
.bigtext-sidebar .sidebar-widget { background: var(--bg-white); padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.bigtext-sidebar .widget-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--red); display: flex; align-items: center; gap: 8px; }
.bigtext-sidebar .widget-title i { color: var(--red); }
.bigtext-sidebar .widget-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.bigtext-sidebar .widget-list li:last-child { border-bottom: none; }
.bigtext-sidebar .list-num { width: 22px; height: 22px; background: var(--red); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bigtext-sidebar .widget-list a { font-size: 14px; color: var(--text-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bigtext-sidebar .widget-list a:hover { color: var(--red); }
.bigtext-sidebar .widget-cats li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.bigtext-sidebar .widget-cats li:last-child { border-bottom: none; }
.bigtext-sidebar .widget-cats a { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-dark); }
.bigtext-sidebar .widget-cats a:hover { color: var(--red); }
.bigtext-sidebar .cat-count { background: var(--bg-light); padding: 2px 8px; font-size: 12px; color: var(--text-muted); }
.bigtext-sidebar .recommend-list { display: flex; flex-direction: column; gap: 12px; }
.bigtext-sidebar .recommend-item { display: flex; gap: 12px; align-items: center; }
.bigtext-sidebar .rec-img { width: 70px; height: 50px; background-size: cover; background-position: center; flex-shrink: 0; }
.bigtext-sidebar .rec-info h5 { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bigtext-sidebar .rec-info span { font-size: 12px; color: var(--text-light); }

.big-date { font-size: 14px; color: var(--text-light); flex-shrink: 0; }

/* ============================================
   统计装饰
   ============================================ */
.stats-decor { background: linear-gradient(135deg, var(--red) 0%, var(--yellow) 50%, var(--blue) 100%); padding: 60px 0; }
.stats-container { max-width: 1000px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-decor-item { }
.stat-num { display: block; font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.9); }

/* ============================================
   底部
   ============================================ */
.footer { background: var(--bg-dark); padding: 40px 24px; text-align: center; border-top: 3px solid var(--yellow); }
.footer-bottom { max-width: 1200px; margin: 0 auto; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: var(--yellow); margin: 0 8px; }
.footer-bottom a:hover { color: var(--red); }

/* ============================================
   响应式
   ============================================ */
@media (max-width: 1024px) {
  .triple-grid { grid-template-columns: 1fr; }
  .asym-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .asym-item.large { grid-row: span 1; }
  .timeline-center-line { display: none; }
  .timeline-item.left, .timeline-item.right { padding: 0; justify-content: flex-start; }
  .timeline-dot { display: none; }
  .f-list { grid-template-columns: 1fr; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .diagonal-content h1 { font-size: 32px; }
  .diagonal-shape { display: none; }
  .asym-grid { grid-template-columns: 1fr; }
  .bigtext-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .big-num { font-size: 28px; }
  .stats-container { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 32px; }
}

/* ============================================
   文章详情页 & 列表页
   ============================================ */
.page-header { background: var(--bg-dark); padding: 50px 0; margin-bottom: 40px; border-bottom: 3px solid var(--yellow); }
.page-header .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-title { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.page-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); }
.page-breadcrumb a { color: var(--yellow); }
.content-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 24px 60px; }

.article-detail { background: var(--bg-white); padding: 40px; margin-bottom: 40px; border: 2px solid var(--border); }
.detail-header { margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.detail-category { display: inline-block; padding: 6px 16px; background: var(--red); color: #fff; font-size: 12px; margin-bottom: 14px; }
.detail-title { font-size: 26px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; line-height: 1.4; }
.detail-meta { display: flex; gap: 24px; font-size: 13px; color: var(--text-muted); }
.detail-meta span { display: flex; align-items: center; gap: 6px; }
.detail-content { font-size: 15px; line-height: 1.9; color: var(--text-dark); }
.detail-content p { margin-bottom: 18px; }
.detail-content img { max-width: 100%; height: auto; margin: 20px 0; border: 2px solid var(--border); }
.detail-content h2, .detail-content h3, .detail-content h4 { margin: 24px 0 14px; color: var(--text-dark); }
.detail-content ul, .detail-content ol { margin: 16px 0; padding-left: 24px; }
.detail-content li { margin-bottom: 8px; list-style: disc; }
.detail-content blockquote { margin: 20px 0; padding: 20px 24px; background: var(--bg-light); border-left: 4px solid var(--blue); font-style: italic; color: var(--text-muted); }

.detail-tags { margin-top: 30px; padding-top: 20px; border-top: 2px solid var(--border); font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.detail-tags a { display: inline-block; padding: 4px 12px; background: var(--bg-light); color: var(--text-muted); font-size: 12px; margin-left: 6px; }
.detail-tags a:hover { background: var(--blue); color: #fff; }

.related-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--yellow); display: flex; align-items: center; gap: 10px; }
.related-title i { color: var(--yellow); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: block; background: var(--bg-white); border: 2px solid var(--border); transition: var(--transition); }
.related-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-img { height: 140px; background-size: cover; background-position: center; }
.related-info { padding: 16px; }
.related-info h4 { font-size: 14px; color: var(--text-dark); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-info span { font-size: 12px; color: var(--text-light); }
.related-info span i { margin-right: 4px; }

.list-page-grid { display: flex; gap: 30px; }
.list-page-grid .main-content { flex: 1; min-width: 0; }
.list-sidebar { width: 280px; flex-shrink: 0; }
.list-articles { display: flex; flex-direction: column; gap: 20px; }
.list-article-item { display: flex; gap: 20px; background: var(--bg-white); border: 2px solid var(--border); transition: var(--transition); }
.list-article-item:hover { border-color: var(--blue); transform: translateX(6px); }
.list-article-img { width: 200px; height: 150px; background-size: cover; background-position: center; flex-shrink: 0; border-right: 2px solid var(--border); }
.list-article-info { padding: 20px; display: flex; flex-direction: column; justify-content: center; flex: 1; }
.list-article-info h3 { font-size: 17px; color: var(--text-dark); margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.list-article-info h3 a:hover { color: var(--primary); }
.list-article-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.list-article-meta { display: flex; gap: 20px; font-size: 12px; color: var(--text-light); }
.list-article-meta span { display: flex; align-items: center; gap: 4px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.pagination a, .pagination span { padding: 10px 16px; background: var(--bg-white); border: 2px solid var(--border); font-size: 14px; color: var(--text-dark); transition: var(--transition); }
.pagination a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.pagination .active { background: var(--blue); color: #fff; border-color: var(--blue); }
.sidebar-card { background: var(--bg-white); border: 2px solid var(--border); padding: 20px; margin-bottom: 20px; }
.sidebar-card .card-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 3px solid var(--yellow); display: flex; align-items: center; gap: 8px; }
.sidebar-card .card-title i { color: var(--yellow); }
.sidebar-nav-list { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav-list li { padding: 10px 14px; background: var(--bg-light); border-left: 3px solid transparent; transition: var(--transition); }
.sidebar-nav-list li:hover { background: var(--bg-light); border-color: var(--blue); border-left-color: var(--blue); }
.sidebar-nav-list li:hover a { color: var(--blue); }
.sidebar-nav-list a { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-dark; }
.sidebar-nav-list .count { font-size: 11px; color: var(--text-light); background: rgba(0,0,0,0.06); padding: 2px 8px; border-radius: 50px; }
.sidebar-nav-list li:hover .count { background: var(--blue); color: #fff; }

@media (max-width: 900px) { .list-page-grid { flex-direction: column; } .list-sidebar { width: 100%; } .related-grid { grid-template-columns: repeat(2, 1fr); } .list-article-img { width: 160px; height: 130px; } }
@media (max-width: 600px) { .article-detail { padding: 24px; } .detail-title { font-size: 22px; } .list-article-item { flex-direction: column; } .list-article-img { width: 100%; height: 180px; border-right: none; border-bottom: 2px solid var(--border); } .related-grid { grid-template-columns: 1fr; } }
/* ============================================
   大字标题列表 + 侧边栏布局
   ============================================ */
.bigtext-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.bigtext-main { min-width: 0; }
.bigtext-sidebar { position: sticky; top: 80px; }
.bigtext-sidebar .sidebar-widget {
  background: var(--bg-white);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.bigtext-sidebar .widget-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bigtext-sidebar .widget-title i { color: var(--red); }
.bigtext-sidebar .widget-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.bigtext-sidebar .widget-list li:last-child { border-bottom: none; }
.bigtext-sidebar .list-num {
  width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bigtext-sidebar .widget-list a {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bigtext-sidebar .widget-list a:hover { color: var(--red); }
.bigtext-sidebar .widget-cats li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.bigtext-sidebar .widget-cats li:last-child { border-bottom: none; }
.bigtext-sidebar .widget-cats a {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-dark);
}
.bigtext-sidebar .widget-cats a:hover { color: var(--red); }
.bigtext-sidebar .cat-count {
  background: var(--bg-light);
  padding: 2px 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.bigtext-sidebar .recommend-list { display: flex; flex-direction: column; gap: 12px; }
.bigtext-sidebar .recommend-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.bigtext-sidebar .rec-img {
  width: 70px;
  height: 50px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.bigtext-sidebar .rec-info h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bigtext-sidebar .rec-info span { font-size: 12px; color: var(--text-light); }
