body{
    background: rgb(241,244,247);
}
.banner{
    width: 100%;
    height: 450px;
    background:url("../images/p5.JPG") no-repeat center center;
    background-size: cover;
}
.banner .container{
    height: 100%;
    position: relative;
}
.banner .bTitle{
    position: absolute;
    bottom:0;
    color: #fff;
}
h3{
    font-size: 42px;
    color: #fff;
    font-weight: normal;
}
.banner .bTitle p{
    display: flex;
    align-items: center;
    margin: 10px 5px 20px 5px;
}
.banner .bTitle img{
    width: 20px;
    margin-right: 5px;
}
.content{
    padding:50px 0;
    background-color: rgba(241,244,247,1);
}
.content .container{
    display: flex;
    justify-content: space-between;
}
.content .container>div{
    width: 45%;
}
.content .topPart{
    background-color: rgba(22, 65, 129, 1);
    padding-top: 5%;
    padding-left: 5%;
    padding-bottom: 50%;
    border-top-right-radius: 100px;
}
.content .topPart h2{
    color: #fff;
    font-size: 40px;
    font-weight: normal;
}
.content .bContent{
    width: 89%;
    background-color: rgba(255, 255, 255, 1);
    padding: 20px;
    margin-left: 10%;
    margin-top: -40%;
}

.whiteBg .bContent{
    background-color: rgba(248,250,251,1);
}
.content .bContent .img{
    margin-bottom: 15px;
    height: 300px;
    overflow: hidden;
}
.content .bContent .img:hover img{
    transform: scale(1.1);
}
.content .bContent img{
    width: 100%;
    height: 100%;
    transition: all .5s;
}
.content .bContent b{
    font-size: 22px;
    color: #164181;
}
.content .bContent h4{
    padding-bottom: 15px;
    margin-top: 5px;
    line-height: 1.5;
}
.content .bContent h4 a{
    color: #333;
    font-size: 20px;
    transition: all .5s
}
.content .bContent h4 a:hover{
    color: #164181;
}
.content .bContent .s_list{
    border-top: 1px solid #dddd;
    padding: 15px 0 25px 0;
}
.content .bContent .s_list li{
    padding:8px 0;
    display: flex;
    justify-content: space-between;
}
.content .bContent .s_list li:hover a{
    transform: translateX(7px);
    color: #164181;
}
.content .bContent .s_list li:hover span{
    color: #164181;
}
.content .bContent .s_list li span{
    font-weight: bold;
    color: #888;
    transition: all .5s
}
.content .bContent .s_list li a{
    display: block;
    width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .5s
}
.whiteBg{
    background-color: #fff;
}
@media (max-width: 1024px) {
    .content .topPart h2{
        font-size: 26px;
    }
    .content .bContent h4 a{
        font-size: 18px;
    }
    .content .bContent b{
        font-size: 18px;
    }
    .content .bContent .img{
        height: 200px;
    }

}

@media (max-width: 768px) {
    .content .container{
        flex-wrap: wrap;
    }
    .content .container>div{
        width: 100%;
        margin-bottom: 30px;
    }
    .content .topPart{
        border-top-right-radius: 30px;
        padding-bottom: 5%;
    }
    .content .bContent{
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    .whiteBg .bContent{
        background-color: rgba(248,250,251,1);
    }
    .content .bContent .img{
        height: auto;
    }
}
