.news-category{
    width: 94%;
    margin: 1.5rem auto;
}
.news-category .list {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-category .list li {
    width: 120px;
    height: 40px;
    margin-left: 5px;
    margin-right: 5px;
    box-sizing: border-box;
    border: 1px solid #e00046;
    color: #e00046;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
}
.news-category .list li a{
    color: inherit;
}
.news-category .list li.cur {
    background: #e00046;
    color: #fff;
}
.news-list{
    width: 94%;
    margin: 1.5rem auto;
}
.news-list a{
    color: inherit;
    font-weight: bold;
}
.news-list .title{
    min-height: 2.7rem;
}
.news-list .date{
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}
.news-list .wrapper{
    border-bottom: 1px solid #999;
}
.news-list .wrapper .cover{
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: revert;
    background-repeat: no-repeat;
}
#news-detail{
    width: 94%;
    margin: 0 auto;
    padding: 2rem 0;
}
#news-detail h1{
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
}
#news-detail .date{
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    #news-detail{
        width: 84%;
        padding: 4rem 0;
    }
    #news-detail h1{
        font-size: 2rem;
    }
}