/* 新闻详情页面样式 */
.news_details{
    padding: 50px 0;
}

.news_details > h3{
    font-size: 30px;
    color: #333333;
    text-align: center;
}

.news_tool{
    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    padding: 30px 0 20px;
    border-bottom: 1px solid rgba(217,217,217,0.52);
}

.news_tool .tool{
    display: flex;
    align-items: center;

    font-size: 16px;
    color: #9F9E9E;
    margin: 0 10px;
}

.news_tool img{
    width: 21px;
    height: auto;
    margin-right: 3px;
}

.news_con{
    padding: 20px 0;
}

.news_con img{
    max-width: 100% !important;
}

.news_con video{
    max-width: 100% !important;
}

.news_b{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 30px 0 0;
    border-top: 1px solid rgba(217,217,217,0.52);
}

.prev_news, .next_news{
    width: 45%;
    display: flex;
    align-items: center;
}

.next_news{
    justify-content: flex-end;
}

.prev_news img{
    width: 24px;
    height: auto;
    margin-right: 3px;
}

.next_news img{
    order: 1;
    width: 24px;
    height: auto;
    margin-left: 3px;
}

.prev_news img:nth-child(2), .next_news img:nth-child(2){
    display: none;
}

.prev_news p, .next_news p{
    font-size: 18px;
    color: #333333;
}

.next_news:hover img:nth-child(1), .prev_news:hover img:nth-child(1){
    display: none;
}

.next_news:hover img:nth-child(2), .prev_news:hover img:nth-child(2){
    display: block;
}

.next_news:hover p, .prev_news:hover p{
    color: #C7001A;
}

@media screen and (max-width: 1200px){
    .my_tab{
        margin-top: 0;
    }

    .news_details{
        padding: 27px 0;
    }

    .news_details > h3{
        font-size: 16px;
        line-height: 26px;
    }

    .news_tool{
        padding: 12px 0;
        flex-wrap: wrap;
         line-height: 24px;
    }
    .news_b{
        flex-wrap: wrap;
        padding: 10px 0  0;
    }

    .prev_news, .next_news{
        width: 100%;
        line-height: 30px;
    }

    .next_news{
        justify-content: flex-start;
    }

    .prev_news p, .next_news p{
        font-size: 14px;
    }

    .next_news img, .prev_news img{
        width: 16px;
    }

    .news_tool .tool{
        font-size: 12px;
    }

    .news_tool img{
        width: 16px;
    }

    .news_con img{
        max-width: 95% !important;
        height: auto !important;
    }

    .news_con  video{
        height: auto !important;
    }
}