.articleList{
    overflow: hidden;
}

.articleList .a-item {
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 8px #888;
}

.articleList .a-item .title{
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-break: break-word;
    -webkit-line-clamp: 2;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
}

.articleList .a-item  .time{
	height: 30px;
    line-height: 30px;
    text-align: center;
}

.articleList .a-item .img-wrap{
	position: relative;
    display: -webkit-box;
}
.articleList .a-item .img-wrap .feed-img{
	-webkit-box-flex: 1;
    height: 584px;
    overflow: hidden;
    margin-left: 2px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.articleList .a-item .img-wrap .feed-img img{
	width: 100%;
    height: 100%;
}

.articleList .a-item  .tags{
    height: 40px;
    line-height: 40px;
    overflow: hidden;
}

.articleList .a-item  .tags a{
    font-size: 24px;
}