增加新功能

This commit is contained in:
wzj 2025-06-24 15:09:25 +08:00
parent 4022dcce1a
commit 6017e93264

View File

@ -441,18 +441,18 @@ input:checked + .slider:before {
/* 分页样式 */
.pagination {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding-top: 20px;
background: white;
display: flex;
justify-content: center;
margin: 20px 0;
gap: 5px;
position: relative; /* 改为相对定位 */
bottom: auto;
}
/* 固定分页区域位置 */
.table-container {
min-height: 400px; /* 根据你的需要调整这个高度 */
position: relative;
min-height: calc(100vh - 400px); /* 动态计算最小高度 */
margin-bottom: 60px; /* 为分页留出空间 */
}
.pagination a, .pagination span {