.paging{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:40px 0;
}
.paging div{
  border: 1px solid #EEEEEE;
  width:30px;
  height:30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
}
.paging div.disable{
  color: #fff;
  cursor: not-allowed;
  background-color: rgb(211, 211, 211);
}
.paging div.active{
  border: none;
  background: #7968FB;
  color: #fff;
}
.paging div.prev,
.paging div.next
{
  width:64px;
  height:30px;
}
.paging div.first,
.paging div.last{
  width:50px;
  height:30px;
}