/*弹窗*/
  .alert {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        min-width: 30%;
        max-width: 60%;
        height: 10%;
        transform: translate(-50%,-50%);
        z-index: 999999;
        text-align: center;
        padding: 20px;
        border-radius: 3px;
        font-size: 16px;
        line-height: 30px;
        letter-spacing:2px;
    }
    .alert-success {
        color: #fff;
        background-color: #0075BE;
        border-color: #d6e9c6;
    }
    .alert-info {
        color: #fff;
        background-color: #0075BE;
        border-color: #bce8f1;
    }
    .alert-warning {
        color: #fff;
        background-color: #0075BE;
        border-color: #faebcc;
    }
    .alert-danger {
        color: #fff;
        background-color: #0075BE;
        border-color: #ebccd1;
    }
    /*分页*/
    body .page{
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    font-size: 0px;
    position: relative;
    overflow: hidden;
    margin: 30px 0 0;
    text-transform: uppercase;
}
    body .page li{
        display: inline-block;
        line-height: 26px;
        font-size: 14px;
        margin: 0 5px;
        width:auto;
    }
    
    .pagination>.active>a, .pagination>.active>span{
        color: #fff;
        background: #0075BE;
        border-color: #0075BE;
    }
    body .page a,body .page span{
        display: inline-block;
        padding: 0 8px;
        line-height: 24px;
        font-size: 14px;
        border: 1px solid #e5e5e5;
    }
    body .page span.current,body .page a:hover{
        color:#fff; 
        border-color:#0075BE; 
        background:#0075BE;
    }
    body .page li:last-child{
        display:none;
    }