.section-title {
    background-color: #0baae4;
    /*background: url("/static/jnmc/css/index/../../image/touming.png"), url("/static/jnmc/css/index/../../image/title-bg/cpzx2.jpg");*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    /*background-size: cover;*/
    height: 800px;
    position: relative;
    overflow: hidden;
}
.section-title .title-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-color: #0baae4;*/
    /*background: url("/static/jnmc/css/index/../../image/touming.png"),url("/static/jnmc/css/index/../../image/title-bg/cpzxnew.jpg");*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    /*background-size: cover;*/
    transform-origin: bottom center;
    transition: all .1s;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.title-content{
    width: 1200px;
    margin: 0 auto;

}
.title-text {
    position: absolute;
    display: inline-block;
    bottom: 100px;
    z-index: 999;
    color: #FFFFFF;
}

.title-text div:first-child {
    font-size: 44px;
    position: relative;
}

.title-text div:last-child {
    font-size: 22px;
    text-transform: uppercase
}

.title-text div:first-child::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 2px;
    background-color: #FFFFFF;
    bottom: 0;
    left: 0;
}

.section-min-nav {
    width: 100%;
    background-color: #bdc3cd;
    text-align: center;
    line-height: 70px;
}

.min-nav-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.min-nav__parent {
    font-size: 22px;
    color: #0078c5;
    padding-right: 35px;
    position: relative;
    flex: none;
}

.min-nav__parent::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: 20px;
    width: 2px;
    background-color: #5a5a5a;
    margin-top: -10px;
}

.min-nav__children {
    display: flex;
    line-height: 35px;
    align-items: center;
}

.min-nav__children div {
    font-size: 18px;
    flex: auto;
    margin-left: 35px;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    position: relative;
    color: #FFFFFF;
}
.min-nav__children div::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color:#0078c5 ;
    opacity: 0;
    transition: all .5s;
}
.min-nav__children div:hover::after {
    width:100%;
    opacity: 1;
}

/*二级标题选中样式*/
.active-min-nav {
    color: #0078c5!important;
}

.active-min-nav::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color:#0078c5 ;
}
