/* ===== 分页组件 ===== */
.pglist {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  font-size: 15px;
  flex-wrap: wrap;
}

.pglist a,
.pglist span {
  display: inline-block;
  min-width: 36px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: all .25s ease;
  user-select: none;
}

.pglist a:hover {
  background: #355571;
  border-color: #355571;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.pglist .page-num-current,
.pglist span.page-num-current {
  background: #355571;
  border-color: #355571;
  color: #fff;
  cursor: default;
  font-weight: 600;
}

.pglist a.disabled {
  pointer-events: none;
  opacity: .45;
}

@media (max-width: 768px) {
  .pglist {
    gap: 6px;
    margin: 24px 0;
    font-size: 14px;
  }
  .pglist a,
  .pglist span {
    min-width: 32px;
    padding: 6px 10px;
  }
}
