.newsList > .newsListItem {
    padding-left: 0;
    padding-right: calc(20rem / 16);
}
.newsList > .newsListItem:nth-child(even) {
    padding-left: calc(20rem / 16);
    padding-right: 0;
}
@media screen and (max-width: 63.99875em) {
    /* medium & small */
    .newsList > .newsListItem,
    .newsList > .newsListItem:nth-child(even) {
        padding-left: calc(20rem / 16);
        padding-right: calc(20rem / 16);
    }
}
    .newsListItemImgContent {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 50%;
    }
    .newsListItemImgContent img,
    .newsListItemImgContent video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    .newsListItemInfoContent {
        height: calc(172rem / 16);
        border-bottom: 1px solid #292929;
        margin-bottom: calc(40rem / 16);
    }
    .newsTitle {
        font-family: 'arial';
        font-weight: bold;
        
        font-size: calc(17rem / 16);
        color: #292929;
        margin-top: calc(40rem / 16);
        line-height: calc(23rem / 16);
        height: calc(46rem / 16);
        /* min-height: calc(70rem / 16); */

        display: block;
		display: -webkit-box;
        overflow: hidden;
        white-space: normal !important;
        text-overflow: ellipsis;
        word-wrap: break-word;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .newsListItem:hover .newsTitle {
        color: #13792F;
        text-decoration: underline;
    }
    .newsDate {
        display: block;
        font-family: 'alibabapuhuiti_h';
        font-size: calc(14rem / 16);
        color: #CCCCCC;
        margin: calc(20rem / 16) 0;
        height: calc(20rem / 16);
        line-height: calc(20rem / 16);
    }
    .newsAbstract {
        font-family: 'alibabapuhuiti_r';
        /* font-size: calc(17rem / 16); */
        color: #CCCCCC;
        /* line-height: calc(23rem / 16); */
        /* height: calc(46rem / 16); */
        font-size: calc(14rem / 16);
        line-height: calc(20rem / 16);
        height: calc(40rem / 16);
        margin-top: calc(20rem / 16);

        display: block;
		display: -webkit-box;
        overflow: hidden;
        white-space: normal !important;
        text-overflow: ellipsis;
        word-wrap: break-word;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

.newsContentTitle {
    display: block;
    font-family: 'alibabapuhuiti_h';
    font-size: calc(36rem / 16);
    color: #292929;
}
@media screen and (max-width: 63.99875em) {
    /* medium & small */
    .newsContentTitle {
        font-size: calc(26rem / 16);
    }
}
.newsContentCDate {
    display: block;
    font-family: 'alibabapuhuiti_r';
    font-size: calc(17rem / 16);
    color: #CCCCCC;
    margin: calc(20rem / 16) 0 calc(40rem / 16);
    border-bottom: 1px solid #CCCCCC;
}