/* ========================================
   分页器样式 (KSGCC Theme v5)
   Navy: #1e3a5f  Red: #d63031
   ======================================== */

.pager {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 32px 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  background: #f5f7fa;
}

.pager-info {
  font-size: 14px;
  color: #b2bec3;
  margin-right: 8px;
}

.pager-current {
  color: #1e3a5f;
  font-weight: 600;
}

.pager-sep {
  margin: 0 4px;
}

.pager-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pager-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 14px;
  color: #636e72;
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.pager-btn:hover:not(.pager-btn-disabled) {
  color: #d63031;
  border-color: #d63031;
  background: rgba(214,48,49,0.04);
}

.pager-btn-disabled {
  color: #ddd;
  border-color: #eef1f5;
  background: #fafafa;
  cursor: not-allowed;
}

.pager-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 14px;
  color: #636e72;
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.pager-num:hover:not(.pager-num-active) {
  color: #d63031;
  border-color: #d63031;
  background: rgba(214,48,49,0.04);
}

.pager-num-active {
  color: #fff;
  background: #1e3a5f;
  border-color: #1e3a5f;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(30,58,95,0.25);
}
