/* ===== 知识付费自媒体IP孵化与网课变现平台 - 核心样式 ===== */
/* 学术深邃蓝+灵感灯泡黄 知识殿堂视觉体系 */

:root {
  --primary: #1A237E;
  --primary-light: #283593;
  --primary-dark: #0D1452;
  --accent: #FFC107;
  --accent-light: #FFD54F;
  --accent-dark: #FFA000;
  --bg: #F5F5F5;
  --card: #FFFFFF;
  --text: #212121;
  --text-light: #616161;
  --text-muted: #9E9E9E;
  --border: #E0E0E0;
  --shadow: rgba(26, 35, 126, 0.08);
  --shadow-hover: rgba(26, 35, 126, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --font-heading: "PingFang SC", "Microsoft YaHei", sans-serif;
  --max-width: 1200px;
}

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

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

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

ul, ol {
  list-style: none;
}

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

.cd3437f7e {
  padding: 80px 0;
}

.c60fc32e9 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.c60fc32e9::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  margin: 12px auto 0;
  border-radius: 2px;
}

.cb620f1cb {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 48px;
}

/* ===== 顶部导航栏 ===== */
.c74cf4dba {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 35, 126, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow);
  transition: var(--transition);
}

.c74cf4dba .c82a3ebed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.c12524fee {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.c12524fee .caa338d43 {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: bulbGlow 2s ease-in-out infinite;
}

@keyframes bulbGlow {
  0%, 100% { box-shadow: 0 0 8px var(--accent); }
  50% { box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(255, 193, 7, 0.3); }
}

.c30a3593c {
  display: flex;
  align-items: center;
  gap: 32px;
}

.c30a3593c a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.c30a3593c a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.c30a3593c a:hover::after,
.c30a3593c a.c745fe05e::after {
  width: 100%;
}

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

.c38c77220 {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.9rem;
}

.c38c77220:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.4);
}

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

.c3b59f9bd span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero区 ===== */
.cc5e0ac83 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

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

.caaf15fe0 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.c7ced3378 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 35, 126, 0.7) 0%, rgba(13, 20, 82, 0.85) 100%);
  z-index: 2;
}

.cb2808f3c {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 800px;
}

.cb2808f3c h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cb2808f3c h1 .c333c94ae {
  color: var(--accent);
  position: relative;
}

.cb2808f3c p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.c12766d54 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.c12766d54:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.4);
  color: var(--primary);
}

.cb33d0d26 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #FFFFFF;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.cb33d0d26:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* 灯泡点亮动画 */
.cbfcb5974 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 80px;
  height: 80px;
  z-index: 3;
  opacity: 0.6;
}

.cbfcb5974::before {
  content: '💡';
  font-size: 60px;
  animation: bulbFloat 3s ease-in-out infinite;
}

@keyframes bulbFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-20px) rotate(5deg); opacity: 1; }
}

/* ===== 数据统计条 ===== */
.c7cddee4d {
  background: var(--card);
  padding: 40px 0;
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
  z-index: 10;
  margin-top: -40px;
  border-radius: var(--radius-lg);
  margin-left: 20px;
  margin-right: 20px;
}

.c3fc0bc0f {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.cbec406ab .c3b2d1cdb {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.cbec406ab .c3b2d1cdb .cf3a9e7c3 {
  color: var(--accent);
}

.cbec406ab .c999ccbc4 {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ===== 课程卡片 ===== */
.c2e8ccf16 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.c31fe55b2 {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
  perspective: 1000px;
}

.c31fe55b2:hover {
  transform: translateY(-8px) rotateY(2deg);
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.c31fe55b2 .c4680cea1 {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.c31fe55b2 .c4680cea1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.c31fe55b2:hover .c4680cea1 img {
  transform: scale(1.05);
}

.c31fe55b2 .cb4521c63 {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.c31fe55b2 .c7ce5c962 {
  padding: 20px;
}

.c31fe55b2 .cb149081b {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.c31fe55b2 .ca3795714 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.c31fe55b2 .ca9791ed4 {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.c31fe55b2 .c42c33185 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.c31fe55b2 .cdc453ef0 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.c31fe55b2 .c551ae6a6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== 讲师卡片 ===== */
.c328508c6 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.cdae9ac67 {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
}

.cdae9ac67:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px var(--shadow-hover);
}

.cdae9ac67 .c30e5819a {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

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

.cdae9ac67 .cbdd009c7 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.cdae9ac67 .cddd51af7 {
  display: inline-block;
  background: rgba(26, 35, 126, 0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.cdae9ac67 .cb1dd6f67 {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== IP孵化案例 ===== */
.ce8b8de1e {
  position: relative;
  padding: 40px 0;
}

.c15a1cc58 {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 16px var(--shadow);
  margin-bottom: 28px;
  transition: var(--transition);
  border-left: 4px solid var(--accent);
}

.c15a1cc58:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px var(--shadow-hover);
}

.c15a1cc58 .ce1884b22 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.c15a1cc58 .c678e8ded {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.c15a1cc58 .c87a84ace {
  text-align: center;
  padding: 12px;
  background: rgba(26, 35, 126, 0.04);
  border-radius: var(--radius-sm);
}

.c15a1cc58 .c87a84ace .cca2448b6 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.c15a1cc58 .c87a84ace .cdf53a9d2 {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== 公开课预告 ===== */
.c8a29963c {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.c59b420c0 {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.c59b420c0::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.c59b420c0:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-hover);
}

.c59b420c0 .c2612a5da {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 193, 7, 0.1);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.c59b420c0 .c2e7bba72 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.c59b420c0 .c39d115c8 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.c59b420c0 .ca17062a8 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.c59b420c0 .ca17062a8:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== 学员见证 ===== */
.cd366efd1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.c436b6cba {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 16px var(--shadow);
  transition: var(--transition);
}

.c436b6cba:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow-hover);
}

.c436b6cba .c1068d8ae {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.c436b6cba .c401f56dd {
  display: flex;
  align-items: center;
  gap: 12px;
}

.c436b6cba .c8c4a92c0 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.c436b6cba .c8555ca04 .cbdd009c7 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.c436b6cba .c8555ca04 .c1f87f334 {
  font-size: 0.8rem;
  color: var(--accent-dark);
  font-weight: 500;
}

/* ===== 进度条装饰 ===== */
.cc8ac36e0 {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0;
}

.cc8ac36e0 .cf8943efe {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  transition: width 1s ease;
}

/* ===== IP变现路径规划器 ===== */
.c1c4b7b5c {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
}

.c1c4b7b5c h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.c8fd7d3a0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.c8fd7d3a0 input,
.c8fd7d3a0 select {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
}

.c8fd7d3a0 input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.c52c25e9a {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.path-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.path-step {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.path-arrow {
  color: var(--accent);
  font-size: 1.2rem;
}

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

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

.c4971c45c .c12524fee {
  margin-bottom: 16px;
}

.c4971c45c p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

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

.cdc17448e ul li {
  margin-bottom: 10px;
}

.cdc17448e ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.cdc17448e ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.c3b9b0444 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.c3b9b0444 a {
  color: rgba(255, 255, 255, 0.6);
}

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

/* ===== 面包屑 ===== */
.cc2283d15 {
  padding: 100px 0 20px;
  font-size: 0.9rem;
}

.cc2283d15 a {
  color: var(--text-light);
}

.cc2283d15 a:hover {
  color: var(--primary);
}

.cc2283d15 span {
  color: var(--text-muted);
  margin: 0 8px;
}

/* ===== 内页通用 ===== */
.c24473e7d {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 120px 0 60px;
  text-align: center;
  color: #fff;
}

.c24473e7d h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.c24473e7d p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.c5241266a {
  padding: 60px 0;
}

.c5241266a h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 16px;
}

.c5241266a h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin: 28px 0 12px;
}

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

.c5241266a ul, .c5241266a ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.c5241266a ul li, .c5241266a ol li {
  margin-bottom: 8px;
  line-height: 1.8;
  list-style: disc;
}

.c5241266a ol li {
  list-style: decimal;
}

/* ===== FAQ ===== */
.c26cd8c35 {
  max-width: 800px;
  margin: 0 auto;
}

.c4ab7a8c8 {
  background: var(--card);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
}

.cf102bb5c {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.cf102bb5c::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}

.c4ab7a8c8.c745fe05e .cf102bb5c::after {
  transform: rotate(45deg);
}

.ca7eecec1 {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
  line-height: 1.8;
}

.c4ab7a8c8.c745fe05e .ca7eecec1 {
  padding: 0 24px 20px;
  max-height: 500px;
}

/* ===== 搜索页 ===== */
.ccf328ede {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.ccf328ede input {
  width: 100%;
  padding: 16px 24px;
  padding-right: 60px;
  border: 2px solid var(--border);
  border-radius: 30px;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.ccf328ede input:focus {
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--shadow);
}

.ccf328ede button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.ccf328ede button:hover {
  background: var(--primary-light);
}

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

.error-page .error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.2;
}

.error-page h1 {
  font-size: 2rem;
  color: var(--text);
  margin: 16px 0;
}

.error-page p {
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ===== 知识图谱动画 ===== */
.c561c07e1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
}

/* ===== 滚动显示动画 ===== */
.c352afdaa {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.c352afdaa.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 响应式断点 ===== */
@media (max-width: 1024px) {
  .cf3ab0d7c {
    grid-template-columns: 1fr 1fr;
  }
  
  .c3fc0bc0f {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .c30a3593c {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 8px 24px var(--shadow);
  }
  
  .c30a3593c.c745fe05e {
    display: flex;
  }
  
  .c3b59f9bd {
    display: flex;
  }
  
  .cb2808f3c h1 {
    font-size: 2rem;
  }
  
  .cb2808f3c p {
    font-size: 1rem;
  }
  
  .cd3437f7e {
    padding: 50px 0;
  }
  
  .c60fc32e9 {
    font-size: 1.6rem;
  }
  
  .c2e8ccf16 {
    grid-template-columns: 1fr;
  }
  
  .c328508c6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cf3ab0d7c {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .c1c4b7b5c {
    padding: 28px 20px;
  }
  
  .c8fd7d3a0 {
    grid-template-columns: 1fr;
  }
  
  .c24473e7d h1 {
    font-size: 1.6rem;
  }
  
  .c15a1cc58 .c678e8ded {
    grid-template-columns: 1fr;
  }
  
  .c7cddee4d {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .cb2808f3c h1 {
    font-size: 1.6rem;
  }
  
  .c50634967 {
    flex-direction: column;
    align-items: center;
  }
  
  .c3fc0bc0f {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .c328508c6 {
    grid-template-columns: 1fr;
  }
  
  .c8a29963c {
    grid-template-columns: 1fr;
  }
  
  .cd366efd1 {
    grid-template-columns: 1fr;
  }
  
  .path-steps {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== 打印样式 ===== */
@media print {
  .c74cf4dba, .c3cd2753f, .c3b59f9bd {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}
