/* 隐藏分页器的首页、尾页、切换页数 */
.js-page-first,
.js-page-last,
.ui-select-pagesize 
{
    display: none !important;
}

.page-tool {
    padding: 20px 0 10px;
}

#pageTool.setFloat .ui-paging-container li {
    float: left;
}

/* 修改分页器样式 */
.ui-paging-container li {
    padding: 2px 8px;
    font-size: 14px;
    color: #666;
    border-radius: 2px;
    background: #f8fbff;
    border: none;
    font-weight: bold;
    margin-left: 8px;
    border: none !important;
    vertical-align: middle;
}

.ui-paging-container li.ui-pager:hover {
    color: #FF7F1C;
    background: #FFF4E9;
}

#pageTool .ui-paging-container li.focus {
    color: #FF7F1C;
    background-color: #FFF4E9;
}

.ui-paging-container li.ui-paging-toolbar {
    padding: 2px 8px;
    background: none;
}

.ui-paging-container li.ui-paging-toolbar a {
    border: 0;
    padding: 2px 1px;
    font-weight: bold;
    font-size: 14px;
    color: #666666;
    background: #fff;
}

.ui-paging-container li.ui-paging-toolbar input {
    border: none;
    outline: none;
    border-radius: 2px;
    background: #f8fbff;
    color: #ff7f1c !important;
    font-weight: bold;
    font-size: 14px;
    margin: 0 4px;
    user-select: none;
}

#pageTool .ui-paging-container .last-page,
#pageTool .ui-paging-container .next-page {
    display: inline-block;
    width: 9px;
    height: 16px;
    margin-top: 5px;
}

#pageTool .ui-paging-container .js-page-prev,
#pageTool .ui-paging-container .js-page-next {
    background: none;
}

#pageTool .ui-paging-container .last-page {
    background: url(../img/page-left-arrow.png) center no-repeat;
}

#pageTool .ui-paging-container .ui-pager-disabled .last-page {
    cursor: not-allowed;
    background: url(../img/page-left-arrow-not.png) center no-repeat;
}

#pageTool .ui-paging-container .next-page {
    background: url(../img/page-right-arrow.png) center no-repeat;
}

#pageTool .ui-paging-container .ui-pager-disabled .next-page {
    cursor: not-allowed;
    background: url(../img/page-right-arrow-not.png) center no-repeat;
}