/* 新闻详情页面样式 */
.news_details{
    padding: 80px 0;
}

.news_title{
    width: 90%;
    margin: 0 auto;
}

.news_title h3{
    font-size: 34px;
    color: #333333;
    line-height: 45px;
    text-align: center;
}

.news_tool{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 20px;
    border-bottom: 1px solid rgba(217,217,217,0.52);
}

.tool_i{
    display: flex;
    align-items: center;
    margin-right: 20px;

    font-size: 16px;
    color: #9F9E9E;
}

.tool_i:last-child{
    margin-right: 0;
}

.tool_i img{
    width: 22px;
    height: 22px;
    margin-right: 3px;
}

.news_info_box{
    padding: 30px 0;
}

.news_bot{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    box-sizing: border-box;
    padding: 20px 0;
    border-top: 1px solid rgba(217,217,217,0.52);
}

.news_bot a{
    width: 48%;
    display: flex;
    align-items: center;
}

.news_bot a.next_news{
    justify-content: flex-end;
}

.news_bot a.next_news p{
    order: -1;
}

.news_bot a p{
    font-size: 18px;
    color: #333333;
    margin: 0 10px;
}

.news_bot a img{
    width: 20px;
    height: 20px;
}

.news_bot a img:nth-child(2){
    display: none;
}

.news_bot a:hover img:first-child{
    display: none;
}

.news_bot a:hover img:nth-child(2){
    display: block;
}

.news_bot a:hover p{
    color: #0F60B9;
}

/* 默认样式 */
.news_info_box p, .news_info_box span{
    /*font-size: 18px;
    color: #333333;
    line-height: 45px;
    text-indent: 2em;
    margin-bottom: 20px;*/
    font-family: "微软雅黑" !important;
}

@media screen and (max-width: 998px){
    .news_details{
        padding: 0;
    }

    .news_title h3{
        font-size: 17px;
        line-height: 28px;
    }

    .news_tool{
        padding: 15px 0 10px;
        flex-wrap: wrap;
    }

    .tool_i{
        font-size: 12px;
        line-height: 28px;
        margin-right: 15px;
    }

    .tool_i img{
        width: 16px;
        height: 16px;
        margin-right: 2px;
    }

    .news_info_box{
        padding: 10px 0;
    }

    .news_bot a img{
        width: 14px;
        height: 14px;
    }

    .news_bot a p{
        font-size: 14px;
        margin: 0 5px;
    }

    /* 默认样式 */
    .news_info_box p{
        font-size: 14px;
        line-height: 28px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 678px){
    .news_title{
        width: 100%;
    }

    .news_bot{
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .news_bot a{
        width: 100%;
        line-height: 36px;
    }
}