/* ============================================
   宠物基因保存与生命克隆科技服务平台 - 主样式表
   视觉风格：生命科技蓝+纯净无菌白
   ============================================ */

/* CSS变量定义 */
:root {
  --primary: #0066CC;
  --primary-dark: #004C99;
  --primary-light: #3399FF;
  --accent: #00C9A7;
  --accent-dark: #009B82;
  --bg-main: #F8FBFF;
  --bg-card: #FFFFFF;
  --text-primary: #1A2A3A;
  --text-secondary: #4A5A6A;
  --text-light: #7A8A9A;
  --border-light: #E8F0F8;
  --shadow-sm: 0 2px 8px rgba(0, 102, 204, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 102, 204, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 102, 204, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-main: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --font-heading: "PingFang SC", "Microsoft YaHei", sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* 全局重置 */
*, *::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-primary);
  background-color: var(--bg-main);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================
   导航栏
   ============================================ */
.c7fb3f139 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

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

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

.c4e6f0985 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.c4e6f0985 img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.c4e6f0985 .dna-icon {
  width: 36px;
  height: 36px;
  animation: dnaRotate 8s linear infinite;
}

/* 主导航 */
.cc36841bb {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cc36841bb a {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.cc36841bb a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.cc36841bb a:hover::after,
.cc36841bb a.c555aaa7d::after {
  width: 100%;
}

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

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

.c1f254e3d span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   Hero区域
   ============================================ */
.c3d7db3b1 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
  background: linear-gradient(135deg, #F8FBFF 0%, #E8F4FF 50%, #F0FAFF 100%);
}

.c0f12253b {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.c0f12253b .dna-strand {
  position: absolute;
  width: 200px;
  height: 100%;
  opacity: 0.06;
  animation: dnaFloat 20s linear infinite;
}

.c0f12253b .dna-strand:nth-child(1) { left: 10%; animation-delay: 0s; }
.c0f12253b .dna-strand:nth-child(2) { left: 30%; animation-delay: -5s; }
.c0f12253b .dna-strand:nth-child(3) { left: 50%; animation-delay: -10s; }
.c0f12253b .dna-strand:nth-child(4) { left: 70%; animation-delay: -15s; }
.c0f12253b .dna-strand:nth-child(5) { left: 90%; animation-delay: -3s; }

.c667a097a {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 60px 20px;
}

.c9ce1c07f {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.c9ce1c07f .c581391f3 {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.c536a1987 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.c536a1987 .c3f43174a {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.caffcec42 {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.c3199d129 {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
}

.cbe53a924 {
  text-align: center;
}

.cbe53a924 .ce7ba3dda {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  font-variant-numeric: tabular-nums;
}

.cbe53a924 .c46879e57 {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* CTA按钮 */
.c97009273 {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cd9e420e0 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cd9e420e0::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cd9e420e0:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
  color: #fff;
}

.cd9e420e0:hover::before {
  width: 300px;
  height: 300px;
}

/* 脉搏波动效果 */
.c837714d8 {
  animation: btnPulse 2.5s ease-in-out infinite;
}

.c3437ba19 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--bg-card);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.c3437ba19:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   通用模块样式
   ============================================ */
.ccf3961a6 {
  padding: 80px 0;
}

.c59427068 {
  text-align: center;
  margin-bottom: 56px;
}

.cb7d8ae84 {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 201, 167, 0.1);
  color: var(--accent-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.ca10a1d84 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.c8244ba2d {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* 卡片通用 */
.ca821621b {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

/* ============================================
   克隆技术原理模块
   ============================================ */
.cb0345188 {
  background: linear-gradient(180deg, var(--bg-main) 0%, #EDF5FF 100%);
}

.cac175822 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.cbeba3f2b {
  text-align: center;
  padding: 40px 24px;
}

.cbeba3f2b .cb1dfe9c9 {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 201, 167, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cbeba3f2b .cb1dfe9c9 img {
  width: 36px;
  height: 36px;
}

.cbeba3f2b h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.cbeba3f2b p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 流程步骤 */
.process-timeline {
  position: relative;
  padding: 40px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step .step-content {
  width: 45%;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.process-step .step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* ============================================
   重逢故事模块
   ============================================ */
.ca8d60fee {
  background: var(--bg-card);
}

.cfb0408bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.cfac5f7d0 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.cfac5f7d0 .cae0fee41 {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.cfac5f7d0:hover .cae0fee41 img {
  transform: scale(1.05);
}

.cfac5f7d0 .c2c384b63 {
  padding: 24px;
}

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

.cfac5f7d0 h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.cfac5f7d0 p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   实验室展示模块
   ============================================ */
.c9a107fbb {
  background: linear-gradient(135deg, #0A1628 0%, #1A2A4A 100%);
  color: #fff;
}

.c9a107fbb .ca10a1d84 {
  color: #fff;
}

.c9a107fbb .c8244ba2d {
  color: rgba(255, 255, 255, 0.7);
}

.c96b421dd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.c5a3960e3 {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.c5a3960e3:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.c5a3960e3 .c39775f82 {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.c5a3960e3 h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.c5a3960e3 p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================
   套餐对比表格
   ============================================ */
.c984be49e {
  background: var(--bg-main);
}

.c87d8d833 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
}

.c87d8d833 thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.c87d8d833 th {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.c87d8d833 td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.c87d8d833 tbody tr:hover {
  background: rgba(0, 102, 204, 0.03);
}

.c87d8d833 .c1ecd8421 {
  background: rgba(0, 201, 167, 0.05);
}

.c87d8d833 .c7641c052 {
  color: var(--accent);
  font-weight: 700;
}

/* ============================================
   FAQ模块
   ============================================ */
.c7b810f14 {
  background: var(--bg-card);
}

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

.c5af59fd7 {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.c5af59fd7.c555aaa7d {
  box-shadow: var(--shadow-sm);
  border-color: rgba(0, 102, 204, 0.2);
}

.cc7be70b3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: var(--transition);
}

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

.cc7be70b3 .c8771a1e7 {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 102, 204, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.c5af59fd7.c555aaa7d .c8771a1e7 {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.cc0ec2c6a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.c5af59fd7.c555aaa7d .cc0ec2c6a {
  padding: 0 24px 20px;
  max-height: 500px;
}

.cc0ec2c6a p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   页脚
   ============================================ */
.c7284ebd1 {
  background: #0A1628;
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 24px;
}

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

.c75f9bfc5 p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
}

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

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

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

.c4ea2e38a ul li a:hover {
  color: var(--accent);
}

.c00aeeb87 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.c00aeeb87 p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.c00aeeb87 .c80699844 {
  display: flex;
  gap: 20px;
}

.c00aeeb87 .c80699844 a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

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

/* ============================================
   面包屑导航
   ============================================ */
.c8240ae97 {
  padding: 100px 0 20px;
  background: var(--bg-main);
}

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

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

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

.cb544d9e8 .c22788ed0 {
  color: var(--text-light);
}

/* ============================================
   内页通用布局
   ============================================ */
.c227cba98 {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FF 100%);
  text-align: center;
}

.c227cba98 h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.c227cba98 p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.cddadf41c {
  padding: 60px 0;
}

.cddadf41c .ccea1734d {
  max-width: 900px;
  margin: 0 auto;
}

.cddadf41c h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--primary);
}

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

.cddadf41c p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.cddadf41c ul, .cddadf41c ol {
  margin: 16px 0;
  padding-left: 24px;
}

.cddadf41c ul li, .cddadf41c ol li {
  margin-bottom: 8px;
  line-height: 1.8;
  color: var(--text-secondary);
  list-style: disc;
}

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

/* 信息卡片网格 */
.c003e1044 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.c24eaa5d8 {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.c24eaa5d8:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.c24eaa5d8 h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.c24eaa5d8 p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================
   基因图谱可视化
   ============================================ */
.c1c388a55 {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin: 32px 0;
}

.c1c388a55 .cc7d987a1 {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 3px;
  margin: 24px 0;
}

.c1c388a55 .heatmap-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  transition: transform 0.2s;
}

.c1c388a55 .heatmap-cell:hover {
  transform: scale(1.5);
  z-index: 2;
}

.c1c388a55 .c3809722c {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.c1c388a55 .c4bbf2740 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c1c388a55 .c68fae7e8 {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

/* ============================================
   克隆成长时间轴
   ============================================ */
.c41bcf7c6 {
  position: relative;
  padding: 40px 0;
}

.c41bcf7c6::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: translateX(-50%);
  border-radius: 3px;
}

.cf3115741 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.cf3115741:nth-child(odd) {
  padding-right: 52%;
}

.cf3115741:nth-child(even) {
  padding-left: 52%;
}

.cf3115741 .cd1d70d71 {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 3px solid var(--bg-main);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}

.cf3115741 .cb57d70b6 {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.cf3115741 .c9c344369 {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.cf3115741 .cb57d70b6 h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* ============================================
   健康评估器
   ============================================ */
.cc60bb2fe {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 32px auto;
}

.cc60bb2fe .ca97805d5 {
  margin-bottom: 20px;
}

.cc60bb2fe label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cc60bb2fe select,
.cc60bb2fe input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-main);
  transition: var(--transition);
}

.cc60bb2fe select:focus,
.cc60bb2fe input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.cc60bb2fe .ca5965ac4 {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cc60bb2fe .ca5965ac4:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cdea0525e {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 201, 167, 0.05));
  border-radius: var(--radius-md);
  display: none;
}

.cdea0525e.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* ============================================
   搜索页
   ============================================ */
.c31dc4d66 {
  padding: 120px 0 60px;
}

.cc88706d0 {
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative;
}

.cc88706d0 input {
  width: 100%;
  padding: 16px 56px 16px 24px;
  border: 2px solid var(--border-light);
  border-radius: 50px;
  font-size: 1.05rem;
  background: var(--bg-card);
  transition: var(--transition);
}

.cc88706d0 input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.cc88706d0 button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

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

.search-result-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.search-result-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

.search-result-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.search-result-item .result-url {
  font-size: 0.82rem;
  color: var(--accent-dark);
  margin-top: 4px;
}

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

.c1ce9797b .c781dd29c {
  font-size: 8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.c1ce9797b h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.c1ce9797b p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ============================================
   APP下载页
   ============================================ */
.c853595d1 {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FF 100%);
}

.cfdf35dac {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cba197154 h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cba197154 p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cbd61f1c6 {
  margin-bottom: 32px;
}

.cbd61f1c6 li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cbd61f1c6 li .cabdaef0a {
  width: 24px;
  height: 24px;
  background: rgba(0, 201, 167, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.c4c9a5182 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.c4c9a5182 a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--text-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.c4c9a5182 a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.cab3b5d76 {
  text-align: center;
}

.cab3b5d76 img {
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   数据跳动动画（实验室仪器读数风格）
   ============================================ */
.c67875b54 {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ============================================
   动画关键帧
   ============================================ */
@keyframes dnaRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes dnaFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.04; }
  50% { opacity: 0.08; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0.04; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(0, 102, 204, 0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cellDivide {
  0% { transform: scale(1); border-radius: 50%; }
  50% { transform: scaleX(1.4); border-radius: 40%; }
  100% { transform: scale(1); border-radius: 50%; }
}

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

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

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

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 1024px) {
  .cca19b9dc {
    grid-template-columns: 1fr 1fr;
  }
  
  .cfdf35dac {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .process-timeline::before {
    left: 24px;
  }
  
  .process-step,
  .process-step:nth-child(even) {
    flex-direction: column;
    padding-left: 60px;
  }
  
  .process-step .step-number {
    left: 24px;
    transform: none;
  }
  
  .process-step .step-content {
    width: 100%;
  }
  
  .cf3115741:nth-child(odd),
  .cf3115741:nth-child(even) {
    padding-left: 52%;
    padding-right: 0;
  }
  
  .c41bcf7c6::before {
    left: 20px;
  }
  
  .cf3115741:nth-child(odd),
  .cf3115741:nth-child(even) {
    padding-left: 48px;
    padding-right: 0;
  }
  
  .cf3115741 .cd1d70d71 {
    left: 20px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .cc36841bb {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
  }
  
  .cc36841bb.c555aaa7d {
    display: flex;
  }
  
  .c1f254e3d {
    display: flex;
  }
  
  .c536a1987 {
    font-size: 2.2rem;
  }
  
  .c3199d129 {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .cbe53a924 .ce7ba3dda {
    font-size: 1.8rem;
  }
  
  .ccf3961a6 {
    padding: 56px 0;
  }
  
  .ca10a1d84 {
    font-size: 1.7rem;
  }
  
  .cca19b9dc {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .c00aeeb87 {
    flex-direction: column;
    text-align: center;
  }
  
  .cfb0408bd {
    grid-template-columns: 1fr;
  }
  
  .c87d8d833 {
    display: block;
    overflow-x: auto;
  }
  
  .c227cba98 h1 {
    font-size: 1.8rem;
  }
  
  .c1c388a55 .cc7d987a1 {
    grid-template-columns: repeat(10, 1fr);
  }
  
  .c97009273 {
    flex-direction: column;
    align-items: center;
  }
  
  .c4c9a5182 {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .c536a1987 {
    font-size: 1.8rem;
  }
  
  .caffcec42 {
    font-size: 1rem;
  }
  
  .ca821621b {
    padding: 20px;
  }
  
  .ca10a1d84 {
    font-size: 1.5rem;
  }
  
  .cfd976590 {
    height: 60px;
  }
  
  .c3d7db3b1 {
    padding-top: 60px;
  }
}

/* ============================================
   打印样式
   ============================================ */
@media print {
  .c7fb3f139,
  .c7284ebd1,
  .c0f12253b,
  .c1f254e3d {
    display: none !important;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  .c3d7db3b1 {
    min-height: auto;
    padding: 20px 0;
  }
}
