
.page-bar {
    display: flex;
    flex-direction: column;
    float: right;
    padding-right: 20px;
}

.page-bar li {
    list-style: none;
    display: inline-block;
}


/* 设置分页样式的css */
.page-bar a {
    /* border: 1px solid #ddd; */
    text-decoration: none;
    position: relative;
    float: left;
    /* margin-left: -1px; */
    /* line-height: 1.42857143; */
    /* color: #337ab7; */
    /* cursor: pointer */
    border-radius: 20px;
    margin-left: 21px;
    cursor: pointer;
}

.page {

    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 6px;
    padding-right: 6px;
    width: 10px;
    height: 22px;


}

/* 当年鼠标悬浮在对应的页码时,对应页码会变色的css */
.page-bar a:hover {
    background-color: #eee;
}

/* 设置到最后一页或者第一页时再点上一页或者下一页会显示禁用的css */
.page-bar a.banclick {
    cursor: not-allowed;
}

/* 显示当前页码的css，当前页码为1，该页码背景为蓝色 */
.page-bar .active a {
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

/* 设置分页总数的css */
.page-bar i {
    font-style: normal;
    color: #d44950;
    margin: 0px 4px;
    font-size: 12px;
}
