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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cadd21d9c {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

.c8900d9c5 {
  color: #fff;
}

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

.c77c87060:hover {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cf19846db:hover .cc97e10ec img {
  transform: scale(1.05);
}

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

.cf19846db:hover .cc97e10ec::after {
  opacity: 1;
}

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

.c794992d0 { background: #f44336; }
.c43536f34 { background: #9c27b0; }
.cd6870979 { background: var(--primary-blue); }
.ca9038b26 { background: var(--accent-orange); animation: pulse-tag 2s infinite; }

.cc41acde7 {
  padding: 18px;
}

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

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

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

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

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

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

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

.c4bf16ea4:hover .c58342758 {
  animation: bounce-icon 0.5s ease;
}

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

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

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

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

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

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

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

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

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

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

.c6e9e61b5 { background: #e8f5e9; color: #2e7d32; }
.c5e1d320e { background: #fff3e0; color: #e65100; }
.c8915ac53 { background: #e3f2fd; color: #1565c0; }

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

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

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

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

.c8534a683 .c4d80a53c {
  color: #fff;
}

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

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

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

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

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

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

.c51ca6469 .c4d80a53c {
  color: #fff;
}

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

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

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

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

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

.c26545fa5 { background: #f44336; }
.c2f63d560 { background: #4caf50; }
.ceadd91d3 { background: #ff9800; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd9df0253 {
  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) {
  .c2da1eb62 {
    grid-template-columns: 1fr;
  }
  .c61f616d1 {
    display: none;
  }
  .c14d1bdfb {
    grid-template-columns: repeat(2, 1fr);
  }
  .cf308669c {
    grid-template-columns: 1fr;
  }
  .c330bc16e {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }
  
  .c5fac2d4c {
    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;
  }
  
  .c5fac2d4c.c086b6150 {
    display: flex;
  }
  
  .ca3782bd0 {
    display: flex;
  }
  
  .cc8f8b491 {
    height: auto;
    min-height: 400px;
    padding: 60px 0;
  }
  
  .cadd21d9c h1 {
    font-size: 1.6rem;
  }
  
  .c14d1bdfb {
    grid-template-columns: 1fr;
  }
  
  .c11e9494e {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .c2880c972 {
    grid-template-columns: 1fr;
  }
  
  .c5d48768c {
    grid-template-columns: 1fr;
  }
  
  .c1c76a7c0 {
    grid-template-columns: 1fr;
  }
  
  .c330bc16e {
    grid-template-columns: 1fr;
  }
  
  .c5a8ec984 {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .c4d80a53c {
    font-size: 1.2rem;
  }
  
  .detail-title {
    font-size: 1.4rem;
  }
  
  .c2d35d04b {
    padding: 20px;
  }
}

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

/* ============================================
   打印样式
   ============================================ */
@media print {
  .c14492592, .c5ea239e3, .ca3782bd0, .c61f616d1 {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
