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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c8f2a02b7 {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

.c4853aca5 {
  color: #fff;
}

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

.c4797fe2b:hover {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c5123f916:hover .c3039b30d img {
  transform: scale(1.05);
}

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

.c5123f916:hover .c3039b30d::after {
  opacity: 1;
}

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

.c40fa2e1b { background: #f44336; }
.c92e7f3a3 { background: #9c27b0; }
.ca2d8c529 { background: var(--primary-blue); }
.c77c44fff { background: var(--accent-orange); animation: pulse-tag 2s infinite; }

.c0e4e4cbf {
  padding: 18px;
}

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

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

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

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

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

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

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

.c31bdd920:hover .c03e94aa9 {
  animation: bounce-icon 0.5s ease;
}

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

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

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

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

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

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

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

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

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

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

.cd44bc0cf { background: #e8f5e9; color: #2e7d32; }
.c5dbce916 { background: #fff3e0; color: #e65100; }
.c5a833885 { background: #e3f2fd; color: #1565c0; }

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

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

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

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

.c33d6cab6 .c1b952985 {
  color: #fff;
}

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

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

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

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

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

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

.c961ca2e9 .c1b952985 {
  color: #fff;
}

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

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

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

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

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

.cb0eefcd7 { background: #f44336; }
.c1c8f72b3 { background: #4caf50; }
.c469266f6 { background: #ff9800; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c28a659cc {
  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) {
  .c9a8ac9e7 {
    grid-template-columns: 1fr;
  }
  .ccd47c16e {
    display: none;
  }
  .cccc44f08 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c475e0b41 {
    grid-template-columns: 1fr;
  }
  .cd1478696 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }
  
  .c986249e0 {
    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;
  }
  
  .c986249e0.c1f86f0b8 {
    display: flex;
  }
  
  .cd81ad1ed {
    display: flex;
  }
  
  .c9545fcbf {
    height: auto;
    min-height: 400px;
    padding: 60px 0;
  }
  
  .c8f2a02b7 h1 {
    font-size: 1.6rem;
  }
  
  .cccc44f08 {
    grid-template-columns: 1fr;
  }
  
  .cf88b828d {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .c36b27c3b {
    grid-template-columns: 1fr;
  }
  
  .c47a64728 {
    grid-template-columns: 1fr;
  }
  
  .cc75020f6 {
    grid-template-columns: 1fr;
  }
  
  .cd1478696 {
    grid-template-columns: 1fr;
  }
  
  .c300eb016 {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .c1b952985 {
    font-size: 1.2rem;
  }
  
  .detail-title {
    font-size: 1.4rem;
  }
  
  .ca805294d {
    padding: 20px;
  }
}

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

/* ============================================
   打印样式
   ============================================ */
@media print {
  .cdeaa3ed8, .c205e8de4, .cd81ad1ed, .ccd47c16e {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
