/* ============================================
   地方融媒体中心与城市生活资讯门户 - 主样式表
   配色方案：权威新闻蓝 + 城市活力橙
   ============================================ */

/* CSS变量定义 */
:root {
  --primary-blue: #1565C0;
  --primary-blue-dark: #0D47A1;
  --primary-blue-light: #1E88E5;
  --accent-orange: #FF8F00;
  --accent-orange-light: #FFA726;
  --accent-orange-dark: #E65100;
  --bg-light: #F5F7FA;
  --card-white: #FFFFFF;
  --text-dark: #333333;
  --text-secondary: #666666;
  --text-light: #999999;
  --border-color: #E8ECF0;
  --shadow-sm: 0 2px 8px rgba(21, 101, 192, 0.08);
  --shadow-md: 0 4px 16px rgba(21, 101, 192, 0.12);
  --shadow-lg: 0 8px 32px rgba(21, 101, 192, 0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-main: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  --font-title: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --max-width: 1280px;
  --header-height: 64px;
}

/* 重置与基础 */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-orange);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* 容器 */
.cee9bf809 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   顶部导航栏
   ============================================ */
.c56f47be2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-blue);
  height: var(--header-height);
  transition: box-shadow 0.3s ease;
}

.c56f47be2.scrolled {
  box-shadow: var(--shadow-md);
}

.cd18ed6a4 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.c7f390776 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.c7f390776 img {
  height: 40px;
  width: auto;
}

.c1f47d6a8 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  white-space: nowrap;
}

.cb42e4884 {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cb42e4884 a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.cb42e4884 a:hover,
.cb42e4884 a.ce639b56e {
  color: var(--primary-blue);
  background: rgba(21, 101, 192, 0.06);
}

.cb42e4884 a.ce639b56e::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

/* 移动端菜单按钮 */
.cd36b0d97 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.cd36b0d97 span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* 搜索按钮 */
.cc2b58977 {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.cc2b58977:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* ============================================
   Hero区域 - 头条聚焦
   ============================================ */
.c4cc1f141 {
  position: relative;
  height: 75vh;
  min-height: 500px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.c57550b60 {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.c57550b60 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c554074c2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.85) 0%, rgba(21, 101, 192, 0.6) 50%, rgba(255, 143, 0, 0.3) 100%);
  z-index: 2;
}

.c6bae58f9 {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}

.c91c357d0 {
  color: #fff;
}

.c91c357d0 .ce61e7299 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-orange);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse-tag 2s infinite;
}

@keyframes pulse-tag {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.c91c357d0 h1 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.c91c357d0 .ce4104be4 {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 24px;
}

.c91c357d0 .c04957eac {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent-orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
}

.c91c357d0 .c04957eac:hover {
  background: var(--accent-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 143, 0, 0.4);
  color: #fff;
}

/* 24小时快讯侧栏 */
.c9b4b7f8f {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  max-height: 400px;
  overflow: hidden;
}

.c93d0cb8c {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.c9aafb590 {
  width: 8px;
  height: 8px;
  background: #f44336;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.c1bc45198 {
  color: #fff;
}

.c3e7fed69 {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.c3e7fed69:hover {
  opacity: 1;
}

.c3e7fed69 .c65175dc8 {
  color: var(--accent-orange-light);
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* ============================================
   通用模块标题
   ============================================ */
.c6e1b8766 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.c711c8e45 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.c711c8e45::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
  border-radius: 2px;
}

.ca282bca2 {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ca282bca2:hover {
  color: var(--primary-blue);
}

/* ============================================
   融媒矩阵内容瀑布流
   ============================================ */
.c66990fce {
  padding: 60px 0;
  background: var(--bg-light);
}

.cd41396aa {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.c7811a5cb {
  background: var(--card-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
}

.c7811a5cb:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cee37a88a {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.cee37a88a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.c7811a5cb:hover .cee37a88a img {
  transform: scale(1.05);
}

.cee37a88a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.c7811a5cb:hover .cee37a88a::after {
  opacity: 1;
}

.c6f99b575 {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}

.cd4df2aee { background: #f44336; }
.c7f20a573 { background: #9c27b0; }
.c583e6798 { background: var(--primary-blue); }
.c8d60ceb1 { background: var(--accent-orange); animation: pulse-tag 2s infinite; }

.c1a770685 {
  padding: 18px;
}

.c8f931772 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c50bc56df {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.c33994b0d {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   便民服务金刚区
   ============================================ */
.c63f98691 {
  padding: 60px 0;
  background: var(--card-white);
}

.cd8e2b8a9 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.c475011b4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.c475011b4:hover {
  background: var(--bg-light);
  transform: translateY(-4px);
}

.c475011b4:hover .c7e260d97 {
  animation: bounce-icon 0.5s ease;
}

@keyframes bounce-icon {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
  60% { transform: translateY(-3px); }
}

.c7e260d97 {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
  color: #fff;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.25);
}

.c7e260d97.c5a6a0f0f {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
  box-shadow: 0 4px 12px rgba(255, 143, 0, 0.25);
}

.cd58a7aa8 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: center;
}

/* ============================================
   网络问政与热点回应
   ============================================ */
.c158e6461 {
  padding: 60px 0;
  background: var(--bg-light);
}

.c720ef792 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cabce2e0f {
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.cabce2e0f:hover {
  box-shadow: var(--shadow-md);
}

.c0de8471f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.c87cb85af {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.cadbeb256 { background: #e8f5e9; color: #2e7d32; }
.ce087552d { background: #fff3e0; color: #e65100; }
.c65e5ef92 { background: #e3f2fd; color: #1565c0; }

.c5241c1db {
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.6;
}

.c595555c8 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 12px;
  border-left: 3px solid var(--primary-blue);
}

.c193c2623 {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   城市慢直播
   ============================================ */
.c83a01107 {
  padding: 60px 0;
  background: #0a1628;
  color: #fff;
}

.c83a01107 .c711c8e45 {
  color: #fff;
}

.c136c62cf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.c30e248c9 {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.c30e248c9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c18e3790f {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(244, 67, 54, 0.9);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.c9485b4fc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
   辟谣与法治宣传
   ============================================ */
.c03bd0e7b {
  padding: 60px 0;
  background: #1a1a1a;
  color: #fff;
}

.c03bd0e7b .c711c8e45 {
  color: #fff;
}

.c03bd0e7b .c711c8e45::before {
  background: linear-gradient(180deg, #f44336, #ff9800);
}

.c343be2f5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ce73ba0f5 {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.ce73ba0f5:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #f44336;
}

.c9a4459d4 {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.c8768f3d8 { background: #f44336; }
.c866c72ef { background: #4caf50; }
.c50038836 { background: #ff9800; }

.cf7941abf h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.cf7941abf p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================
   突发事件时间线
   ============================================ */
.c89f26663 {
  padding: 60px 0;
  background: var(--card-white);
}

.c408adb93 {
  position: relative;
  padding-left: 30px;
}

.c408adb93::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
}

.ca1bb4f32 {
  position: relative;
  padding: 0 0 32px 24px;
}

.ca1bb4f32::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: 3px solid var(--bg-light);
}

.ca1bb4f32:first-child::before {
  background: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(255, 143, 0, 0.2);
}

.c1d798fdd {
  font-size: 0.8rem;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 6px;
}

.cd2a36772 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.cffd8862f {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   页脚
   ============================================ */
.cffca5d4c {
  background: var(--primary-blue-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

.c3a3189d0 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.c3258af01 .c2821a3c0 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.c3258af01 p {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.8;
}

.c5b2bdaf7 h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.c5b2bdaf7 a {
  display: block;
  padding: 4px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.c5b2bdaf7 a:hover {
  color: var(--accent-orange-light);
}

.c38b2317d {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.7;
}

.c38b2317d a {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   面包屑导航
   ============================================ */
.ccdd45edb {
  padding: 16px 0;
  margin-top: var(--header-height);
  background: var(--card-white);
  border-bottom: 1px solid var(--border-color);
}

.c4de22f7c {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.c4de22f7c a {
  color: var(--text-secondary);
}

.c4de22f7c span {
  color: var(--text-dark);
  font-weight: 500;
}

/* ============================================
   栏目页通用布局
   ============================================ */
.c1e7ae15f {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: #fff;
  margin-top: var(--header-height);
}

.c1e7ae15f h1 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.c1e7ae15f p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 600px;
}

.c20583cd8 {
  padding: 40px 0 80px;
}

.c98f625a6 {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}

.c7c1824d3 {
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.c7c1824d3 h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 28px 0 16px;
  color: var(--primary-blue-dark);
}

.c7c1824d3 h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0 12px;
}

.c7c1824d3 p {
  margin-bottom: 16px;
  line-height: 1.9;
  color: var(--text-dark);
}

.cfefce48d {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cfb69fa6c {
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.cfb69fa6c h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.cfb69fa6c a {
  display: block;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.cfb69fa6c a:last-child {
  border-bottom: none;
}

/* ============================================
   详情页
   ============================================ */
.detail-header {
  margin-top: var(--header-height);
  padding: 40px 0;
  background: var(--card-white);
  border-bottom: 1px solid var(--border-color);
}

.detail-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.detail-body {
  padding: 40px 0 80px;
}

.cb97cb754 {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.cb97cb754 p {
  margin-bottom: 18px;
  line-height: 2;
  font-size: 1rem;
}

.cb97cb754 img {
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

/* ============================================
   搜索页
   ============================================ */
.search-section {
  padding: 60px 0;
  margin-top: var(--header-height);
  min-height: 60vh;
}

.c0c1d2265 {
  max-width: 680px;
  margin: 0 auto 40px;
  display: flex;
  gap: 12px;
}

.c0c1d2265 input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.c0c1d2265 input:focus {
  border-color: var(--primary-blue);
}

.c0c1d2265 button {
  padding: 14px 28px;
  background: var(--primary-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.c0c1d2265 button:hover {
  background: var(--primary-blue-dark);
}

.c00e7f0f8 {
  max-width: 680px;
  margin: 0 auto;
}

.search-result-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.search-result-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.search-result-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   404页面
   ============================================ */
.cfb43dd08 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.cb8bd5f61 {
  font-size: 8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.error-message {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.error-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s;
}

.error-back:hover {
  background: var(--primary-blue-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   APP下载页
   ============================================ */
.app-section {
  padding: 80px 0;
  margin-top: var(--header-height);
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0D47A1 100%);
  color: #fff;
  text-align: center;
}

.app-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.app-desc {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.app-mockup {
  max-width: 300px;
  margin: 0 auto 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   合规页面
   ============================================ */
.compliance-page {
  margin-top: var(--header-height);
  padding: 60px 0 80px;
}

.compliance-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.compliance-content h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary-blue-dark);
}

.compliance-content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 24px 0 12px;
}

.compliance-content p {
  margin-bottom: 14px;
  line-height: 1.9;
}

/* ============================================
   打字机效果
   ============================================ */
.typewriter {
  overflow: hidden;
  border-right: 3px solid var(--accent-orange);
  white-space: nowrap;
  animation: typing 4s steps(30) infinite, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  0%, 100% { width: 0; }
  50%, 80% { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--accent-orange); }
}

/* ============================================
   响应式断点
   ============================================ */
@media (max-width: 1024px) {
  .c6bae58f9 {
    grid-template-columns: 1fr;
  }
  .c9b4b7f8f {
    display: none;
  }
  .cd41396aa {
    grid-template-columns: repeat(2, 1fr);
  }
  .c98f625a6 {
    grid-template-columns: 1fr;
  }
  .c3a3189d0 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }
  
  .cb42e4884 {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--card-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  
  .cb42e4884.ce639b56e {
    display: flex;
  }
  
  .cd36b0d97 {
    display: flex;
  }
  
  .c4cc1f141 {
    height: auto;
    min-height: 400px;
    padding: 60px 0;
  }
  
  .c91c357d0 h1 {
    font-size: 1.6rem;
  }
  
  .cd41396aa {
    grid-template-columns: 1fr;
  }
  
  .cd8e2b8a9 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .c720ef792 {
    grid-template-columns: 1fr;
  }
  
  .c136c62cf {
    grid-template-columns: 1fr;
  }
  
  .c343be2f5 {
    grid-template-columns: 1fr;
  }
  
  .c3a3189d0 {
    grid-template-columns: 1fr;
  }
  
  .c38b2317d {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .c711c8e45 {
    font-size: 1.2rem;
  }
  
  .detail-title {
    font-size: 1.4rem;
  }
  
  .c7c1824d3 {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .cd8e2b8a9 {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .c475011b4 {
    padding: 16px 8px;
  }
  
  .c7e260d97 {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
  
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   打印样式
   ============================================ */
@media print {
  .c56f47be2, .cffca5d4c, .cd36b0d97, .c9b4b7f8f {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
