/* 数字人页面样式 */
#digital-human-intro{
  width: 100%;
  height:100%;
  background-color:#2563EB; /* 背景色 */
}
/* 介绍部分 */
.digital-human-intro-content {
  text-align: center;
  color: white;
}

.digital-human-intro-text {
  padding:100px 0
  /* max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

.digital-human-intro-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: white;
}

.digital-human-intro-text p {
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* 功能模块 */
.function-layout {
  display: flex;
  margin-top: 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-height: 500px; /* 增加最小高度 */
}

.function-sidebar {
  width: 200px;
  background-color: #f8f0f0;
  padding: 20px 0;
}

.sidebar-item {
  padding: 15px 20px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-item.active {
  background-color: #fff;
  color: #2563EB;
  border-left-color: #2563EB;
}

.function-content {
  flex: 1;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
}

.content-description {
  margin-bottom: 40px;
}

.module-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.module-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.module-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-section h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.advantages-tags .tag,
.scenarios-tags .tag {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.advantages-tags .tag {
  background-color: #f0f8ff;
  color: #2563EB;
}

.scenarios-tags .tag {
  background-color: #f0f8ff;
  color: #2563EB;
}

.advantages-tags .tag:hover,
.scenarios-tags .tag:hover {
  background-color: #2563EB;
  color: white;
}

@media (max-width: 768px) {
  .function-content {
    padding: 20px;
  }
  
  .module-title {
    font-size: 24px;
  }
  
  .tags-container {
    gap: 8px;
  }
  
  .advantages-tags .tag,
  .scenarios-tags .tag {
    padding: 6px 15px;
    font-size: 12px;
  }
}

.content-item {
  display: none;
  height: 100%;
}

.content-item.active {
  display: block;
}

.content-section {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-section h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.content-section p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .digital-human-intro-text h1 {
    font-size: 32px;
  }
  
  .digital-human-intro-text p {
    font-size: 18px;
  }
  
  .function-layout {
    flex-direction: column;
    min-height: auto;
  }
  
  .function-sidebar {
    width: 100%;
    padding: 10px 0;
  }
  
  .function-content {
    min-height: 300px;
  }
  
  .sidebar-item {
    padding: 12px 15px;
    border-left: none;
    border-bottom: 2px solid transparent;
  }
  
  .sidebar-item.active {
    border-left-color: transparent;
    border-bottom-color: #2563EB;
  }
}

@media (max-width: 576px) {
  .digital-human-intro-content {
    padding: 60px 15px;
  }
  
  .digital-human-intro-text h1 {
    font-size: 28px;
  }
  
  .digital-human-intro-text p {
    font-size: 16px;
  }
}


/* 核心优势和业务场景部分 */
.section-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.advantages-tags, .scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.advantage-tag, .scenario-tag {
  background-color: #f0f8ff;
  color: #2563EB;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.advantage-tag:hover, .scenario-tag:hover {
  background-color: #2563EB;
  color: white;
}