@charset "UTF-8";
.pagination{text-align: center; color: #CE4245; margin-bottom: 30px; display: flex; justify-content: center; align-items: center; font-family: 'SourceHanSansCN-Regular';}
.pagination a,.pagination span{height: 36px; padding: 0 13px; line-height:36px; display: inline-block;margin:0 2px; color: #CE4245; text-align: center; font-size: 14px; background: #ffffff; border-radius: 5px; border: 1px solid #dedede;}
.pagination p{ margin: 0 10px;}
.pagination span.current,.pagination a:hover{ background: #CE4245; color: #FFFFFF;}
.pagination em{ font-style: normal; color:#CE4245;}
.pagination .active span{ line-height:36px; background: #CE4245; color: #FFFFFF;}
.pagination span.sfont{ width: auto; margin-left: 10px;}
.pagination li {list-style: none;}

.pagination-simple{
    display: none;
}

.pagination-info{
    display: none;
}

@media screen and (max-width: 430px) {
    .page {
        display: none;
    }

    .pagination-simple{
        display: block;
    }
    .pagination-info {
        display: block; /*  */
        margin-bottom: 14px;
        padding: 8px 10px;
        color: #00897b;
        background: radial-gradient(circle at center, rgba(0, 171, 160, 0.15) 0%, transparent 70%);
    }

    /*  */
    .pagination-simple {
        display: flex;
        justify-content: space-between;
        margin: 0;
        gap: 15px;
    }

    .pagination-simple__item {
        flex: 1;
        padding: 16px 10px;
        min-width: auto;
        font-size: 16px;
        font-weight: 600;
        color: #00897b;
        border-radius: 12px;
        text-align: center;
        text-decoration: none;
        border: none;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 171, 160, 0.2);
        position: relative;
        overflow: hidden;
        background: linear-gradient(145deg, #ffffff, #f0f5f7);
    }

    .pagination-simple__item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(0, 171, 160, 0.15) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .pagination-simple__item i {
        margin: 0 8px;
        font-size: 18px;
    }

    .pagination-simple__item--prev {
        background: linear-gradient(145deg, #f8f9fa, #e8f5e9);
    }

    .pagination-simple__item--disabled {
        color: #b2dfdb !important;
        background: #f1f8f7 !important;
        cursor: default;
        box-shadow: 0 2px 8px rgba(0, 171, 160, 0.1);
    }

    /*  */
    .pagination-simple__item:active:not(.pagination-simple__item--disabled) {
        transform: scale(0.97);
    }

    .pagination-simple__item:active:not(.pagination-simple__item--disabled)::after {
        opacity: 1;
    }

    .pagination-simple__item:not(.pagination-simple__item--disabled):hover {
        box-shadow: 0 7px 18px rgba(0, 171, 160, 0.3);
    }

}
