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

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

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

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

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

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

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

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

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

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

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

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

.cc6024de6 a:hover::after,
.cc6024de6 a.c05a1de75::after {
  width: 100%;
}

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

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

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

/* ============================================
   Hero区域
   ============================================ */
.c3d544c61 {
  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%);
}

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

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

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

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

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

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

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

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

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

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

.c0b647c0c {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 卡片通用 */
.c1f7df2ee {
  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);
}

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

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

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

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

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

.c6030aebd .c3a675c42 img {
  width: 36px;
  height: 36px;
}

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

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

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

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

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

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

.c8771f8aa .ccd16bc60 {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.c8771f8aa:hover .ccd16bc60 img {
  transform: scale(1.05);
}

.c8771f8aa .c1b8e71db {
  padding: 24px;
}

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

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

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

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

.cc0180d29 .cc30c9e71 {
  color: #fff;
}

.cc0180d29 .cd7cf2460 {
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

.ceca9a8a0 .c80803fb0 {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

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

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

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

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

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

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

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

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

.cc7331b33 .c70babc70 {
  background: rgba(0, 201, 167, 0.05);
}

.cc7331b33 .c2f80c23a {
  color: var(--accent);
  font-weight: 700;
}

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

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

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

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

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

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

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

.c70a43fef.c05a1de75 .c60a685d6 {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

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

.c70a43fef.c05a1de75 .c22f8aa4e {
  padding: 0 24px 20px;
  max-height: 500px;
}

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

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

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

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

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

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

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

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

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

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

.c735557f3 .c7d19c17d {
  display: flex;
  gap: 20px;
}

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

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

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

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

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

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

.cc6a95358 .c79a8a169 {
  color: var(--text-light);
}

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

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

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

.c37ff2b75 {
  padding: 60px 0;
}

.c37ff2b75 .ca7deb85a {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c4a35faca .cc63e8dab {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c4a35faca .cfbe28503 {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

.ccff2c99a .cc5cd3eed {
  margin-bottom: 20px;
}

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

.ccff2c99a select,
.ccff2c99a 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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb7b348bc {
  margin-bottom: 32px;
}

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

.cb7b348bc li .c62cdf189 {
  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;
}

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

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

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

.ca217904c {
  text-align: center;
}

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

/* ============================================
   数据跳动动画（实验室仪器读数风格）
   ============================================ */
.c5f34930c {
  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; }
}

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

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

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 1024px) {
  .c4bb37200 {
    grid-template-columns: 1fr 1fr;
  }
  
  .cbc5e5a15 {
    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%;
  }
  
  .cacefd3a2:nth-child(odd),
  .cacefd3a2:nth-child(even) {
    padding-left: 52%;
    padding-right: 0;
  }
  
  .c5b013e59::before {
    left: 20px;
  }
  
  .cacefd3a2:nth-child(odd),
  .cacefd3a2:nth-child(even) {
    padding-left: 48px;
    padding-right: 0;
  }
  
  .cacefd3a2 .cc8d58cef {
    left: 20px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .cc6024de6 {
    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);
  }
  
  .cc6024de6.c05a1de75 {
    display: flex;
  }
  
  .c31a89f67 {
    display: flex;
  }
  
  .c248366a5 {
    font-size: 2.2rem;
  }
  
  .c19a353b1 {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .c0b647c0c .cdbcd0290 {
    font-size: 1.8rem;
  }
  
  .ca2b87110 {
    padding: 56px 0;
  }
  
  .cc30c9e71 {
    font-size: 1.7rem;
  }
  
  .c4bb37200 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .c735557f3 {
    flex-direction: column;
    text-align: center;
  }
  
  .c0befbab3 {
    grid-template-columns: 1fr;
  }
  
  .cc7331b33 {
    display: block;
    overflow-x: auto;
  }
  
  .c7b0fb0f3 h1 {
    font-size: 1.8rem;
  }
  
  .c4a35faca .c51fa9f2b {
    grid-template-columns: repeat(10, 1fr);
  }
  
  .c3406ba60 {
    flex-direction: column;
    align-items: center;
  }
  
  .cd2f36fbd {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .c248366a5 {
    font-size: 1.8rem;
  }
  
  .c3c253367 {
    font-size: 1rem;
  }
  
  .c1f7df2ee {
    padding: 20px;
  }
  
  .cc30c9e71 {
    font-size: 1.5rem;
  }
  
  .ca9dc3860 {
    height: 60px;
  }
  
  .c3d544c61 {
    padding-top: 60px;
  }
}

/* ============================================
   打印样式
   ============================================ */
@media print {
  .c0ddd7161,
  .c846b2e6d,
  .c100530ff,
  .c31a89f67 {
    display: none !important;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  .c3d544c61 {
    min-height: auto;
    padding: 20px 0;
  }
}
