/** 分页样式 */
.pagination {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #06A14D;
}
.pagination button {
    padding: 5px 10px;
    cursor: pointer;
    color: #06A14D;
    background-color: #fff;
    border: 1px solid #06A14D;
}
.pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.pagination span {
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #06A14D;
    border-radius: 4px;
}

.pagination span.active {
    color: white;
    background-color: #08A354;
    border-radius: 4px;
}