/* 右侧内容部分 */
.product-content-box {
    display: flex;
    color: black;
    margin-bottom: 30px;
}

/* swiper配置 */
/* 轮播图盒子 */
.product-content-box .img-box-dn {
    width: 570px;
    margin-left: 25px;
}

.swiper-container {
    width: 100%;
}

/* swiper 片段 */
.swiper-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 居中布局 */
.swiper-wrapper .add-sm-zp {
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

/* 配图 */
.swiper-slider-bg {
    background: url("../../images/product/lbt/ltb-bg-1.png");
}

.zp-1 {
    background: url("../../images/product/lbt/qtss-3.jpg");
    background-position: center;
}

.zp-2 {
    background: url("../../images/product/lbt/qtss-2.jpg");
    background-position: center;
}

.zp-3 {
    background: url("../../images/product/lbt/qtss-1.jpg");
    background-position: center;
}

.zp-4 {
    background: url("../../images/product/lbt/qtss-4.jpg") no-repeat;
    background-size: cover;
}

.zp-5 {
    background: url("../../images/product/lbt/qtss-5.png") no-repeat;
    background-size: cover;
}

/* 大图垂直 */
.sw1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-top {
    height: 570px;
    width: 100%;
}

.gallery-thumbs {
    width: 570px;
    height: 130px;
    box-sizing: border-box;
    padding: 10px 0;
    margin-top: 10px;
}

.gallery-thumbs .swiper-slide {
    height: 100%;
    opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/* 响应式布局 */
@media screen and (max-width:1480px) {

    /* 轮播图盒子 */
    .product-content-box .img-box-dn {
        width: 500px;
    }

    /* 小轮播图 */
    .gallery-thumbs {
        width: 500px;
    }
}

@media screen and (max-width:1280px) {

    /* 小轮播图 */
    .gallery-thumbs {
        width: 450px;
    }

    /* 轮播图盒子 */
    .product-content-box .img-box-dn {
        width: 450px;
    }
}

/* h5轮播图 */
.h5lbt {
    display: none;
}

@media screen and (max-width:1080px) {

    /* PC轮播图盒子  */
    .product-content-box .img-box-dn {
        display: none
    }

    .h5lbt {
        display: block;
        height: 400px;
        margin-bottom: 20px;
    }

    /* 轮播容器设置 */
    #centeredCarousel {
        height: 400px;
        /* 设置你需要的固定高度，或使用 min-height */
        background-color: #f5f5f5;
        /* 备用背景色 */
    }

    /* 图片容器 - 负责背景和居中 */
    .carousel-bg-container {
        height: 400px;
        width: 100%;
        padding: 20px;
        /* 创建背景边距 */
        background: url("../../images/product/lbt/ltb-bg-1.png") no-repeat;
        /* 背景填充色 */
        background-size: cover;
    }

    /* 图片样式 - 确保完美居中 */
    .carousel-centered-img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        /* 保持原始比例 */
        margin: auto;
        /* 双重保障居中 */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        /* 可选 - 添加微妙阴影 */
    }
}

/*---------------------------------------------------------------------- /
产品-内容页-右边
----------------------------------------------------------------------- */
/* 第一行图片部分 */
.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: 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;
}

/* 第一行响应式 */

@media screen and (max-width: 1080px) {

    .product-content-box .product-content {
        margin-left: 0px;
    }

    /* 取消缩进 */
    .product-content-box .product-content .pro-intro p:nth-child(n+1) {
        text-indent: 0em;
        padding-right: 0px;
    }
}