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

/* 加载动画 */
.c0067cdcf {
  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;
}

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

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

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

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

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

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

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

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

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

.cfa370dd4 a:hover::after,
.cfa370dd4 a.c0309ac4d::after {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c2006eb2b:hover .cb887c970 {
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 数据统计 */
.c4b389105 {
  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);
}

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

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

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

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

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

.c499745cb {
  margin-bottom: 2rem;
}

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

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

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

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

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

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

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

.c0a9f4fa3.show {
  display: block;
}

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

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

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

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

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

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

.c1cab4438 input,
.c1cab4438 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);
}

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

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

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

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

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

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

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

.cc8930cec ul {
  list-style: none;
}

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

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

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

.ce1630523 {
  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 */
.cd427f318 {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

.c03bcdbd3 span {
  margin: 0 0.5rem;
}

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

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

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

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

.cce79540c {
  padding: 1.5rem;
}

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

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

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

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

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

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

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

.c9b190df3 {
  padding: 1.5rem;
}

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

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

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

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

.cfc0875de {
  list-style: none;
}

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

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

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

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

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

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

/* 成功提示 */
.cc42220ec {
  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;
}

.cc42220ec.show {
  display: flex;
}

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

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

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

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

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

/* 响应式设计 */
@media (max-width: 1024px) {
  .c504e5046 {
    grid-template-columns: 1fr 1fr;
  }
  
  .c9831d360 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c0ac19b5c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .c24509f2b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cfa370dd4 {
    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);
  }
  
  .cfa370dd4.c0309ac4d {
    display: flex;
  }
  
  .c2f98c222 {
    display: flex;
  }
  
  .c86c0d6ae {
    display: none;
  }
  
  .ce6ff4194 {
    font-size: 2.2rem;
  }
  
  .c388e25e2 {
    flex-direction: column;
    align-items: center;
  }
  
  .c353a3b7d {
    flex-direction: column;
    gap: 2rem;
  }
  
  .c353a3b7d::before {
    display: none;
  }
  
  .c9831d360 {
    grid-template-columns: 1fr;
  }
  
  .cd16254ad {
    grid-template-columns: 1fr;
  }
  
  .c504e5046 {
    grid-template-columns: 1fr;
  }
  
  .ce1630523 {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .c0ac19b5c {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .cdffe030f img {
    height: 300px;
  }
  
  .c85cd54c2 {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .cf1f68496 {
    min-height: 600px;
  }
  
  .c1de7a0e5 {
    grid-template-columns: 1fr;
  }
  
  .cf82a333f {
    grid-template-columns: 1fr;
  }
  
  .c540d8b64 {
    grid-template-columns: 1fr;
  }
  
  .cffa46214 {
    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;
}
