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

.page-item {
  padding: 0 16px;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 17px;
  line-height: 44px;
  height: 44px;
  color: #666666;
  white-space: nowrap;
  border: 1px solid #e0e6f2;
  border-radius: 10px;
}

.page-item:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.page-item.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.page-item.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: #666666 !important;
  background-color: #f9f9f9 !important;
  border: 1px solid #e0e6f2 !important;
}

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


#pagination_el {
  overflow-y: hidden;
  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颜色 */
}

.page-item svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 手机样式 */