@charset "UTF-8";
.showEffect {
  position: fixed;
  right: 2%;
  top: 40%;
  z-index: 999999;
  width: 6%;
  opacity: 0.5;
  border-radius: 50%;
}

.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-animation1 {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("../images/bg.jpg") no-repeat center top;
  background-size: 100% 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 2147483647;
  display: none;
  animation: try-animation1 4s ease-in-out forwards;
}
.try-animation1 * {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
.try-animation1 img {
  max-width: inherit;
}
.try-animation1 .delete {
  position: absolute;
  right: 10%;
  top: 10%;
  z-index: 9000;
}
.try-animation1 .delete:hover {
  opacity: 0.6;
  cursor: pointer;
}


.try-animation1 .try-img4 {
  width: 100%;
  position: fixed;
  right: 0;
  bottom: -15%;
  opacity: 0;
}

.try-animation1 .try-img5-container {
  width: 69%;
  position: fixed;
  top: 0;
  margin-top: 25%;
  left: 50%;
  transform: translateX(-50%);
}

.try-animation1 .try-img5-container .try-img5-content {
  width: 0%;
  overflow: hidden;
  animation: try-animation6 1.5s 2s ease-in-out forwards;
}

.try-animation1 .try-img5-container .try-img5 {
  width: 69vw;
}





.try-animation1 .try-img6 {
  width: 25%;
  position: fixed;
  top: 23.5%;
  margin-left: 37.5%;
  opacity: 0;
}

@keyframes try-animation1 {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes try-animation6 {
  0% {
    opacity: 0;
    width: 0%;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}


@keyframes title-glow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(255, 200, 100, 0.5)) drop-shadow(0 0 20px rgba(255, 100, 50, 0.3));
    transform: translateX(-50%) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 200, 100, 0.9)) drop-shadow(0 0 40px rgba(255, 150, 80, 0.5));
    transform: translateX(-50%) scale(1.02);
  }
}
/* 从左侧进场急刹车动画 */
@keyframes bounceInLeft {
  0% {
    transform: translateX(-300%) rotate(-360deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes ballBounceL {
  0% {
    transform: translateX(0px) scaleX(1) skewY(0deg);
  }
  50% {
    transform: translateX(4px) scaleX(1.04) skewY(1.5deg);
  }
  100% {
    transform: translateX(0px) scaleX(1) skewY(0deg);
  }
}
@keyframes bounceInBottom {
  0% {
    transform: translateY(26%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}