You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
/*分页样式 ========= START*/
|
|
.pagination-wrapper .pagination {
|
|
display: flex !important;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 4px;
|
|
padding-left: 0;
|
|
list-style: none;
|
|
margin-top: 3.125rem;
|
|
}
|
|
|
|
.pagination-wrapper .pagination li {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.pagination-wrapper .pagination a,
|
|
.pagination-wrapper .pagination span {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 6px 12px;
|
|
margin: 0 2px;
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 0.25rem;
|
|
text-decoration: none;
|
|
color: #007bff;
|
|
background-image: none;
|
|
}
|
|
|
|
.pagination-wrapper .pagination a:hover {
|
|
background-color: #e9ecef;
|
|
background-image: none;
|
|
}
|
|
|
|
.pagination-wrapper .pagination .active span {
|
|
background-color: #007bff;
|
|
border-color: #007bff;
|
|
color: #fff;
|
|
}
|
|
|
|
.page-arrow.disabled {
|
|
color: #ccc; /* 灰色文字 */
|
|
border-color: #e0e0e0; /* 灰色边框 */
|
|
cursor: not-allowed; /* 禁用光标 */
|
|
}
|
|
/*分页样式 ========= END*/
|