/* 容器样式，用于包裹标题和卡片列表 */
.container {
}
.banner {
  background: #f1f9f7;
  width: 100%;
  height: 380px;
  padding: 0 12px;
  box-sizing: border-box;
}
.banner-msg {
  max-width: 1200px;

  padding-top: 100px;
}
.banner-msg h1 {
  margin-bottom: 20px;
}
.banner-msg p {
  margin-bottom: 40px;
}
.top1_box {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
}
/* 标题样式 */
.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

/* 卡片容器样式，采用弹性布局，适配不同屏幕 */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.card-title1 {
  display: flex;
  align-content: stretch;
  justify-content: flex-start;
  align-items: baseline;
}
/* 单个卡片样式 */
.card {
  flex: 1 1 calc(25% - 65px);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.card:nth-child(odd) {
  background: linear-gradient(140.79deg, #fbfdf3 0%, #e8f9f5 100%);
}
.card:nth-child(even) {
  background: linear-gradient(140.79deg, #fef6dc 0%, #fbfdf3 100%);
}

/* 卡片内图标样式，可根据实际替换为图标字体或图片 */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;

  line-height: 20px;
  text-align: center;
  margin-right: 10px;
}
.icon img {
  margin-top: 1px;
  float: left;
}

/* 卡片标题样式 */
.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

/* 卡片描述文本样式 */
.card-desc {
  font-size: 14px;
  color: #666;
}

/* 媒体查询，适配移动端屏幕 */
@media (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .card {
    flex: 1 1 100%;
  }
}
.detail-box {
  margin: 0 auto;
  max-width: 1200px;
  padding-bottom: 100px;
  margin-top: 80px;
}
.service-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.service-item a {
  text-decoration: none;
  color: #117865;
  margin-top: 50px;
}
.detail-tip {
  margin-bottom: 20px;
}

