.top-banner.news-banner{
    height: 230px;
    background-image: url(../../images/news-banner.png);
    background-position: center top;    
    background-size: cover;
}
.top-banner.news-banner .title{
    margin-top: 67px;
    font-size: 24px;
    color: #fff;
}

main.w-wrap{
    margin: 40px auto;
}

.top-news{
    margin-bottom: 40px;
    width: 100%;
    height: 320px;
    border-radius: 6px;
    background-position: center;
    background-size: cover;
    cursor: pointer;
}
.top-news .title{
    box-sizing: border-box;
    bottom: 0;
    padding-left: 25px;
    width: 100%;
    font-size: 18px;
    color: #fff;
    line-height: 40px;
    border-radius: 0 0 6px 6px;
    background-image: linear-gradient(to bottom, transparent, #000); 
}
/* .top-news:hover .title{
    color: #A07DBD;
} */
.news-list{
    margin-bottom: 40px;
}
.news-list li:first-child{
    border-radius: 6px 6px 0 0;
}
.news-list li:last-child{
    border-radius: 0 0 6px 6px;
    border-color: transparent;
}
.news-list li{
    box-sizing: border-box;
    padding: 40px 45px 39px 0;
    height: 160px;
    color: #333;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.news-list li:hover{
    position: relative;
    border-color: transparent;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
    /* background-color: #f9f9f9; */
    z-index: 2;
}
.news-list li:hover .title{
    color: #A07DBD;
}
.news-list .date{
    width: 160px;
    line-height: 1;
}
.news-list .day{
    margin: 12px 0 11px;
    font-size: 30px;
}
.news-list .month{
    font-size: 18px;
    font-weight: lighter;
    font-family: Arial;
    color: #A07DBD;
}
.news-list .text{
    width: 545px;
    overflow: hidden;
}
.news-list .title{
    font-size:18px;
    margin-bottom: 30px;
}
.news-list .desc{
    font-size: 12px;
    line-height: 20px;
    color: #999;
}
/* 侧边栏 */
.aside{
    font-size: 14px;
    color: #333;
}
.div-title{
    padding: 0 0 20px 36px;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
}
.div-title::before{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    height: 10px;
    width: 10px;
    background-color: transparent;
    border: 3px solid #ccc;
    border-radius: 50%;
}
.aside ul{
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
}
.aside a{
    display: block;
    height: 100%;
    width: 100%;
}
.aside li:hover h6{
    color: #A07DBD;
}
/* 热门文章 */
.first-img{
    height: 165px;
    width: 310px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 6px;
}
.first-img h6{
    box-sizing: border-box;
    bottom: 0;
    padding: 0 40px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 0 0 6px 6px;
    background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.8));
}
.news-hot .first-img:hover h6{
    color: #fff;
}
.news-hot li{
    position: relative;
    margin-bottom: 20px;
}
.news-hot li:not(.first-img)::before{
    display: block;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translate(-50%, -50%);
    content: '';
    height: 4px;
    width: 4px;
    background-color: #ccc;
    border-radius: 50%;
}
.news-hot li:hover::before{
    background-color: #A07DBD;
}
/* 精选推荐 */
.news-recommend ul{
    padding-right: 0;
}
.news-recommend li{
    margin-bottom: 20px;
    line-height: 23px;
    overflow: hidden;
}
.news-recommend .img-box{
    height: 60px;
    width: 100px;
    margin-right: 20px;
    border-radius: 2px;
    background-size: cover;
    background-repeat: no-repeat;
}
.news-recommend h6{
    width: 210px;
}

/* 新闻详情 */
.news-detail {
    box-sizing: border-box;
    padding: 40px;
    background-color: #fff;
}
.news-detail .title-wrap {
    margin-bottom: 40px;
    padding-bottom: 40px;
    font-size: 12px;
    color: #999;
    border-bottom: 1px solid #ccc;
}
.news-detail .title-wrap .title{
    margin-bottom: 19px;
    font-size: 24px;
    color: #333;
}
.news-detail .content img{
    max-width: 100%;
}
.news-detail .content p{
    text-align: left;
    margin: 30px 0;
    line-height: 26px;
    text-indent: 24px;
}
.news-detail .content a{
    color: #A07DBD;
    text-decoration: underline;
    text-decoration-style: dashed;
}
.aligncenter{
    clear: both;
    display: block;
    margin: auto;
}

/* 带头图文章hover */
.top-news,
.first-img{
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.top-news:hover,
.first-img:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .4);
}