.caroul-big {
  width: 100%;
  position: relative;
}

.caroul-now {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 320px;*/
  overflow: hidden;
}

.caroul-now {
  z-index: 2
}

.caroul-next {
  background: #ccc;
  width: 100%;
  /*height: 320px;*/
}

.caroul-now img, .caroul-next img {
  width: 100%;
  height: 485px;
}

.caroul-point {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
}

.caroul-point .item {
  margin: 0 6px;
  display: inline-block;
  height: 10px;
  width: 10px;
  background: #000;
  border-radius: 50%;
  opacity: 0.3;
  box-shadow: 0 0 1px 0 #999999;
  cursor: pointer;
}

.caroul-point .active {
  height: 6px;
  width: 6px;
  border: 2px solid white;
  border-radius: 5px;
  opacity: 1;
  background: transparent;
}

.arrow {
  position: absolute;
  top: 50%;
  /*transform: translateY(-50%);*/
  background: url("../images/icon_left_arrow_gray.svg") no-repeat center #2e2e2e;
  background-size: 14px 14px;
  color: #aaa;
  font-size: 20px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  margin-top: -22px;
  text-align: center;
  border-radius: 25px;
  z-index: 10;
  user-select: none;
}

.arrow img {
  width: 14px;
  height: 14px;
}

.arrow:hover {
  background-color: #404040;
  box-shadow: 0 4px 8px rgba(0,0,0,.2)
  /*background: rgba(0,0,0,.5);*/
}

.leftarrow {
  left: 0;
}

.rightarrow {
  right: 0;
}

.rightarrow {
  transform: rotate(180deg);
}

/*.fade-enter-active, .fade-leave-active {*/
/*  transform: scale(.5);*/
/*  transition: ease .3s*/
/*}*/
/*.fade-enter, .fade-leave-active {*/
/*  transform: scale(1.7);*/
/*}*/

.fade-enter-active {
  animation: show .5s;
}
.fade-leave-active {
  animation: hide .5s;
}
.fade-enter, .fade-leave-to {
  opacity: .5;
}
