/* pagination_always_bottom.css - v3 分页栏回到文档流(永不遮挡数据行)
 * 历史: v1/v2 把 .ant-table-pagination 固定到视口底部,
 *       fixed bottom:0 + 不透明背景会在矮窗口下压住表格最后一行数据,
 *       表现为"分页条与数据行重叠".
 * v3: 彻底取消 fixed/absolute, 分页栏正常跟在表格下方, 结构上不可能重叠.
 */
.ant-table-pagination {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  z-index: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  border-top: none !important;
  padding: 10px 16px !important;
  margin: 8px 0 0 0 !important;
  min-height: 0 !important;
}
.ant-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
}
.ant-layout-content {
  padding-bottom: 24px !important;
}
