/* 图片样式 */
.section-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-image:hover {
  transform: scale(1.03);
}

.case-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.case-image:hover {
  transform: translateY(-5px);
}

.case-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .section-image {
    margin-bottom: 20px;
  }
}

/* SVG图像容器 */
.svg-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
  display: block;
}

.svg-container svg {
  width: 100%;
  height: auto;
}

/* 特定页面图像样式 */
.telecom-cloud-image {
  background-color: #f5faff;
}

.knowledge-base-image {
  background-color: #f5f9ff;
}

.agent-image {
  background-color: #f5faff;
}

.workflow-image {
  background-color: #f5faff;
}

.case-telecom-image {
  background-color: #f5faff;
}

.case-power-image {
  background-color: #f5faff;
}

.case-fintech-image {
  background-color: #f5faff;
}
