/* pagination_always_bottom.css
 * 把分页器栏 (.ant-table-pagination) 固定在视口底部,
 * 滚动表格/列表时始终可见可点, 不用滚到底部才能看到分页器.
 * 精准选择器 .ant-table-pagination, 不再误伤其他元素
 * (与旧的 pagination_bottom.css?v=v3 的 :has(repeat(auto-fill)):last-child 不同).
 * left:216px 避开左侧菜单栏, right:24px 贴右, bottom:0 贴视口底.
 * main padding-bottom:64px 留出空间, 避免表格最后一行被分页器盖住.
 * bot_chat 浮窗 bottom:80px (64-144px), 分页器 0-46px, 不重叠.
 * 移动端 ≤900 菜单全宽时 left 改为 24px 铺满.
 */
.ant-table-pagination {
  position: fixed !important;
  left: 216px !important;
  right: 24px !important;
  bottom: 0 !important;
  z-index: 50 !important;
  background: #0b0c0e !important;
  padding: 12px 16px !important;
  margin: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, .08) !important;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .55) !important;
}
.ant-pagination {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}
.ant-layout-content {
  padding-bottom: 64px !important;
}
@media (max-width: 900px) {
  .ant-table-pagination {
    left: 24px !important;
  }
}