.pagination {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'SourceHanSansCN-Regular';
}

/* 去除所有分页超链接的下划线 */
.pagination a,
.pagination-simple a,
.pagination-simple__item {
    text-decoration: none !important;
}

.pagination a,
.pagination span {
    height: 36px;
    padding: 0 13px;
    line-height: 36px;
    display: inline-block;
    margin: 0 2px;
    color: #333;
    text-align: center;
    font-size: 14px;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid #dedede;
}

.pagination p {
    margin: 0 10px;
}

/* 当前页（active）颜色改为 #5ba3c8 */
.pagination span.current,
.pagination .active span {
    background: #5ba3c8 !important;
    color: #FFFFFF !important;
    border-color: #5ba3c8;
}

/* 确保活动链接（若使用<a>）也与新色一致，避免被hover覆盖 */
.pagination .active a,
.pagination .active a:hover {
    background: #5ba3c8 !important;
    color: #FFFFFF !important;
    border-color: #5ba3c8;
    text-decoration: none;
}

/* 分页链接悬停样式：新颜色、背景、边框 */
.pagination a:hover {
    color: rgb(82, 148, 199) !important;
    background: rgb(234, 244, 251) !important;
    border-color: rgb(82, 148, 199) !important;
}

.pagination em {
    font-style: normal;
    color: #333;
}

.pagination li {
    list-style: none;
}

.pagination-simple {
    display: none;
}

.pagination-info {
    display: none;
}

@media screen and (max-width: 430px) {
    /* 隐藏 PC 分页容器 */
    .page-pc,
    ul.pagination {
        display: none;
    }

    /* 移动端页码信息：缩小尺寸、弱化存在感 */
    .pagination-info {
        display: block;
        margin: 0 auto 20px auto;
        padding: 10px 20px;
        color: #fff;
        background: #5ba3c8;
        border-radius: 16px;
        text-align: center;
        font-size: 16px; /* 缩小字体 */
        font-weight: 500;
        width: fit-content;
    }

    /* 移动端分页按钮组：居中布局，贴合截图 */
    .pagination-simple {
        display: flex;
        justify-content: center;
        margin: 0;
        gap: 30px;
    }

    .pagination-simple__item {
        width: 180px;
        height: 70px;
        padding: 0;
        font-size: 22px;
        font-weight: 500;
        text-decoration: none;
        border: none;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        cursor: pointer;
        line-height: 1;
    }

    /* 上一页禁用状态（截图中的浅蓝灰） */
    .pagination-simple__item--prev,
    .pagination-simple__item--disabled {
        background: #b0c4d9;
        color: rgba(255, 255, 255, 0.7);
        box-shadow: none;
        cursor: default;
    }

    /* 下一页按钮（截图中的白色+阴影） */
    .pagination-simple__item--next {
        background: #fff;
        color: #333;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    /* 触摸反馈 */
    .pagination-simple__item:active:not(.pagination-simple__item--disabled) {
        transform: scale(0.97);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
}
