body{
    background: rgb(241,244,247);
}
.banner{
    width: 100%;
    height: 450px;
    background:url("../images/p6.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:4% 0;
    background: url("../images/bg-fixed.jpg") no-repeat fixed;
    background-size: cover;
}
.content .container{
    background-color: #fff;
    padding: 3%;
    box-sizing: border-box;
}
.content .nList li{
    width: 100%;
    margin-bottom: 20px;
    padding: 20px 30px;
    box-sizing: border-box;
    transition: all .5s;
    background-color: #faf8fb;
}
.content .nList li a{
    width: 100%;
    display: flex;
}
.content .nList li .pic{
    flex:0 0 250px;
}
.content .nList li .pic img{
    width: 100%;
}
.content .nList li .tit{
    flex:1;
    padding:0% 3% 0% 5%;
}
.content .nList li .tit h4{
    color: #333;
    font-size: 22px;
    font-weight: normal;
    transition: all .5s;
}
.content .nList li .tit p{
    font-size: 14px;
    margin-bottom: 10px;
    transition: all .5s;
}
.content .nList li .date{
    flex:0 0 100px;
    margin-top: 20px;
    color: #999;
    transition: all .5s;
}
.content .nList li .date p{
    width: 100%;
    font-size: 14px;
    text-align: right;
    font-weight: bold;
    transition: all .5s;
}
.content .nList li .date b{
    display: block;
    width: 100%;
    font-size: 30px;
    text-align: right;
    transition: all .5s;
}
.content .nList li:hover .tit h4,
.content .nList li:hover p,
.content .nList li:hover .date b{
    color: #0c5acf;
}
.content .nList li:hover{
    margin-left: 5px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.mobile_date{
    font-size: 16px;
    color: #333;
    display: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    .content ul li a{
        flex-wrap: wrap;
    }
    .content ul li .pic{
        flex:1 80%;
    }
    .content ul li .tit{
        flex:1 80%;
        padding: 0;
    }
    .mobile_date{
        display: block;
    }
    .content ul li .date{
        display: none;
    }
    .content ul li .tit h4{
        font-size: 18px;
    }
}
