@charset "utf-8";
/* 通用 */
.loading_dot,
.loading_dot > div {
  position: relative;
  box-sizing: border-box;
}

.loading_dot {
  display: block;
  font-size: 0;
  color: #aac9e7;
}

.loading_dot.la-dark {
  color: #333;
}

.loading_dot > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.loading_dot {
  width: 40px;
  height: 40px;
  margin-left: 400px;
  margin-top: 50px;
}

.loading_dot > div {
  position: absolute;
  width: 40px;
  height: 40px;
  margin-left: -25px;
  border-radius: 100%;
  animation: ball-running-dots-animate 2s linear infinite;
}

.loading_dot > div:nth-child(1) {
  animation-delay: 0s;
}

.loading_dot > div:nth-child(2) {
  animation-delay: -0.4s;
}

.loading_dot > div:nth-child(3) {
  animation-delay: -0.8s;
}

.loading_dot > div:nth-child(4) {
  animation-delay: -1.2s;
}

.loading_dot > div:nth-child(5) {
  animation-delay: -1.6s;
}

.loading_dot > div:nth-child(6) {
  animation-delay: -2s;
}

.loading_dot > div:nth-child(7) {
  animation-delay: -2.4s;
}

.loading_dot > div:nth-child(8) {
  animation-delay: -2.8s;
}

.loading_dot > div:nth-child(9) {
  animation-delay: -3.2s;
}

.loading_dot > div:nth-child(10) {
  animation-delay: -3.6s;
}

.loading_dot.la-sm {
  width: 4px;
  height: 4px;
}

.loading_dot.la-sm > div {
  width: 4px;
  height: 4px;
  margin-left: -12px;
}

.loading_dot.la-2x {
  width: 20px;
  height: 20px;
}

.loading_dot.la-2x > div {
  width: 20px;
  height: 20px;
  margin-left: -50px;
}

.loading_dot.la-3x {
  width: 30px;
  height: 30px;
}

.loading_dot.la-3x > div {
  width: 30px;
  height: 30px;
  margin-left: -75px;
}

@keyframes ball-running-dots-animate {
  0%,
  100% {
    width: 100%;
    height: 100%;
    transform: translateY(0) translateX(500%);
  }

  80% {
    transform: translateY(0) translateX(0);
  }

  85% {
    width: 100%;
    height: 100%;
    transform: translateY(-125%) translateX(0);
  }

  90% {
    width: 200%;
    height: 75%;
  }

  95% {
    width: 100%;
    height: 100%;
    transform: translateY(-100%) translateX(500%);
  }
}
/* 首页 */

/* 概览 */

/* 细览 */