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

/* 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;
}

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

/* ============================================
   顶部导航栏
   ============================================ */
.c8d0f5091 {
  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;
}

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

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

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

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

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

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

.ca9408c2d 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;
}

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

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

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

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

/* 搜索按钮 */
.c7dc8a1d6 {
  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;
}

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

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

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

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

.c2e9c0b30 {
  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;
}

.c833b3bf9 {
  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;
}

.cad826e04 {
  color: #fff;
}

.cad826e04 .c13705d5e {
  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; }
}

.cad826e04 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);
}

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

.cad826e04 .c1f6acc40 {
  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;
}

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

/* 24小时快讯侧栏 */
.c739b2752 {
  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;
}

.c1d1646e1 {
  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);
}

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

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

.c025efd8a {
  color: #fff;
}

.c18eb05b6 {
  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;
}

.c18eb05b6:hover {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c56afccd2:hover .c9a0651c8 img {
  transform: scale(1.05);
}

.c9a0651c8::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;
}

.c56afccd2:hover .c9a0651c8::after {
  opacity: 1;
}

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

.c01b8c6cf { background: #f44336; }
.cdae1c9b9 { background: #9c27b0; }
.c844a4f66 { background: var(--primary-blue); }
.c0340b733 { background: var(--accent-orange); animation: pulse-tag 2s infinite; }

.cbd409240 {
  padding: 18px;
}

.cf8359f02 {
  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;
}

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

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

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

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

.c2fad8dfa {
  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;
}

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

.c2fad8dfa:hover .c5c35c988 {
  animation: bounce-icon 0.5s ease;
}

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

.c5c35c988 {
  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);
}

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

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

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

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

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

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

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

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

.c57abbed9 { background: #e8f5e9; color: #2e7d32; }
.c7e919a63 { background: #fff3e0; color: #e65100; }
.caffcce8e { background: #e3f2fd; color: #1565c0; }

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

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

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

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

.c1bf41aac .c697c3b5c {
  color: #fff;
}

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

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

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

.c520594a3 {
  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;
}

.c1d2215aa {
  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;
}

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

.c1ff90deb .c697c3b5c {
  color: #fff;
}

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

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

.cbb91ed5e {
  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;
}

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

.c4e5bbe93 {
  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;
}

.cba7f2e75 { background: #f44336; }
.c5233c94e { background: #4caf50; }
.c495d05c4 { background: #ff9800; }

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

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

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

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

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

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

.cabb3e220::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);
}

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

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

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

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

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

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

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

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

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

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

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

.c61c00dad {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c16aa3530 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;
}

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

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

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

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

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

.c998b49f2 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;
}

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

.c998b49f2 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;
}

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

.c5f0dc919 {
  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页面
   ============================================ */
.c9a500186 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.c3819eca4 {
  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) {
  .c833b3bf9 {
    grid-template-columns: 1fr;
  }
  .c739b2752 {
    display: none;
  }
  .c5b8bab91 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c685145ff {
    grid-template-columns: 1fr;
  }
  .c39dafe10 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }
  
  .ca9408c2d {
    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;
  }
  
  .ca9408c2d.c5adb1960 {
    display: flex;
  }
  
  .c7c3a7e43 {
    display: flex;
  }
  
  .c6f4f77af {
    height: auto;
    min-height: 400px;
    padding: 60px 0;
  }
  
  .cad826e04 h1 {
    font-size: 1.6rem;
  }
  
  .c5b8bab91 {
    grid-template-columns: 1fr;
  }
  
  .c58d6c399 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .ce182373c {
    grid-template-columns: 1fr;
  }
  
  .ca0066136 {
    grid-template-columns: 1fr;
  }
  
  .cb9f5e671 {
    grid-template-columns: 1fr;
  }
  
  .c39dafe10 {
    grid-template-columns: 1fr;
  }
  
  .c61c00dad {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .c697c3b5c {
    font-size: 1.2rem;
  }
  
  .detail-title {
    font-size: 1.4rem;
  }
  
  .c0725eea0 {
    padding: 20px;
  }
}

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

/* ============================================
   打印样式
   ============================================ */
@media print {
  .c8d0f5091, .ce496bbcc, .c7c3a7e43, .c739b2752 {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
