.spin-wrapper {
  background-color: #f2f2f2;
  height: 100vh;
  line-height: 100vh;
  text-align: center;
}
.ant-spin {
  display: inline-block;
}
.ant-spin-dot {
  position: relative;
  display: inline-block;
  font-size: 20px;
  height: 1em;
  width: 1em;
}

.ant-spin-dot-spin {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  animation: antRotate 1.2s linear infinite;
}

/* .ant-spin-dot-item {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background-color: #f90;
  border-radius: 100%;
  transform: scale(.75);
  transform-origin: 50% 50%;
  opacity: .3;
  animation: antSpinMove 1s linear infinite alternate;
} */

.ant-spin-dot-item:first-child {
  top: 0;
  left: 0;
}

.ant-spin-dot-item:nth-child(2) {
  top: 0;
  right: 0;
  animation-delay: .4s;
}

.ant-spin-dot-item:nth-child(3) {
  right: 0;
  bottom: 0;
  animation-delay: .8s;
}

.ant-spin-dot-item:nth-child(4) {
  bottom: 0;
  left: 0;
  animation-delay: 1.2s;
}

@keyframes antSpinMove {
  to {
      opacity: 1;
  }
}
@keyframes antRotate {
  to {
      transform: rotate(405deg);
  }
}
#tips {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999;
}
#tips .content {
  background: url('/tips.png') no-repeat left center;
  background-size: auto 100%;
  position: absolute;
  left: 50%;
  top: 45%;
  height: 400px;
  width: 800px;
  margin-top: -200px;
  margin-left: -400px;
  padding-left: 300px;
}
#tips .content:before {
  content: '';
  background-color: #f2f2f2;
  border-radius: 10px;
  position: absolute;
  right: -14px;
  top: 74px;
  width: 530px;
  height: 285px;
  z-index: -1;
}
.icon-1 {
  position: absolute;
  left: 300px;
  top: 80px;
}
.icon-2 {
  position: absolute;
  right: 0;
  top: 80px;
}
.icon-3 {
  position: absolute;
  bottom: 50px;
  left: 300px;
}
.icon-4 {
  position: absolute;
  bottom: 50px;
  right: 0;
}
#tips p {
  text-align: center;
  font-size: 20px;
  padding: 0 20px;
}