.all {
  background-image: url(../img/hz_bg.png);
  background-size: cover;
}
.all .swiper-slide{
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 30px 0 30px;
    background: #fff;
    overflow: hidden;
}
.all .swiper-slide img{
    max-width: 70%;
    max-height: 70%;
    transition: all 0.5s;
}
.all .swiper-slide:hover img{
    transform: scale(1.05);
}
.all .title {
  text-align: center;
  font-weight: bold;
}
.all .des {
  color: #737373;
  text-align: center;
  margin-top: 4px;
}
.all .partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}
.all .partner .sw1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.all .partner.active .sw1 {
  -webkit-animation: ticker2 linear 20s infinite;
          animation: ticker2 linear 20s infinite;
}
.all .partner .sw_s {
  width: 260px;
  height: 114px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 30px 0 30px;
  background: #fff;
  margin-right: 50px;
}
.all .partner .sw_s img {
  max-width: 80%;
  max-height: 80%;
}
.all .partner2.active .sw1 {
  animation: ticker3 linear reverse 20s infinite;
}

@-webkit-keyframes ticker2 {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker2 {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes ticker3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@media screen and (max-width: 1700px) {
  .all .swiper-slide {
    height: 100px;
    border-radius: 0 20px 0 20px;
  }
}
@media screen and (max-width: 1200px) {
  .all .swiper-slide {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .all .swiper-slide {
    border-radius: 0 15px 0 15px;
  }
}