/*加载样式*/
.loading{
    width: .80rem;
    height: .40rem;
    margin: 0 auto;
    margin-top:1.00rem;
}
.loading span{
    display: inline-block;
    width: .08rem;
    height: 100%;
    border-radius: .04rem;
    background: lightgreen;
    -webkit-animation: load 1s ease infinite;
}
@-webkit-keyframes load{
    0%,100%{
        height: .40rem;
        background: lightgreen;
    }
    50%{
        height: .70rem;
        margin: -.15rem 0;
        background: lightblue;
    }
}
.loading span:nth-child(2){
    -webkit-animation-delay:0.2s;
}
.loading span:nth-child(3){
    -webkit-animation-delay:0.4s;
}
.loading span:nth-child(4){
    -webkit-animation-delay:0.6s;
}
.loading span:nth-child(5){
    -webkit-animation-delay:0.8s;
}

.tip-wraper{
    z-index: 9999;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20% 20% 0;
    overflow: hidden;
    display: none;
    text-align: center;
}
.tip-message{
    display: inline-block;
    background-color: #000;
    border: 1px solid #ccc;
    color: #fff;
    font-weight: 520;
    font-size: 0.16rem;
    text-align: center;
    padding: 0.05rem 0.10rem!important;
    border-radius: 10px;

}   
html .tip-message-login{
    display: inline-block;
    background-color: #000;
    border: 1px solid #ccc;
    color: #fff;;
    font-size: 16px;
    text-align: center;
    padding: 8px 15px!important;
    border-radius: 10px;
}   
