@charset "utf-8";
/* ============================================
   nwzwq.com - 赛博朋克风格模板
   风格: C(赛博朋克) + H(全屏网格) + 色彩10(霓虹渐变)
   ============================================ */

:root {
  --primary: #667eea;
  --primary-dark: #5a67d8;
  --accent: #f093fb;
  --accent2: #764ba2;
  --bg-dark: #f5f5f5;
  --bg-light: #ffffff;
  --bg-card: #ffffff;
  --text-dark: #2c3e50;
  --text-muted: #7f8c8d;
  --text-light: #95a5a6;
  --neon-blue: #00d9ff;
  --neon-pink: #ff00ff;
  --neon-green: #00ff88;
  --shadow-sm: 0 4px 20px rgba(102, 126, 234, 0.2);
  --shadow-md: 0 8px 40px rgba(102, 126, 234, 0.3);
  --shadow-lg: 0 16px 60px rgba(102, 126, 234, 0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
  color: #2c3e50;
  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: 40px;
}
.section-header.left { text-align: left; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--neon-blue);
  font-weight: 600;
  margin-bottom: 10px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  text-shadow: none;
}

/* ============================================
   头部
   ============================================ */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.top_header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.top_header a#logo { display: flex; flex-direction: column; align-items: center; } .top_header a#logo img { width: 100px; height: 100px; object-fit: cover; border-radius: 8px; } .top_header a#logo .site-name { display: block; text-align: center; color: #1a1a1a; font-size: 1.25rem; font-weight: 700; margin-top: 8px; }

.nav-warp {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(102, 126, 234, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  flex-wrap: wrap;
}
.nav-item {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  transition: var(--transition);
  border: 1px solid transparent;
}
.nav-item:hover, .nav-item.active {
  color: #2c3e50;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

/* ============================================
   英雄区 - 赛博朋克
   ============================================ */
.hero-cyber {
  position: relative;
  height: 550px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  animation: heroFade 16s infinite;
}
@keyframes heroFade {
  0%, 30% { opacity: 0.5; }
  35%, 65% { opacity: 0; }
  70%, 100% { opacity: 0.5; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,15,26,0.7) 0%, rgba(15,15,26,0.9) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 700px;
}
.hero-glitch {
  font-size: 52px;
  font-weight: 700;
  color: #2c3e50;
  text-shadow: 0 0 40px var(--primary), 0 0 80px var(--accent2);
  margin-bottom: 16px;
  animation: glitch 3s infinite;
}
@keyframes glitch {
  0%, 90%, 100% { text-shadow: 0 0 40px var(--primary), 0 0 80px var(--accent2); }
  92% { text-shadow: -3px 0 var(--neon-pink), 3px 0 var(--neon-blue); }
  94% { text-shadow: 3px 0 var(--neon-pink), -3px 0 var(--neon-blue); }
}
.hero-sub {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 30px;
}
.hero-search {
  display: flex;
  justify-content: center;
}
.hero-search form {
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--primary);
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}
.hero-search input {
  width: 300px;
  padding: 14px 24px;
  background: transparent;
  border: none;
  color: #2c3e50;
  font-size: 14px;
  outline: none;
}
.hero-search input::placeholder { color: #2c3e50; }
.hero-search button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border: none;
  color: #2c3e50;
  cursor: pointer;
  transition: var(--transition);
}
.hero-search button:hover {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
}

/* ============================================
   数据统计
   ============================================ */
.stats-cyber {
  background: var(--bg-card);
  padding: 50px 0;
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}
.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid rgba(102, 126, 234, 0.2);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102,126,234,0.1), transparent);
  transition: var(--transition);
}
.stat-item:hover::before { left: 100%; }
.stat-num {
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 12px;
}
.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon i { font-size: 16px; color: #2c3e50; }

/* ============================================
   全屏网格
   ============================================ */
.grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}
.grid-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}
.grid-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
}
.grid-card.large { height: 450px; }
.card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}
.grid-card:hover .card-img { transform: scale(1.05); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,26,0.95) 0%, rgba(15,15,26,0.3) 60%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 48px;
  font-weight: 700;
  color: var(--neon-blue);
  opacity: 0.3;
  text-shadow: 0 0 20px var(--neon-blue);
}
.card-cat {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: #2c3e50;
  border-radius: 50px;
  font-size: 11px;
  margin-bottom: 10px;
  width: fit-content;
}
.card-overlay h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 8px;
}
.card-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #2c3e50;
}
.card-meta span { display: flex; align-items: center; gap: 4px; }
.grid-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.grid-side .grid-card { height: calc(50% - 10px); }

/* ============================================
   数字排行榜
   ============================================ */
.number-section {
  background: var(--bg-card);
  padding: 60px 24px;
}
.number-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.number-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: var(--transition);
}
.number-card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
  transform: translateX(6px);
}
.num-label {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  flex-shrink: 0;
}
.num-info { flex: 1; min-width: 0; }
.num-info h4 {
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.num-info span {
  font-size: 12px;
  color: #2c3e50;
}
.num-info span i { margin-right: 4px; }

/* ============================================
   轮播卡片
   ============================================ */
.carousel-section {
  padding: 60px 24px;
  overflow: hidden;
}
.carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-card);
}
.carousel-wrapper::-webkit-scrollbar { height: 6px; }
.carousel-wrapper::-webkit-scrollbar-track { background: var(--bg-card); }
.carousel-wrapper::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.carousel-track {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}
.carousel-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: var(--transition);
}
.carousel-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-pink);
  box-shadow: 0 10px 30px rgba(240, 147, 251, 0.2);
}
.carousel-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.carousel-info { padding: 18px; }
.carousel-date {
  font-size: 12px;
  color: var(--neon-blue);
  margin-bottom: 8px;
  display: block;
}
.carousel-info h3 {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.carousel-info p {
  font-size: 12px;
  color: #2c3e50;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   分类标签
   ============================================ */
.category-section {
  background: var(--bg-card);
  padding: 60px 24px;
}
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 28px;
  background: var(--bg-light);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 50px;
  font-size: 14px;
  color: #2c3e50;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-color: transparent;
  color: #2c3e50;
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.tab-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: var(--transition);
}
.tab-item:hover {
  border-color: var(--neon-green);
  transform: translateX(6px);
}
.tab-thumb {
  width: 100px;
  height: 75px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.tab-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tab-info h4 {
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tab-info span {
  font-size: 12px;
  color: #2c3e50;
}

/* ============================================
   全宽横幅
   ============================================ */
.banner-full {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102,126,234,0.85) 0%, rgba(118,75,162,0.85) 100%);
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.banner-content h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.banner-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.btn-cyber {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-cyber:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255,255,255,0.5);
}

/* ============================================
   主内容区
   ============================================ */
.main-cyber { padding: 60px 24px; }
.cyber-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}
.content-left { flex: 1; min-width: 0; }
.sidebar-right {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 精选列表 */
.featured-section { margin-bottom: 40px; }
.featured-list { display: flex; flex-direction: column; gap: 20px; }
.featured-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: var(--transition);
}
.featured-item:hover {
  transform: translateX(6px);
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
}
.featured-thumb {
  width: 200px;
  height: 150px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.featured-info { padding: 18px; flex: 1; }
.feat-cat {
  display: inline-block;
  font-size: 11px;
  color: var(--neon-pink);
  margin-bottom: 8px;
}
.featured-info h3 {
  font-size: 17px;
  color: #2c3e50;
  margin-bottom: 8px;
}
.featured-info p {
  font-size: 13px;
  color: #2c3e50;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feat-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #2c3e50;
}
.feat-meta span { display: flex; align-items: center; gap: 4px; }

/* 侧边栏卡片 */
.sidebar-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(102, 126, 234, 0.15);
}
.sidebar-card .card-title {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-card .card-title i { color: var(--neon-blue); }

/* 热门文章 */
.hot-list { display: flex; flex-direction: column; gap: 10px; }
.hot-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hot-item:hover {
  background: rgba(102, 126, 234, 0.15);
  transform: translateX(4px);
}
.hot-num {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #2c3e50;
  flex-shrink: 0;
}
.hot-title {
  font-size: 13px;
  color: #2c3e50;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 标签云 */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
  padding: 6px 14px;
  background: var(--bg-light);
  color: #2c3e50;
  border-radius: 50px;
  font-size: 13px;
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: var(--transition);
}
.tag-item:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-color: transparent;
  color: #2c3e50;
}

/* 关于我们 */
.about-text {
  font-size: 13px;
  color: #2c3e50;
  line-height: 1.8;
}

/* ============================================
   悬浮导航
   ============================================ */
.float-nav {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.float-item {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
  font-size: 18px;
  transition: var(--transition);
}
.float-item:hover, .float-item.active {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-color: transparent;
  color: #2c3e50;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

/* ============================================
   底部
   ============================================ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(102, 126, 234, 0.2);
  color: #2c3e50;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  text-align: center;
  font-size: 13px;
}
.footer-bottom a { color: var(--neon-blue); margin: 0 8px; }
.footer-bottom a:hover { color: var(--neon-pink); }

/* ============================================
   响应式
   ============================================ */
@media (max-width: 1024px) {
  .grid-container { grid-template-columns: 1fr; }
  .grid-card.large { height: 350px; }
  .grid-side { flex-direction: row; }
  .grid-side .grid-card { width: calc(33.33% - 14px); height: 200px; }
  .cyber-container { flex-direction: column; }
  .sidebar-right { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .sidebar-card { flex: 1; min-width: 280px; }
  .tab-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-glitch { font-size: 32px; }
  .hero-search input { width: 200px; }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .number-grid { grid-template-columns: 1fr; }
  .grid-side { flex-direction: column; }
  .grid-side .grid-card { width: 100%; height: 200px; }
  .carousel-card { width: 240px; }
  .tab-list { grid-template-columns: 1fr; }
  .featured-item { flex-direction: column; }
  .featured-thumb { width: 100%; height: 180px; }
  .float-nav { right: 10px; bottom: 80px; }
  .float-item { width: 40px; height: 40px; font-size: 16px; }
}
/* ============================================
   新闻列表页 / 新闻详情页
   ============================================ */

/* 页面头部 */
.page-header {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-light) 100%);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}
.page-header .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  text-shadow: none;
}
.page-breadcrumb {
  font-size: 14px;
  color: #2c3e50;
}
.page-breadcrumb a { color: var(--neon-blue); }
.page-breadcrumb a:hover { color: var(--neon-pink); }

/* 主内容区 */
.content-wrapper {
  padding: 60px 0;
  background: var(--bg-dark);
}
.content-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 文章详情页 */
.article-detail {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(102, 126, 234, 0.15);
}
.detail-header { margin-bottom: 32px; text-align: center; }
.detail-category {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: #2c3e50;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 16px;
}
.detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  line-height: 1.4;
}
.detail-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  color: #2c3e50;
}
.detail-meta span { display: flex; align-items: center; gap: 6px; }
.detail-meta i { color: var(--neon-blue); }
.detail-content {
  font-size: 16px;
  line-height: 1.9;
  color: #2c3e50;
  margin-top: 32px;
}
.detail-content p { margin-bottom: 20px; }
.detail-content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
}
.detail-content h2, .detail-content h3, .detail-content h4 {
  color: #2c3e50;
  margin: 32px 0 16px;
}
.detail-tags {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(102, 126, 234, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #2c3e50;
}
.detail-tags i { color: var(--neon-blue); }
.detail-tags a {
  padding: 6px 14px;
  background: var(--bg-light);
  color: #2c3e50;
  border-radius: 50px;
  font-size: 13px;
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: var(--transition);
}
.detail-tags a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: #2c3e50;
  border-color: transparent;
}

/* 相关文章 */
.related-articles {
  margin-top: 40px;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(102, 126, 234, 0.15);
}
.related-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: var(--transition);
}
.related-card:hover {
  border-color: var(--neon-blue);
  transform: translateY(-4px);
}
.related-img {
  height: 120px;
  background-size: cover;
  background-position: center;
}
.related-info { padding: 16px; }
.related-info h4 {
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-info h4:hover { color: var(--neon-blue); }
.related-info span { font-size: 12px; color: #2c3e50; }

/* 列表页 */
.list-page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.list-page-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}
.list-main { min-width: 0; }
.list-articles { display: flex; flex-direction: column; gap: 24px; }
.list-article-item {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.15);
  transition: var(--transition);
}
.list-article-item:hover {
  border-color: var(--neon-blue);
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}
.list-article-img {
  width: 240px;
  height: 180px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.list-article-info {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.list-article-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.4;
}
.list-article-info h3:hover { color: var(--neon-blue); }
.list-article-info p {
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-article-meta {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: #2c3e50;
}
.list-article-meta span { display: flex; align-items: center; gap: 4px; }

/* 列表侧边栏 */
.list-sidebar { }
.sidebar-list-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(102, 126, 234, 0.15);
}
.sidebar-list-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-list-card h4 i { color: var(--neon-blue); }
.sidebar-list-card li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(102, 126, 234, 0.1);
}
.sidebar-list-card li:last-child { border-bottom: none; }
.sidebar-list-card a {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #2c3e50;
}
.sidebar-list-card a:hover { color: var(--neon-blue); }
.sidebar-list-card .count {
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #2c3e50;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(102, 126, 234, 0.15);
}
.pagination a, .pagination span {
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(102, 126, 234, 0.15);
  border-radius: var(--radius);
  font-size: 14px;
  color: #2c3e50;
  transition: var(--transition);
}
.pagination a:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}
.pagination .current {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  color: #2c3e50;
  border-color: transparent;
}

/* 响应式 */
@media (max-width: 1024px) {
  .list-page-grid, .list-page-wrapper { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .list-article-item { flex-direction: column; }
  .list-article-img { width: 100%; height: 200px; }
  .article-detail { padding: 24px; }
  .detail-title { font-size: 22px; }
  .related-grid { grid-template-columns: 1fr; }
  .detail-meta { flex-direction: column; gap: 12px; }
}

/* 侧边栏导航列表 */
.sidebar-nav-list li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(102, 126, 234, 0.1);
}
.sidebar-nav-list li:last-child { border-bottom: none; }
.sidebar-nav-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #2c3e50;
}
.sidebar-nav-list a:hover { color: var(--neon-blue); }
.sidebar-nav-list .count {
  background: var(--bg-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: #2c3e50;
}
