/*---------------------------------------------------------------------- /
巨幕设置-开始
----------------------------------------------------------------------- */

.jm {
    background: url('../images/banner/lib.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/lib-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: 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:810px) {
    .mbx-text p {
        font-size: 13px;
    }
    .mbx-text h1 {
        font-size: 13px;
    }
}


/*---------------------------------------------------------------------- /
面包屑-结束
----------------------------------------------------------------------- */


/*---------------------------------------------------------------------- /
faq-开始
----------------------------------------------------------------------- */

.faqbox {
    min-height: 800px;
    /* border: 1px solid red; */
}

.faqbox a {
    padding-left: 0px !important;
    text-decoration: none;
    color: black;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 1px;
}


/* 弹出内容美化 */

.collapse-content {
    background-color: #f9fdfc;
    /* 柔和浅底色 */
    border-radius: 0px;
    box-shadow: 0 2px 8px rgba(0, 80, 60, 0.08);
    /* 轻阴影 */
    padding: 20px 24px;
    margin-top: 8px;
    line-height: 1.6;
}


/* 段落间距 */

.collapse-content p {
    margin-bottom: 12px;
    color: black;
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 1px;
}


/* 图片- 1*/

.img-1 {
    width: 50% !important;
}


/* 响应式布局 */

@media screen and (max-width:810px) {
    .img-1 {
        width: 100% !important;
    }
}


/*---------------------------------------------------------------------- /
faq-结束
----------------------------------------------------------------------- */