/* ============================================
   {SITE_TITLE} - 全站样式表
   赛博朋克风格 | 仿生机械义肢定制与穿搭商城
   ============================================ */

/* CSS变量定义 */
:root {
  --primary: #00d4ff;
  --primary-dark: #0099cc;
  --primary-glow: rgba(0, 212, 255, 0.3);
  --secondary: #f0f8ff;
  --bg-dark: #0a0e1a;
  --bg-darker: #050810;
  --bg-section: #0d1225;
  --bg-card: rgba(13, 18, 37, 0.85);
  --card-border: rgba(0, 212, 255, 0.15);
  --text-primary: #e8f4fd;
  --text-secondary: #8ba4b8;
  --text-muted: #5a7085;
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
  --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Orbitron', 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  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(--secondary);
  text-shadow: 0 0 10px var(--primary-glow);
}

/* 加载动画 */
.c3d0b133e {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.c3d0b133e.loaded {
  opacity: 0;
  visibility: hidden;
}

.cd7a85807 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  animation: pulse-glow 1.5s ease-in-out infinite;
  letter-spacing: 4px;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 10px var(--primary-glow); opacity: 0.7; }
  50% { text-shadow: 0 0 30px var(--primary), 0 0 60px var(--primary-glow); opacity: 1; }
}

/* 导航栏 */
.ca5af5ce9 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

.ca5af5ce9.ca4fa23b0 {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.7rem 2rem;
}

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

.c61731228 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.c49552b17 {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.c49552b17 a {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.c49552b17 a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.c49552b17 a:hover::after,
.c49552b17 a.c1d7adef1::after {
  width: 100%;
}

.c5df02cfc {
  padding: 0.6rem 1.5rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.cb28fdc8b span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* Hero Section */
.c212c9883 {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.c06433ad8 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.05);
}

.cc1a31898 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5,8,16,0.3) 0%, rgba(10,14,26,0.8) 70%, var(--bg-dark) 100%);
}

.c900f46dd {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ca6ea8f59 {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.c189ce8fa {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.c53fce93c {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ce1e33c5c {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.ca3c6c91c {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cb64477d9 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.cb64477d9:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
  color: #fff;
}

.cdc45f466 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.cdc45f466:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
  color: var(--primary);
}

/* 通用Section样式 */
.ce648f8d4 {
  padding: 6rem 2rem;
  position: relative;
}

.c620e38de {
  background: var(--bg-section);
}

.c00f39ec5 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.ccfd21be7 {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.c09ee4454 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.c4d19324d {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.c8078d3ce {
  max-width: 1200px;
  margin: 0 auto;
}

/* 信任背书模块 */
.c292b3bdb {
  padding: 3rem 2rem;
  background: var(--bg-section);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.c6669275c {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.6;
}

.c2bbe77e0 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.c2bbe77e0:hover {
  opacity: 1;
  border-color: var(--primary);
  color: var(--primary);
}

/* 核心优势模块 */
.c2a854838 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.ccc7c6f8c {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ccc7c6f8c::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ccc7c6f8c:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.ccc7c6f8c:hover::before {
  transform: scaleX(1);
}

.cc1cf9d05 {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.ccc7c6f8c h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

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

/* 产品轮播 */
.cd4b77b1b {
  position: relative;
  overflow: hidden;
}

.c365b5a23 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.ce02e7dac {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.c7cf07190 {
  min-width: 100%;
  position: relative;
}

.c7cf07190 img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.c7cf07190 .cb712d25b {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(transparent, rgba(5,8,16,0.9));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.c7cf07190 h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.c11f2718e {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.c5c5cf161 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.c5c5cf161:hover {
  background: var(--primary);
  color: #fff;
}

.c9303de93 {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.cf975471d {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.cf975471d.c1d7adef1 {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

/* 案例展示 - 网格画廊 */
.c1040af5d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.c557953f3 {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

.c557953f3:hover img {
  transform: scale(1.1);
}

.cdff92285 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 40%, rgba(5,8,16,0.9));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.c557953f3:hover .cdff92285 {
  opacity: 1;
}

.cdff92285 h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.cdff92285 span {
  font-size: 0.85rem;
  color: var(--primary);
}

/* 服务流程模块 */
.c1f55e7e8 {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.c1f55e7e8::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--card-border);
}

.cf1a27250 {
  text-align: center;
  position: relative;
  flex: 1;
  padding: 0 1rem;
}

.cae7e91ee {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.cf1a27250:hover .cae7e91ee {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.cf1a27250 h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

/* 痛点与解决方案 */
.c09301223 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.c54aa237b {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
}

.c54aa237b:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.cf534d291 {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.cf534d291.c5257c86e {
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
}

.cf534d291.cf04bbccf {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
}

.c54aa237b h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

/* 数据统计 */
.c34680a7b {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 102, 255, 0.05));
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.c459caeaf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.c4bf54438 .ce8ddf9a0 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

/* 报价测算工具 */
.c3cb7b0bf {
  background: var(--bg-section);
}

.c97142d93 {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.c9a76d6f9 {
  margin-bottom: 2rem;
}

.c9a76d6f9 label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.c9a76d6f9 select,
.c9a76d6f9 input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
  appearance: none;
}

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

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

.c68c85e23 {
  padding: 1rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.c68c85e23:hover,
.c68c85e23.selected {
  border-color: var(--primary);
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
}

.cd6350976 {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  text-align: center;
  display: none;
}

.cd6350976.show {
  display: block;
}

.cd6350976 .c5e3f8f2c {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* CTA转化模块 */
.cc753db5e {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 102, 255, 0.08));
  position: relative;
}

.cc753db5e::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--gradient-primary);
}

.c46ef39fd {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.c2cd4b32e {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.c386776e9 {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c386776e9 input,
.c386776e9 textarea {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

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

.c386776e9 textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.c638f441d {
  background: var(--bg-darker);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--card-border);
}

.cced4edd9 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--card-border);
}

.c29b14860 .c20ddb637 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

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

.c62833454 h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.c62833454 ul {
  list-style: none;
}

.c62833454 ul li {
  margin-bottom: 0.8rem;
}

.c62833454 ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.c284ab673 {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* 页面通用Hero */
.c2eee3bd8 {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.c187ffebf {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.c00e24a28 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10,14,26,0.7) 50%, var(--bg-dark) 100%);
}

.c2309ba4b {
  position: relative;
  z-index: 10;
}

.c2eee3bd8 h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

/* 面包屑 */
.cb5c2e24f {
  padding: 1rem 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 1200px;
  margin: 0 auto;
}

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

.cb5c2e24f span {
  margin: 0 0.5rem;
}

/* 产品列表 */
.cb9c59f20 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.c5e003e62 {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.c5e003e62:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.c5e003e62 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.c9609aa6e {
  padding: 1.5rem;
}

.c9609aa6e h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.c9609aa6e .c5e3f8f2c {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
}

.c9609aa6e .c8505c973 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* 新闻列表 */
.cd03ac506 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.cccfee9a1 {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.cccfee9a1:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.cccfee9a1 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.c0c9bfdaf {
  padding: 1.5rem;
}

.c58517c29 {
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.c0c9bfdaf h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

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

/* 联系表单 */
.c45d3af18 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.c7508e466 {
  list-style: none;
}

.c7508e466 li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}

.c7508e466 .cb1ed27d2 {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.cd78b01a7 {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cd78b01a7 input,
.cd78b01a7 select,
.cd78b01a7 textarea {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

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

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

/* 成功提示 */
.c9b4e937f {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 16, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.c9b4e937f.show {
  display: flex;
}

.c7ca4e89a {
  background: var(--bg-card);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  max-width: 450px;
  animation: fadeInUp 0.4s ease;
}

.c7ca4e89a .c1a6de759 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary);
}

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

/* 滚动动画 */
.c749a1c61 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 视差效果 */
.c64e2d36d {
  transform: translateZ(0);
  will-change: transform;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .cced4edd9 {
    grid-template-columns: 1fr 1fr;
  }
  
  .c1040af5d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c459caeaf {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c09301223 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .c49552b17 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--card-border);
  }
  
  .c49552b17.c1d7adef1 {
    display: flex;
  }
  
  .cb28fdc8b {
    display: flex;
  }
  
  .c5df02cfc {
    display: none;
  }
  
  .c53fce93c {
    font-size: 2.2rem;
  }
  
  .ca3c6c91c {
    flex-direction: column;
    align-items: center;
  }
  
  .c1f55e7e8 {
    flex-direction: column;
    gap: 2rem;
  }
  
  .c1f55e7e8::before {
    display: none;
  }
  
  .c1040af5d {
    grid-template-columns: 1fr;
  }
  
  .c45d3af18 {
    grid-template-columns: 1fr;
  }
  
  .cced4edd9 {
    grid-template-columns: 1fr;
  }
  
  .c284ab673 {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .c459caeaf {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .c7cf07190 img {
    height: 300px;
  }
  
  .ce648f8d4 {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .c212c9883 {
    min-height: 600px;
  }
  
  .c2a854838 {
    grid-template-columns: 1fr;
  }
  
  .cb9c59f20 {
    grid-template-columns: 1fr;
  }
  
  .cd03ac506 {
    grid-template-columns: 1fr;
  }
  
  .c97142d93 {
    padding: 2rem 1.5rem;
  }
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* 选中文本样式 */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: #fff;
}
