body,
div,
p,
span,
img {
  margin: 0;
  padding: 0;
}

#app {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.app-load {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-img {
  width: 135px;
  height: 90px;
}
.app-load .t {
  font-size: 30px;
  font-weight: 600;
  color: #237dff;
  line-height: 36px;
  margin-top: 30px;
}
.loading_pc {
  width: 38px;
  height: 36px;
  margin-top: 42px;
  animation: rotate 800ms cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.app-load .d {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  margin-top: 12px;
}
