@charset "utf-8";
.page_div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    /* margin-top: 8px; */
    padding: 1.6px 0;
    padding-top: 65px;
}

.page_div span {
    font-size: 14.4px;
    color: #707070;
    white-space: nowrap;
}

.page_div button {
    min-width: 38.4px;
    height: 38.4px;
    padding: 0 9.6px;
    font-size: 14.4px;
    text-align: center;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.2s;
    color: #707070;
}

/* 固定宽度的翻页按钮 */
#firstPage,
#lastPage,
#prePage,
#nextPage {
    min-width: 80px;
}

.page_div .current {
    background: #244592;
    color: #fff;
    border-color: #244592;
    font-weight: bold;
}

.page_div input.page-jump-input {
    width: 48px;
    height: 38.4px;
    padding: 0 8px;
    font-size: 14.4px;
    text-align: center;
    border: 1px solid #707070;
    border-radius: 0px;
    box-sizing: border-box;
    outline: none;
    color: #707070;
}

.page_div input.page-jump-input:focus {
    border-color: #244592;
}

.page_div .ellipsis {
    margin: 0 12px;
    color: #707070;
}

.page_div button:disabled {
    cursor: not-allowed;
    background: #fff;
    opacity: 1;
}

.page_div button:not(:disabled):hover {
    border-color: #244592;
    color: #244592;
    background: #fff;
}

#jump {
    background: #f8f9fa;
    font-weight: bold;
}

#jump:not(:disabled):hover {
    background: #244592;
    color: #fff;
}

div#wp_paging_w6 {
    display: none;
}

.page_div span.white {
    border: 1px solid #707070;
    border-radius: 0px;
    width: 38.4px;
    height: 38.4px;
    text-align: center;
    line-height: 38.4px;
}

@media screen and (max-width: 999px) {
    .page_div span,
    .page_div input.page-jump-input,
    button#jump {
        display: none !important;
    }
}

@media screen and (max-width: 479px) {
    #nextPage,
    #prePage,
    #firstPage,
    #lastPage {
        width: 64px;
        height: 32px;
        margin: 0;
        line-height: 32px;
        padding: 0;
        min-width: 0;
    }
    .page_div button {
        border: 1px solid #b5b5b5;
        height: 32px;
        line-height: 32px;
        width: 32px;
        flex: none;
        min-width: 32px;
        padding: 0;
    }
    .page_div {
        gap: 2px;
    }
}