.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.loading {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}
.popup_tips {
  font-size: 32px;
  color: #ff5267;
  margin-top: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 10px 20px;
  text-align: center;
}


.point {
  display: inline-block;
  height: 12px;
  line-height: 12px;
  overflow: hidden;
}
.point::after {
  display: inline-table;
  white-space: pre;
  content: "\A.\A..\A...";
  animation: spin 2s steps(6) infinite;
}
@keyframes spin {
  to{
    -webkit-transform:translateY(-72px);
    transform:translateY(-72px)
  }
}

@keyframes loading {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg)
  }
}

