
.artical-item {
    cursor: pointer;
    padding: 22px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: all;
}
.artical-item:hover {
    box-shadow: 0 0 8px #e5e5e5;
    border: none;
}
.artical-list-container {
    display: none;
}
.artical-list-container h3{
    font-size: 14px;
    font-weight: normal;
}
.artical-list-container.list-active {
    display: block;
}
.artical-list-container .artical-item:last-child {
    border-bottom: none;
}
/*.artical-item:hover .artical-item-img {*/
    /*margin-left: 20px;*/
/*}*/
.artical-item-img {
    margin-right: 20px;
    margin-left: 0;
    transition: all;
}
.artical-content {
    width: 620px;
}
.artical-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 16px;
}
.artical-desc {
    width: 100%;
    line-height: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.artical-tag {
    margin-left: 10px;
}