/*文章列表*/
.editorial-list {
    overflow-x: scroll;
    display: grid;
    /*  声明列的宽度  */
    grid-template-columns: repeat(3, 376px);
    /*  声明行间距和列间距  */
    grid-gap: 20px;
    /*  声明行的高度  */
    /*grid-template-rows: 100px 200px;*/

}
.editorial-list a{
    color: #333333;
}

.editorial-list img {
    width: 360px;
    height: 184px;
    border-radius: 20px;
    background: #dedede;
    margin-bottom: 10px;
}


.editorial-dis-info {
    font-size: 14px;

}
.editorial-dis-info .icon{
    height: 12px;
    width: 16px;
    margin-bottom: 0;
}
/*.editorial-dis-info span{*/
/*    line-height: 12px;*/
/*}*/

.editorial-dis-info h5 {
    font-size: 14px;
}

.editorial-dis-info .game-score {
    color: #333333;
    margin-left: 2px;
}

.editorial-list a {
    margin: 0 10px;
}

.editorial-dis-info .info{
    overflow: hidden;
    /*white-space: nowrap;*/
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

