.page-bar{
    display: flex;
    justify-content: center;
    height: 32px;
    align-items: center;
    margin: 0;
    list-style: none;
    max-width: 100vw;
    padding-left: 5px;
    flex-wrap: wrap;
}
.page-bar li{
    width: 30px;
    height: 30px;
    background: #F5F5F5;
    text-align: center;
    margin: 0 6px 12px;
    font-size: 16px;
    color: #666666;
    border-radius: 4px;
    transition: all .3s;
    line-height: 30px;
    cursor: pointer;
    flex-shrink: 0;
}
.page-bar li:hover a{
    color: var(--color-primary);
}
.page-bar .i{
    font-size: 12px;
}
.page-bar .active{
    background: var(--color-primary);
    color: #fff;
}
.page-bar .active a{
    color: #fff;
}
.page-bar li a{
    text-decoration: none;
    display: block;
}
.page-bar .layui-form{
    width: fit-content;
}
.page-bar select{
    height: 30px;
    border-radius: 4px;
    padding: 3px;
    width: 42px;
    border-color: #eeeeee;
}
.page-bar input{
    height: 30px;
    width: 60px;
}
.page-bar .layui-form-select dl::-webkit-scrollbar{
    width: 2px;
}
