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: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: 10px;
    padding: 20px 30px;
    box-sizing: border-box;
    transition: all .5s;
    background-color: #faf8fb;
}
.content .nList li a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content .nList li h4{
    width: 80%;
    font-size: 20px;
    color: #333;
    font-weight: normal;
    line-height: 1.5;
}
.content .nList li .date{
    color: #999;
    transition: all .5s;
}
.content .nList li p{
    font-size: 24px;
    font-weight: bold;
    transition: all .5s;
    color: #999;
}
.content .nList li .mobile_date{
    display: none;
}
.content .nList li p span{
    font-size: 16px;
}
.content .nList li:hover h4,
.content .nList li:hover p{
    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);
}
.paging{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.paging span{
    width: 30px;
    height: 30px;
    margin:0 3px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
}
.paging .num{
    background-color: #164181;
}
.paging .num a{
    color: #fff;
}
.paging .btn{
    border-radius: 2px;
    background-color: #f4f4f5;
    color: #c0c4cc;
}
.paging p{
    font-size: 14px;
    color: #747474;
    margin-left: 12px;
}
.paging input{
    background-color: rgba(255, 255, 255, 0);
    font-size: 14px;
    color: #606266;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    line-height: 28px;
    height: 28px;
    width: 40px;
    text-align: center;
    outline: none;
    margin:0 5px;
}
@media (max-width: 768px) {
    .content .nList li a{
        flex-wrap: wrap;
    }
    .content .nList li p{
        display: none;
    }
    .content .nList li .mobile_date{
        display: block;
        color: #333;
        font-size: 16px;
        flex:1 80%;
    }
    .content .nList li h4{
        width: 100%;
        font-size: 18px;
        margin-top: 8px;
    }
}
