body {
  overflow: hidden;
}
.init-box {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.init-loading {
  width: 52px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.init-loading-rect {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #8ab1ff 0%, #1765ff 100%);
  animation: init-wave 0.9s infinite ease-in-out;
}

.init-loading-rect:nth-child(1) {
  animation-delay: 0s;
}
.init-loading-rect:nth-child(2) {
  animation-delay: 0.15s;
}
.init-loading-rect:nth-child(3) {
  animation-delay: 0.3s;
}
.init-loading-rect:nth-child(4) {
  animation-delay: 0.45s;
}
.init-loading-rect:nth-child(5) {
  animation-delay: 0.6s;
}

@keyframes init-wave {
  0%,
  80%,
  100% {
    transform: translateY(0) scale(0.72);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-5px) scale(1);
    opacity: 1;
  }
}
