.product-section {
  display: flex;
  align-items: center;
  gap: 40px;
  /* 图片与文字的间距 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
/* 图片容器：固定宽度 420px */
.product-image {
  flex: 0 0 420px;
  /* 固定宽度，不缩放 */
  height: auto;
}
.product-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  /* 可选：添加圆角 */
}
/* 文字内容区域 */
.product-content {
  flex: 1;
  /* 占满剩余宽度 */
}
.product-content h2 {
  font-size: 36px;
  color: #333;
  /* 与示例标题颜色匹配 */
  margin: 0 0 24px;
  font-weight: bold;
}
.product-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
/* 响应式适配：小屏幕改为上下布局 */
@media (max-width: 992px) {
  .product-section {
    flex-direction: column;
    text-align: center;
  }
  .product-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
  }
}
/* 外层容器 一行四列 */
.service-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  padding: 20px;
}
/* 单个服务卡片 均分4列 */
.service-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
/* 图片区域 高度450px */
.card-img {
  width: 100%;
  height: 450px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-text {
  padding: 24px 16px;
  text-align: left;
}
.card-text h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
}
.card-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
/* 响应式适配 */
@media (max-width: 1400px) {
  .service-container {
    flex-wrap: wrap;
  }
  .service-card {
    flex: 1 1 calc(25% - 20px);
    min-width: 260px;
  }
}
@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
  }
}
