.swipe-wrapper {
    width: 100%;
    /* height: 230px; */
    position: relative;
    overflow: hidden;
    padding: 20px 0;
  }
  
  .swipe-wrapper .swipe-transition {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  
  .swipe-list {
    width: 1200px;
    height: 750px;
    margin: 0 auto;
    position: relative;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
  }
  
  .swipe-list a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .swipe-wrapper .current {
    display: block;
    -webkit-transform: translateX(0px) translateZ(0px) rotateY(0deg);
    -moz-transform: translateX(0px) translateZ(0px) rotateY(0deg);
    -o-transform: translateX(0px) translateZ(0px) rotateY(0deg);
    -ms-transform: translateX(0px) translateZ(0px) rotateY(0deg);
    transform: translateX(0px) translateZ(0px) rotateY(0deg);
    opacity: 1;
    visibility: visible;
  }
  
  .swipe-list a img {
    display: block;
    padding:0;
    width: 100%;
    height: calc(100% - 10px);
    background: #fff;
  }
  
  .swipe-indicator {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    text-align: center;
    margin-top: 14px;
  }
  
  .swipe-indicator li {
    cursor: pointer;
    display: inline-block;
    list-style: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    background: #333333;
    /* background: rgba(255, 255, 255, 0.30); */
    /* border: 1px solid rgba(0, 0, 0, 0.20); */
  }
  
  .swipe-action a {
    width: 58px;
    transition: opacity .5s;
    position: absolute;
    z-index: 1000;
    top: 14px;
    /* height: 100%; */
    text-align: center;
    /* opacity: 0; */
    top: calc(50% - 30px);
  }
  
  .swipe-action a.prev {
    left: 20px;
  }
  
  .swipe-action a.next {
    right: 20px;
  }
  
  .swipe-action span {
    float: left;
    width: 60px;
    height: 60px;
    /* line-height: 70px; */
    opacity: 0.6;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .swipe-action a:hover {
    opacity: 1;
    /* background: rgba(238, 238, 238, 0.31); */
  }
  .swipe-list a:not(.current) .mask {
    background-color: rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.bg-ffffff{background-color: #fff;box-shadow: 0px 3px 15px 0px rgba(0,0,0,0.15); }
@media (max-width:1400px){
  .swipe-list {
    width: 80%;
    height: 750px;
}
}