.banner-news{
    width: 100%;
}
.banner-news img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-list{
    margin: 100px 0;
}

.news-list .new{
    width: 100%;
    display: flex;
    box-shadow: 0 0 12px -5px;
    align-items: center;
    margin-top: 30px;
}
.news-list .new .img{
    width: 20%;
    padding: 10px;
}
.news-list .new .img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.news-list .new .container{
    width: 70%;
    display: flex;
}
.news-list .new .container .date{
    width: 15%;
    color: #696969;
    border-right: 1px solid #696969;
    text-align: center;
    padding: 20px 30px;
}
.news-list .new .container .date h2{
    font-size: 50px;
    line-height: 80px;
    text-align: center;
}
.news-list .new .container .new-content{
    margin-left: 50px;
    color: #2d2d2d;
}
.news-list .new .container .new-content h5{
    font-size: 18px;
    line-height: 32px;
    padding-top: 20px;
}
.news-list .new .container .new-content p{
    display: block;
    font-size: 14px;
    line-height: 28px;
    margin-top: 10px;
    text-overflow:ellipsis;
    overflow:hidden; 
}
.news-list .new  .arr{
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
}
.news-list .new  .arr img{
    display: block;
    padding: 10px;
    background-color: #b0b0b0;
}
.page .paging-box {
    width: 340px;
    height: 42px;
    display: flex;
    justify-content: space-between;
    margin: 100px auto;
  }
 .page .paging-box li {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
    margin-left: 10px;
  }
  .page {
      padding-bottom: 50px;
  }
 .page .paging-box li a {
    display: block;
    width: 100%;
    color: #3b3b3b;
  }
 .page .paging-box li a:hover {
    color: #ffff;
    background-color: #67afda;
  }

footer{
    background-color: #c5c5c5;
}
footer p{
    text-align: center;
    line-height: 45px;
    color: #454545;
}
@media screen and (max-width: 1280px){
    .inner{
        width: 95%;
    }
}
@media screen and (max-width: 980px){
    .inner{
        width: 100%;
    }

}
@media screen and (max-width: 765px){
    .news-list{
        margin: 20px 0;
    }
    .news-list .new{
        flex-direction: column;
    }
    .news-list .new .img{
        width: 95%;
    }
    .news-list .new .container{
        width: 100%;
    }
    .news-list .new  .arr{
        display: none;
    }
    .news-list .new .container .date{
        display: none;
    }
    .news-list .new .container .new-content{
        margin-left: 10px;
    }
}