/* ===== 深海沉船潜水与海洋生物探索预订平台 - 核心样式 ===== */
/* 主题：深海幽灵蓝+荧光珊瑚绿 海底世界视觉 */

:root {
  --deep-sea-blue: #003B5C;
  --coral-green: #00E5A0;
  --abyss-black: #001A2C;
  --deep-water: #0A2E4A;
  --light-sea: #D0F0E8;
  --accent-glow: #00FFB8;
  --warning-coral: #FF6B4A;
  --gold-highlight: #FFD700;
  --font-primary: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "Noto Serif SC", "STSong", serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-deep: 0 8px 32px rgba(0, 59, 92, 0.4);
  --shadow-glow: 0 0 20px rgba(0, 229, 160, 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--abyss-black);
  color: var(--light-sea);
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===== 气泡粒子效果 ===== */
.c239f53a2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -20px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 229, 160, 0.2), rgba(0, 229, 160, 0.05));
  border: 1px solid rgba(0, 229, 160, 0.15);
  border-radius: 50%;
  animation: bubbleRise linear infinite;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-50vh) translateX(20px) scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-110vh) translateX(-10px) scale(0.8);
    opacity: 0;
  }
}

/* ===== 深度计组件 ===== */
.c36869dbd {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: rgba(10, 46, 74, 0.85);
  border: 1px solid rgba(0, 229, 160, 0.3);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.cf175bd60 {
  font-family: "Courier New", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--coral-green);
  text-shadow: 0 0 10px rgba(0, 229, 160, 0.5);
}

.c76c12872 {
  font-size: 0.7rem;
  color: var(--light-sea);
  opacity: 0.7;
}

.c20d45ede {
  width: 4px;
  height: 120px;
  background: rgba(0, 229, 160, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.caf6d989f {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--coral-green), var(--deep-sea-blue));
  border-radius: 2px;
  transition: height 0.3s ease;
}

/* ===== 导航栏 ===== */
.c7e2f1efc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.c7e2f1efc.scrolled {
  background: rgba(0, 26, 44, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 160, 0.15);
  padding: 10px 0;
}

.cdbacecad {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cf7c08d5d {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coral-green);
  text-decoration: none;
  text-shadow: 0 0 15px rgba(0, 229, 160, 0.4);
  letter-spacing: 2px;
}

.ce12c1400 {
  display: flex;
  gap: 32px;
  list-style: none;
}

.ce12c1400 a {
  color: var(--light-sea);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.ce12c1400 a:hover {
  color: var(--coral-green);
}

.ce12c1400 a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral-green);
  transition: width 0.3s ease;
}

.ce12c1400 a:hover::after {
  width: 100%;
}

.cf3bfd23d {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.cf3bfd23d span {
  width: 24px;
  height: 2px;
  background: var(--coral-green);
  transition: var(--transition-smooth);
}

/* ===== Hero 深海下潜区 ===== */
.cb3448877 {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.c5bce173b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: brightness(0.6);
}

.c90c6a6d1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 26, 44, 0.3) 0%,
    rgba(0, 26, 44, 0.5) 50%,
    rgba(0, 26, 44, 0.9) 100%
  );
}

.c32b423e5 {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.cedf1f5a2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.c712749c3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--light-sea);
  margin-bottom: 32px;
  opacity: 0.9;
}

.c4f6baae9 {
  font-family: "Courier New", monospace;
  font-size: 3rem;
  color: var(--coral-green);
  text-shadow: 0 0 30px rgba(0, 229, 160, 0.6);
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.c62c191c0 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--coral-green), #00C48C);
  color: var(--abyss-black);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 229, 160, 0.4);
}

.c62c191c0:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 229, 160, 0.6);
}

/* ===== 通用区块 ===== */
.caadab769 {
  padding: 100px 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.c35807e8d {
  text-align: center;
  margin-bottom: 60px;
}

.c577a0730 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.c577a0730::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--coral-green);
  border-radius: 2px;
}

.c292ce0ed {
  font-size: 1.05rem;
  color: var(--light-sea);
  opacity: 0.8;
  max-width: 700px;
  margin: 16px auto 0;
}

/* ===== 行程卡片 ===== */
.c4a93ee1b {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.c9e78dce6 {
  background: var(--deep-water);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 229, 160, 0.1);
  transition: var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  display: block;
}

.c9e78dce6:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 160, 0.3);
  box-shadow: var(--shadow-glow);
}

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

.c6615cf52 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c9e78dce6:hover .c6615cf52 img {
  transform: scale(1.08);
}

.c675a2fac {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 107, 74, 0.9);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.c1870153b {
  padding: 24px;
}

.cb1ea91d7 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.c2af26d56 {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--light-sea);
  opacity: 0.7;
}

.c8733fee6 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coral-green);
}

.c8733fee6 span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--light-sea);
  opacity: 0.6;
}

/* ===== 教练风采 ===== */
.c84fb152e {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.c88f92d3b {
  background: var(--deep-water);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(0, 229, 160, 0.1);
  transition: var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  display: block;
}

.c88f92d3b:hover {
  border-color: rgba(0, 229, 160, 0.3);
  box-shadow: var(--shadow-glow);
}

.c7abfdd77 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--coral-green);
  margin-bottom: 20px;
}

.c4198b322 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.c10f04935 {
  font-size: 0.85rem;
  color: var(--coral-green);
  margin-bottom: 12px;
}

.c018ecaee {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.cbc8c443e {
  text-align: center;
}

.cf09eb1e2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coral-green);
  display: block;
}

.cba28a258 {
  font-size: 0.75rem;
  color: var(--light-sea);
  opacity: 0.6;
}

/* ===== 装备推荐 ===== */
.c24dc7b23 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.cdbdd0be9 {
  background: var(--deep-water);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 229, 160, 0.1);
  transition: var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  display: block;
}

.cdbdd0be9:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.c02be736d {
  height: 200px;
  overflow: hidden;
}

.c02be736d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c8d86263c {
  padding: 20px;
}

.c53c9f76a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.c66ce9015 {
  font-size: 0.9rem;
  color: var(--light-sea);
  opacity: 0.7;
}

/* ===== 视频画廊 ===== */
.c62b55a52 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.cb64fa2fd {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

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

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

.c530aebd7 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 229, 160, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c530aebd7::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid var(--abyss-black);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.cc9e84816 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 26, 44, 0.9));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== 珊瑚保育 ===== */
.c7498b31f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.c142ee69d {
  text-align: center;
  padding: 32px 16px;
  background: var(--deep-water);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 229, 160, 0.15);
}

.cff4b654a {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral-green);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 229, 160, 0.4);
}

.ce06c590c {
  font-size: 0.9rem;
  color: var(--light-sea);
  opacity: 0.8;
}

/* ===== 页脚 ===== */
.c55842b9d {
  background: rgba(0, 26, 44, 0.95);
  border-top: 1px solid rgba(0, 229, 160, 0.15);
  padding: 60px 24px 30px;
  position: relative;
  z-index: 10;
}

.c54ce4224 {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.cd282c495 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--coral-green);
  margin-bottom: 16px;
  display: block;
}

.cf723b34c {
  font-size: 0.9rem;
  color: var(--light-sea);
  opacity: 0.7;
  line-height: 1.7;
}

.ce8017af5 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.c4464241c {
  list-style: none;
}

.c4464241c li {
  margin-bottom: 10px;
}

.c4464241c a {
  color: var(--light-sea);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.c4464241c a:hover {
  color: var(--coral-green);
  opacity: 1;
}

.c1808a171 {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 229, 160, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: var(--light-sea);
  opacity: 0.5;
}

/* ===== 面包屑 ===== */
.c2dc7f79e {
  padding: 120px 24px 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.ce72e719a {
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
}

.ce72e719a a {
  color: var(--coral-green);
  text-decoration: none;
}

.ce72e719a li::after {
  content: " / ";
  color: var(--light-sea);
  opacity: 0.5;
  margin-left: 8px;
}

.ce72e719a li:last-child::after {
  content: "";
}

.ce72e719a li:last-child {
  color: var(--light-sea);
  opacity: 0.7;
}

/* ===== 内页通用 ===== */
.c37ac1b39 {
  padding: 140px 24px 60px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 59, 92, 0.3), var(--abyss-black));
  position: relative;
}

.c14fb57cc {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}

.c3e6adad2 {
  font-size: 1.05rem;
  color: var(--light-sea);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.cf198bc56 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
  z-index: 10;
}

.cf198bc56 h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 229, 160, 0.2);
}

.cf198bc56 h3 {
  font-size: 1.3rem;
  color: var(--coral-green);
  margin: 32px 0 16px;
}

.cf198bc56 p {
  margin-bottom: 16px;
  line-height: 1.9;
}

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

.cf198bc56 li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.cf198bc56 table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--deep-water);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cf198bc56 th {
  background: rgba(0, 229, 160, 0.1);
  padding: 14px 16px;
  text-align: left;
  color: var(--coral-green);
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 229, 160, 0.2);
}

.cf198bc56 td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 229, 160, 0.05);
}

/* ===== 搜索页 ===== */
.c7ebd0dd3 {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.c7ebd0dd3 input {
  width: 100%;
  padding: 16px 24px;
  padding-right: 60px;
  background: var(--deep-water);
  border: 2px solid rgba(0, 229, 160, 0.2);
  border-radius: 50px;
  color: var(--light-sea);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.c7ebd0dd3 input:focus {
  border-color: var(--coral-green);
}

.c7ebd0dd3 button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--coral-green);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--abyss-black);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c5f9474e0 {
  list-style: none;
}

.c5f9474e0 li {
  padding: 20px;
  background: var(--deep-water);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px solid rgba(0, 229, 160, 0.1);
}

.c5f9474e0 li a {
  color: var(--coral-green);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}

.c5f9474e0 li p {
  color: var(--light-sea);
  opacity: 0.7;
  margin-top: 8px;
  font-size: 0.9rem;
}

/* ===== 404页面 ===== */
.ca6764ff5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 24px;
}

.c1b68230a {
  font-size: 8rem;
  font-weight: 700;
  color: var(--coral-green);
  text-shadow: 0 0 40px rgba(0, 229, 160, 0.4);
  line-height: 1;
}

.c46e9aa6f {
  font-size: 1.3rem;
  color: var(--light-sea);
  margin: 20px 0 32px;
}

/* ===== 水波纹加载效果 ===== */
.c93dc86b9 {
  opacity: 0;
  transform: scale(0.95);
  animation: rippleIn 0.6s ease forwards;
}

@keyframes rippleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
    clip-path: circle(0% at 50% 50%);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    clip-path: circle(100% at 50% 50%);
  }
}

/* ===== 声呐扫描效果 ===== */
.c2bf51716 {
  position: relative;
  background: var(--deep-water);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(0, 229, 160, 0.2);
  overflow: hidden;
  min-height: 400px;
}

.c2bf51716::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 229, 160, 0.1) 30deg, transparent 60deg);
  animation: sonarSweep 4s linear infinite;
}

@keyframes sonarSweep {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cfb5d5d60 {
  position: relative;
  z-index: 2;
}

/* ===== 计算器组件 ===== */
.c98c78123 {
  background: var(--deep-water);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(0, 229, 160, 0.2);
}

.c7d95c85e {
  margin-bottom: 20px;
}

.c309e88e6 {
  display: block;
  font-size: 0.9rem;
  color: var(--light-sea);
  margin-bottom: 8px;
}

.cf8ee953d {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 26, 44, 0.6);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: var(--radius-sm);
  color: var(--light-sea);
  font-size: 1rem;
  outline: none;
}

.cf8ee953d:focus {
  border-color: var(--coral-green);
}

.caaba9895 {
  margin-top: 24px;
  padding: 20px;
  background: rgba(0, 229, 160, 0.05);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: var(--radius-sm);
}

/* ===== FAQ 手风琴 ===== */
.c525b2ee2 {
  margin-top: 40px;
}

.cad98e62f {
  background: var(--deep-water);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border: 1px solid rgba(0, 229, 160, 0.1);
  overflow: hidden;
}

.cb1334128 {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #fff;
}

.cb1334128::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--coral-green);
  transition: transform 0.3s ease;
}

.cad98e62f.active .cb1334128::after {
  transform: rotate(45deg);
}

.c22fd4b43 {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--light-sea);
  opacity: 0.8;
  line-height: 1.7;
}

.cad98e62f.active .c22fd4b43 {
  padding: 0 24px 18px;
  max-height: 500px;
}

/* ===== 响应式断点 ===== */
@media (max-width: 1024px) {
  .c4a93ee1b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c36869dbd {
    display: none;
  }
}

@media (max-width: 768px) {
  .ce12c1400 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 26, 44, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 229, 160, 0.15);
  }
  
  .ce12c1400.active {
    display: flex;
  }
  
  .cf3bfd23d {
    display: flex;
  }
  
  .c4a93ee1b {
    grid-template-columns: 1fr;
  }
  
  .c84fb152e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c62b55a52 {
    grid-template-columns: 1fr;
  }
  
  .caadab769 {
    padding: 60px 16px;
  }
  
  .c54ce4224 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .c84fb152e {
    grid-template-columns: 1fr;
  }
  
  .c24dc7b23 {
    grid-template-columns: 1fr;
  }
  
  .c7498b31f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c4f6baae9 {
    font-size: 2rem;
  }
}

/* ===== 水流波动鼠标效果 ===== */
.cd5bfa17c {
  position: fixed;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ===== 图片响应式 ===== */
img {
  max-width: 100%;
  height: auto;
}

picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 辅助类 ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-glow {
  text-shadow: 0 0 15px rgba(0, 229, 160, 0.5);
}

.bg-deep {
  background-color: var(--deep-water);
}

.border-glow {
  border: 1px solid rgba(0, 229, 160, 0.2);
}
