.fd-container {
  padding: 104px 0;
  background: url(../image/service-bg-repeat.png);
}
.fd-service {
	position: relative;
	
  margin: 0 auto 120px auto;
}
.fd-service header {
  margin-bottom: 104px;
  text-align: center;
  font-size: 40px;
  color: #5f616d;
}

.fd-service .swiper-container {
  padding-bottom: 80px;
}


.fd-service  .swiper-slide {
	width: 383px;
  height: 460px;
	background-color: #fff;
  box-shadow: 0 8px 30px #ddd;
  border-radius: 10px;
  overflow: hidden;
}
.fd-service .swiper-slide:hover {
  box-shadow: 0 8px 30px #70a9d1;
}
.fd-service .swiper-slide img{
  display: block;
  width: 100%;
  height: 180px;
}
.fd-service .swiper-slide h2 {
  position: relative;
  margin: 50px 35px 60px 35px;
  font-size: 24px;
  color: #404040;
}
.fd-service .swiper-slide h2::after {
  position: absolute;
  top: 54px;
  left: 0;
  content: "";
  width: 70px;
  height: 0;
  border-top: 1px solid #3aa9f0;
}
.fd-service .swiper-slide .fd-btn {
  position: absolute;
  top: -2px;
  right: 0;
  height: 30px;
  padding: 0 12px;
  background-color: #a1cedd;
  text-align: center;
  color: #fff;
  line-height: 30px;
  font-size: 14px;
  text-decoration: unset;
  border-radius: 5px;
}
.fd-service .swiper-slide .fd-btn:hover {
  background-color: #1995eb;
}
.fd-service  .swiper-slide p {
  margin: 0 35px 20px 35px;
  font-size: 16px;
  color: #666;
  line-height: 36px;
}
.fd-service .swiper-pagination {
	width: 100%;
	bottom: 0px;
}

.fd-service .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
  background-color: #bec5cf;
	width: 10px;
	height: 10px;
	opacity: 1;
}
.fd-service .swiper-pagination-bullets .swiper-pagination-bullet-active {
	background-color: #3aa9f0;
}
.fd-service .swiper-button-prev {
	left: -30px;
	width: 45px;
	height: 45px;
	background: url(404.png) no-repeat;
	background-position: 0 0;
	background-size: 100%;
}
.fd-service .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%
}
.fd-service .swiper-button-next {
	right: -30px;
	width: 45px;
	height: 45px;
	background: url(404.png) no-repeat;
	background-position: 0 -93px;
	background-size: 100%;
}
.fd-service .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%
}


.fd-support {
  width: 1200px;
  margin: 140px auto 0 auto;
  padding: 37px 0 54px 0;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 0 10px #ddd;
}
.fd-support header {
  margin-bottom: 38px;
  font-size: 24px;
  color: #258ffc;
}
.fd-support ul {
  display: flex;
}
.fd-support li {
  flex: 1;
  height: 160px;
  border-right: 1px solid #dcdcdc;
  display:inline-block;
  width:24%;
}
.fd-support li:last-child {
  border-right: none;
}
.fd-support li i {
  display: block;
  height: 55px;
  margin: 0 20px;
  animation: enter .8s linear;
}
.fd-support .fd-icon-tel {
  background: url(../image/connectus-icon7.png) no-repeat center center;
}
.fd-support .fd-icon-phone {
  background: url(../image/connectus-icon8.png) no-repeat center center;
}
.fd-support .fd-icon-email {
  background: url(../image/connectus-icon9.png) no-repeat center center;
}
.fd-support .fd-icon-scan {
  
  background: url(../image/connectus-icon2.jpg) no-repeat center center / auto 100%;
  margin-bottom: 36px;
}
.fd-support .fd-text {
  margin-top: 36px;
  font-size: 18px;
  color: #213552;
  font-weight: bold;
  letter-spacing: 1px;
}
.fd-support .fd-num {
  margin-top: 23px;
  font-size: 24px;
  color: #333;
}



@keyframes enter {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}