.zhicheng-loader {
    position: absolute;
    top: 50%;
    left: 40%;
    margin-left: 10%;
    transform: translate3d(-50%, -50%, 0);
    display: flex;
  }
  .zhicheng-dot {
    width: 16px;
    height: 16px;
    background: #3ac;
    border-radius: 100%;
    animation: slide 1s infinite;
  }
  .zhicheng-dot:nth-child(1) {
    animation-delay: 0.1s;
    background: #3884D3;
  }
  .zhicheng-dot:nth-child(2) {
    animation-delay: 0.2s;
    background: #4BA7A3;
  }
  .zhicheng-dot:nth-child(3) {
    animation-delay: 0.3s;
    background: #D44151;
  }
  .zhicheng-dot:nth-child(4) {
    animation-delay: 0.4s;
    background: #D59032;
  }
  .zhicheng-dot:nth-child(5) {
    animation-delay: 0.5s;
    background: #7247E4;
  }
  @-moz-keyframes slide {
    0% {
      transform: scale(1);
    }
    50% {
      opacity: 0.3;
      transform: scale(2);
    }
    100% {
      transform: scale(1);
    }
  }
  @-webkit-keyframes slide {
    0% {
      transform: scale(1);
    }
    50% {
      opacity: 0.3;
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
  @-o-keyframes slide {
    0% {
      transform: scale(1);
    }
    50% {
      opacity: 0.3;
        transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes slide {
    0% {
      transform: scale(1);
    }
    50% {
      opacity: 0.3;
        transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
