.pages .fl {
  float: left;
}
.pages {
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.total-pages{
  float: left;
  padding-left: 20px;
  color: #4E5969;
}
.pages button {
  padding: 0 10px;
  margin: 0 10px;
  height: 40px;
  float: left;
  color: #4E5969;
  cursor: pointer;
  border: 1px solid #ebebeb;
  background-color: #ffffff;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* 标准语法 */
  background: linear-gradient(360deg, #FFFFFF 0%, #EAEBEC 88%);
}
.pages .first-page,
.pages .last-page {
  margin: 0;
}
.pages .pageWrap {
  height: 40px;
  float: left;
  overflow: hidden;
}
.pages .pageWrap ul {
  width: 100000px;
  height: 40px;
  float: left;
}
.pages .pageWrap ul li {
  width: 60px;
  height: 40px;
  border: 1px solid #ebebeb;
  line-height: 40px;
  box-sizing: border-box;
  cursor: pointer;
  float: left;
  /* background: #fff; */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* 标准语法 */
  background: linear-gradient(360deg, #FFFFFF 0%, #EAEBEC 88%);
  color: #4E5969;
}
.pages .pageWrap ul .sel-page {
  background-color: #e13b29;
  color: #fff;
  background: #e13b29;
}
.pages .jump-text {
  width: 60px;
  height: 40px;
  box-sizing: border-box;
  text-align: center;
  margin: 0 5px;
  float: left;
}
.pages .jump-button {
  margin: 0;
  float: left;
}
.pages.total-pages,
.pages.total-count {
  margin-left: 10px;
  float: left;
  font-size: 14px;
}
.isPhone .pages button{
    display: none;
}