.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.pagination span {
  color: #bdbdbd;
}
.pagination a.prev,
.pagination span:first-child {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.pagination .jump-btn {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.pagination .disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.pagination .active {
  font-size: 14px;
  background-color: #f1f1f1;
}
.pagination span,
.pagination a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #666;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.pagination a:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.pagination .next,
.pagination .prev {
  font-family: 'Simsun';
  font-size: 16px;
  font-weight: bold;
}

.pagination input {
  width: 60px;
  height: 38px;
  line-height: 38px;
  margin-left: -1px;
  text-align: center;
  background: #fff;
  border: 1px solid #ebebeb;
  outline: none;
  color: #666;
  font-size: 14px;
}

.pagination input::placeholder{
  color: #ccc;
}