/* 外面盒子样式---自己定义 */
@media (min-width:1000px){
    .page_div {
        margin: 20px 10px 20px 0;
        color: #666;
        text-align: center;
    }
    
    /* 页数按钮样式 */
    
    .page_div button {
        display: inline-block;
        min-width: 32px;
        height: 32px;
        cursor: pointer;
        color: #C0AF9F;
        font-size: 13px;
        line-height: 28px;
        background-color: #f9f9f9;
        border: 1px solid #dce0e0;
        text-align: center;
        margin: 0 4px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    #firstPage, #lastPage, #nextPage, #prePage, #jump {
        width: 50px;
        color: #C0AF9F;
        border: 1px solid #C0AF9F
    }
    
    #nextPage, #prePage {
        width: 70px
    }
    
    .page_div .current {
        background-color: #A9927C;
        border-color: #C0AF9F;
        color: #FFF
    }
    
    /* 页面数量 */
    
    .totalPages {
        margin: 0 10px
    }
    
    .totalPages span, .totalSize span {
        color: #C0AF9F;
        margin: 0 5px
    }
    
    /*button禁用*/
    
    .page_div button:disabled {
        opacity: .5;
        cursor: no-drop
    }
    
    /*跳转*/
    
    #jumpV {
        display: inline-block;
        min-width: 6px;
        height: 30px;
        font-size: 13px;
        line-height: 30px;
        border: 1px solid #C0AF9F;
        width: 30px;
        margin: 0 4px;
        color: #666;
        text-align: center;
        margin-top: -3px;
        background-color: #f9f9f9
    }
}
@media (max-width:1000px){
    .page_div {
        margin: 20px 10px 20px 0;
        color: #666;
        /* text-align: center; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 页数按钮样式 */
    
    .page_div button {
        display: inline-block;
        min-width: 25px;
        height: 25px;
        cursor: pointer;
        color: #C0AF9F;
        font-size: 11px;
        line-height: 25px;
        background-color: #f9f9f9;
        border: 1px solid #dce0e0;
        text-align: center;
        margin: 0 4px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    #firstPage, #lastPage, #nextPage, #prePage, #jump {
        width: 36px;
        color: #C0AF9F;
        border: 1px solid #C0AF9F
    }
    
    #nextPage, #prePage {
        width: 47px
    }
    
    .page_div .current {
        background-color: #A9927C;
        border-color: #C0AF9F;
        color: #FFF
    }
    
    /* 页面数量 */
    
    .totalPages {
        margin: 0 10px
    }
    
    .totalPages span, .totalSize span {
        color: #C0AF9F;
        margin: 0 5px
    }
    
    /*button禁用*/
    
    .page_div button:disabled {
        opacity: .5;
        cursor: no-drop
    }
    
    /*跳转*/
    
    #jumpV {
        display: inline-block;
        min-width: 6px;
        height: 25px;
        font-size: 13px;
        line-height: 30px;
        border: 1px solid #C0AF9F;
        width: 26px;
        margin: 0 4px;
        color: #666;
        text-align: center;
        margin-top: -1px;
        background-color: #f9f9f9;
    }
}
