
.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-view-wrap {
    padding-bottom: 1rem;
    background: url("./static/home/images//img/product-bg.jpg") no-repeat center/cover;
}

.product-view-wrap .module-nav-wrap {
    background-color: transparent;
}

.product-view-wrap .product-view {
    padding: 0.5rem 0;
}

.product-view-wrap .product-view {
    display: flex;
    justify-content: space-between;
}

.product-view-wrap .pv-header {
    position: relative;
    padding-bottom: 0.4rem;
    border-bottom: 0.01rem solid #ccc;
}

.product-view-wrap .pv-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0.5rem;
    height: 0.05rem;
    background-color: var(--theme-sub-color);
}

.product-view-wrap .pv-left {
    max-width: 5.6rem;
    width: 100%;
}

.product-view-wrap .pv-model {
    color: var(--theme-color);
    line-height: 1.5;
}

.product-view-wrap .pv-name {
    line-height: 1.28;
    margin-top: 0.05rem;
}

.product-view-wrap .pv-info {
    line-height: 2.16;
    color: #666;
    margin-top: 0.4rem;
}

.product-view-wrap .pv-info p {
    line-height: unset;
}

.product-view-wrap .pv-btns {
    display: flex;
    padding-top: 0.3rem;
    margin-top: auto;
}

.product-view-wrap .icon-btn i {
    margin-right: 0;
    margin-left: 0.2rem;
}

.product-view-wrap .download {
    background-color: var(--theme-sub-color);
}

.product-view-wrap .pv-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    max-width: 100%;
}

.product-view-wrap .product-pic {
    max-width: 7rem;
    width: 100%;
}

.product-view-wrap .pv-list {
    margin-left: 0.7rem;
}

.product-view-wrap .pv-item {
    width: 1.2rem;
    height: 0.8rem;
    background-color: #ffffff;
    border-radius: 0.1rem;
    padding: 0.15rem;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
}

.product-view-wrap .pv-item:nth-child(n+2) {
    margin-top: 0.1rem;
}

.product-view-wrap .pv-item.active {
    opacity: 1;
    box-shadow: 0 0 0 0.01rem inset var(--theme-color);
}

@media (max-width: 750px) {
    .product-view-wrap .product-view {
        flex-direction: column;
    }

    .product-view-wrap .pv-right {
        flex-direction: column;
        margin-top: 0.8rem;
    }

    .product-view-wrap .pv-list {
        display: flex;
        margin-top: 0.8rem;
        margin-left: 0;
    }

    .product-view-wrap .pv-item:nth-child(n+2) {
        margin-top: 0;
        margin-left: 0.2rem;
    }
}

.param-wrap {
    padding-top: 0.95rem;
}

.param-wrap .module-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.param-wrap .param-table-box {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.param-table-box>* {
    width: 50%;
}

.param-table-box>* table {
    width: 100%;
    height: 100%;
}

/* .param-wrap table {
                    width: 100%;
                } */
/* .param-wrap table {
                    width: 50%;
                } */

.param-wrap td {
    width: 50%;
    height: 0.6rem;
    padding: 0.15rem 0.3rem;
    line-height: 1.5;
    border: 0.01rem solid #f3f3f3;
}

.param-wrap td:first-child {
    background-color: #f7f7f7;
    color: #333;
}

.param-wrap td:last-child {
    background-color: #fff;
    color: #666;
    font-size: 0.88em;
}

@media (max-width: 750px) {
    .param-table-box>* {
        width: 100%;
    }

    /* .param-wrap table {
                        width: 100%;
                    } */
}

.product-apply-wrap {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.product-apply-wrap .module-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-apply-wrap .pa-main {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.product-apply-wrap .swp-prev,
.product-apply-wrap .swp-next {
    width: 0.54rem;
    height: 0.54rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 25px 0px rgba(15, 91, 162, 0.2);
    padding: 0.19rem;
    z-index: 5;
    transition: 0.3s;
}

.product-apply-wrap .swp-prev:hover,
.product-apply-wrap .swp-next:hover {
    background-color: var(--theme-color);
}

.product-apply-wrap .swp-prev:hover img,
.product-apply-wrap .swp-next:hover img {
    filter: grayscale(1) brightness(10);
}

.product-apply-wrap .swp-prev img {
    transform: rotateZ(180deg);
}

.product-apply-wrap .swiper-slide {
    position: relative;
    border-radius: 0.1rem;
    height: 3.6rem;
    overflow: hidden;
}

.product-apply-wrap .swp-cover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.0666666667), rgba(0, 0, 0, 0) 50%);
}

.product-apply-wrap .swp-cover::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.05rem;
    background-color: var(--theme-color);
}

.product-apply-wrap .swiper-slide:nth-child(even) .swp-cover::after {
    background-color: var(--theme-sub-color);
}

.product-apply-wrap .swp-content {
    line-height: 1.5;
    margin: auto auto 0.3rem;
    color: #fff;
}

.product-apply-wrap .swp-content * {
    line-height: unset;
}

.related-wrap {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #f1f5fa;
}

.related-wrap .module-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.related-wrap .related-main {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}

.related-wrap .related-item {
    position: relative;
    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;
}

.related-wrap .related-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.05rem;
    background-color: var(--theme-sub-color);
}

/* .related-wrap .related-item:nth-child(n+2) {
    margin-left: 0.35rem;
}

.related-wrap .related-item:nth-child(n+4) {
    margin-top: 0.5rem;
}

.related-wrap .related-item:nth-child(3n+1) {
    margin-left: 0;
} */

.related-wrap .related-item:hover .related-cover {
    opacity: 1;
}

.related-wrap .related-item:hover .view-detail {
    transform: none;
}

.related-wrap .related-item:hover .pic-box img {
    transform: scale(1.05);
}

.related-wrap .pic-box {
    height: 3.5rem;
    -o-object-fit: cover;
    object-fit: cover;
}

.related-wrap .pic-box img {
    transition: 0.5s;
}

.related-wrap .related-content {
    position: relative;
    margin-top: auto;
}

.related-wrap .related-model {
    color: var(--theme-color);
}

.related-wrap .related-name {
    margin-top: 0.25rem;
    color: #333;
}

.related-wrap .related-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;
}

.related-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;
}

.related-wrap .paging-turner {
    margin-top: 0.6rem;
}

@media (max-width: 750px) {
    .related-wrap .related-main {
        flex-direction: column;
    }

    .related-wrap .related-item {
        width: 100%;
    }

    /* .related-wrap .related-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;}
