.news-details-container{
    padding: 7.3vw 10vw 2vw;
    overflow: hidden;
}

.news-details-container .news-tab{
    color: #333;
    font-size: 1.2vw;
    margin-bottom: 4.6875vw;
}

.news-details-container .news-title>p{
    font-size: 3vw;
    line-height: 3.3vw;
    color: #333333;
    margin-bottom: 2.5vw;
}

.news-details-container .news-title .time_type{
    display: flex;
    justify-content: space-between;
}

.news-details-container .news-title .time_type>p>span:nth-child(1){
    color: #0269A7;
    font-size: 2.5vw;
    font-weight: bold;
}
.news-details-container .news-title .time_type>p>span:nth-child(2){
    color: #0269A7;
    font-size: 1.25vw;
}

.news-details-container .news-title .time_type>span{
    color: #666;
    font-size: 1.25vw;
    display: flex;
    align-items: center;
}

.news-details-container .news-title::after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #DDDDDD;
    margin: 0.5vw 0;
}

.news-details-container .news-main{
    padding-top: 1vw;
    width: 80%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.news-details-container .news-main span{
    width: 100%;
    color: #666;
    font-size: 0.83vw;
    margin: 1.5vw 0;
}
.news-details-container .news-main p{
    width: 100%;
    color: #666;
    font-size: 1vw;
    margin: 1.5vw 0;
}
.news-details-container .news-main p img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.news-details-container .news-main .img-50{
    width: 42%;
    object-fit: cover;
    margin: 1vw 4px;
}
.news-details-container .news-main .img-100{
    width: 85%;
    object-fit: cover;
    margin: 1vw 0;
}
@media (max-width: 1440px) {
    .news-details-container .news-main p{
        font-size: 14px;
    }
}
@media (max-width: 996px) {
    .news-details-container .news-tab{
        font-size: 3.5vw;
    }
    .news-details-container .news-title>p{
        font-size: 4vw;
        line-height: 4vw;
    }
    .news-details-container .news-title .time_type>p>span:nth-child(1){
        font-size: 4vw;
    }
    .news-details-container .news-title .time_type>p>span:nth-child(2){
        font-size: 3vw;
    }
    .news-details-container .news-title .time_type>span{
        font-size: 3vw;
    }
    .news-details-container .news-main{
        padding: 5vw 0;
    }
    .news-details-container .news-main p{
        font-size: 4vw;
    }
    .news-details-container .news-main .img-100{
        width: 100%;
        margin: 0;
    }
    .news-details-container .news-main .img-50{
        width: 47%;
    }
}