.ey_banner img.ba_img{
    top: 50% !important;
   object-fit: cover;
}
.shouhou-section {
  padding: 80px 0;
  width: 1400px;
  height: auto;
  min-height: 320px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 36px;
  color: #1e3a8a;
  font-family: SourceHanSansSC-Bold-2;
  position: relative;
  display: inline-block;
}
.section-title h2::before,
.section-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 140px;
  height: 2px;
  background: #1e3a8a;
}
.section-title h2::before {
  right: 100%;
  margin-right: 20px;
}
.section-title h2::after {
  left: 100%;
  margin-left: 20px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img {
  width: 100%;
  height: 100%;
}
.service-card h3 {
  font-size: 20px;
  color: #1e3a8a;
  margin-bottom: 15px;
  font-family: SourceHanSansSC-Bold-2;
}
.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
@media (max-width: 1440px) {
    .shouhou-section {
        width: 100%;
    }
}
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title h2::before,
  .section-title h2::after {
    width: 40px;
  }
  .shouhou-section {
    padding: 40px 0;
  }
}
