﻿
.new_page {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}

    .new_page li {
        margin-right: 15px;
    }

        .new_page li a {
            border: 1px solid #e2e2e2;
            color: #5c5c56;
            width: 40px;
            height: 40px;
            margin-top: 5px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .new_page .next,
    .new_page .pre,
    .new_page .pageCount {
        width: 80px;
        height: 40px;
        margin-top: 5px;
    }

    .new_page .active {
        border-color: #e6d841;
        text-decoration: underline;
    }

    .new_page .not_pointer {
        cursor: not-allowed;
    }


@media screen and (max-width:800px) {
    .new_page .next, .new_page .pre, .new_page .pageCount {
        width: 60px;
        height: 30px;
        border-radius: 7px;
        color: #ff6600;
    }

    .new_page li a {
        font-size: 12px;
        width: 20px;
        height: 20px;
    }

    .new_page li{
        display: none;
    }

    .new_page .page_pre, .new_page .page_next {
        display: block;
    }

    .new_page .not_pointer {
        color: #595959;
    }
}
