@charset "utf-8";
/* ============================================
   dejyz.com - 编辑杂志风 / Editorial Magazine
   风格: E(编辑杂志) + B(大标题风格)
   色彩: 6(橙琥珀色系 #f59e0b/#d97706)
   ============================================ */

:root {
  --primary: #b45309;
  --secondary: #d97706;
  --accent: #f59e0b;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --bg-dark: #1c1917;
  --bg-card: #292524;
  --bg-light: #f5f5f4;
  --bg-white: #ffffff;
  --text-dark: #1c1917;
  --text-light: #78716c;
  --text-muted: #a8a29e;
  --border: #e7e5e4;
  --shadow: 0 8px 30px rgba(180, 83, 9, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul, li { list-style: none; }
img { max-width: 100%; height: auto; }

/* ============================================
   头部 - 报式风格
   ============================================ */
.header { background: var(--bg-dark); color: #fff; }
.top_header { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; align-items: center; justify-content: flex-start; gap: 15px; } .top_header a#logo { display: flex; align-items: center; gap: 15px; } .top_header a#logo img { height: 100px; width: 100px; object-fit: cover; border-radius: 10px; } .top_header a#logo .site-name { font-size: 1.25rem; font-weight: 700; color: #fff; }

.header-info { display: flex; align-items: center; gap: 20px; font-size: 13px; color: #a8a29e; }
.header-info i { margin-right: 6px; color: var(--accent); }

.nav-warp { background: var(--bg-dark); border-bottom: 3px solid var(--accent); position: sticky; top: 0; z-index: 100; }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; padding: 0 24px; }
.nav-item { padding: 14px 24px; font-size: 14px; font-weight: 600; color: #a8a29e; letter-spacing: 0.5px; transition: all 0.3s ease; }
.nav-item:first-child { color: var(--accent); }
.nav-item:hover { color: var(--accent); }

/* ============================================
   杂志大Banner - 全屏视觉冲击
   ============================================ */
.magazine-banner { position: relative; height: 500px; overflow: hidden; }
.mag-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.mag-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,25,23,0.95) 0%, rgba(28,25,23,0.4) 50%, rgba(28,25,23,0.2) 100%); }
.mag-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; max-width: 1200px; margin: 0 auto; }
.mag-badge { display: inline-block; padding: 6px 16px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.mag-title { font-size: 42px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px; max-width: 700px; }
.mag-title:hover { color: var(--accent); }
.mag-meta { display: flex; gap: 24px; font-size: 14px; color: #a8a29e; }
.mag-meta i { margin-right: 6px; }

/* ============================================
   报纸风格分区标题
   ============================================ */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 28px; font-weight: 800; color: var(--text-dark); display: inline-block; position: relative; padding: 0 40px; }
.section-header h2::before, .section-header h2::after { content: ''; position: absolute; top: 50%; width: 60px; height: 3px; background: var(--accent); }
.section-header h2::before { left: -70px; }
.section-header h2::after { right: -70px; }
.section-header p { font-size: 14px; color: var(--text-light); margin-top: 8px; }

/* ============================================
   四格卡片 - 大小不一错落
   ============================================ */
.card-grid-section { padding: 80px 24px; background: var(--bg-white); }
.card-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 280px); gap: 20px; }
.card-grid .card-large { grid-column: span 2; grid-row: span 2; }
.card-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.card-item .card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.card-item:hover .card-img { transform: scale(1.08); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,25,23,0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.card-cat { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.card-title { font-size: 18px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; }
.card-large .card-title { font-size: 24px; }
.card-meta { font-size: 12px; color: #a8a29e; }
.card-meta i { margin-right: 4px; }

/* ============================================
   数字时间线 - 独特排版
   ============================================ */
.timeline-section { padding: 80px 24px; background: var(--bg-light); }
.timeline-container { max-width: 1200px; margin: 0 auto; }
.timeline-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.timeline-item { background: var(--bg-white); padding: 30px; border-radius: var(--radius); border: 2px solid transparent; transition: all 0.3s ease; position: relative; }
.timeline-item:hover { border-color: var(--accent); transform: translateY(-8px); box-shadow: var(--shadow); }
.timeline-item::before { content: attr(data-num); position: absolute; top: -20px; left: 24px; font-size: 60px; font-weight: 800; color: var(--accent); opacity: 0.2; line-height: 1; }
.timeline-date { font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 12px; letter-spacing: 1px; }
.timeline-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.timeline-title:hover { color: var(--primary); }
.timeline-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================
   侧边大图模块
   ============================================ */
.featured-split { padding: 80px 24px; background: var(--bg-white); }
.split-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 280px; gap: 30px; align-items: center; }
.split-main-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 400px; }
.split-main-img .sf-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.split-main-img::after { content: ''; position: absolute; inset: 0; border: 4px solid var(--accent); transform: translate(12px, 12px); z-index: -1; }
.split-main-content { padding: 20px; display: flex; flex-direction: column; gap: 28px; }
.split-content-item { }
.split-badge { display: inline-block; padding: 5px 14px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-bottom: 10px; }
.split-title { font-size: 20px; font-weight: 800; color: var(--text-dark); line-height: 1.3; margin-bottom: 10px; }
.split-title:hover { color: var(--primary); }
.split-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 10px; }
.split-meta { display: flex; gap: 14px; font-size: 12px; color: var(--text-muted); }
.split-meta i { margin-right: 4px; color: var(--accent); }
.split-list { display: flex; flex-direction: column; gap: 12px; }
.split-list-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: var(--bg-light); border-radius: var(--radius); transition: all 0.3s ease; }
.split-list-item:hover { background: var(--bg-white); box-shadow: var(--shadow); transform: translateX(4px); }
.split-list-img { width: 70px; height: 55px; background-size: cover; background-position: center; border-radius: var(--radius-sm); flex-shrink: 0; }
.split-list-info h4 { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; line-height: 1.4; }
.split-list-info h4:hover { color: var(--primary); }
.split-list-info span { font-size: 11px; color: var(--text-muted); }

/* ============================================
   标签云墙 - 圆润胶囊
   ============================================ */
.tagcloud-section { padding: 60px 24px; background: var(--bg-light); }
.tagcloud-container { max-width: 1200px; margin: 0 auto; text-align: center; }
.tagcloud-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.tagcloud-tag { padding: 10px 24px; background: var(--bg-white); color: var(--text-dark); font-size: 14px; font-weight: 500; border-radius: 50px; border: 2px solid var(--border); transition: all 0.3s ease; }
.tagcloud-tag:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: scale(1.05); }

/* ============================================
   全宽CTA区
   ============================================ */
.cta-section { padding: 80px 24px; background: var(--gradient); }
.cta-container { max-width: 800px; margin: 0 auto; text-align: center; color: #fff; }
.cta-title { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.cta-desc { font-size: 16px; opacity: 0.9; margin-bottom: 30px; }
.cta-btn { display: inline-block; padding: 14px 40px; background: #fff; color: var(--primary); font-size: 15px; font-weight: 700; border-radius: 50px; transition: all 0.3s ease; }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ============================================
   页脚
   ============================================ */
.footer { background: var(--bg-dark); padding: 40px 24px; text-align: center; color: #a8a29e; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 20px; }
.footer-links a { font-size: 14px; color: #a8a29e; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 13px; color: #78716c; }
.footer-copy a { color: var(--accent); }

/* ============================================
   响应式
   ============================================ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .card-grid .card-large { grid-column: span 2; grid-row: span 1; height: 300px; }
  .card-item { height: 200px; }
  .timeline-list { grid-template-columns: repeat(2, 1fr); }
  .split-container { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .split-main-img { height: 300px; grid-column: span 2; }
  .split-main-content { grid-column: span 1; }
  .split-list { grid-column: span 1; }
}
@media (max-width: 768px) {
  .mag-title { font-size: 28px; }
  .mag-content { padding: 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid .card-large { grid-column: span 1; }
  .card-item { height: 220px; }
  .timeline-list { grid-template-columns: 1fr; }
  .section-header h2::before, .section-header h2::after { display: none; }
  .split-container { grid-template-columns: 1fr; }
  .split-main-img { grid-column: span 1; height: 250px; }
  .split-title { font-size: 22px; }
}

/* ============================================
   内容页样式
   ============================================ */
.list-page-wrapper { max-width: 1200px; margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 320px; 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-white); border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease; }
.list-article-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.list-article-img { width: 280px; height: 200px; background-size: cover; background-position: center; flex-shrink: 0; }
.list-article-info { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.list-article-info h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.list-article-info h3:hover { color: var(--primary); }
.list-article-info p { font-size: 14px; color: var(--text-light); 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: 20px; font-size: 13px; color: var(--text-muted); }
.list-article-meta i { margin-right: 4px; color: var(--accent); }
.list-sidebar { position: sticky; top: 80px; height: fit-content; }
.sidebar-card { background: var(--bg-white); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.sidebar-card h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 3px solid var(--accent); display: flex; align-items: center; gap: 8px; }
.sidebar-card h4 i { color: var(--accent); }
.sidebar-nav-list li { padding: 10px 0; border-bottom: 1px dashed var(--border); }
.sidebar-nav-list li:last-child { border-bottom: none; }
.sidebar-nav-list a { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); }
.sidebar-nav-list a:hover { color: var(--primary); }
.sidebar-nav-list .count { background: var(--bg-light); padding: 2px 8px; font-size: 12px; color: var(--text-muted); border-radius: 20px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span { padding: 10px 16px; background: var(--bg-white); border-radius: var(--radius-sm); font-size: 14px; color: var(--text-muted); transition: all 0.3s ease; }
.pagination a:hover, .pagination .active { background: var(--gradient); color: #fff; }

.page-header { background: var(--bg-dark); padding: 40px 0; }
.page-header .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-title { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-breadcrumb { font-size: 14px; color: #a8a29e; }
.page-breadcrumb a { color: #a8a29e; }
.page-breadcrumb a:hover { color: var(--accent); }
.content-wrapper { background: var(--bg-light); padding: 60px 0; }
.content-wrapper .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.article-detail { background: var(--bg-white); padding: 40px; border-radius: var(--radius); margin-bottom: 40px; }
.detail-header { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid var(--border); }
.detail-category { display: inline-block; padding: 4px 16px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; margin-bottom: 16px; border-radius: 20px; }
.detail-title { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; line-height: 1.4; }
.detail-meta { display: flex; gap: 24px; font-size: 14px; color: var(--text-muted); }
.detail-meta i { margin-right: 4px; color: var(--accent); }
.detail-content { font-size: 16px; line-height: 1.8; color: var(--text-dark); }
.detail-content p { margin-bottom: 16px; }
.detail-content img { max-width: 100%; height: auto; margin: 16px 0; border-radius: var(--radius); }
.detail-content h2, .detail-content h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin: 24px 0 16px; }
.detail-content ul, .detail-content ol { padding-left: 24px; margin-bottom: 16px; }
.detail-content li { margin-bottom: 8px; }
.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; flex-wrap: wrap; gap: 12px; }
.detail-tags i { color: var(--accent); }
.detail-tags a { padding: 4px 16px; background: var(--bg-light); color: var(--text-muted); font-size: 13px; border-radius: 20px; }
.detail-tags a:hover { background: var(--gradient); color: #fff; }
.related-articles { background: var(--bg-white); border-radius: var(--radius); padding: 30px; }
.related-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px solid var(--accent); display: flex; align-items: center; gap: 8px; }
.related-title i { color: var(--accent); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { border-radius: var(--radius); overflow: hidden; transition: all 0.3s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related-img { height: 140px; background-size: cover; background-position: center; }
.related-info { padding: 16px; background: var(--bg-light); }
.related-info h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-info h4:hover { color: var(--primary); }
.related-info span { font-size: 12px; color: var(--text-muted); }
.related-info span i { margin-right: 4px; color: var(--accent); }

@media (max-width: 1024px) {
  .list-page-wrapper { grid-template-columns: 1fr; }
  .list-sidebar { position: static; }
  .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; }
  .related-grid { grid-template-columns: 1fr; }
  .article-detail { padding: 24px; }
  .detail-title { font-size: 24px; }
}
