.pagination{
  display: flex;
  flex-direction: row;
  justify-content: center;
  clear: both;
  margin-top: 35px;
  margin-bottom: 45px;
  text-align: center;
}
.pagination li{
  display: inline-block;
  vertical-align: middle;
  /* width: 45px; */
  /* height: 43px; */
  line-height: 32px;
  font-size: 16px;
  color: #999;
  margin: 0 8px;
  cursor: pointer;
  /* background-color: #f4f4f4; */
  /* border: solid 1px #d1d1d1; */
  border-radius: 50%;
  overflow: hidden;
  width: 32px;
  height: 32px;
  /* background: #52B0FF; */
  border-radius: 2px;
}
.pagination li:nth-child(1){
  background-color: none;
  border: none;
  background: url("../images/pagingPrevBtn.png") no-repeat!important;
  background-size: 100% 100%;
  width: 54px;
}
.pagination li:last-child{
  background-color: none;
  border: none;
  background: url("../images/pagingNextBtn.png") no-repeat!important;
  background-size: 100% 100%;
  width: 54px;
}

.pagination li a{
  width: 100%;
  height: 100%;
  color: #000000;
  display: block;
}
.pagination li:hover{
  background: #52B0FF;
  color: #fff;
}
.pagination li:hover a{
  color: #fff;
}
.pagination li:nth-child(1):hover a{
  color: #000000!important;
}
.pagination li:last-child:hover a{
  color: #000000!important;
}
.pagination .active{
  background: #52B0FF;
  /* border-color: rgb(5, 85, 255); */
  color: #fff;
}
.pagination .disabled{
  pointer-events:none;
  opacity: 0.6;
}