@charset "UTF-8";
.up-loadding {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
}
.up-loadding .cent-ico {
  display: block;
  width: 182px;
  height: 182px;
  background: url(ico_08.png) no-repeat center;
  position: absolute;
  left: 50%;
  margin-left: -91px;
  top: 50%;
  margin-top: -91px;
  z-index: 2;
  -webkit-animation: scalePop 2.5s linear infinite;
 animation: scalePop 2.5s linear infinite;
}
.up-loadding .bg-box {
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  background-color: #000;
  /*background-color: #20293a;*/
  z-index: 1;
}
.up-loadding .bg-fir {
  top: 0;
}
.up-loadding .bg-sec {
  bottom: 0;
}
.up-loadding .cent-load {
	width: 500px;
    height: 500px;
    position: absolute;
    left: 50%;
    margin-left: -250px;
    top: 50%;
    margin-top: -250px;
    z-index: 2;
}

.up-loadding .cent-font {
    text-align: center;
    color: #fff;
    position: absolute;
    width: 173px;
    left: 50%;
    margin-left: -86.5px;
    top: 42%;
    margin-top: -52px;
}
.up-loadding .cent-font .num {
 font-size: 24px;
 padding: 15px 0px 5px;
}
.up-loadding .cent-font .tit {
line-height: 18px;
    font-size: 12px;
    font-family: "Arial";
    text-transform: uppercase;
    opacity: 0.5;
}


.loading {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: #20293a;
  color: #20293a;
  border-radius: 50%;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  animation: text 10s ease infinite;
}
.loading span {
	display:block;
  position: absolute;
  content: "";
  top: -5%;
  left: -5%;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.85);
  filter: blur(5vw);
  background: linear-gradient(270deg, #00fcbd, #7400f9);
  background-size: 150% 150%;
  border-radius: 50%;
  animation: glowmation 10s linear infinite;
}
@keyframes glowmation {
  0% {
    top: -3%;
    left: -3%;
    background-position: 0% 50%;
    background-size: 150% 150%;
  }
  12.5% {
    top: -3%;
    left: 0;
    background-size: 70% 30%;
  }
  25% {
    top: -3%;
    left: 3%;
    background-size: 100% 50%;
  }
  37.5% {
    top: 0;
    left: 3%;
    background-size: 70% 30%;
  }
  50% {
    top: 3%;
    left: 3%;
    background-position: 100% 50%;
    background-size: 30% 30%;
  }
  62.5% {
    top: 3%;
    left: 0;
    background-size: 30% 70%;
  }
  75% {
    top: 3%;
    left: -3%;
    background-size: 50% 100%;
  }
  87.5% {
    top: 0;
    left: -3%;
    background-size: 30% 70%;
  }
  100% {
    top: -3%;
    left: -3%;
    background-position: 0% 50%;
    background-size: 150% 150%;
  }
}
@keyframes text {
  0% {
    color: #7400f9;
  }
  50% {
    color: #00fcbd;
  }
  100% {
    color: #7400f9;
  }
}