.loading_Overlay{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    zoom: 1;
    background: none;
    z-index: 9999;
    width:100%;
    height:100%;
    filter:alpha(opacity=50); /*IE滤镜，透明度50%*/
    -moz-opacity:0.5; /*Firefox私有，透明度50%*/
    opacity:0.5;/*其他，透明度50%*/
}
.hidden_loading_index {
    display:none;
    background:  rgba(1,1,1,0.1);
    /*  background:  rgba(255,255,255,0.4); */
    padding: 15px;
    text-align: left;
    width: 205px;
    height: 70px;
    overflow: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    overflow-x: hidden; overflow-y: hidden;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#loading_wrapper{
  
}
#loading_Skeleton {
  width: 200px;
  height: 25px;
  border: 1px solid #3598DC;
  animation: turn 4s linear 1.75s infinite;
   z-index: 9999999;
}
#loading_loader {
  width: 0%;
  height: 100%;
  background: #3598DC;
  box-shadow: 10px 0px 15px 0px rgba(53,152,220,1);
  animation: load 2s linear infinite;
   z-index: 9999999;
}
@keyframes load {
  0%{width: 0%;}
  87.5%, 100%{width:100%;}
}
@keyframes turn{
  0%{transform: rotateY(0deg);}
  6.25%, 50%{transform: rotateY(180deg);}
  56.25%, 100%{transform: rotateY(360deg);}
}
#loading_wrapper span{
  display: inline-block;
  line-height: 30px;
  color: #3598DC;
  font-size: 1.5em;
  animation: bounce 2s  linear infinite;
   z-index: 9999999;
}
@keyframes bounce{
  0%{line-height: 30px;}
  12.5%{line-height: 70px;}
  72.5%,100%{line-height: 30px;}
}