body{
    background: rgb(241,244,247);
}
.banner{
    width: 100%;
    height: 450px;
    background:url("../images/p4.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;
}
.department{
    padding:50px 0;
}
.department ul{
    display: flex;
    flex-wrap: wrap;
}
.department ul li{
    flex:0 16%;
    background: #fff;
    border-top-right-radius: 30px;
    overflow: hidden;
    margin:20px;
}
.department ul li .top{
    background: #164181;
    color: #fff;
    padding:20px 10px;
    box-sizing:border-box;
    font-size: 20px;
}
.department ul li .top a{
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
}
.department ul li p{
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    position: relative;
    box-sizing: border-box;
    padding: 0 10px;
}
.department ul li p:before{
    content:"";
    display: block;
    width: 5px;
    height: 5px;
    background: #aaa;
    position: absolute;
    top:50%;
    left: 13px;
    transform: translateY(-50%);
    border-radius: 50%;
}
.department ul li p a{
    width: 100%;
    display: block;
    padding-left: 15px;
    box-sizing: border-box;
    border-bottom:1px solid #ebebeb;
}
.department ul li p:hover a{
    color: #0c5acf;
}
.department ul li p:hover:before{
    background: #0c5acf;
}
@media (max-width: 768px) {
    h3{
        font-size: 26px;
    }
    .department ul{
        flex-wrap: wrap;
    }
    .department ul li{
        flex:1 80%;
    }
}
