
.news-details-container {
    padding: 134px 18.75% 0 18.75%;
    display: flex;
    flex-direction: row;
}

.news-details-container .news-details-content {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.news-details-container .hot-news-container {
    margin-left: 60px;
    width: 300px;
    font-family: Microsoft YaHei;
}

.news-details-container .hot-news {
    width: 100%;
}

.news-details-container .hot-news .header {
    font-weight: 400;
    font-size: 16px;
    color: #3A4666;
}

.news-details-container .hot-news .hot-news-item {
    display: flex;
    flex-direction: row;
    flex: 1;
    margin-top: 30px;
}

.news-details-container .hot-news .hot-news-item .title {
    font-weight: 400;
    font-size: 14px;
    color: #3A4666;
    line-height: 24px;
}

.news-details-container .hot-news .hot-news-item .time {
    font-family: Source Han Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #9CA5C1;
    margin-top: 20px;
}

.news-details-container .hot-news .hot-news-item .hot-news-item-serial {
    border-radius: 3px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    background: #8997BB;
}

.news-details-container .hot-news .hot-news-item .serial-one {
    background: #F43F3F;
}

.news-details-container .hot-news .hot-news-item .serial-two {
    background: #FF6A3C;
}

.news-details-container .hot-news .hot-news-item .serial-three {
    background: #F4AE3F;
}


/* 移动端适配 */
@media only screen and (max-width: 768px) {
    .hot-news-container {
        display: none;
    }
    .news-details-container {
        padding: 125px 20px 0 20px;
        display: flex;
        flex-direction: row;
    }
    .news-details-container img{
       width: 100%  !important;
       height: auto  !important;
    }

}

/* 大屏幕（大桌面显示器 1200px） */
@media only screen and (min-width: 768px) {

}

