
/* 赛博朋克风格全局样式 */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(135deg, #2E1A47, #000000);
  color: #C0C0C0;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  color: #00FFFF;
  text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF;
}

h1 {
  font-size: 3rem;
  text-align: center;
  margin-top: 50px;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: #C0C0C0;
  margin-bottom: 20px;
}

a {
  color: #FF00FF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #39FF14;
  text-shadow: 0 0 5px #39FF14;
}

.button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #FF00FF, #39FF14);
  color: #fff;
  border-radius: 30px;
  font-size: 1.2rem;
  box-shadow: 0 0 10px #FF00FF, 0 0 20px #39FF14;
  transition: all 0.3s ease;
}

.button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #FF00FF, 0 0 40px #39FF14;
}

/* 响应式布局 */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  p { font-size: 0.9rem; }
}

/* 产品展示区域 */
.product-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
  flex-wrap: wrap;
}

.product-image {
  max-width: 45%;
  box-shadow: 0 0 20px #00FFFF;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.product-image:hover {
  transform: rotateY(15deg);
}

.product-details {
  max-width: 45%;
  padding: 20px;
}

/* 营销文章样式 */
.marketing-article {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 20px;
  margin: 50px 0;
  box-shadow: 0 0 20px #39FF14;
}

.marketing-article p {
  color: #C0C0C0;
}

.marketing-article blockquote {
  font-style: italic;
  color: #FF00FF;
  border-left: 5px solid #39FF14;
  padding-left: 20px;
  margin: 20px 0;
}

/* 动态背景效果 */
@keyframes neonGlow {
  0% { box-shadow: 0 0 10px #00FFFF, 0 0 20px #39FF14; }
  50% { box-shadow: 0 0 20px #00FFFF, 0 0 40px #39FF14; }
  100% { box-shadow: 0 0 10px #00FFFF, 0 0 20px #39FF14; }
}

.neon-border {
  border: 2px solid transparent;
  background: linear-gradient(#2E1A47, #2E1A47) padding-box,
              linear-gradient(to right, #00FFFF, #39FF14) border-box;
  border-radius: 20px;
  padding: 20px;
  animation: neonGlow 2s infinite;
}

/* 滚动动画 */
.slide-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.slide-in.active {
  opacity: 1;
  transform: translateY(0);
}

