[v-cloak] {
  display: none;
}
/*页面加载动画2*/
.loading{
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  margin-top: 0px;
  top: 0px;
}
.loading-center{
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.object{
  width: 0.5rem;
  height: 0.5rem;
  background-color: #3AB040;
  float: left;
  margin-right: 0.25rem;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  -webkit-transform: scale(0);
}

.object:nth-child(1) {
  -webkit-animation: object_animation 1.5s ease -1.5s infinite;
  animation: object_animation 1.5s ease -1.5s infinite;
}
.object:nth-child(2) {
  -webkit-animation: object_animation 1.5s ease -1.25s infinite;
  animation: object_animation 1.5s ease -1.25s infinite;
}
.object:nth-child(3) {
  -webkit-animation: object_animation 1.5s ease -1s infinite;
  animation: object_animation 1.5s ease -1s infinite;
}
@-webkit-keyframes object_animation {
  25% {
    -webkit-transform: scale(1);
  }
}
@keyframes object_animation {
  25% {
    transform: scale(1);
  }
}

