/* ============================================
   超自然现象调查与都市传说解密档案库 - 主样式表
   视觉风格：监控夜视绿 + 绝密档案牛皮纸
   ============================================ */

/* CSS 变量定义 */
:root {
  --color-primary: #00FF00;
  --color-secondary: #8B0000;
  --color-bg: #111111;
  --color-card: #D2B48C;
  --color-text: #A9A9A9;
  --color-primary-dim: #00cc00;
  --color-primary-glow: rgba(0, 255, 0, 0.3);
  --color-secondary-glow: rgba(139, 0, 0, 0.5);
  --font-typewriter: 'Courier New', 'Noto Sans SC', monospace;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --font-heading: 'Noto Serif SC', 'SimSun', serif;
  --max-width: 1200px;
  --border-radius: 2px;
  --transition: all 0.3s ease;
}

/* 全局重置 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* VHS 噪点覆盖层 */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.03) 0px,
    rgba(0, 0, 0, 0.03) 1px,
    transparent 1px,
    transparent 2px
  );
  animation: scanline 8s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* 通用容器 */
.c38e47fed {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 链接样式 */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--color-primary-glow);
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 1rem;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }

p {
  margin-bottom: 1rem;
}

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

/* ============ 导航栏 ============ */
.cd4f5645d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  border-bottom: 1px solid rgba(0, 255, 0, 0.2);
  backdrop-filter: blur(10px);
}

.c88547c90 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.c5946ca6e {
  font-family: var(--font-typewriter);
  font-size: 1.2rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--color-primary-glow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c5946ca6e img {
  width: 32px;
  height: 32px;
}

.c079aea8e {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.c079aea8e a {
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
}

.c079aea8e a:hover,
.c079aea8e a.c83fb7412 {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.cc11a2301 {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.cc11a2301 span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

/* ============ Hero 监控室区域 ============ */
.ce01ad639 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 60px;
}

.ce01ad639::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.3) 0%,
    rgba(17, 17, 17, 0.7) 70%,
    rgba(17, 17, 17, 1) 100%
  );
  z-index: 2;
}

.cd8885ad2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.2);
  animation: vhsFlicker 4s infinite;
}

@keyframes vhsFlicker {
  0%, 95%, 100% { opacity: 1; filter: brightness(0.6) contrast(1.2); }
  96% { opacity: 0.8; filter: brightness(0.4) contrast(1.5) hue-rotate(10deg); }
  97% { opacity: 1; filter: brightness(0.7) contrast(1.1); }
}

.c323a8e65 {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.c323a8e65 h1 {
  font-size: 3rem;
  font-family: var(--font-typewriter);
  color: var(--color-primary);
  text-shadow: 0 0 20px var(--color-primary-glow), 0 0 40px var(--color-primary-glow);
  margin-bottom: 1rem;
  animation: typeGlow 2s ease-in-out infinite alternate;
}

@keyframes typeGlow {
  from { text-shadow: 0 0 10px var(--color-primary-glow); }
  to { text-shadow: 0 0 30px var(--color-primary-glow), 0 0 60px var(--color-primary-glow); }
}

.c323a8e65 p {
  font-family: var(--font-typewriter);
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.c1d3ca592 {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-typewriter);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 2px solid var(--color-secondary);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.c1d3ca592:hover {
  background: transparent;
  color: var(--color-secondary);
  box-shadow: 0 0 20px var(--color-secondary-glow);
  text-shadow: none;
}

.c1d3ca592::after {
  content: '[ 绝密 ]';
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--color-secondary);
  transition: var(--transition);
}

.c1d3ca592:hover::after {
  top: -1.2rem;
}

/* 录像带时间戳 */
.c26053573 {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  color: var(--color-primary);
  opacity: 0.7;
  z-index: 3;
}

.c26053573::before {
  content: '● REC';
  color: red;
  margin-right: 1rem;
  animation: recBlink 1s infinite;
}

@keyframes recBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ============ 档案卡片区域 ============ */
.c0caae0b8 {
  padding: 5rem 0;
  position: relative;
}

.cae4c5a28 {
  font-family: var(--font-typewriter);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.cae4c5a28::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  margin: 0.8rem auto 0;
  box-shadow: 0 0 10px var(--color-primary-glow);
}

.c40a46655 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.cc035f0d7 {
  background: var(--color-card);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  position: relative;
  transition: var(--transition);
  transform: rotate(-0.5deg);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  color: #333;
  overflow: hidden;
}

.cc035f0d7:nth-child(even) {
  transform: rotate(0.5deg);
}

.cc035f0d7:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.7);
}

.cc035f0d7::before {
  content: '绝密';
  position: absolute;
  top: 10px;
  right: -30px;
  background: var(--color-secondary);
  color: #fff;
  padding: 0.2rem 2.5rem;
  font-family: var(--font-typewriter);
  font-size: 0.75rem;
  transform: rotate(45deg);
  letter-spacing: 2px;
}

.cc035f0d7 .cff30e5e2 {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 3px solid #8B7355;
  margin-bottom: 1rem;
  filter: sepia(0.3);
}

.cc035f0d7 h3 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-typewriter);
}

.cc035f0d7 p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.cc035f0d7 .c4341ca43 {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-family: var(--font-typewriter);
  border-radius: 2px;
  margin-top: 0.8rem;
}

.c657fe308 {
  background: #2d5a27;
  color: #00ff00;
}

.c8e56d85a {
  background: #5a2727;
  color: #ff4444;
}

/* 回形针装饰 */
.cc431c27a {
  position: absolute;
  top: -8px;
  left: 20px;
  width: 20px;
  height: 40px;
  border: 2px solid #888;
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

/* ============ EVP 音频区域 ============ */
.c32a49600 {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #0a0a0a 100%);
}

.c8a96f0c2 {
  max-width: 800px;
  margin: 0 auto;
  background: #0a0a0a;
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
}

.c8a96f0c2 img {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 255, 0, 0.2);
}

.c559d1353 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.c1e8ccb43 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.c1e8ccb43:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

.c40e66308 {
  flex: 1;
  height: 4px;
  background: #333;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.c6d4d38e0 {
  height: 100%;
  width: 35%;
  background: var(--color-primary);
  border-radius: 2px;
  box-shadow: 0 0 5px var(--color-primary-glow);
}

.ce75eb7ce {
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
  color: var(--color-primary);
  opacity: 0.7;
}

/* ============ 装备解析区域 ============ */
.cb8a01353 {
  padding: 5rem 0;
}

.c6741dae5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.c56759a21 {
  border: 1px solid rgba(0, 255, 0, 0.2);
  border-radius: var(--border-radius);
}

.cf769db4f {
  list-style: none;
}

.cf769db4f li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 255, 0, 0.1);
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.cf769db4f li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* ============ 辟谣对比区域 ============ */
.ca8d2aa91 {
  padding: 5rem 0;
  background: #0a0a0a;
}

.debunk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cba3f2f09 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 255, 0, 0.1);
}

.c85c85921 {
  padding: 1.5rem;
  background: rgba(139, 0, 0, 0.1);
  border-right: 2px solid var(--color-secondary);
}

.c85c85921 h4 {
  color: var(--color-secondary);
  font-family: var(--font-typewriter);
  margin-bottom: 0.5rem;
}

.c9a64f9e2 {
  padding: 1.5rem;
  background: rgba(0, 255, 0, 0.03);
}

.c9a64f9e2 h4 {
  color: var(--color-primary);
  font-family: var(--font-typewriter);
  margin-bottom: 0.5rem;
}

/* ============ 目击者匿名墙 ============ */
.cd1b31389 {
  padding: 5rem 0;
  overflow: hidden;
}

.c24116fdd {
  display: flex;
  gap: 2rem;
  animation: scrollWitness 30s linear infinite;
}

@keyframes scrollWitness {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cf91ae296 {
  min-width: 300px;
  padding: 1.5rem;
  background: rgba(0, 255, 0, 0.03);
  border: 1px solid rgba(0, 255, 0, 0.1);
  border-left: 3px solid var(--color-primary);
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  line-height: 1.6;
}

.cf91ae296 .cdaf59e06 {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: rgba(0, 255, 0, 0.5);
}

/* ============ 页脚 ============ */
.cf1e9c263 {
  padding: 4rem 0 2rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(0, 255, 0, 0.1);
}

.cc1795915 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.cee74309a h4 {
  font-family: var(--font-typewriter);
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cee74309a ul {
  list-style: none;
}

.cee74309a ul li {
  margin-bottom: 0.5rem;
}

.cee74309a ul li a {
  color: var(--color-text);
  font-size: 0.85rem;
  transition: var(--transition);
}

.cee74309a ul li a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.c9b3d651c {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 0, 0.1);
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
  color: rgba(169, 169, 169, 0.5);
}

/* ============ 面包屑 ============ */
.c2ebe15da {
  padding: 1rem 0;
  margin-top: 70px;
  font-family: var(--font-typewriter);
  font-size: 0.8rem;
}

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

.c2ebe15da span {
  color: var(--color-primary);
  margin: 0 0.5rem;
}

/* ============ 内页通用样式 ============ */
.c1f383209 {
  padding: 6rem 0 3rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 255, 0, 0.03) 0%, transparent 100%);
}

.c1f383209 h1 {
  font-family: var(--font-typewriter);
  font-size: 2.5rem;
}

.c1f383209 .c793b8015 {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.c0918f729 {
  padding: 3rem 0 5rem;
}

.c0918f729 article {
  max-width: 800px;
  margin: 0 auto;
}

.c0918f729 article h2 {
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.c0918f729 article h3 {
  margin-top: 1.5rem;
}

/* ============ 表单样式 ============ */
.c837c0439 {
  margin-bottom: 1.5rem;
}

.c837c0439 label {
  display: block;
  font-family: var(--font-typewriter);
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.c837c0439 input,
.c837c0439 textarea,
.c837c0439 select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(0, 255, 0, 0.03);
  border: 1px solid rgba(0, 255, 0, 0.2);
  color: var(--color-text);
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.c837c0439 input:focus,
.c837c0439 textarea:focus,
.c837c0439 select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary-glow);
}

.c837c0439 textarea {
  min-height: 150px;
  resize: vertical;
}

.c592ff8a0 {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--color-primary);
  color: var(--color-bg);
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.c592ff8a0:hover {
  background: var(--color-primary-dim);
  box-shadow: 0 0 20px var(--color-primary-glow);
}

/* ============ 搜索页 ============ */
.c32f54d11 {
  max-width: 600px;
  margin: 2rem auto;
  position: relative;
}

.c32f54d11 input {
  width: 100%;
  padding: 1rem 1.5rem;
  padding-right: 3rem;
  background: rgba(0, 255, 0, 0.03);
  border: 2px solid rgba(0, 255, 0, 0.3);
  color: var(--color-primary);
  font-family: var(--font-typewriter);
  font-size: 1rem;
  border-radius: var(--border-radius);
}

.c32f54d11 button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.2rem;
  cursor: pointer;
}

.cc2f405a1 {
  max-width: 800px;
  margin: 2rem auto;
}

.search-result-item {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.search-result-item h3 a {
  color: var(--color-primary);
}

.search-result-item p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

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

.page-404 h1 {
  font-size: 8rem;
  font-family: var(--font-typewriter);
  color: var(--color-primary);
  text-shadow: 0 0 30px var(--color-primary-glow);
  animation: glitch404 3s infinite;
}

@keyframes glitch404 {
  0%, 90%, 100% { transform: none; opacity: 1; }
  91% { transform: translateX(-5px) skewX(2deg); opacity: 0.8; }
  92% { transform: translateX(5px) skewX(-2deg); opacity: 0.9; }
  93% { transform: none; opacity: 1; }
}

.page-404 p {
  font-family: var(--font-typewriter);
  font-size: 1.2rem;
  margin: 1rem 0 2rem;
}

/* ============ 打字机动效 ============ */
.typewriter {
  overflow: hidden;
  border-right: 2px solid var(--color-primary);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

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

/* ============ 绝密印章动画 ============ */
.c1c2c6a29 {
  position: relative;
  display: inline-block;
}

.c1c2c6a29::after {
  content: '已解密';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-family: var(--font-typewriter);
  font-size: 2rem;
  color: var(--color-secondary);
  border: 4px solid var(--color-secondary);
  padding: 0.3rem 1rem;
  opacity: 0;
  animation: stampDown 0.5s ease forwards;
  animation-delay: 1s;
}

@keyframes stampDown {
  0% { transform: translate(-50%, -50%) rotate(-15deg) scale(3); opacity: 0; }
  50% { transform: translate(-50%, -50%) rotate(-15deg) scale(1.1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) rotate(-15deg) scale(1); opacity: 0.9; }
}

/* ============ FAQ 折叠 ============ */
.c2c0399c6 {
  border: 1px solid rgba(0, 255, 0, 0.1);
  margin-bottom: 0.5rem;
}

.c5ed90a27 {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-typewriter);
  font-size: 0.9rem;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.c5ed90a27:hover {
  background: rgba(0, 255, 0, 0.03);
}

.c5ed90a27::after {
  content: '+';
  font-size: 1.2rem;
}

.c2c0399c6.c83fb7412 .c5ed90a27::after {
  content: '-';
}

.cc8889677 {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.c2c0399c6.c83fb7412 .cc8889677 {
  padding: 0 1.5rem 1rem;
  max-height: 500px;
}

/* ============ 响应式设计 ============ */
@media (max-width: 992px) {
  .cc1795915 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c6741dae5 {
    grid-template-columns: 1fr;
  }
  
  .cba3f2f09 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .c079aea8e {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
  }
  
  .c079aea8e.c83fb7412 {
    display: flex;
  }
  
  .cc11a2301 {
    display: flex;
  }
  
  .c323a8e65 h1 {
    font-size: 2rem;
  }
  
  .c40a46655 {
    grid-template-columns: 1fr;
  }
  
  .cc1795915 {
    grid-template-columns: 1fr;
  }
  
  .debunk-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .c323a8e65 h1 {
    font-size: 1.6rem;
  }
  
  .cae4c5a28 h2 {
    font-size: 1.4rem;
  }
  
  .c38e47fed {
    padding: 0 1rem;
  }
}

/* ============ 工具类 ============ */
.cde169d8a { text-align: center; }
.text-green { color: var(--color-primary); }
.text-red { color: var(--color-secondary); }
.c8830e07d { margin-top: 1rem; }
.c5a07a83f { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.cbc683b74 { margin-bottom: 2rem; }
.c98dc1c4c { margin-bottom: 3rem; }

/* Schema 标记隐藏 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
