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

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

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

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

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

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

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

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

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

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

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

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

.cd73a6ab2 a:hover::after,
.cd73a6ab2 a.c754480e5::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c5e848da8 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c0722bcc2 .ca5cca31a img {
  width: 36px;
  height: 36px;
}

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

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

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

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

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

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

.c81fcf3a0 .c51128902 {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.c81fcf3a0:hover .c51128902 img {
  transform: scale(1.05);
}

.c81fcf3a0 .c8111705d {
  padding: 24px;
}

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

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

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

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

.c51a562f6 .cccb3e70e {
  color: #fff;
}

.c51a562f6 .c00e65fae {
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

.ca7d4715d .c3f06ff5f {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

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

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

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

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

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

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

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

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

.c83ad20d0 .c942e7528 {
  background: rgba(0, 201, 167, 0.05);
}

.c83ad20d0 .c851edf23 {
  color: var(--accent);
  font-weight: 700;
}

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

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

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

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

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

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

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

.ca4a4615a.c754480e5 .cc4e21c94 {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

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

.ca4a4615a.c754480e5 .ccbe70505 {
  padding: 0 24px 20px;
  max-height: 500px;
}

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

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

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

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

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

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

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

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

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

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

.cd70c8d9c .c4eede756 {
  display: flex;
  gap: 20px;
}

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

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

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

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

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

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

.c788f9083 .c39c1be59 {
  color: var(--text-light);
}

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

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

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

.cdef0c771 {
  padding: 60px 0;
}

.cdef0c771 .c4a0f7f81 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c10fe9ab6 .c5f249e4b {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c10fe9ab6 .c093cb8f4 {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

.cfe44cf8f .c3d03e220 {
  margin-bottom: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb12de372 {
  margin-bottom: 32px;
}

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

.cb12de372 li .c2c9caace {
  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;
}

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

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

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

.c5f981567 {
  text-align: center;
}

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

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

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

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

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

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .cd73a6ab2 {
    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);
  }
  
  .cd73a6ab2.c754480e5 {
    display: flex;
  }
  
  .c31e826bf {
    display: flex;
  }
  
  .c37e25a39 {
    font-size: 2.2rem;
  }
  
  .c80011617 {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .c5e848da8 .c5faf1f61 {
    font-size: 1.8rem;
  }
  
  .c2fba1e68 {
    padding: 56px 0;
  }
  
  .cccb3e70e {
    font-size: 1.7rem;
  }
  
  .ccc3983ee {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cd70c8d9c {
    flex-direction: column;
    text-align: center;
  }
  
  .c77225c1e {
    grid-template-columns: 1fr;
  }
  
  .c83ad20d0 {
    display: block;
    overflow-x: auto;
  }
  
  .c64fc7972 h1 {
    font-size: 1.8rem;
  }
  
  .c10fe9ab6 .c09a9398f {
    grid-template-columns: repeat(10, 1fr);
  }
  
  .ca4dfe674 {
    flex-direction: column;
    align-items: center;
  }
  
  .cf53081db {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .c37e25a39 {
    font-size: 1.8rem;
  }
  
  .cf460b1d7 {
    font-size: 1rem;
  }
  
  .cfdb0d068 {
    padding: 20px;
  }
  
  .cccb3e70e {
    font-size: 1.5rem;
  }
  
  .cb091c112 {
    height: 60px;
  }
  
  .cab0c6a0f {
    padding-top: 60px;
  }
}

/* ============================================
   打印样式
   ============================================ */
@media print {
  .cdee9b953,
  .c8c063a27,
  .cf667018a,
  .c31e826bf {
    display: none !important;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  .cab0c6a0f {
    min-height: auto;
    padding: 20px 0;
  }
}
