/*---------------------------------------------------------------------- /
巨幕设置-开始
----------------------------------------------------------------------- */

.jm {
    background: url("../images/banner/contact.jpg") no-repeat;
    background-size: cover;
    height: 600px;
}


/* 巨幕响应式-PC */

@media screen and (max-width: 1680px) {
    .jm {
        background-position: right;
        height: 520px;
    }
}

@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/contact-iphone.jpg") no-repeat;
        background-position: right;
        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: 15px;
    font-style: normal;
    display: inline-block;
    font-weight: 800;
    padding-top: 10px;
    letter-spacing: 1px;
}


/* 面包屑标题 */

.mbx-text h1 {
    font-size: 15px;
    font-style: normal;
    display: inline-block;
    font-weight: 800;
    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;
}


/* 响应式布局 */

@media screen and (max-width: 580px) {
    /* 面包屑文字 */
    .mbx-text p {
        font-size: 13px;
    }
    /* 面包屑标题 */
    .mbx-text h1 {
        font-size: 13px;
    }
}


/*---------------------------------------------------------------------- /
面包屑-结束
----------------------------------------------------------------------- */


/*---------------------------------------------------------------------- /
地图块-联系方式-开始
----------------------------------------------------------------------- */


/* 联系方式box */

.contactboxipad {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
}


/* 联系方式box - imgbox */

.contactboxipad .imgbox {
    flex: 1;
}


/* 地图块-图片设置 */

.img-full {
    /* 推荐：保持比例并填满，可能会裁剪 */
    /* 或者使用以下选项，根据需求选择： */
    width: 100%;
    height: 100%;
    /* object-fit: contain;  保持完整图片，可能有留白 */
    /* object-fit: fill;     拉伸填满（可能变形） */
    object-fit: cover;
}


/* 联系方式-背景 */

.box-group {
    min-width: 540px;
    height: 510px;
    background: url("../images/contact/contact-bg.jpg") no-repeat;
    background-position: top;
    background-size: cover;
    position: relative;
}


/* 联系方式-文字盒子 */

.box-group .box-inner {
    position: absolute;
    content: "";
    width: 80%;
    height: 70%;
    left: 50%;
    top: 50%;
    /* 居中配置 */
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


/* 联系方式-文字盒子-标题 */

.box-group .box-inner .box-title {
    color: white;
    font-size: 22px;
    line-height: 32px;
    font-weight: 800;
    padding-bottom: 10px;
}


/* 联系方式-文字盒子-文字div */

.box-group .box-inner .box-content {
    color: white;
    font-size: 13.5px;
    line-height: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 15px;
}


/* 联系方式-文字盒子-文字div-p*/

.box-group .box-inner .box-content p {
    padding-left: 15px;
    padding-top: 5px;
}


/* 联系方式-文字盒子-文字div-p-超链接*/

.box-group .box-inner .box-content a {
    color: white;
    cursor: pointer;
    text-decoration: none;
}


/* 地图块-文字盒子-icon*/

.box-group .box-inner .box-content i {
    color: white;
    font-size: 25px;
    padding-top: 5px;
}


/* 响应式布局 */

@media screen and (max-width: 1024px) {
    /* 联系方式-文字盒子-文字-p*/
    .contactboxipad {
        display: block;
    }
    /* 联系方式-背景-间距 */
    .box-group {
        margin-top: 20px;
        min-width: 100%;
    }
    /* 联系方式-文字盒子-文字-p*/
    .box-group .box-content p {
        font-size: 12px;
    }
}


/*---------------------------------------------------------------------- /
地图块-联系方式-结束
----------------------------------------------------------------------- */