.communityPostList {
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid #e0d4ca;
    border-bottom: 1px solid #e0d4ca;
}
.communityPostList-container .communityPostList-item__first {
    cursor: pointer;
    height: 180px;
    overflow: hidden;
    position: relative;
    display: block;
}
.communityPostList-container .communityPostList-item__first>img {
    width: 100%;
    height: 100%;
    display: block;
}
.communityPostList-container .communityPostList-item__first .cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    color: #fff;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 0;
}
.communityPostList-container .communityPostList-item__first .cover>div {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 123px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.communityPostList-container .communityPostList-item {
    display: block;
    border-bottom: 1px solid #ebe4df;
    padding: 10px 0;
    cursor: pointer;
    font-size: 0;
    color: #333;
    transition: all .2s;
}
.communityPostList-container .communityPostList-item>div {
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.communityPostList-container .communityPostList-item:hover {
    color: #ff7e0b;
}
.communityPostList-container .communityPostList-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
