/*图文列表*/
.news .list dl{
    padding: 20px 0;
    border-bottom: 1px solid #e4e4e4;
    overflow: hidden;
    margin-bottom: 0;
}
.news .list dl dt{
    float: left;
    width: 190px;
    height: 120px;
    overflow: hidden;
    background: url("../images/frame/img.png")no-repeat center;
}
.news .list dl dt img{
    width: 100%;
    height: 100%;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.news .list dl dt a:hover img{
    transform: scale(1.4);
}

.news .list dl dd{
    width: calc(100% - 210px);
    float: right;
    font-size: 14px;
}
.news .list dl dd h1{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 30px;
    font-size: 16px;
    margin: 0;
}
.news .list dl dd h1 a{
    color: #333333;
}
.news .list dl dd h1 a:hover{
    color: #004b9d;
}

.news .list dl dd span{
    line-height: 40px;
    color: #666666;
    padding-left: 20px;
    background: url("../images/frame/tw_time.png")no-repeat left center;
}
.news .list dl dd span img{
    vertical-align: sub;
    margin-right: 5px;
}

.news .list dl dd p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /*规定几行显示省略号 */
    -webkit-box-orient: vertical;
    line-height: 24px;
    color: #777777;
}

