﻿.tab-pane{
    margin-left: 15px;
}

.page-bar{
    display: none;
}

/*遮罩*/
.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}




.loading-spinner .glyphicon-refresh {
    padding: 5px;
    border: 0px !important;
    border-radius: 50%;
    animation: spin 2s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}