/*分页*/
.clearboth{ clear:both}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

/* Hide PbootCMS status text (共X条 当前X/X页) */
.page-status {
    display: none;
}

/* Navigation links (首页/前一页/后一页/尾页) */
.page-index,
.page-pre,
.page-next,
.page-last {
    display: block;
}

.page-index a,
.page-pre a,
.page-next a,
.page-last a {
    position: relative;
    display: block;
    padding: .375rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #1c3390;
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
}

.page-index a:hover,
.page-pre a:hover,
.page-next a:hover,
.page-last a:hover {
    z-index: 2;
    color: #1c3390;
    background-color: #e9ecef;
    border-color: #dee2e6;
    text-decoration: none;
}

/* Page number bar */
.page-numbar {
    display: flex;
}

/* Page number links */
a.page-num {
    position: relative;
    display: block;
    padding: .375rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #1c3390;
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
}

a.page-num:hover {
    z-index: 2;
    color: #1c3390;
    background-color: #e9ecef;
    border-color: #dee2e6;
    text-decoration: none;
}

/* Current page */
.page-num-current {
    z-index: 1;
    color: #fff !important;
    background-color: #1c3390 !important;
    border-color: #1c3390 !important;
}

a.page-num-current:hover {
    color: #fff !important;
    background-color: #1c3390 !important;
}

/* First/last item border radius */
.page-index a {
    border-radius: 3px 0 0 3px;
}
.page-last a {
    border-radius: 0 3px 3px 0;
}

/* Disabled state */
.page-pre a[href="javascript:;"],
.page-next a[href="javascript:;"] {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}

.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}

@media only screen and (max-width: 576px) {
    a.page-num {
        display: none;
    }
    .page-index a,
    .page-pre a,
    .page-next a,
    .page-last a {
        padding: .375rem .25rem;
        font-size: 12px;
    }
}
