/* banner */
.banner {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.banner img {
  width: 100%;
}

.banner .swiper {
  width: 100%;
}

.banner .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.banner .info h3 {
  color: #fff;
  font-size: 84px;
}

.banner .info p {
  color: #fff;
  font-size: 66px;
}

/* 关于我们 */
.about {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover;
}

.about .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.about .content .left,
.about .content .right {
  width: 48%;
}

.about .content .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about .content .left .more {
  display: block;
  width: 144px;
  height: 46px;
  line-height: 46px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-bottom: 5px;
  background: linear-gradient(180deg, #5AA7FF 0%, #5288F5 100%);
  box-shadow: 3px 3px 16px rgba(109, 109, 109, 0.07);
  transition: all .3s;
}

.about .content .left .more:hover {
  opacity: .6;
}

.about .content .right img {
  width: 100%;
  /* height: 418px; */
}

/* 公司业务 */
.serve {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover;
}

.serve .tit {
  margin-bottom: 66px;
}

.serve .tit h3 {
  color: #fff;
}

.serve .tit i {
  color: #fff;
  opacity: .5;
}

.serve .list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.serve .list .item {
  overflow: hidden;
  width: 22%;
  border-radius: 12px;
  transition: all .3s;
}

.serve .list .item:hover {
  transform: translateY(-10px);
}

.serve .list .item img {
  width: 100%;
  height: 323px;
}

.serve .list .item .nr {
  width: 100%;
  padding: 35px 20px;
  box-sizing: border-box;
  background-color: #fff;
}

.serve .list .item .nr a {
  display: block;
  width: 100%;
  color: #474747;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.serve .list .item .nr a:hover {
  color: #5288F5;
}

.serve .list .item .nr .line {
  width: 34px;
  height: 3px;
  margin: 11px 0;
  background: #5288F5;
  border-radius: 50px;
}

.serve .list .item .nr p {
  color: #999;
  font-size: 16px;
}

/* 合作伙伴 */
.partner {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.partner .tit {
  margin-bottom: 148px;
}

.partner .tit h3 {
  color: #fff;
}

.partner .tit i {
  color: #fff;
  opacity: .5;
}

.partner .tit .line {
  background: #EB8419;
}


.partner .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.partner .list img {
  width: 18%;
  height: 84px;
  margin-right: 2%;
  margin-bottom: 54px;
}

/* 最新资讯 */
.news {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.news .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.news .list .item {
  display: flex;
  justify-content: space-between;
  width: 48%;
  height: 208px;
  padding: 30px;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: all .3s;
  border: 1px solid #F7F7F7;
}

.news .list .item .nr {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 56%;
}

.news .list .item .nr p {
  font-size: 17px;
}

.news .list .item .nr .more {
  font-size: 13px;
}

.news .list .item img {
  width: 38%;
}

.news .list .item:hover {
  background-color: #5288F5;
}

.news .list .item:hover .nr p,
.news .list .item:hover .nr .more {
  color: #fff;
}

.news .check {
  display: block;
  width: 144px;
  height: 46px;
  line-height: 46px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin: 50px auto 0;
  background: linear-gradient(180deg, #5AA7FF 0%, #5288F5 100%);
  box-shadow: 3px 3px 16px rgba(109, 109, 109, 0.07);
  transition: all .3s;
}

.news .check:hover {
  opacity: .6;
}

/* 联系我们 */
.contact {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact .tit {
  margin-bottom: 148px;
}

.contact .list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 50px 0;
}

.contact .list .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact .list .item img {
  height: 64px;
  margin-bottom: 6px;
}

.contact .list .item span {
  font-size: 22px;
}

.contact .list .item .line {
  width: 24px;
  height: 4px;
  margin-top: 9px;
  margin-bottom: 10px;
  background: #5288F5;
  border-radius: 50px;
}

.contact .list .item p {
  font-size: 20px;
}

@media screen and (max-width: 992px) {
  .banner .info h3 {
    font-size: 25px;
  }

  .banner .info p {
    font-size: 18px;
  }

  .about .content {
    display: block;
  }

  .about .content .left,
  .about .content .right {
    width: 100%;
  }

  .news .list .item {
    display: block;
    height: auto;
    padding: 15px;
  }

  .news .list .item .nr,
  .news .list .item img {
    width: 100%;
  }

  .news .list .item img {
    margin-top: 15px;
  }

  .news .list .item .more {
    display: none;
  }

  .serve .list {
    flex-wrap: wrap;
  }

  .serve .list .item {
    width: 100%;
    margin-bottom: 20px;
  }

  .news .list .item {
    width: 100%;
  }

  .partner {
    display: none;
  }
  
  .partner .list img {
    width: 48%;
  }

  .contact .tit {
    margin-bottom: 30px;
  }

  .contact .list {
    flex-wrap: wrap;
  }

  .contact .list .item {
    width: 100%;
    margin-bottom: 40px;
  }
}