.article_left {
    float: left;
    color: #ff8400;
    padding-top: 30px;
}

.article_right {
    float: right;
    color: #ff8400;
    padding-top: 30px;
}
.article_list {
    width: 100%;
    float: left;
    margin-bottom: 35px;
}
.article_list .article_img {
    width: 30%;
    height: 110px;
    float: left;
    margin-right: 2%;
    border-radius: 5px;
    overflow: hidden;
}
.article_list .article_img img {
    width: 100%;
    height: 100%;
}
.article_list .article_info {
    width: 68%;
    height: 100%;
    float: left;
}
.article_list .article_title {
    width: 100%;
    float: left;
    font-size: 18px;
    /*溢出一行用...代替*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}
.article_list .article_time {
    width: 100%;
    float: left;
    font-size: 12px;
    margin: 8px;
    color: #d9d9d9;
}
.article_list .article_desc {
    width: 100%;
    float: left;
    font-size: 13px;
    /*溢出2行用...代替*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 25px;
    height: 50px;
}
.more_aeticle{
    width: 100%;
    margin-bottom: 50px;
}
.see-more{
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #FFA300;
    margin: 0 auto;
    font-size: 16px;
    color: #288cfb;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}
.see-more a{
    color: #fff;
    text-decoration: none;
}