
.pagination {
    display: flex;
    justify-content: flex-start; /* 左对齐 */
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .pagination span {
    margin-right: 2px; /* 在文本和第一个分页按钮之间添加一些空间 */
    font-size: 20px;
    color: black;
    font-style: Arial;

  }
  .pagination a {
    color: #333;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 50%; /* 使按钮变为圆形 */
    width: 40px; /* 设置固定宽度 */
    height: 40px; /* 设置固定高度 */
    display: flex; /* 使用flex布局使文本居中 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #ddd;
}
  .pagination a.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
  }