.paging {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.paging div {
    width: .7681rem;
    height: .7681rem;
    line-height: .7681rem;
    text-align: center;
    border: 1px solid #ededed;
    border-radius: 50%;
    cursor: pointer;
    font-size: .28rem;
    margin-right: .34rem;
    background-color: #ededed;
}

.paging div.disable {
    color: #666666;
    cursor: not-allowed;
    background-color: rgb(211, 211, 211);
}

.paging div.active {
    border: none;
    background-color: #0078c4;
    color: #fff;
}