.bread .area{
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.bread{
    box-shadow: 0px 1px 8px 0px 
    rgba(208, 208, 208, 0.35);
}
.bread .nav-list{
    display: flex;
    height: 100%;
    align-items: center;
}
.bread .nav-list>div{
    font-size: 16px;
	color: #808080;
    margin-right: 50px;
}
.bread .nav-list>div{
    font-size: 16px;
	color: #808080;
    margin-right: 50px;
    line-height: 60px;
    height: 100%;
    position: relative;
}
.bread .nav-list>div::after{
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
	background-color: #002fa7;
    transition: all .3s linear;
    transform: translateX(-50%);
}
.nav-active::after{
    width: 100% !important;
}
.bread .nav-list>div:hover::after{
    width: 100%
}
.mbx span{
    font-size: 16px;
	color: #808080;
    margin-left: 8px;
}
.bread .mbx{
    display: flex;
    align-items: center;
}
.js-content .desc{
    font-size: 16px !important;
	line-height: 30px;
	color: #333333 !important;
    margin-bottom: 25px;
}
.js-content{
    margin-top: 80px;
}
/* padpro端 */
@media screen and (min-width: 991px) and (max-width: 1366px){
    .js-content{
        margin-top: 60px;
    }
}
/* pad端 */
@media screen and (min-width:768px) and (max-width:991px) {
    .js-content{
        margin-top: 45px;
    }
    .mbx span {
        font-size: 14px;
        margin-left: 6px;
    }
    .bread .nav-list>div {
        font-size: 14px;
        margin-right: 35px;
        line-height: 50px;
    }
    
}
/* 移动端 */
@media (max-width:767px){
    .js-content{
        margin-top: 30px;
    }
    .mbx span {
        font-size: 14px;
        margin-left: 6px;
    }
    .bread .nav-list{
        margin-bottom: 10px;
    }
    .bread .nav-list>div {
        font-size: 14px;
        margin-right: 35px;
        line-height: 30px;
    }
    .bread .area{
        padding: 10px 10px;
    }
    .js-content .desc {
        font-size: 12px;
        line-height: 26px;
        color: #333333;
        margin-bottom: 20px;
    }
}