/*---------------------------------------------------------------------- /
巨幕-开始
----------------------------------------------------------------------- */
.jm {
    background: url('../images/banner/app.jpg') no-repeat;
    background-size: cover;
    height: 600px;
}

/* 巨幕响应式-电脑端响应式 */
@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;
    }
}

@media screen and (max-width:1080px) {
    .jm {
        height: 300px;
    }
}

@media screen and (max-width:820px) {
    .jm {
        height: 260px;
    }
}

@media screen and (max-width:580px) {
    .jm {
        background-size: contain;
        background: url('../images/banner/h5/app-iphone.jpg') no-repeat;
        background-position: center;
        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;
}

/* 响应式布局 */
/* 响应式面包屑-手机 */
@media screen and (max-width: 1080px) {
    .mbx-text p:first-child {
        padding-left: 0px;
    }
}

/*---------------------------------------------------------------------- /
面包屑-结束
----------------------------------------------------------------------- */

/*---------------------------------------------------------------------- /
主页-开始
----------------------------------------------------------------------- */
/*---------------------------------------------------------------------- /
侧边栏
----------------------------------------------------------------------- */
.fixedtool {
    display: block;
    color: black;
}

/* 固定位置 */
.fixedtool-1 {
    position: fixed !important;
    /* 原值为90px */
    top: 100px;
}

/* 标题盒子 */
.fixedtool .fixed-title {
    margin-left: 120px;
    width: 320px;
    height: 60px;
    padding-top: 15px;
    padding-left: 15px;
    position: relative;
    border-top: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
}

/* 标题 */
.fixedtool .fixed-title h5 {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* 标题sub */
.fixedtool .fixed-title>h5>sub {
    font-size: 12px;
}

/* 侧边栏下划线 */
.fixedtool .fixed-title::before {
    content: "";
    position: absolute;
    left: 2.5%;
    top: 0;
    height: 100%;
    width: 95%;
    border-bottom: 2px solid #e9e9e9;
    z-index: 2;
}

.fixedtool .fixed-title::after {
    content: "";
    position: absolute;
    left: 2.5%;
    top: 0;
    height: 100%;
    width: 70%;
    border-bottom: 2px solid #35AD54;
    z-index: 3;
}

/* 内容 - 标题*/
.heading-box {
    margin-left: 120px;
    width: 320px !important;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    height: 50px;
    padding-top: 13px;
}

/* 内容部分 */
.accordion {
    width: 100%;
    width: 320px;
    margin-left: 120px;
}

/* 取消边框 */
.accordion-item {
    overflow: hidden;
    border-radius: 0px;
    border: none;
}

/* 主目录 */
.accordion-header {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    height: 50px;
}

/* 主目录链接 */
.accordion-header a {
    font-size: 15px;
    color: black;
    font-weight: 600;
    line-height: 22px;
    padding-left: 5px;
    letter-spacing: 1px;
    text-decoration: none;
}

/* icon */
.icon-weizhi2 {
    padding-left: 3px;
}

/* 主目录-超链接 */
.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-out;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    /* border-bottom: 1px solid #e9e9e9; */
}

.accordion-content-inner {
    padding: 15px;
}

.accordion-content-inner ul li.ul_list {
    padding-top: 5px;
    padding-bottom: 5px;
}

.accordion-content-inner ul li.ul_list a {
    color: black;
    text-decoration: none;
    line-height: 22px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
}

/* icon指向 */
.icon-arrowLeft-fill {
    font-size: 20px;
    line-height: 25px;
    color: black;
    padding-left: 10px;
    padding-top: 10px !important;
    display: none;
}


/* 侧边栏 响应式-PC */
@media screen and (max-width:1680px) {

    /* 侧边栏标题-间距 */
    .fixedtool .fixed-title {
        margin-left: 70px;
        width: 320px !important;
    }

    .accordion {
        margin-left: 70px;
        width: 320px !important;
    }

}

@media screen and (max-width:1480px) {

    /* 侧边栏标题-间距 */
    .fixedtool .fixed-title {
        margin-left: 30px;
        width: 330px !important;
    }

    /* 侧边栏内容-间距 */
    .accordion {
        margin-left: 30px;
        width: 330px !important;
    }

}

@media screen and (max-width:1390px) {

    /* 侧边栏标题-间距 */
    .fixedtool .fixed-title {
        margin-left: 10px;
        width: 330px !important;
    }

    /* 侧边栏内容-间距 */
    .accordion {
        margin-left: 10px;
        width: 330px !important;
    }

}

@media screen and (max-width:1290px) {

    /* 侧边栏标题-间距 */
    .fixedtool .fixed-title {
        margin-left: 10px;
        width: 300px !important;
    }

    /* 侧边栏内容-间距 */
    .accordion {
        margin-left: 10px;
        width: 300px !important;
    }
}

@media screen and (max-width: 1080px) {

    /* 取消侧边栏 */
    .fixedtool {
        display: none;
    }
}


/* 导航栏-app类 */
.icon-tiaozhuan4 {
    font-size: 20px !important;
}

.icon-tiaozhuan4:hover {
    cursor: pointer;
    color: red;
}

/*---------------------------------------------------------------------- /
主页-结束
----------------------------------------------------------------------- */