/*---------------------------------------------------------------------- /
巨幕-开始
----------------------------------------------------------------------- */
/* jm设置 */
.jm {
    background: url('../images/banner/contact.jpg') no-repeat;
    background-size: cover;
    height: 600px;
}

/* 巨幕响应式-电脑端响应式 */
@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 H5 */
@media screen and (max-width:1080px) {
    .jm {
        height: 300px;
    }
}

@media screen and (max-width:810px) {
    .jm {
        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 p::after {
    /* this is the separator between items */
    display: inline-block;
    content: '\00bb';
    margin: 0 .6em;
    color: black;
}

/* 取消最后一个 》符号 */
.mbx-text p:last-child::after {
    /* this is the separator between items */
    display: none;
}

/*---------------------------------------------------------------------- /
面包屑-结束
----------------------------------------------------------------------- */

/*---------------------------------------------------------------------- /
主页-开始
----------------------------------------------------------------------- */
/* 地图-联系栏部分 */

/* map大小 */
.mapbox {
    width: 100%;
    height: 510px;
}

/* 背景内容 */
/* 背景内容盒子图片 */
.box-group {
    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: 70%;
    height: 60%;
    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: 24px;
    line-height: 32px;
    font-weight: 800;
    padding-bottom: 10px;
}

/* 背景内容-文字盒子-联系方式地址等设置 */
.box-group .box-inner .box-content {
    color: white;
    font-size: 14.5px;
    line-height: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 15px;
}

/* 背景内容-ICON */
.box-group .box-inner .box-content i {
    color: white;
    font-size: 25px;
}

/* 背景内容-文字漂移-距离icon间距 */
.box-group .box-inner .box-content p {
    padding-left: 15px;
}

/* 具体文本 超链接 */
.box-group .box-inner .box-content a {
    color: white;
    cursor: pointer;
    text-decoration: none;
}

/* 背景图宽度 */
.contact-banner img {
    width: 100%;
}

/* 响应式 联系页--PC */
@media screen and (max-width:1480px) {

    /* 内容盒子-内容盒子 */
    .box-group .box-inner {
        width: 80%;
    }
}

@media screen and (max-width:1380px) {

    /* 内容盒子-内容盒子 */
    .box-group .box-inner {
        width: 90%;
    }
}

/* 响应式 联系页---IPAD */
@media screen and (max-width:1080px) {

    /* 背景图上下间距 */
    .contact-banner img {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* H5屏幕 */
@media screen and (max-width: 580px) {

    /* 取消背景图 */
    .contact-banner {
        display: none;
    }

    /* 内容盒子-字体变化 */
    .box-group .box-content p {
        font-size: 14px;
    }

    /* 内容盒子底部-间隔 */
    .box-group {
        margin-top: 40px;
    }
}

/*---------------------------------------------------------------------- /
主页-结束
----------------------------------------------------------------------- */