.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}
.solution-banner {
  background: linear-gradient(45deg, #0086d1, #1faeff);
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}
.solution-banner::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(-25deg);
}
.solution-banner .banner-content {
  color: white;
}
.solution-banner .banner-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}
.solution-banner .banner-content p {
  font-size: 20px;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}
.solution-overview {
  padding: 80px 0;
  background: #f8f9fa;
}
.solution-overview .overview-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.solution-overview .overview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.solution-overview .overview-item i {
  font-size: 48px;
  color: var(--primary-color, #0086d1);
  margin-bottom: 20px;
  display: block;
}
.solution-overview .overview-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--heading-color, #333);
}
.solution-overview .overview-item p {
  color: var(--text-color, #666);
  line-height: 1.6;
}
.core-advantages {
  padding: 80px 0;
}
.core-advantages .advantage-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.core-advantages .advantage-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.core-advantages .advantage-item .advantage-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color, #0086d1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
}
.core-advantages .advantage-item .advantage-icon i {
  font-size: 36px;
  color: #fff;
}
.core-advantages .advantage-item .advantage-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--heading-color, #333);
}
.core-advantages .advantage-item .advantage-content p {
  color: var(--text-color, #666);
  line-height: 1.6;
  margin: 0;
}
.application-scenarios {
  padding: 80px 0;
  background: url("../images/pattern-back-08");
  background-position: center bottom;
  background-size: cover;
  background-color: #fdfdfd;
  background-repeat: no-repeat;
}
.application-scenarios .scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding: 0 60px;
}
.application-scenarios .section-title {
  color: white;
}
.application-scenarios .scenario-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #333;
}
.application-scenarios .scenario-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
  color: white;
}
.application-scenarios .scenario-item:hover img {
  transform: scale(1.1);
}
.application-scenarios .scenario-item:hover p {
  color: white;
}
.application-scenarios .scenario-item .img-box {
  height: 300px;
  overflow: hidden;
}
.application-scenarios .scenario-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 1s ease transform;
}
.application-scenarios .scenario-item h3 {
  font-size: 20px;
  margin: 20px;
}
.application-scenarios .scenario-item p {
  margin: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .solution-banner {
    padding: 60px 0;
  }
  .solution-banner .banner-content h1 {
    font-size: 36px;
  }
  .solution-banner .banner-content p {
    font-size: 18px;
  }
  .scenario-grid {
    grid-template-columns: 1fr !important;
  }
  .advantage-item {
    flex-direction: column;
    text-align: center;
  }
  .advantage-item .advantage-icon {
    margin-right: 0 !important;
    margin-bottom: 20px;
  }
}
.related-products {
  padding: 100px 0;
  background-color: #f5f5f5;
}
.related-products .swiper-slide {
  border-radius: 8px;
}
.related-products .swiper-slide:hover .content {
  background-color: var(--primary-color);
  color: white;
}
.related-products .swiper-slide:hover .image img {
  transform: scale(1.1);
}
.related-products .swiper-slide:hover .view-more {
  color: white;
}
.related-products .product-item {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.related-products .product-link {
  display: block;
  color: #333;
  text-decoration: none;
}
.related-products .image {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.related-products .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.related-products .content {
  height: 192px;
  padding: 28px;
  transition: all 0.3s ease;
}
.related-products .content h3 {
  text-align: left;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
}
.related-products .more {
  margin-top: 100px;
  text-align: left;
}
.related-products .view-more {
  color: #333;
  font-size: 14px;
  position: relative;
  padding-right: 20px;
}
.related-products .view-more:after {
  content: " ";
  width: 13px;
  height: 13px;
  background: url("../images/arrow.png") no-repeat;
  background-position: center center;
  background-size: contain;
}
.related-products .swiper-button-next,
.related-products .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.related-products .swiper-button-next:after,
.related-products .swiper-button-prev:after {
  display: none;
}
.related-products .swiper-button-next svg,
.related-products .swiper-button-prev svg {
  width: 20px;
  height: 20px;
  fill: #333;
}
@media screen and (max-width: 768px) {
  .related-products {
    padding: 30px 0;
  }
  .related-products .image {
    height: 180px;
  }
  .related-products .content h3 {
    font-size: 16px;
  }
}
