.webPagination ul {
    list-style: none;
    padding-left: 0;
}

.webPagination ul li {
    padding: 0 10px;
    vertical-align: top;
    display: inline-block;
    font-size: 14px;
    min-width: 36px;
    min-height: 28px;
    line-height: 28px;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
    background-color: #ffffff;
    color: #606266;
    border-radius: 6px;
    margin: 0 1px;
    border: 1px solid #ebebeb;
    height: 30px;
}

.webPagination ul li:hover {
    transform: scale(1.1);
    background-color: #F4F6F8;
}

.webPagination  li.actived {
    background: #98A6AD;
    color: white;
    cursor: not-allowed;
}