/* 分页 */
.pagination {
  display: inline-block;
  border-radius: 2px;
}

.page-btn {
  float: left;
  width: 28px;
  height: 28px;
  background: white;
  border: 1px solid #DDDEE0;
  cursor: pointer;
}

.page-btn:hover .page-arrow-hover {
  display: inline-block;
}

.page-btn:hover .page-arrow {
  display: none;
}

.page-left-btn {
  border-radius: 2px 0 0 2px;
}

.page-btn img {
  margin-top: 8px;
  width: 12px;
  height: 12px;
}

.page-arrow-hover {
  display: none;
}

.page-arrow-disabled {
  cursor: not-allowed;
}

.page-num {
  float: left;
  cursor: pointer;
}

.num-item {
  float: left;
  width: 28px;
  height: 28px;
  font-size: 14px;
  background: white;
  border: 1px solid #DDDEE0;
  line-height: 28px;
  border-left: none;
  color: #5C5C5C;
}

.page-item-active {
  background: #1A3A73;
  color: white;
  border: none;
}

.num-item:hover {
  color: #1A3A73;
}
.page-item-active:hover {
  color: white;
}

.page-right-btn {
  border-radius: 0 2px 2px 0;
  border-left: none;
}