/* 翻页功能 */
.paging{
    width:800px;
    height:100px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
}
.previouspage{
    width:100px;
    height:28px;
    border:2px solid #13141e;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#13141e;
    font-size:12px;
}
.previouspage span{
    font-size:18px;
}
.previouspage text{
    margin-bottom:1px;
    margin-right:5px;
}
.previouspage:hover{
    background:#13141e;
    color:#ffffff;
}
.pagenumber{
    width:400px;
    height:100px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.pagenumber ul li{
    float: left;
    display:block;
    width:30px;
    height:30px;
    text-align:center;
    line-height:30px;
    border-radius:100px;
    margin:0 5px 0 5px;
    font-size:13px;
    color:#000000;
}
.pagenumber ul li:hover,.pagenumber .Select{
    background:#13141e;
    color:#ffffff;
}
