.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}
.pagination_item{
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #D9D9D9;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0,0,0,0.85);
    line-height: 32px;
    text-align: center;
    cursor: pointer;
}
.pagination_item:hover{
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #1677FF;
    color: #1677FF;
}