/*文章列表*/

.article-list {
    margin: 0 auto;
    background: #fff;
    margin: 10px;
}

.article-list ul {
    background-color: #f5f5f5;
}

.article-list ul li {
    width: 100%;
    height: 120px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 10px;
    background-color: #fff;
}

.article-list ul li:last-child {
    border-bottom: 0;
}

.article-list ul li .left {
    width: 42%;
    height: 100%;
    float: left;
    padding: 15px;
    display: flex;
    display: -webkit-flex;
    align-items:center;
    justify-content:center;
}

.article-list ul li .left .img {
    width: 120px;
    height: 80px;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    background-color: #f5f5f5;
}

@media screen and (max-width:350px) {
    .article-list ul li .left .img {
        width: 100px;
        height: 60px;
    }
}

.article-list ul li .right {
    width: 56%;
    height: 100%;
    float: right;
    padding: 19px 15px 15px 0;
}

.article-list ul li .right p.title {
    width: 100%;
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.article-list ul li .right p.content {
    width: 100%;
    font-size: 13px;
    line-height: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article-list ul li .right p.content{
    max-width: 100% !important;
}

.article-list ul li .right p.bottom {
    margin-top: 10px;
    padding-right: 5px;
    height: 20px;
    line-height: 20px;
    color: #666;
    font-size: 12px;
}

.article-list ul li .right p.bottom .category {
    float: left;
}

.article-list ul li .right p.bottom .time {
    float: right;
}

/*文章列表*/


/*文章详情*/

.article-info {
    background-color: #fff;
    padding: 5px 15px 15px 15px;
    margin: 0 auto;
}

.article-info .title {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #333;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.article-info .top {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #666;
}

.article-info .top .category {
    display: inline-block;
    margin-right: 10px;
    color: #01AAED;
}

.article-info .top .time {
    display: inline-block;
}

.article-info .content {
    font-size: 14px;
    line-height: 18px;
    margin-top: 10px;
    min-height: 400px;
}

.article-info .bottom {
    height: 30px;
    line-height: 30px;
}

.article-info .read-num {
    float: left;
    color: #666;
    font-size: 13px;
}

.article-info .go-category {
    float: right;
    color: #01AAED;
    padding-right: 2px;
}

/*文章详情*/