
.module-nav-wrap {
                background-color: #fff;
            }

            .module-nav-wrap.dark {
                background-color: #f1f5fa;
            }

            .module-nav-wrap.bd {
                border-bottom: 0.01rem solid #f3f3f3;
            }

            .module-nav-wrap .module-nav {
                display: flex;
                justify-content: space-between;
                align-items: stretch;
                overflow-x: auto;
                height: 0.9rem;
            }

            .module-nav-wrap .module-nav-list {
                display: flex;
                padding-right: 0.5rem;
            }

            .module-nav-wrap .module-nav-item {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 100%;
                white-space: nowrap;
                flex-shrink: 0;
                transition: 0.3s;
            }

            .module-nav-wrap .module-nav-item:nth-child(n+2) {
                margin-left: 1rem;
            }

            .module-nav-wrap .module-nav-item.active {
                box-shadow: 0 -0.03rem 0 0 inset var(--theme-color);
            }

            .module-nav-wrap .module-nav-item:hover {
                color: var(--theme-color);
            }

            .module-nav-wrap .breadcrumbs {
                display: flex;
                align-items: center;
                white-space: nowrap;
            }

            .module-nav-wrap .breadcrumbs a {
                display: flex;
                align-items: center;
                color: #666;
                line-height: 1.5;
                transition: 0.3s;
            }

            .module-nav-wrap .breadcrumbs a:nth-child(n+2)::before {
                content: "/";
                display: inline-block;
                color: #666;
                margin: 0 0.05rem;
            }

            .module-nav-wrap .breadcrumbs a:hover {
                color: var(--theme-color);
            }

            .module-nav-wrap .back-home {
                width: 1em;
                margin-right: 0.15rem;
            }

            @media (max-width: 750px) {
                .module-nav-wrap:has(.module-nav-item) .breadcrumbs {
                    display: none;
                }
            }

.product-wrap {
                    padding-top: 0.9rem;
                    padding-bottom: 1.2rem;
                    background-color: #f1f5fa;
                }

                .product-wrap .module-header {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }

                .product-wrap .product-main {
                    display: flex;
                    flex-wrap: wrap;
                    margin-top: 0.6rem;
                }

                .product-wrap .product-item {
                    display: flex;
                    flex-direction: column;
                    width: calc((100% - 1.05rem) / 3);
                    height: 5.7rem;
                    padding: 0.55rem 0.4rem;
                    border-radius: 0.1rem;
                    overflow: hidden;
                    background-color: #fff;
                }

                .product-wrap .product-item:nth-child(n+2) {
                    margin-left: 0.35rem;
                }

                .product-wrap .product-item:nth-child(n+4) {
                    margin-top: 0.5rem;
                }

                .product-wrap .product-item:nth-child(3n+1) {
                    margin-left: 0;
                }

                .product-wrap .product-item:hover .product-cover {
                    opacity: 1;
                }

                .product-wrap .product-item:hover .view-detail {
                    transform: none;
                }

                .product-wrap .product-item:hover .pic-box img {
                    transform: scale(1.05);
                }

                .product-wrap .pic-box {
                    height: 3.5rem;
                    -o-object-fit: cover;
                    object-fit: cover;
                }

                .product-wrap .pic-box img {
                    transition: 0.5s;
                }

                .product-wrap .product-content {
                    position: relative;
                    margin-top: auto;
                }

                .product-wrap .product-model {
                    color: var(--theme-color);
                }

                .product-wrap .product-name {
                    line-height: 1.2;
                    margin-top: 0.25rem;
                    color: #333;
                }

                .product-wrap .product-cover {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: rgba(255, 255, 255, 0.6666666667);
                    opacity: 0;
                    z-index: 1;
                    transition: 0.3s;
                }

                .product-wrap .view-detail {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    min-width: 1.5rem;
                    min-height: 0.5rem;
                    padding: 0.15rem 0.5rem;
                    border-radius: 0.3rem;
                    color: #fff;
                    background-color: var(--theme-color);
                    transform: translateY(100%);
                    transition: 0.3s;
                }

                .product-wrap .paging-turner {
                    margin-top: 0.6rem;
                }

                @media (max-width: 750px) {
                    .product-wrap .product-main {
                        flex-direction: column;
                    }

                    .product-wrap .product-item {
                        width: 100%;
                    }

                    .product-wrap .product-item:nth-child(n+2) {
                        margin-left: 0;
                        margin-top: 0.5rem;
                    }
                }

                .window {
                position: relative;
            }

            .share-side {
                position: absolute;
                top: 0;
                right: 0.1rem;
                display: flex;
                flex-direction: column;
                width: 2em;
                height: 100%;
                pointer-events: none;
                z-index: 50;
            }

            .share-side .share-list {
                position: sticky;
                top: 2.5rem;
                margin: 0.1rem 0;
            }

            
.share-side .share-item {position: relative;display: flex;align-items: center;justify-content: center;width: 2em;height: 2em;padding: 0.15rem;border-radius: 0.04rem;background-color: #fff;pointer-events: auto;}
.share-side .share-item:nth-child(n+2) {margin-top: 0.04rem;}
.share-side .share-item:hover .popup {transform: translateY(-50%) scaleX(1);opacity: 1;pointer-events: auto;}
