/*---------------------------------------------------------------------- /
巨幕设置-开始
----------------------------------------------------------------------- */


/* 巨幕 */

.jm {
    background: url('../images/banner/en-product.jpg') no-repeat;
    position: relative;
    background-size: cover;
    height: 600px
}


/* 巨幕响应式-PC */

@media screen and (max-width:1680px) {
    .jm {
        height: 525px
    }
}

@media screen and (max-width:1440px) {
    .jm {
        height: 450px
    }
}

@media screen and (max-width:1280px) {
    .jm {
        height: 400px
    }
}


/* 巨幕响应式-IPAD */

@media screen and (max-width: 1279px) {
    .jm {
        margin-top: -30px;
        height: 300px;
    }
}

@media screen and (max-width: 810px) {
    .jm {
        margin-top: 0px;
        height: 260px;
    }
}


/* 巨幕响应式-手机端 */

@media screen and (max-width:580px) {
    .jm {
        background-size: contain;
        background: url('../images/banner/h5/en-product-iphone.jpg') no-repeat;
        background-position: left;
        height: 200px;
        display: block
    }
}


/*---------------------------------------------------------------------- /
巨幕设置-结束
----------------------------------------------------------------------- */


/*---------------------------------------------------------------------- /
面包屑-开始
----------------------------------------------------------------------- */


/* 面包屑 */

.mbx-row {
    height: 100px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center
}


/* 面包屑文字 */

.mbx-text p {
    font-size: 12px;
    line-height: 20px;
    font-style: normal;
    display: inline-block;
    font-weight: 500;
    padding-top: 10px;
    letter-spacing: 1px;
}


/* 面包屑标题 */

.mbx-text h1 {
    font-size: 12px;
    line-height: 20px;
    font-style: normal;
    display: inline-block;
    font-weight: 500;
    padding-top: 10px;
    letter-spacing: 1px;
}


/* 面包屑-》》 */

.mbx-text p::after {
    display: inline-block;
    content: '\00bb';
    margin: 0 .6em;
    color: black
}


/* 取消面包屑-最后一个》 */

.mbx-text p:last-child::after {
    display: none
}


/*---------------------------------------------------------------------- /
面包屑-结束
----------------------------------------------------------------------- */


/* 内容部分 */

.wordbox {
    max-width: 1100px;
}


/* 内容部分-p格式-标题*/

.wordbox p:nth-child(1) {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* 内容部分-p格式-文本*/

.wordbox p:nth-child(n+2) {
    font-size: 13px;
    line-height: 2;
    /* 调整为更舒适的1.5倍行高 */
    font-weight: 500;
    letter-spacing: 0.05em;
    /* 使用相对单位，更灵活 */
}


/* 图片行布局 */

.productbox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}


/* 图片行布局-div盒子 */

.productbox>div {
    flex: 1;
    min-height: 350px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}


/* 图片行布局-div盒子-超链接 */

.productbox>div>p>a {
    text-decoration: none;
    color: black;
    font-size: 13px;
    line-height: 2;
    /* 调整为更舒适的1.5倍行高 */
    font-weight: 600;
    letter-spacing: 0.05em;
    /* 使用相对单位，更灵活 */
}


/* 响应式布局 */

@media screen and (max-width:810px) {
    .wordbox p {
        padding-left: 0px;
    }
    .productbox {
        display: block;
    }
}