/* 分页器 */
.pagination_container {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
  box-sizing: border-box;
  padding: 0 3px;
}

.pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-item {
  display: inline-block;
  margin: 0 5px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  font-style: normal;
  cursor: pointer;
}

.pagination-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #8a8b99;
  background-color: #fff;
  border-radius: 3px;
  font-style: normal;
}
.pagination_next_box,
.pagination_prev_box {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.pagination_next_box.disable,
.pagination_prev_box.disable {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}
.pagination-link {
  background-color: #f2f2f2;
}

.pagination-link.active {
  color: #fff;
  background: #1b70fc;
}
.jump-to {
  display: flex;
  align-items: center;
}
.jump-to span {
  font-size: 12px;
  color: #8a8b99;
  margin: 0 10px;
}

.jump-to input {
  width: 40px;
  height: 26px;
  text-align: center;
  border: none;
  outline: none;
  border: 1px solid #d5d7d9;
  border-radius: 3px;
}
.jump-to input:focus {
  border: 1px solid #1b70fc;
}
.jump_btn {
  font-size: 12px;
  width: 48px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  box-sizing: border-box;
  background-color: #f5f8fb;
  color: #3a8bff;
  border: 1px solid #8cbdff;
  border-radius: 3px;
  cursor: pointer;
}
.total_box {
  font-size: 12px;
  color: #8a8b99;
  margin: 0 10px;
}
.page_size_select {
  height: 26px;
  padding: 0 10px 0 5px;
  color: #8a8b99;
  border: 1px solid #d5d7d9;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 5px;
  background: url("../imgs/page_select_arrow.png") no-repeat 60px center;
  padding-right: 20px;
}
