/* 分页样式 */
.ult{
    width:100%;
    height:37px;
}
.ult .ulwdt{
    width: 100%;
    display: flex;
    justify-content: center;
    line-height: 37px;
}
.ult .ulwdt li{
    height: 100%;
    margin-right: 10px;
    font-size: 14px;
    color:#333;
    border:1px solid #999;
    transition:all 0.5s;
    text-align: center; 
    padding: 0 13px;
}
.ult .ulwdt li.thisclass{
    color:#fff;
    background-color:#e53844;
    border:1px solid #e53844
}
.ult .ulwdt li a{
    display: inline-block;
    color:#333;
    cursor:pointer;
}

.ult .ulwdt li:hover{
    color:#fff;
    border:1px solid #e53844;
    background-color:#e53844;
}
.ult .ulwdt li:hover a{
    color:#fff;
}

/* 搜索页样式 */
.ult .ulwdt tr td {
    height: 100%;
    margin-right: 10px;
    font-size: 14px;
    color:#333;
    border:1px solid #999;
    transition:all 0.5s;
    cursor:pointer;
    text-align: center;
    padding: 0 5px;
    box-sizing: content-box;
}
.ult .ulwdt tr td:hover {
    color:#fff;
    border:1px solid #e53844;
    background-color:#e53844;
}