| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .pagination {
- display: flex;
- justify-content: center;
- align-items: center;
- list-style-type: none;
- padding: 40px 10px 60px 10px;
- }
- .pagination ul {
- list-style-type: none; /* 移除默认的列表样式 */
- padding: 0; /* 移除内边距 */
- margin: 0; /* 移除外边距 */
- display: flex; /* 使用flexbox布局来实现横向排列 */
- }
- .pagination li {
- margin-right: 10px; /* 每个列表项右侧添加间距 */
- /* cursor: pointer; */
- }
- .pagination li.active {
- font-weight: bold;
- color: red; /* 当前页高亮显示 */
- }
- .pagination a.active {
- font-weight: bold;
- color: #333;
- text-decoration: none;
- pointer-events: none;
- }
- .pagination input[type="number"] {
- width: 50px;
- text-align: center;
- margin-left: 10px;
- }
- .pagination button {
- margin-left: 10px;
- }
- .pagination .ellipsis {
- margin: 0 10px;
- color: #888;
- }
|