.news-box {
    display: flex;
    flex-direction: column;
}

.news-box .content {
    display: flex;
    flex-direction: column;
    padding: 0px 15px 30px;
}

.news-box .content .title-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.news-box .content .title-wrap .title{
    font-size: 1.6rem;
    line-height: 2.4rem;
}
.news-box .content .title-wrap .desc{
    width: 100%;
    color: rgba(200, 200, 200, 1);
    line-height: 2.4rem;
    display: flex;
    justify-content: space-between;
}
.news-box .content .title-wrap .desc span{
    font-weight: lighter;
}
.news-box .content .content-wrap{
    margin-top: 30px;
    line-height: 2.2rem;
    font-family: '宋体';
}
.news-box .content .content-wrap p{
    margin: 10px 0;
}

.news-box .content-division-line{
    height: 1px;
    width: calc(100% - 60px);
    padding: 0px 15px;
    margin: 0 auto;
    background: rgba(100, 100, 100, 0.3);
}


.news-box .content-bar{
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 18px auto;
}
.news-box .content-bar a{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.news-box .content-bar a{
    line-height: 2rem;
}
.news-box .content-bar a img{
    width: 80%;
}

