/* 分页样式 */
.page {
    margin: 20px 10px 20px 0;
    color: #615f60;
    font-size: 14px;
    text-align: center;
}

/* 页数按钮样式 */
.page button {
    margin: 0 5px;
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #615f60;
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 50%;
    background-color: transparent;
}

.page button:hover {
    background-color: #e0e0e0;
    color: #615f60;
}

.page button.current:hover {
    background-color: #f3111A;
    color: #FFF
}

#firstPage,
#lastPage,
#nextPage,
#prePage {
    border-radius: 0%;
    color: #615f60;
}


#nextPage,
#prePage {
    width: 40px
}

.page .current {
    background-color: #f3111A;
    color: #FFF
}

/* 页面数量 */
.totalPages {
    margin: 0 10px
}

.totalPages span,
.totalSize span {
    color: #0073A9;
    margin: 0 5px
}

/*button禁用*/
.page button:disabled {
    color: #9b9da0 !important;
    cursor: no-drop;
    background-color: transparent;
}

/* 分页样式结束 */