
/**pug渲染分页样式*/
.match-page {
    display: flex;
    justify-content: center;
    font-size: 16px;
    padding: 10px 0;
    align-items: center;
}

.match-page span {
    font-size: 16px;
}

.pager-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.pager-next,.pager-prev,.pager-page span{
    width: 32px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid #E8E8E8;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

.pager-prev path,.pager-next path {
    fill: #333333;
}

.pager-next.none,.pager-prev.none {
    cursor: no-drop;
    border-color: #ccc;
}

.pager-prev.none path,.pager-next.none path  {
    fill: #ccc;
}

.pager-page span.current{
    border-radius: 2px;
    border: 1px solid #165DFF;
    color: #165DFF;
    cursor: no-drop;
}

.jump-page {
    margin: 0 10px;;
}

.jump-page input[type="number"]{
    outline: none;
    width: 80px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid #E8E8E8;
    margin: 0 10px;
    padding: 0 5px;
}

.match-page .select-page {
    margin-left: 5px;
    width: 99px;
    height: 32px;
    border-radius: 2px;
    border: 1px solid #E8E8E8;
    position: relative;
    padding: 0 10px;
}

.select-page .select-page-option {
    position: absolute;
    bottom: 32px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    border: 1px solid #E8E8E8;
    display: none;
}

.select-page-pitch {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

.select-page-pitch span {
    flex: 1;
    text-align: center;
}

.select-page-option span {
    display: block;
    padding: 5px 10px;
    cursor: pointer;
    text-align: center;
}

.select-page-option-selected {
    background-color: #eee;
}