
.news {
    margin: 0;
    padding: 0;
     background: #f8f8f8; 
}.newslist {
    position: relative;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    padding: 20px 0;
    width: 100%;
    height: auto;
}
.newslist .item{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(204, 204, 204, 0.2);
    border-radius: 5px;
}
.newslist .item .left{
    float: left;
    position: relative;
    box-sizing: border-box;
    width: 25%;
    padding-bottom: 20%;
    border-radius: 5px;
    overflow: hidden;
}
.newslist .item .left img{
    width:100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
}
.newslist .center{
    position: relative;
    box-sizing: border-box;
    width: 75%;
    height: auto;
    margin-left: 25%;
    padding-left: 30px;
}
.newslist .center .title{
    position: relative;
    box-sizing: border-box;
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 500;
    line-height:60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.newslist .center .subtitle{
    position: relative;
    line-height: 20px;
    color: #cecece;
    padding-bottom: 20px;
}
.newslist .center .subtitle .times{
    margin-left: 20px;
}
.newslist .center .line{
    position: relative;
    height: 1px;
    background-color: #cccccc;
    margin-bottom: 20px;
}
.newslist .center .line .line2{
    height: 3px;
    width: 5%;
    background-color:#6398e6 ;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 1;
}
    .newslist .center .summary {
        color: #555555;
        line-height: 40px;
        font-size: 18px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        letter-spacing: 2px;
        height: 120px;
    }
    .newslist .item:hover {
        box-shadow: 0px 0px 10px rgb(0 101 182 / 50%);
    }
/*.newslist .item:hover .center .title{
    color: #6398e6;
    font-weight: 600;
    cursor: pointer;
}*/


@media screen and (max-width: 1200px){
    .newslist .item .left {
        width: 30%;
        padding-bottom: 24%;
    }
    .newslist .center {
        width: 70%;
        margin-left: 30%;
    }
}
@media screen and (max-width: 900px){
    .newslist .center .title {
        font-size: 20px;
        line-height: 50px;
    }
    .newslist .center .summary {
        -webkit-line-clamp: 2;
        line-height: 30px;
        font-size: 16px;
        height: 60px;
    }

    .newslist {
      
        padding:  0;
      
    }
}

@media screen and (max-width: 700px){
    .newslist .item {
        padding: 10px;
    }
    .newslist .item .left {
        width: 40%;
        padding-bottom: 32%;
    }
    .newslist .center {
        width: 60%;
        margin-left: 40%;
        padding-left: 10px;
    }
    .newslist .center .title {
        font-size: 16px;
        line-height: 35px;
        letter-spacing: 1px;
    }
    .newslist .center .subtitle {
        padding-bottom: 5px;
    }
    .newslist .center .line {
        height: 1px;
        margin-bottom: 5px;
    }
    .newslist .center .line .line2 {
        height: 3px;
        width: 20%;
    }
        .newslist .center .summary {
            line-height: 22px;
            font-size: 14px;
            letter-spacing: 1px;
            height: 44px;
        }
}
