*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei UI";
}
html,body{
    font-size: 14px;
    background: #ededed;
}
.container{
    width: 65%;
    height: 100%;
    margin: 0 auto;
}

.nav-bar{
    height: 100px;
    background: #fff;
}
.nav-bar .container{
    display: flex;
    justify-content: space-between;
}
.nav-bar .logo{
    display: flex;
    align-items: center;
    padding: 1rem 0;
}
.nav-bar .logo img{
    width: auto;
    margin: 0 2rem 0 0;
}
.nav-bar .nav-list{
    display: flex;
    align-items: center;
    height: 100%;
}
.nav-bar .nav-list .nav{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    position: relative;
    text-decoration: none;
    color: inherit;
    /*background: red;*/
}
.nav-bar .nav-list .nav:hover{
    background: #f9f9f9;
    cursor: pointer;
}
.nav-bar .nav-list .nav_active{
    color: #EB627A;
    font-weight: bold;
}
.nav-bar .nav-list .nav_active:before{
    content: '';
    position: absolute;
    bottom: 10%;
    left: 41%;
    width: 20%;
    height: 2px;
    background: #EB627A;
}


.banner-container{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.banner-container .banner{
    width: 100%;
    height: 55vh;
    position: relative;
    overflow: hidden;
}
.banner-container .banner > img{
    width: 100%;
    height: 100%;
}


.image-text-container{
    display: flex;
}
.image-text-container .left,
.image-text-container .right{
    width: 50%;
}
.image-text-container .image-text_picture{
    display: flex;
}
.image-text-container .image-text_picture img{
    width: 100%;
    height: 100%;
}
.image-text_information{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #333;
    color: #bbb;
    padding: 5rem;
}
.image-text_information h3{
    margin: 1.5rem 0;
    font-family: "Microsoft YaHei UI Light";
}
.image-text_information p{
    line-height: 1.8rem;
    text-align: center;
}


.section-header{
    border-bottom: 4px solid #E6E6E6;
    text-align: center;
}
.section-header .section-title{
    position: relative;
    height: 100%;
    padding: 2rem 0;
    font-size: 1.8rem;
    color: #EB627A;
}
.section-header .section-title:before{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 47.5%;
    width: 5%;
    height: 4px;
    background: #EB627A;
}


.footer{
    background: #444;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    /*margin: 1.5rem 0 0 0;*/
}
.footer .container{
    padding: 2rem 0;
}