* {
  padding: 0px;
  margin: 0px;
  box-sizing: content-box;
}

.showEffect {
  position: fixed;
  right: 20px;
  bottom: 20%;
  z-index: 999999;
  width: 120px;
  opacity: 0.5;
}

.showEffect:hover {
  opacity: 1;
  cursor: pointer;
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.try-animation {
  position: fixed;
  width: 100%;
  height: 100%;
  
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 2147483647;
  display: none;
}

.try-animation img {
  max-width: inherit;
}

.try-animation .delete {
  position: fixed;
  width: 6.3vw;
  top: 1vh;
  right: 2vw;
  z-index: 300;
}

.try-animation .delete:hover {
  opacity: 0.6;
  cursor: pointer;
}

.try-animation .try-img0 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  animation: try-animation1 4s ease-in-out forwards;
  left: 0;
  top: 0;
}

.try-animation .try-img3 {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 20;
  opacity: 0;
  animation: slideDownScale 0.2s ease-out 1.2s forwards;
  -webkit-animation: slideDownScale 1.2s ease-out 1.2s forwards;
}

.try-animation .try-img6 {
  width: 86.93vw;
  
}

.try-animation .try-img6-container {
  width: 86.93vw;
  position: fixed;
  left: 6.2vw;
  top: 47vh;
  /* transform: translateX(-50%); */
}

.try-animation .try-img6-container .try-img6-content {
  width: 0%;
  overflow: hidden;
  animation: try-animation6 1.5s 1.8s ease-in-out forwards;
}

.try-animation .try-img6-container .try-img6 {
  width: 86.93vw;
}

.try-animation .try-img7 {
  width: 70%;
  position: fixed;
  left: 15%;
  top: 25vh;
  z-index: 30;
  opacity: 0;
  animation: slideUp 1.4s ease-out 1s forwards;
  -webkit-animation: slideUp 1.4s ease-out 1s forwards;
}



/* CSS3 入场动画定义 */

@keyframes try-animation6 {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}

@keyframes try-animation1 {
  0% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideDownScale {
  0% {
    opacity: 0;
    transform: translateY(18%) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@-webkit-keyframes slideDownScale {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%) scale(0.7);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
  }
}

@keyframes scaleDown {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes scaleDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(0vw);
  }

  100% {
    opacity: 1;
    transform: translateY(7vw);
  }
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}