/* fade */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.28s;
}

.fade-enter,
.fade-leave-active {
  opacity: 0;
}

/* fade-transform */
.fade-transform-leave-active,
.fade-transform-enter-active {
  transition: all 0.5s;
}

.fade-transform-enter {
  opacity: 0;
  transform: translateX(-30px);
}

.fade-transform-leave-to {
  opacity: 0;
  transform: translateX(30px);
}

/* breadcrumb transition */
.breadcrumb-enter-active,
.breadcrumb-leave-active {
  transition: all 0.5s;
}

.breadcrumb-enter,
.breadcrumb-leave-active {
  opacity: 0;
  transform: translateX(20px);
}

.breadcrumb-move {
  transition: all 0.5s;
}

.breadcrumb-leave-active {
  position: absolute;
}

/* 放大背景 */
.scaleInUp .el-image {
  transition: all 1s ease;
  transform: scale(1);
}

.scaleInUp:hover {
  transition: all 3s ease;
}
.scaleInUp:hover .el-image {
  transition: all 1s ease;
  transform: scale(1.1);
}

@-webkit-keyframes turn {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes turn {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sploosh1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(90deg);
  }
}
@keyframes sploosh1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(90deg);
  }
}
@-webkit-keyframes shadow1 {
  from {
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.05);
  }
  to {
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
  }
}
@keyframes shadow1 {
  from {
    box-shadow: 0px 0px 20px 6px rgba(0, 0, 0, 0.05);
  }
  to {
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
  }
}
/* Y轴旋转 */
.rotateY1 {
  position: relative;
  transform-style: preserve-3d;
  -ms-perspective: 1000;
  perspective: 1000;
}
.rotateY1 .rotateY1-box {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.rotateY1-in {
  height: 100%;
  transition: 0.4s;
}
.rotateY1:hover .rotateY1-in {
  transform: translateX(-50px) rotateY(74deg);
  width: 220px;
  z-index: -1;
}
.rotateY1:hover .rotateY1-font {
  transform: scale(1.1) translateX(-20px) rotateY(10deg);
  z-index: 99;
}
.rotateY1 .rotateY1-font {
  position: absolute;
  top: 0;
  right: 10px;
  height: 100%;
  transition: 0.4s;
}/*# sourceMappingURL=style.css.map */