
/*
  加载动画 start
*/
.request-loading-view {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}
.request-loading-view.show {
    opacity: 1;
    visibility: visible;
}
.loading {
    border: 6px solid rgba(0, 0, 0, 0.01);
    border-radius: 50%;
    border-top: 6px solid #fff;
    border-right: 6px solid #fff;
    border-bottom: 6px solid #fff;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1.4s linear infinite;
    animation: spin 1.4s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.no_login {
    padding: 200px 0;
    text-align: center;

}
.no_login .txt {
    font-size: 16px;
}
.no_login .p-btn {
    margin: 20px auto;
}
/*
  加载动画 end
*/



