/*新闻列表*/
.list li{
    margin-bottom: .22rem;
    background: #ffffff;
    padding: .28rem .54rem .28rem .22rem;
}
.list li .img{
    width: 3.19rem;
    height: 2rem;
    overflow: hidden;
}
.list li .img img{
    height: 100%;
}
.list li .img:hover img{
    transition: all 0.3s;
    transform: scale(1.1);
}
.list li .text{
    width: calc(100% - 3.65rem);
    position: relative;
}
.list li .text .time h4{
    font-weight: bold;
    font-size: .24rem;
    color: #156abd;
}
.list li .text .time span{
    padding-left: .15rem;
    background: url("../images/frame/03.png")no-repeat left center;
    background-size: .12rem auto;
}
.list li .text .time:after{
    content: "";
    display: block;
    position: absolute;
    width: .59rem;
    height: .01rem;
    background: #2b81c3;
    left: 0;
    bottom: .2rem;
}

.list li .text .tet{
    width: calc(100% - 1.15rem);
}
.list li .text .tet h4{
    display: -webkit-box;
    overflow: hidden;
    white-space: normal!important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: .2rem;
    line-height: .3rem;
    height: .6rem;
    width: 88%;
}
.list li .text .tet p{
    display: -webkit-box;
    overflow: hidden;
    white-space: normal!important;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: .14rem;
    line-height: .26rem;
    height: .72rem;
    color: #999999;
    width: 91%;
    margin: .25rem 0 .1rem 0;
}
.list li .text .tet .more{
    float: right;
    padding-left: .2rem;
    background: url("../images/frame/04.png")no-repeat left center;
    background-size: .14rem auto;
}












/*小屏幕*/
@media screen and (max-width: 1200px) {
.list li .img{    width: 100%;
    height: 3rem;}
.list li .text{width: 100%;
    margin-top: .3rem;}
.list li .text .tet .more{ display: none;}

}