/* 未来技术模块样式 */
.technology-section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.technology-container {
  width: 100%;
}
.technology-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.technology-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .technology-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(33, 150, 243, 0.05) 50%, transparent 70%);
  pointer-events: none;
} */

.technology-header {
  text-align: center;
  margin-bottom: 43px;
  position: relative;
  z-index: 3;
}

.technology-title {
  font-size: 32px;
  font-weight: normal;
  color: #000;
  margin: 0;
  position: relative;
  display: inline-block;
}

.technology-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2196f3, transparent);
  border-radius: 1px;
}

.technology-content {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 40px 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.technology-content-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

.technology-content-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology-list {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.technology-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 240px;
  height: 90px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.technology-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.2);
  border-color: #2196f3;
}

.technology-icon {
  width: 48px;
  height: 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon {
  width: 48px;
  height: 40px;
  object-fit: contain;
}

.technology-text {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  flex: 1;
}

.technology-image {
  display: none;
}

.technology-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.technology-image:hover img {
  transform: scale(1.05);
}

/* 未来技术响应式样式 */
@media (max-width: 1024px) {
  .technology-content {
    padding: 30px 0;
  }
  
  .technology-list {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .technology-section {
    padding: 60px 0;
  }
  
  .technology-title {
    font-size: 36px;
  }
  
  .technology-title::after {
    width: 150px;
  }
  
  .technology-content {
    padding: 20px 0;
  }
  
  .technology-list {
    padding: 0 20px;
  }
  
  .technology-item {
    width: 240px;
    height: 90px;
    padding: 0 20px;
    gap: 12px;
  }
  
  .technology-icon {
    width: 48px;
    height: 40px;
  }
  
  .check-icon {
    width: 48px;
    height: 40px;
  }
  
  .technology-text {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .technology-section {
    padding: 40px 0;
  }
  
  .technology-title {
    font-size: 28px;
  }
  
  .technology-title::after {
    width: 120px;
  }
  
  .technology-content {
    padding: 15px 0;
  }
  
  .technology-list {
    padding: 0 20px;
  }
  
  .technology-item {
    width: 240px;
    height: 90px;
    padding: 0 20px;
    gap: 12px;
  }
  
  .technology-icon {
    width: 48px;
    height: 40px;
  }
  
  .check-icon {
    width: 48px;
    height: 40px;
  }
  
  .technology-text {
    font-size: 24px;
  }
}
