/* swiper配置 */
.img-1 {
    margin-left: 20px;
}

/*---------------------------------------------------------------------- /
产品-内容页-右边
----------------------------------------------------------------------- */
/* 第一行图片 */
.product-content-box {
    display: flex;
    color: black;
}

/* 第一行图片部分 */
.product-img-h5 {
    display: none;
}

/* 第一行 内容部分 */
.product-content-box .product-content {
    margin-left: 39px;
}

/* 标题 */
.product-content-box .product-content .pro-title h4 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* 第一行p字段格式 */
.product-content-box .product-content .pro-intro p:nth-child(n+1) {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 1px;
}

/* 首行间隔 */
.product-content-box .product-content .pro-intro p:first-child {
    padding-top: 15px;
}

/* 图片-偏移 */
.pxstq-box {
   padding-left: 30px;
}

/* 第一行响应式 */
@media screen and (max-width:1680px) {

    /* 图片宽度 */
    .product-content-box .img-1 {
        width: 590px;
    }
}


@media screen and (max-width:1480px) {

    /* 图片宽度 */
    .product-content-box .img-1 {
        width: 450px;
    }
}

@media screen and (max-width: 1080px) {

    /* 取消PC图片 */
    .product-content-box .img-1 {
        display: none;
    }

    .product-content-box .product-content {
        margin-left: 0px;
    }

    /* 响应式图片 */
    .product-img-h5 {
        display: block;
        margin-bottom: 20px;
    }

    .product-img-h5 img {
        width: 300px;
    }

    /* 第一行右边距 */
    .product-content-box .product-content .pro-intro p:nth-child(n+1) {
        text-indent: 0em;
        padding-right: 0px !important;
    }

}

/* 第二行 */
.pro-content-detail {
    color: black;
    margin-top: 20px;
}

/* 第二行标题盒子 */
.pro-content-detail .pro-title-underline {
    height: 40px;
    width: 180px;
    position: relative;
    margin-left: 1px;
}

/* 第二行标题 */
.pro-content-detail .pro-title-underline h4 {
    padding-top: 4px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    /* 距离导航栏 */
    padding-left: 23px;
}

/* 第二行标题下划线 */
.pro-content-detail .pro-title-underline::before {
    content: '';
    height: 40px;
    width: 30%;
    border-bottom: 4px solid #35AD54;
    position: absolute;
    left: 22px;
    bottom: 0;
}

/* 响应式 */
@media screen and (max-width: 1080px) {

    /* 第二行标题 */
    .pro-content-detail .pro-title-underline h4 {
        padding-left: 0px;
    }

    /* 第二行标题下划线 */
    .pro-content-detail .pro-title-underline::before {
        left: 0px;
    }

    .pxstq-box {
        padding-left: 0px;
     }

}

