/* 右部内容 */
.product-content-box {
    display: flex;
    color: black;
    margin-bottom: 30px;
}

/* SWIPER图片盒子 */
.product-content-box .img-box-dn {
    width: 570px;
    margin-left: 25px;
}

/* swiper配置 */
.img-1 {
    margin-left: 20px;
}

/* 响应式 */
@media screen and (max-width:1680px) {
    .img-1>img {
        width: 400px;
    }
}

/*---------------------------------------------------------------------- /
产品-内容页-右边
----------------------------------------------------------------------- */
/* 第一行图片 */
.product-content-box {
    display: flex;
    color: black;
    margin-bottom: 30px;
}

/* 第一行图片部分 */
.product-img-h5 {
    display: none;
}

/* 第一行 内容部分 */
.product-content-box .product-content {
    margin-left: 39px;
    color: black;
}

/* 标题 */
.product-content-box .product-content .pro-title h4 {
    font-size: 22px;
    font-weight: 800;
    text-transform: capitalize;
    line-height: 50px;
    letter-spacing: 1px;
}

/* 文本内容 */
.product-content-box .product-content .pro-intro p:nth-child(n+1) {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 1px;
    text-indent: 2em;
    color: black;
    font-weight: 600;
}

.product-content-box .product-content .pro-intro p:first-child {
    padding-top: 15px;
}

/* 第二行 */
/* 第二行盒子 */
.productbox-2 {
    margin-bottom: 30px;
}

/* 第二行文字 */
.productbox-2 p {
    padding-left: 25px;
    font-size: 15px;
    line-height: 19px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* 第二行图片 */
.imgbox-2 {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
}

/* 图片布局 */
.imgbox-2>div:nth-child(1) {
    flex: 3;
    padding-left: 25px;
}

.imgbox-2>div:nth-child(1)>img {
    width: 100%;
}

.imgbox-2>div:nth-child(2) {
    flex: 2;
}

.imgbox-2>div:nth-child(2)>img {
    height: 390px;
}

/* 响应式布局 */
@media screen and (max-width: 1080px) {

    /* 取消图片 */
    .product-content-box .img-1 {
        display: none;
    }

    /* 第一行 内容部分 更改只有右边距*/
    .product-content-box .product-content {
        margin-left: 0px;
        padding-right: 0px;
    }

    /* 响应式布局 */
    .product-img-h5 {
        display: block;
        margin-bottom: 20px;
    }

    .product-img-h5 img {
        width: 400px;
    }

    .product-content-box .product-content .pro-intro p:nth-child(n+1) {
        text-indent: 0em;
    }

    .productbox-2 p {
        padding-left: 0px;
    }

    .imgbox-2>img {
        padding-left: 0px;
    }

    /* 内容更改为block */
    .imgbox-2 {
        display: block;
    }

}

@media screen and (max-width:380px) {

    /* 内容标题 */
    .product-content-box .product-content .pro-title h4 {
        font-size: 16px;
        line-height: 50px;
    }

}