section a {
    color: var(--color-3);
    display: inline-block;
}

.p-cate {
    margin: 0;
    border-radius: 4px;
    background-color: var(--color-1);
    width: fit-content;
    color: #fff;
    font-weight: 100;
    font-family: 'abSB';
    margin: 0 auto;
    font-size: 16px;
    padding: 0 24px;
    padding-top: 9px;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.p-decor {
    height: 74.7px;
    width: 1px;
    background-color: var(--color-1);
    margin: 0 auto;
}

.p-title {
    margin: 0;
    font-family: 'abSB';
    font-size: 48px;
    text-transform: uppercase;
    color: var(--color-2);
    text-align: center;
    margin-top: 25px;
}

.p-description {
    margin: 0;
    text-align: center;
    line-height: 150%;
    font-weight: 100;
    font-size: 22px;
    color: #6A6A6A;
    margin-top: 1px;
}


.p-fix-button {
    position: fixed;
    bottom: 0;
    z-index: 99;
    right: 0;
    padding: 22px;
}

    .p-fix-button .button-item:first-child {
        margin-top: 0;
    }

    .p-fix-button .button-item:last-child {
        margin-bottom: 0;
    }

    .p-fix-button .button-item {
        transition: all .3s;
        cursor: pointer;
        width: fit-content;
        margin: 16px 0;
    }

        .p-fix-button .button-item img {
            width: 42px;
        }

.base-container.rs .p-fix-button {
    display: none;
}

.p-fix-button .button-item.back-to-top {
    border-radius: 50%;
    position: relative;
    background-color: var(--color-1);
    z-index: 9;
    width: 45px;
    height: 45px;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    font-size: 18px;
    box-shadow: 0 0 10px #fff;
}

.p-fix-button .button-item.button-hl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-2);
    color: #fff;
    font-size: 19px;
}

    .p-fix-button .button-item.button-hl i {
        animation: phone-vibrate 1s ease-in-out infinite;
    }

.p-fix-button .button-item.button-fb {
}

.p-fix-button .button-item.button-zl {
    background-color: #fff;
    border-radius: 9px;
}

    .p-fix-button .button-item.button-zl img {
        width: 42px;
    }

.p-fix-button .button-item.back-to-top:hover {
    background-color: var(--color-4);
    color: #fff;
}

.p-fix-button .button-item.back-to-top.show {
    opacity: 1;
    pointer-events: all;
}

@keyframes phone-vibrate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


.pager {
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    gap: 16px;
    align-items: center;
    user-select: none;
    margin-top: 15px;
}

    .pager span {
        color: var(--text-primary);
    }

        .pager span p,
        .pager a p {
            margin: 0;
        }

    .pager a {
        color: #fff;
        background-color: var(--color-2);
        height: fit-content;
        padding: 13px;
        line-height: 100%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        transition: all .3s;
    }

        .pager a:hover {
            color: var(--color-2);
            background-color: var(--color-1);
        }


.p-album-list {
    display: grid;
    grid-auto-rows: minmax(min-content,max-content);
    grid-template-columns: repeat(4,minmax(0,1fr));
    column-gap: 20px;
    row-gap: 20px;
}

.p-album-item {
}

    .p-album-item a {
        height: 250px;
        border-radius: 8px;
        overflow: hidden;
        display: block;
        position: relative;
    }

        .p-album-item a .content {
            background-color: #bf955080;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 10px 16px;
            backdrop-filter: blur(6px);
        }

        .p-album-item a .img {
            height: 100%;
        }

    .p-album-item .title {
        margin: 0;
        font-weight: 100;
        color: #fff;
    }
