/*分页*/
/*body,h3,p,ul,li{*/
    /*margin: 0;*/
    /*padding:0;*/
    /*font-size: 14px;*/
    /*font-family:"Open Sans",Arial,"Hiragino Sans GB","Microsoft YaHei","微软雅黑","STHeiti","WenQuanYi Micro Hei",SimSun,sans-serif;*/
    /*list-style: none;*/
    /*color: #333;*/
/*}*/

.page{
    width: 700px;
    display: flex;
    justify-content: center;
    position: absolute;
    line-height: 40px;
    left: 10px;
    right: 10px;
    margin:auto;
    bottom: 10px;

}
.page ul{
    float: left;
}
.page ul li,.page .prev,.page .next,.page .lastPage{
    margin:0 5px;
    width:40px;
    height:40px;
    background:#91E4FB;
    border:1px solid #91E4FB;
    border-radius:2px;
    float: left;
    text-align: center;
    user-select: none;
    color: #222;
    cursor: pointer;
}
.page ul .nowPage,.page ul li:hover,.page .lastPage:hover,.pageBtn:hover{
    /*background: #1890ff;*/
    background: #30EEFF;
    /*color: #fff;*/
    border:1px solid #30EEFF;
}
.page span{
    float: left;
}
.page input{
    float: left;
    width:40px;
    height:40px;
    background: transparent;
    border:1px solid #91E4FB;
    border-radius:2px;
    line-height: 40px;
    text-align: center;
    margin: 0 10px;
    color: #fff;
}
.page .prev{
    background:#91E4FB url("../images/prev.png") no-repeat center;
    background-size: 8px 14px;
}
.page .next{
    background:#91E4FB url("../images/next.png") no-repeat center;
    background-size: 8px 14px;
}
.page .prev:hover{
    background: #30EEFF url("../images/prev.png") no-repeat center;
    background-size: 8px 14px;
    border:1px solid #30EEFF;;
}
.page .next:hover{
    background:#30EEFF url("../images/next.png") no-repeat center;
    background-size: 8px 14px;
    border:1px solid #30EEFF;
}
.lastPage{
    margin-right: 20px;
}

.pageBtn{
    width:40px;
    height:40px;
    background:#91E4FB;
    border:1px solid #91E4FB;
    border-radius:2px;
    float: left;
    text-align: center;
    user-select: none;
    cursor: pointer;
    margin-left: 20px;
    color: #222;
}