@charset "utf-8";
.cover{
  width:100%;
  height:100%;
  position:absolute;
  background-color:#fff;
  overflow:hidden;
}

.ui-circle-loading{
  position:absolute;
  top:50%;
  left:50%;
  margin-left:-30px;
  margin-top:-30px;

}
.ui-circle-loading .animate{
  width:60px;
  height:60px;
  margin:0;
  padding:0;
}
.ui-circle-loading .animate li{
  list-style:none;
  padding:0;
  width:5px;
  height:5px;
  position:absolute;
  border-radius:50%;
  margin:auto;
  top:0;
  left:0;
  right:0;
  bottom:0;
  -webkit-animation-name:loading-item;
  -webkit-animation-duration:6s;
  -webkit-animation-iteration-count:infinite;
}
.ui-circle-loading .animate li:nth-child(0){
  -webkit-animation-delay:0s;
}
.ui-circle-loading .animate li:nth-child(1){
  -webkit-animation-delay:0.1s;
}
.ui-circle-loading .animate li:nth-child(2){
  -webkit-animation-delay:0.2s;
}
.ui-circle-loading .animate li:nth-child(3){
  -webkit-animation-delay:0.3s;
}
.ui-circle-loading .animate li:nth-child(4){
  -webkit-animation-delay:0.4s;
}
.ui-circle-loading .animate li:nth-child(5){
  -webkit-animation-delay:0.5s;
}
.ui-circle-loading .animate li:nth-child(6){
  -webkit-animation-delay:0.6s;
}
@-webkit-keyframes loading-item {
  0% {
    -webkit-transform:rotate(0) translateX(-100px) translateY(30px);
    -webkit-animation-timing-function:linear;
    background-color:rgba(183,165,127,0);
  }
  5% {
    -webkit-transform:rotate(0deg) translateX(0) translateY(30px);
    -webkit-animation-timing-function:cubic-bezier(0.1,0.5,0.9,0.5);
    background-color:rgba(9,191,204);
  }
  30% {
    -webkit-transform:rotate(-360deg) translateX(0) translateY(30px);
    -webkit-animation-timing-function:cubic-bezier(0.1,0.5,0.9,0.5);
    background-color:rgba(9,191,204);
  }
  55% {
    -webkit-transform:rotate(-720deg) translateX(0) translateY(30px);
    -webkit-animation-timing-function:cubic-bezier(0.1,0.5,0.9,0.5);
    background-color:rgba(9,191,204);
  }
  80% {
    -webkit-transform:rotate(-1080deg) translateX(0) translateY(30px);
    -webkit-animation-timing-function:linear;
    background-color:rgba(9,191,204);
  }
  85%{
    -webkit-transform:rotate(-1080deg) translateX(100px) translateY(30px);
    -webkit-animation-timing-function:linear;
    background-color:rgba(183,165,127,0);
  }
  100% {
    -webkit-transform:rotate(0) translateX(-100px) translateY(30px);
    -webkit-animation-timing-function:linear;
    background-color:rgba(183,165,127,0);
  }
}
#loading_wrap{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  -webkit-transition: all 1.2s ease;
          transition: all 1.2s ease;
  color: #cece41;
}
.loaded{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  display: none;
}