.wrapper{
  display: flex;  
  align-items: center;
  justify-content: center;
  max-width: 100vw;
 
  position: relative;
  margin-bottom: 64px;
  margin-top: 64px;
}
.wrapper i{
  top: 50%;
  height: 40px;
  width: 40px;
  color: #666666;
  cursor: pointer;
  font-size: 1.2rem;
  position: absolute;
  text-align: center;
  line-height: 40px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.9);
}
.wrapper i:hover{
  background: #f2f2f2;
}
.wrapper i:first-child{
  left: +2px;
  display: none;
  z-index:3;
}
.wrapper i:last-child{
  right: -10px;
  z-index:2;
}
.wrapper .carousel{
  font-size: 0px;
  margin-right: 14px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth; 
}
.carousel.dragging{
  cursor: grab;
  scroll-behavior: auto;
}
.carousel.dragging img{
  pointer-events: none;
}
.carousel img{
  height: auto;
  object-fit: cover;
  user-select: none;
  margin-left: 14px;  
  width: calc(100% / 3);
}
.carousel img:first-child{
  margin-left: 0px;
}
@media screen and (max-width: 850px) {
  .carousel img{
    width: calc(100% / 2);
  }
  .wrapper i{
    top: 112%;
    height: 50px;
    width: 50px;
    font-size: 1.2rem;
    line-height: 50px;
  }
  .wrapper i:first-child{
    left: 35%;
    z-index:2;
  }
  .wrapper i:last-child{
    right: 35%;
    z-index:2;
  }
}
@media screen and (max-width: 550px) {
  .carousel img{
    width: 100%;
    margin-left: 14px;   
  }
}
