img {
  width: 100%;
}

body {
  overflow: hidden;
}

.upwardBox {
  position: absolute;
  font-size: 0.25rem;
  color: #276c27;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 0.24rem;
  text-align: center;
  -webkit-animation: jump 2s linear infinite;
          animation: jump 2s linear infinite;
}
.upwardBox .upward {
  margin-top: 0.08rem;
  width: 30px !important;
  height: 30px !important;
  margin: 0 auto;
}

.ani {
  transform: scale(3) rotate(360deg) !important;
}

@-webkit-keyframes jump {
  0% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10%);
  }
}

@keyframes jump {
  0% {
    transform: translateY(-10%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10%);
  }
}
.tip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 30px;
  display: none;
}/*# sourceMappingURL=common.css.map */