/* banner */
.banner {
  height: 358px;
  background: url(../img/about/b_5d11b80370c2a.png) no-repeat center;
  background-size: 100%;
}
.banner .banner_box {
  background-color: rgba(0, 81, 169, 0.3);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner .banner_box h1 {
  font-size: 50px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 80px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.banner .banner_box h2 {
  font-size: 36px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 80px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
/* 解决方案 */
.detail {
  padding: 85px 0 50px;
  background: #FFFFFF;
}
.detail .detail_box {
  width: 1200px;
  margin: 0 auto;
}
.detail .detail_box .detail_title {
  text-align: center;
}
.detail .detail_box .detail_title h1 {
  font-size: 32px;
  font-weight: 500;
  color: #333333;
  position: relative;
}
.detail .detail_box .detail_title h1::before {
  content: 'SOLUTION';
  color: #333;
  opacity: 0.08;
  position: absolute;
  top: -24px;
  font-size: 40px;
  font-weight: 800;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.detail .detail_box .detail_content {
  margin-top: 65px;
}
/* 其他方案 */
.other {
  background-image: url(../img/advantageDetails/51.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 478px;
}
.other .other_box {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 85px 0 50px;
}
.other .other_box .other_title {
  text-align: center;
}
.other .other_box .other_title h1 {
  font-size: 32px;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
}
.other .other_box .other_title h1::before {
  content: 'OTHER PROGRAMMES';
  color: rgba(255, 255, 255, 0.22);
  position: absolute;
  top: -24px;
  font-size: 40px;
  font-weight: 800;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.other .other_box .other_wall {
  width: 1200px;
  margin: 80px auto 0;
}
.other .other_box .other_wall .swiper-container .swiper-wrapper .wall_img {
  width: 378px !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 220px;
}
.other .other_box .other_wall .swiper-container .swiper-wrapper .wall_img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
}
.other .other_box .other_wall .swiper-container .swiper-wrapper .wall_img a img {
  width: 100%;
  min-height: 220px;
}
.other .other_box .other_wall .swiper-container .swiper-wrapper .wall_img a p {
  width: calc(100% - 26px);
  position: absolute;
  padding: 13px;
  z-index: 5;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
}
/* 动画  放大 缩小 */
@keyframes narrow {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes enlarge {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
