body > .html-body-app > .first-loading-wrp > .text-box > .text {
  font-size: 28px;
  color: #333333;
}

body > .html-body-app > .first-loading-wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90vh;
  min-height: 100vh;
  background: #f6f8fc;
}

body > .html-body-app > .first-loading-wrp > .loading-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 98px;
}

body > .html-body-app > .first-loading-wrp > .loading-wrp > .dot {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 96px;
  height: 96px;
  overflow: hidden;
  font-size: 96px;
  transform: rotate(45deg);
  animation: ant-rotate 1s infinite;
}

body > .html-body-app > .first-loading-wrp > .loading-wrp > .dot > i {
  position: absolute;
  display: block;
  width: 48px;
  height: 48px;
  background: #1890ff;
  border-radius: 100%;
  opacity: 0.3;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  animation: ant-spin-move 1s infinite linear alternate;
}

body > .html-body-app > .first-loading-wrp > .loading-wrp > .dot > i:nth-child(1) {
  top: 0;
  left: 0;
}

body > .html-body-app > .first-loading-wrp > .loading-wrp > .dot > i:nth-child(2) {
  top: 0;
  right: 0;
  animation-delay: 0.4s;
}

body > .html-body-app > .first-loading-wrp > .loading-wrp > .dot > i:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: 0.8s;
}

body > .html-body-app > .first-loading-wrp > .loading-wrp > .dot > i:nth-child(4) {
  bottom: 0;
  left: 0;
  animation-delay: 1.2s;
}

body > .html-body-app.dark > .first-loading-wrp {
  background: #151a30;
}

body > .html-body-app.dark > .first-loading-wrp > .text-box > .text {
  font-size: 28px;
  color: #e2e2e2;
}

@keyframes ant-rotate {
  100% {
    transform: rotate(405deg);
  }
}
@keyframes ant-spin-move {
  100% {
    opacity: 1;
  }
}
