.pagination {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.page-item {
  padding: 0 20px;
  background-color: #f9f9f9;
  cursor: pointer;
  font-size: 16px;
  line-height: 48px;
  height: 48px;
  color: #666666;
  white-space: nowrap;
}

.page-item:hover {
  background-color: #124B8B;
  color: white;
  border-color: #124B8B;
}

.page-item.active {
  background-color: #124B8B;
  color: white;
  border-color: #124B8B;
}

.page-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #666666 !important;
  background-color: #f9f9f9 !important;
}

.page-ellipsis {
  padding: 0 20px;
  border: none;
  cursor: default;
  color: #666;
  font-size: 16px;
  line-height: 48px;
  height: 48px;
  background-color: #f9f9f9;
  opacity: 0.5;
}


#pagination_el {
  overflow-x: scroll;
}

/* 整个滚动条 */

#pagination_el::-webkit-scrollbar {
  width: 5px;
  /* 滚动条的宽度 */
  height: 5px;
  /* 滚动条的高度 */
}

/* 滚动条轨道 */

#pagination_el::-webkit-scrollbar-track {
  background: transparent;
  cursor: pointer;
  /* 轨道颜色 */
}

/* 滚动条滑块 */

#pagination_el::-webkit-scrollbar-thumb {
  background: rgba(225, 225, 225, 0.3);
  /* 滑块颜色 */
  border-radius: 10px;
  /* 滑块圆角 */
}

/* 滚动条滑块的hover状态 */

#pagination_el::-webkit-scrollbar-thumb:hover {
  background: rgba(225, 225, 225, 0.7);
  cursor: pointer;
  /* 滑块hover颜色 */
}

/* 手机样式 */
@media screen and (max-width: 900px) {

  .page-item,
  .page-ellipsis {
    padding: 0 0.3rem;
    line-height: 0.74rem;
    height: 0.74rem;
    font-size: 0.34rem;
  }
}