#pagination {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding-left: 0;
    text-align: center;
}

#pageTips {
    position: fixed;
    left: 10px;
    top: 100px;
}

#pagination li {
    list-style: none;
    display: inline-block;
    user-select: none;
}

.list-items {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    transition: all .3s;
    border: 1px solid #dedede;
    border-radius: 0px;
}

.list-items:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.pg-active, .pg-active:hover {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
}

.lbl {
    border-radius: 5px 0px 0px 5px;
    color: #337ab7;
    border: 1px solid #dedede;
}

.lbr {
    border-radius: 0px 5px 5px 0px;
    color: #337ab7;
    border: 1px solid #dedede;
    border-left: none
}