/* 分类 */
.productNav {
    margin-top: 45px;
    display: flex;
}

.productNav a {
    width: calc(100% / 9);
    height: 45px;
    line-height: 45px;
    font-size: 16px;
    color: #020202;
    margin-bottom: 10px;
    border-left: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.productNav a.active {
    color: var(--color);
}

.productNav a:first-child {
    border-left: 0;
}


@media (max-width: 1600px) {
    .productNav {
        display: flex;
        flex-wrap: wrap;
    }

    .productNav a {
        width: 20% !important;
    }

    .productNav a:nth-child(6) {
        border: 0;
    }
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {}

@media (max-width: 750px) {
    .productNav {
        margin-top: 0.5rem;
    }

    .productNav a {
        font-size: .26rem;
        line-height: .6rem;
        height: 0.6rem;
        width: 33.333% !important;
        margin-bottom: 0.3rem;
        border-left: 1px solid #E6E6E6 !important;
    }

    .productNav a img {
        width: 0.4rem;
        margin-right: 0.1rem;
    }

    .productNav a:nth-child(1),
    .productNav a:nth-child(4),
    .productNav a:nth-child(7) {
        border: 0 !important;
    }
}

/* 轮播 */

.product1Item {
    width: calc(50% - 15px);
    margin-right: 15px;
    margin-bottom: 35px;
    background: #f9f9f9;
    height: 470px;
    padding: 55px;
}

.product1Slide>span {
    top: 0;
    left: 0;
    font-size: 12px;
    line-height: 20px;
    padding: 0 5px;
    background: #000;
    color: #fff;
    position: absolute;
}

.product1Slide .cp {
    width: 100%;
    height: 290px;
    object-fit: contain;
}

.product1Slide h1 {
    font-size: 24px;
    color: #333;
    height: 30px;
    line-height: 30px;
    margin-top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product1Slide h2 {
    font-size: 14px;
    color: #888;
    height: 20px;
    line-height: 20px;
    margin-top: 10px;
    padding-right: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product1 .swiper-pagination {
    height: 20px;
    bottom: 10px !important;
    width: 100px !important;
    left: initial !important;
    right: 0;
}

.product1 .swiper-pagination span {
    width: 10px;
    height: 10px;
    opacity: 1;
    border: 1px solid #000;
    border-radius: 100%;
    background: initial;
}

.product1 span.swiper-pagination-bullet-active {
    background: #000;
}


@media (max-width: 1600px) {
    .product1Item {
        height: 400px;
        padding: 30px;
    }

    .product1Slide .cp {
        height: 240px;
    }
}

@media (max-width: 1200px) {
    .product1Item {
        width: calc(50% - 10px);
        margin-right: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .product1Item {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 750px) {
    .product1Item {
        height: 5rem;
        padding: 0.35rem;
    }

    .product1Slide .cp {
        height: 3rem;
    }

    .product1Slide h1 {
        font-size: .32rem;
        height: 0.4rem;
        line-height: .4rem;
        font-weight: bold;
    }

    .product1Slide h2 {
        font-size: .24rem;
        height: 0.4rem;
        line-height: .4rem;
        margin-top: 0.2rem;
    }
}


/* 详情 */

.Details {
    overflow: hidden;
    padding: 150px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.DetailsImg {
    width: calc(100% - 465px);
    max-width: 890px;
}

.DetailsImg img {
    max-width: 100%;
}

.DetailsText {
    width: 415px;
    padding-top: 35px;
}

.DetailsText h1 {
    font-size: 42px;
    line-height: 50px;
    color: #000;
}

.DetailsText .desc {
    margin-top: 75px;
    border-top: 1px solid #e6e6e6;
}

.DetailsText .desc p {
    width: 100%;
    font-size: 14px;
    line-height: 25px;
    margin: 0;
    padding: 20px 0;
    color: #888;
    border-bottom: 1px solid #e6e6e6;
}

.DetailsText .link {
    margin-top: 75px;
    display: flex;
}

.DetailsText .link a {
    display: block;
    width: 170px;
    line-height: 48px;
    margin-right: 15px;
    text-align: center;
    color: #000;
    border: 1px solid #ddd;
}

@media (max-width: 1600px) {
    .DetailsText h1 {
        font-size: 38px;
        line-height: 45px;
    }
}

@media (max-width: 1200px) {
    .Details {
        padding: 100px 0;
    }

    .DetailsImg {
        width: calc(100% - 340px);
    }

    .DetailsText {
        width: 300px;
        padding-top: 0;
    }

    .DetailsText h1 {
        font-size: 30px;
        line-height: 40px;
    }
}


@media (max-width: 750px) {
    .Details {
        padding: 0.8rem 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .DetailsImg {
        width: 100%;
    }

    .DetailsText {
        width: 100%;
        padding-top: 0;
    }

    .DetailsText h1 {
        font-size: .4rem;
        line-height: .5rem;
        font-weight: bold;
    }

    .DetailsText .desc {
        margin-top: 0.55rem;
        border-top: 1px solid #e6e6e6;
    }

    .DetailsText .desc p {
        font-size: .26rem;
        line-height: .45rem;
        padding: 0.15rem 0;
    }

    .DetailsText .link {
        margin-top: 0.4rem;
        display: flex;
    }

    .DetailsText .link a {
        font-size: .26rem;
        line-height: .7rem;
        width: 2.4rem;
    }
}