<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.float-box-container {
  position: fixed;
  z-index: 1;
  bottom: 20px;
  right:50px;
  width: 260px;
  height: 340px;
  animation: AniUPDown 1.6s linear infinite;
}

.float-box {
  padding-top: 282px;
  text-align: right;
  width: 260px;
  height: 340px;
  background-image: url("/pcgame/ty/img/blizzard_float_bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  box-sizing: border-box;
}

.float-box-container img {
  width: 24px;
  position: absolute;
  top: 0;
  right: 0px;
  cursor: pointer;
  z-index: 2;
}

.float-box div {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@keyframes AniUPDown {
  0% {
      transform: translate(0);
  }
  50% {
      transform: translateY(15px);
  }
  100% {
      transform: translate(0);
  }
}</pre></body></html>