html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

#app {
  height: 100%;
}

.first-loading-wrp {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 420px;
  height: 100%;
}

.first-loading-wrp .loading-wrp {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  animation: antRotate 1.2s infinite linear;
  transform: rotate(45deg);
  display: inline-block;
  color: #165dff;
  font-size: 32px;
  width: 40px;
  height: 40px;
}

@keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@-webkit-keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
    transform: rotate(405deg);
  }
}

@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}

@-webkit-keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
