.news-list{
    list-style-type: none;
    width: 80%;
    margin: 0 10%;
    padding: 0;
}
.news-list a{
    color: #666;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 5px;
    position: relative;
    padding-left: 125px;
    transition: all ease .3s;
    font-size: 18px;
}
.news-list a:hover span{
    letter-spacing: 2px;

}
.news-list a:before{
    height: 5px;
    background: #eaeaea;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    content: '';
    display: block;
}
.news-list li{
    margin-bottom: 10px;
    /*border-bottom: solid 5px #eaeaea;*/
    position: relative;
}
.news-list li span{
    display: inline-block;
    margin-right: 15px;
    border-bottom: solid 5px #f08d11;
    padding: 5px 0 0px;
    width: 100px;
    position: absolute;
    letter-spacing: 1px;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: all ease .3s;
    font-family: 'Roboto', serif;
    width: 120px;
}
.news-detail{
    display: flex;

}
.news-pic{
    width: 30%;
}
.news-detail .editor-box{
    width: 100%;
    padding-left: 20px;
}
.news-header h1{
    margin-bottom: 0;
}
.news-header{
    margin-bottom: 2rem;
}
.news-header .date{
    margin-top: 0;
}
.date {
    position: relative;
    font-family: 'Roboto', sans-serif;
    transition: all ease .3s;
    margin-top: 2rem;
    display: block;
    color: #6a6a6a;
    font-size: 18px;
    font-weight: 400;
}
.news-header .date{
    margin-top: 0;
}

@media screen and (max-width: 950px) {
 .news-list{
        width: 100%;
        margin: 0;
    }
    .news-list li  span {
        display: -webkit-box;
        margin-bottom: 3px;
        width: 120px;
        position: relative;

    }
    .news-list a{
        padding-left: 0;
    }
    .news-list a:before{
        display: none;
    }
	.news-header .date{
		margin-top: 0.5em;
	}
}
@media screen and (max-width: 600px) {
    .news-detail{
        flex-wrap: wrap;
    }
    .news-detail .editor-box{
        width: 100%;
        padding: 0 0 15px;
    }
}