/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0C2D4F;
  --secondary-color: #1C6FB4;
  --light-blue: #f6faff;
  --white: #ffffff;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #eaeaea;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-blue);
  overflow-x: hidden;
}

/* 容器样式 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 15px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

h3 {
  font-size: 20px;
}

p {
  color: var(--text-light);
  margin-bottom: 15px;
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  margin-left: 20px;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* 头部导航 */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  transition: all 0.3s ease;
}

.header.scrolled .container {
  padding: 0px;
}

.logo {
  white-space: nowrap;
  transition: all 0.3s ease;
}

.logo-image {
  height: 80px;
  transition: all 0.3s ease;
}

.header.scrolled .logo-image {
  height: 80px;
}

.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li {
  margin-left: 30px;
  position: relative;
}

.nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
  padding: 10px 0;
  position: relative;
  display: inline-block;
}

.nav ul li a:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav ul li a:hover::after {
  width: 100%;
}

.contact-btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
}

.contact-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* 下拉菜单 */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: var(--shadow-hover);
  border-radius: 4px;
  padding: 10px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  gap: 10px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
  flex: 1;
  text-align: center;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 15px;
  color: var(--text-color);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  color: var(--secondary-color);
  background-color: var(--light-blue);
  transform: none;
}

.dropdown-menu li a::after {
  display: none;
}

/* 移动端导航 */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
  z-index: 1001;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }
  
  .nav.active {
    max-height: 400px;
  }
  
  .nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  .nav ul li {
    margin: 10px 0;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 0 0 0 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
  }
  
  .dropdown:hover .dropdown-menu {
    max-height: 200px;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .contact-btn {
    background-color: transparent;
    color: var(--text-color);
    padding: 0;
  }
  
  .contact-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
  }
}

/* 英雄区域 */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 180px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxNSkiPjxwYXRoIGQ9Ik0gNDAgMCBMIDAgMCAwIDQwIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@media (max-width: 768px) {
  .hero {
    padding: 150px 0;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-secondary {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* 企业介绍模块 */
.company-intro {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-color);
  font-size: 16px;
}

/* 企业文化模块 */
.company {
  padding: 100px 0;
  background-color: white;
}

.vision-mission {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.vision-card {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-blue);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.vision-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.vision-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* 市场趋势模块 */
.market-trends {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.trends-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.market-data, .timeline {
  flex: 1;
  min-width: 300px;
}

.market-data h3, .timeline h3 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.data-visualization {
  margin-top: 30px;
}

.data-bar {
  margin-bottom: 20px;
  position: relative;
}

.bar {
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 4px;
  transition: width 1s ease-in-out;
}

.data-bar span {
  position: absolute;
  right: 0;
  top: 0;
  margin-left: 10px;
  color: var(--text-light);
}

.timeline-items {
  position: relative;
  padding-left: 30px;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}

.timeline-dot {
  position: absolute;
  left: -20px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-color);
  transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
  background-color: var(--secondary-color);
  width: 16px;
  height: 16px;
  left: -22px;
  top: 3px;
}

.timeline-content h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.timeline-content p {
  margin-bottom: 5px;
  color: var(--text-light);
}

.highlight {
  color: var(--secondary-color);
  font-weight: 500;
}

/* 产品矩阵模块 */
.product-matrix {
  padding: 100px 0;
  background-color: white;
}

.product-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  flex: 1;
  min-width: 300px;
  background-color: var(--light-blue);
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-card h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.product-card p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.product-card ul {
  list-style: none;
  padding: 0;
}

.product-card ul li {
  margin-bottom: 10px;
  color: var(--text-light);
  position: relative;
  padding-left: 20px;
}

.product-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.competitive-edge {
  text-align: center;
}

.edge-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.tag {
  background-color: var(--light-blue);
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

/* 核心团队模块 */
.core-team {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.team-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-card {
  flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-card p {
  color: var(--text-light);
}

/* 荣誉资质模块 */
.honors {
  padding: 100px 0;
  background-color: white;
}

.honor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.honor-item {
  background-color: var(--light-blue);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.honor-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.honor-item h3 {
  font-size: 16px;
  line-height: 1.4;
  color: var(--primary-color);
}

/* 产品优势模块 */
.product-advantages {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.advantage-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.advantage-card {
  flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.advantage-card:hover::before {
  width: 100%;
}

.advantage-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.advantage-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.unified-connectivity {
  text-align: center;
}

.scenario-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.scenario-card {
  flex: 1;
  min-width: 150px;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.scenario-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.scenario-card h4 {
  color: var(--primary-color);
  font-size: 16px;
}

/* 技术架构模块 */
.technology {
  padding: 100px 0;
  background-color: white;
}

.tech-architecture {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tech-header {
  text-align: center;
  margin-bottom: 20px;
}

.tech-header h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.tech-image-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.tech-image-container:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.tech-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease;
}

.tech-layers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.tech-section {
  background-color: var(--light-blue);
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.tech-section h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.tech-section h4::before {
  content: '';
  width: 4px;
  height: 16px;
  background-color: var(--secondary-color);
  border-radius: 2px;
  margin-right: 10px;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.tech-items span {
  background-color: white;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 13px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.tech-items span:hover {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 111, 180, 0.3);
}

/* 统一互联技术底座模块 */
.connectivity-architecture {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.connectivity-header {
  text-align: center;
  margin-bottom: 20px;
}

.connectivity-header h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.connectivity-header p {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.connectivity-image-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.connectivity-image-container:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.connectivity-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease;
}

.connectivity-layers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.connectivity-layer {
  background-color: var(--light-blue);
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.connectivity-layer h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.connectivity-layer h4::before {
  content: '';
  width: 4px;
  height: 16px;
  background-color: var(--secondary-color);
  border-radius: 2px;
  margin-right: 10px;
}

.layer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
}

.layer-items span {
  background-color: white;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 13px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.layer-items span:hover {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 111, 180, 0.3);
}

.layer-items span.highlight {
  background-color: rgba(28, 111, 180, 0.1);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 600;
  position: relative;
}

.layer-items span.highlight::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.layer-items span.highlight:hover {
  background-color: var(--secondary-color);
  color: white;
}

.layer-items span.highlight:hover::after {
  opacity: 1;
  transform: scale(1.05);
}

/* 芯片解决方案模块 */
.chip-solutions {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.chip-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.chip-card {
  flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.chip-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.chip-card h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.chip-card ul {
  list-style: none;
  padding: 0;
}

.chip-card ul li {
  margin-bottom: 10px;
  color: var(--text-light);
  position: relative;
  padding-left: 20px;
}

.chip-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.chip-note {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
}

/* 应用生态模块 */
.app-ecosystem {
  padding: 100px 0;
  background-color: white;
}

.ecosystem-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.ecosystem-stats, .ecosystem-features {
  flex: 1;
  min-width: 300px;
}

.ecosystem-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ecosystem-image {
  width: 100%;
  max-width: 300px;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-blue);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

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

.ecosystem-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.ecosystem-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.ecosystem-image:hover .image-overlay {
  opacity: 1;
}

.zoom-icon {
  color: white;
  font-size: 48px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.ecosystem-image:hover .zoom-icon {
  transform: scale(1.2);
}

/* 图片模态框 */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  animation: zoomIn 0.3s ease;
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ecosystem-stats .stat-number {
  font-size: 72px;
  text-align: center;
  color: var(--secondary-color);
  font-weight: bold;
}

.ecosystem-stats .stat-label {
  text-align: center;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.ecosystem-features h3 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.ecosystem-features ul {
  list-style: none;
  padding: 0;
}

.ecosystem-features ul li {
  margin-bottom: 15px;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}

.ecosystem-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.app-market-link {
  margin-top: 30px;
}

.app-market-link .btn {
  display: inline-block;
}

/* 典型案例模块 */
.case-studies {
  padding: 100px 0;
  background-color: var(--light-blue);
}

.case-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.case-card {
  flex: 1;
  min-width: 300px;
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.case-image {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-blue);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-card h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 18px;
}

.case-card p {
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

/* 核心技术/独特优势模块 */
.core-tech {
  padding: 100px 0;
  background-color: white;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tech-item {
  background-color: var(--light-blue);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
}

.tech-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.tech-item h3 {
  font-size: 16px;
  line-height: 1.4;
  color: var(--primary-color);
}

/* 联系我们模块 */
.contact {
  padding: 100px 0;
  background-color: white;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-item {
  background-color: var(--light-blue);
  border-radius: 8px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.info-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.info-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.info-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/* 底部信息 */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 25px;
  color: white;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  .vision-mission,
  .trends-content,
  .product-cards,
  .team-stats,
  .advantage-cards,
  .scenario-cards,
  .chip-cards,
  .ecosystem-content,
  .case-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .vision-card,
  .market-data,
  .timeline,
  .product-card,
  .stat-card,
  .advantage-card,
  .scenario-card,
  .chip-card,
  .ecosystem-stats,
  .ecosystem-features,
  .case-card,
  .contact-info {
    width: 100%;
    max-width: 400px;
  }
  
  .company,
  .market-trends,
  .product-matrix,
  .core-team,
  .honors,
  .product-advantages,
  .technology,
  .chip-solutions,
  .app-ecosystem,
  .case-studies,
  .core-tech,
  .contact {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 120px 0;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .company,
  .market-trends,
  .product-matrix,
  .core-team,
  .honors,
  .product-advantages,
  .technology,
  .chip-solutions,
  .app-ecosystem,
  .case-studies,
  .core-tech,
  .contact {
    padding: 60px 0;
  }
}

/* 平滑滚动 */
html {
  scroll-behavior: smooth;
}

/* 加载动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

/* 卡片悬停效果 */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
/* 企业介绍模块样式 */
.company-intro[data-v-f00068b3] {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.intro-content[data-v-f00068b3] {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
.intro-image[data-v-f00068b3] {
  flex: 1;
  max-width: 40%;
}
.carousel-container[data-v-f00068b3] {
  position: relative;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.carousel-slides[data-v-f00068b3] {
  position: relative;
  height: 100%;
}
.carousel-slide[data-v-f00068b3] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.carousel-slide.active[data-v-f00068b3] {
  position: relative;
  opacity: 1;
}
.carousel-slide img[data-v-f00068b3] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-controls[data-v-f00068b3] {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
.carousel-controls button[data-v-f00068b3] {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.carousel-controls button[data-v-f00068b3]:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.carousel-indicators[data-v-f00068b3] {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-indicator[data-v-f00068b3] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.carousel-indicator.active[data-v-f00068b3] {
  background-color: rgba(255, 255, 255, 0.9);
}
.intro-text[data-v-f00068b3] {
  flex: 1;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-text p[data-v-f00068b3] {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
  text-align: left;
  text-indent: 2em;
}
.intro-text p[data-v-f00068b3]:last-child {
  margin-bottom: 0;
}

/* 产品矩阵模块样式 */
.product-cards[data-v-f00068b3] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.product-card[data-v-f00068b3] {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card[data-v-f00068b3]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.product-image[data-v-f00068b3] {
  margin-bottom: 16px;
  text-align: center;
}
.product-image img[data-v-f00068b3] {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  border-radius: 4px;
}
.product-card h3[data-v-f00068b3] {
  margin-bottom: 12px;
  font-size: 18px;
  color: #0C2D4F;
}
.product-card p[data-v-f00068b3] {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* 荣誉资质模块样式 */
.honor-grid[data-v-f00068b3] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.honor-item[data-v-f00068b3] {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.honor-item[data-v-f00068b3]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.honor-image[data-v-f00068b3] {
  margin-bottom: 16px;
  text-align: center;
}
.honor-image img[data-v-f00068b3] {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  border-radius: 4px;
}
.honor-item h3[data-v-f00068b3] {
  font-size: 16px;
  color: #0C2D4F;
  margin: 0;
  line-height: 1.4;
}

/* Hero 特性样式 */
.hero-features[data-v-f00068b3] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feature-card[data-v-f00068b3] {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card[data-v-f00068b3]:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.feature-icon[data-v-f00068b3] {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.feature-card h3[data-v-f00068b3] {
  margin-bottom: 8px;
  font-size: 18px;
  color: #fff;
}
.feature-card p[data-v-f00068b3] {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}



/* 联系我们模块样式 */
.contact-cards[data-v-f00068b3] {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}
.contact-card[data-v-f00068b3] {
  background-color: var(--light-blue);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card[data-v-f00068b3]:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}
.contact-card[data-v-f00068b3]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.contact-card[data-v-f00068b3]:hover::before {
  transform: scaleX(1);
}
.card-icon[data-v-f00068b3] {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.contact-card:hover .card-icon[data-v-f00068b3] {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(28, 111, 180, 0.2);
}
.contact-card h3[data-v-f00068b3] {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}
.contact-card p[data-v-f00068b3] {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
}
.contact-link[data-v-f00068b3] {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.contact-link[data-v-f00068b3]:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 111, 180, 0.3);
}

/* 备案号样式 */
.icp-info[data-v-f00068b3] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.icp-icon[data-v-f00068b3] {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* 公司动态模块样式 */
.company-news[data-v-f00068b3] {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.news-cards[data-v-f00068b3] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.news-card[data-v-f00068b3] {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card[data-v-f00068b3]:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.news-date[data-v-f00068b3] {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}
.news-card h3[data-v-f00068b3] {
  margin-bottom: 12px;
  font-size: 18px;
  color: #0C2D4F;
  line-height: 1.4;
}
.news-card p[data-v-f00068b3] {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 16px;
  flex-grow: 1;
}
.news-link[data-v-f00068b3] {
  display: inline-block;
  color: #1C6FB4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-top: auto;
  align-self: flex-start;
}
.news-link[data-v-f00068b3]:hover {
  color: #0C2D4F;
}
.news-loading[data-v-f00068b3] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  color: #666;
  font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 768px) {
.intro-content[data-v-f00068b3] {
    flex-direction: column;
    text-align: center;
}
.intro-image[data-v-f00068b3],
  .intro-text[data-v-f00068b3] {
    max-width: 100%;
}
.intro-image[data-v-f00068b3] {
    margin-bottom: 20px;
    height: 300px;
}
.intro-text p[data-v-f00068b3] {
    text-align: left;
}
.product-cards[data-v-f00068b3],
  .news-cards[data-v-f00068b3] {
    grid-template-columns: 1fr;
}
.icp-info[data-v-f00068b3] {
    flex-direction: column;
    gap: 4px;
}
}
