body{
    background-color: #F5F5F5;
}
.news-view{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.news-view>.left{
    width: 100%;
    min-width: 240px;
}
.news-view>.left .category-tip{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #276fe9;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}
.news-view>.left .category-list{
    padding: 10px;
    background-color: #fff;
}
.news-view>.left .category-info{
    padding: 10px;
    margin: 0 10px;
    border-bottom: 1px dashed #9a9696;
}
.news-view>.left .category-info a:hover,.news-view>.left .category-info a.active{
    margin-left: 5px;
    color: #276fe9;
}

.news-view>.right{
    width: 100%;
    min-height: 500px;
    background-color: #fff;
    padding: 10px;
}

.news-list{
}
.news-list .news-info{
    display: flex;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.news-list .news-info .left{
    width: 40%;
}
.news-list .news-info img{
    width: 100%;
    max-height: 180px;
}

.news-list .news-info .right{
    width: 58%;
    margin-left: 10px;
}

.news-list .news-info .right .title{
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list .news-info .right .content{
    font-size: 14px;
    line-height: initial;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list .news-info .right .time{
    margin-top: 5px;
    font-size: 14px;
    color: #c5c0c0;
}


.news-content{
    padding: 20px;
}
.news-content .title{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
.news-content .info{
    font-size: 14px;
    color: #a6a5a5;
    text-align: center;
    margin-top: 10px;
}
.news-content .info span{
    margin-right: 10px;
}
.news-content .content{
    margin-top: 20px;
}
.news-content .next-news{
    margin-top: 20px;
    font-size: 18px;
}

.recommend-news-view{
    padding: 20px;
    margin-top: 20px;
    background-color: white;
    border-radius: 5px;
}
.recommend-news-view .news-tips{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.recommend-news-view .news-list .news-info{
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #efefef;
    font-size: 15px;
    line-height: normal;
}
