

.load_con{position: fixed;left: 50%;top: 50%;Z-INDEX: 9999999999;}
.load_con::before{content:'';display: block;width: 100vw;height: 100vh;background: rgba(0, 0, 0, 0.3);position: absolute;left:0;top:0;transform: translate(-50%,-50%);}

.load_con p{transform: translateY(25px);color: #fff;}
.load-wrapp {
    float: left;
    width: 100px;
    height: 100px;
    margin: 0 10px 10px 0;
    border-radius: 5px;
    text-align: center;
  }
  
  .load-wrapp p {
    padding: 0 0 20px;
  }
  .load-wrapp:last-child {
    margin-right: 0;
  }
  
  .line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #fff;
  }
  
  .load-3 .line:nth-last-child(1) {
    animation: loadingC 0.6s 0.1s linear infinite;
  }
  .load-3 .line:nth-last-child(2) {
    animation: loadingC 0.6s 0.2s linear infinite;
  }
  .load-3 .line:nth-last-child(3) {
    animation: loadingC 0.6s 0.3s linear infinite;
  }
  
  .l-3 {
    animation-delay: 0.72s;
  }
  
  @keyframes loadingC {
    0 {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, 15px);
    }
    100% {
      transform: translate(0, 0);
    }
  }