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

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

/* 通用容器 */
.c662fec36 {
  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;
}

/* ============ 导航栏 ============ */
.cb458522b {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 录像带时间戳 */
.cfc7bd13a {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c2ea5885d {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce73195b0 ul {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c4b587922 input,
.c4b587922 textarea,
.c4b587922 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);
}

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

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

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

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

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

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

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

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

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

.c88d09d3f::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 折叠 ============ */
.c135a48ec {
  border: 1px solid rgba(0, 255, 0, 0.1);
  margin-bottom: 0.5rem;
}

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

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

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

.c135a48ec.cb2ec34a8 .c633d7ce4::after {
  content: '-';
}

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

.c135a48ec.cb2ec34a8 .c7b130a5f {
  padding: 0 1.5rem 1rem;
  max-height: 500px;
}

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

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  .c363c9f05 {
    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);
  }
  
  .c363c9f05.cb2ec34a8 {
    display: flex;
  }
  
  .c93bc27b8 {
    display: flex;
  }
  
  .cf428dec4 h1 {
    font-size: 2rem;
  }
  
  .cd7a43d40 {
    grid-template-columns: 1fr;
  }
  
  .ce4bbdc1a {
    grid-template-columns: 1fr;
  }
  
  .debunk-grid {
    grid-template-columns: 1fr;
  }
}

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

/* ============ 工具类 ============ */
.cac82217c { text-align: center; }
.text-green { color: var(--color-primary); }
.text-red { color: var(--color-secondary); }
.c686ffe72 { margin-top: 1rem; }
.c935f252f { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.c652d42ac { margin-bottom: 2rem; }
.c4c43626e { 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;
}
