
#article-list {
    background: #f6f6f6;
}
.article-row {
    background-color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px 0;
}
.article-row:hover{
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.06);
}

.article-img {
    padding-left: 30px;
}

.article-img img {
    width: 380px;
    height: 230px;
}

.article-body {
}
.article-body h2 a{
    color: #333;
    font-size: 20px;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.article-body time{
    display: block;
    margin-top: 10px;
}
.article-body p{
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;/*超出3行部分显示省略号，去掉该属性 显示全部*/
    -webkit-box-orient: vertical;
}
.article-info a{
    width: 150px;
    height: 46px;
    line-height: 46px;
    border: 1px solid #E8E8E8;
    margin-top: 20px;
    display: inline-block;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    color: #000;
}
.article-info a:hover{
    background-color: #3194ea;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.content{
    height: 60px;
    padding-right: 30px;
    text-align: justify;
}
@media (max-width: 750px) {
    .article-img{
        padding-left:10px;
    }
    .article-img img{
        margin: 0 auto;
    }
}
