.pagination {
  text-align: center;
  margin: 40px 0;
}

.pagination button {
  padding: 6px 16px;
  margin: 0 4px;
  background: transparent;
  border: 1px solid rgba(201, 166, 107, 0.3);
  color: rgba(201, 166, 107, 0.7);
  cursor: pointer;
  font-size: 14px;
}

/* 可点击状态 */
.pagination button:not(:disabled) {
  border-color: rgba(201, 166, 107, 0.5);
  color: rgba(201, 166, 107, 0.9);
}

/* hover 效果 */
.pagination button:hover:not(:disabled) {
  border-color: rgba(201, 166, 107, 0.8);
  color: #c9a66b;
  background: rgba(201, 166, 107, 0.08);
}

/* 禁用变灰（不可点） */
.pagination button:disabled {
  border-color: #666 !important;
  color: #666 !important;
  background: transparent !important;
  cursor: not-allowed;
}

.pagination #pageInfo {
  color: #c9a66b;
  font-size: 14px;
  margin: 0 10px;
}
