:root {
    --product-show-title-size: 24px;
    --product-show-menu-item-size: 10px;
    --product-show-shop-all-size: 13px;
    --product-show-subtitle-size: 13px;
    --product-show-menu-item-title-size: 10px;
    --product-show-menu-item-price-size: 10px;

    --product-show-menu-item-title-size-pc: 13px;
    --product-show-menu-item-price-size-pc: 13px;
    --product-show-subtitle-size-pc: 16px;
    --product-show-menu-item-size-pc: 13px;
}

/* BB分类商品展示组件样式 */
.bb-collection-product-show {
    background-color: rgb(var(--color-background));
    color: rgb(var(--color-text));
}

.bb-collection-product-show__wrapper {
    display: block;
    padding-top: 54px;
}

.bb-collection-product-show__link {
    display: block;
}

.bb-collection-product-show__image {
    display: block;
    width: 100%;
    height: 100%;
}

/* 标题区域 */
.bb-collection-product-show__title {
    font-size: var(--product-show-title-size);
    line-height: 1em;
    text-align: center;
}

.bb-collection-product-show__subtitle {
    font-size: var(--product-show-menu-item-size);
    line-height: 1em;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 18px;
}

/* 菜单区域 */
.bb-collection-product-show__menu {
    display: flex;
    padding: 0 9px;
}

.bb-collection-product-show__menu-item {
    padding: 18px 0;
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    color: rgb(var(--color-light-text));
    line-height: 1em;
    font-size: var(--product-show-menu-item-size);
    border-top: 1px solid #ededed;
    transition: all 300ms ease;
}

.bb-collection-product-show__menu-item[active] {
    border-top: 1px solid;
    color: rgb(var(--color-text));
}

/* 产品容器 */
.bb-collection-product-show__container {
    display: none;
    animation: bbCollectionShowAnimate 800ms ease;
    padding-left: 9px;
}

.bb-collection-product-show__container[active] {
    display: block;
}

/* 动画定义 */
@keyframes bbCollectionShowAnimate {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

/* 产品列表 */
.bb-collection-product-show__list {
    /* 列表容器基础样式 */
}

.bb-collection-product-show__list .swiper-wrapper .swiper-slide {
    padding-right: 5px;
}

/* 产品项 */
.bb-collection-product-show__item {
    /* 产品项基础样式 */
}

.bb-collection-product-show__item-title {
    margin-top: 18px;
    margin-bottom: 9px;
    color: rgb(var(--color-text));
    font-size: var(--product-show-menu-item-title-size);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    /* line-height: 1em; */
    text-align: center;
}

.bb-collection-product-show__item-price {
    color: rgb(var(--color-button-text-link));
    font-size: var(--product-show-menu-item-price-size);
    line-height: 1em;
    text-align: center;
}

/* 全部按钮 */
.bb-collection-product-show__all {
    padding-right: 1em;
    padding: 36px 0;
}

.bb-collection-product-show__all-link {
    text-align: center;
    border: 1px solid rgb(var(--color-entry-line));
    /* margin: 36px 0; */
    font-size: var(--product-show-shop-all-size);
    line-height: 36px;
    height: 36px;
    display: block;
}

/* Swiper 导航样式 */
.bb-collection-product-show .swiper {
    --swiper-navigation-color: rgb(var(--color-button-text-link));
    --swiper-navigation-size: 14px;
    --swiper-navigation-top-offset: calc(50% - 18px);
}

/* 移动端样式 */
@media (max-width: 959px) {
    /* 移动端特定样式已在基础样式中定义 */
}

/* 桌面端样式 */
@media (min-width: 960px) {
    /* 容器样式 */
    .bb-collection-product-show__wrapper {
        padding-top: 60px;
        max-width: 1920px;
        margin: 0 auto;
    }

    /* 标题样式 */
    .bb-collection-product-show__title {
        padding-top: 9px;
        padding-left: 9px;
    }

    .bb-collection-product-show__subtitle {
        font-size: var(--product-show-subtitle-size-pc);
        padding-bottom: 40px;
    }

    /* 菜单样式 */
    .bb-collection-product-show__menu {
        max-width: 58%;
        margin: 0 auto 30px;
    }

    .bb-collection-product-show__menu-item {
        font-weight: 600;
        font-size: var(--product-show-menu-item-size-pc);
        cursor: pointer;
    }

    .bb-collection-product-show__menu .bb-collection-product-show__menu-item:nth-child(1) {
        text-align: start;
        padding-left: 40px;
    }

    .bb-collection-product-show__menu .bb-collection-product-show__menu-item:nth-child(2) {
        text-align: end;
        padding-right: 40px;
    }

    /* 产品容器样式 */
    .bb-collection-product-show__container {
        padding: 0 30px;
    }

    /* Swiper 样式 */
    .bb-collection-product-show .swiper {
        --swiper-navigation-top-offset: 8px;
        --swiper-navigation-sides-offset: 10px;
    }

    .bb-collection-product-show__list .swiper-wrapper .swiper-slide {
        padding: 0 9.5px;
    }

    .bb-collection-product-show__list .swiper-button-next,
    .bb-collection-product-show__list .swiper-button-prev {
        height: 87%;
        width: 30px;
    }

    /* 产品项样式 */
    .bb-collection-product-show__item-title {
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: var(--product-show-menu-item-title-size-pc);
    }

    .bb-collection-product-show__item-price {
        font-size: var(--product-show-menu-item-price-size-pc);
    }

    /* 全部按钮样式 */
    .bb-collection-product-show__all {
        padding: 60px 9px;
    }

    .bb-collection-product-show__all-link {
        margin: 0px auto;
        line-height: 53px;
        height: 53px;
        width: 400px;
    }

    /* Swiper 导航按钮样式 */
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-weight: 900;
    }
}