/* list_news.html - 新闻列表页分页样式 */
.page-number .pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-number .pagination li {
    margin: 0;
}
.page-number .pagination li .page-item {
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 14px;
    color: #4d4d4d;
    background: #fff;
    border: solid 1px #eaeaea;
    text-decoration: none;
}
.page-number .pagination li .page-item:hover {
    color: #fff;
    background: #0d4c9a;
    border-color: #0d4c9a;
}
.page-number .pagination li.active .page-item,
.page-number .pagination li .page-item-active {
    color: #fff;
    background: #0d4c9a;
    border-color: #0d4c9a;
}
.page-number .pagination li.disabled .page-item {
    color: #999;
    cursor: default;
}
.page-number .pagination li.disabled:first-child {
    display: none;
}
.page-number .pagination li:last-child .page-item {
    background: #fff url(../../images/icon/icon-page-next.png) no-repeat center;
    background-size: 9px;
    text-indent: -9999px;
}
.page-number .pagination li:last-child .page-item:hover {
    background: #0d4c9a url(../../images/icon/icon-page-next-active.png) no-repeat center;
    background-size: 9px;
}
.page-number .pagination li:first-child .page-item {
    background: #fff url(../../images/icon/icon-page-prev.png) no-repeat center;
    background-size: 9px;
    text-indent: -9999px;
}
.page-number .pagination li:first-child .page-item:hover {
    background: #0d4c9a url(../../images/icon/icon-page-prev-active.png) no-repeat center;
    background-size: 9px;
}
