/* 新闻详情页面样式 */
.news_title h3{
    font-size: 30px;
    color: #333333;
    text-align: center;
    line-height: 46px;
}

.news_tools{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    
    margin: 20px 0 30px;
}

.tools_i{
    display: flex;
    align-items: center;

    margin: 0 15px;
}

.tools_i img{
    width: 22px;
    height: 22px;
    margin-right: 3px;
}

.tools_i p{
    font-size: 16px;
    color: #9F9E9E;
}

.news_con{
    box-sizing: border-box;
    padding: 20px 0;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.news_bot{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.bot_news{
    width: 48%;
    display: flex;
    align-items: center;

    font-size: 18px;
    color: #333333;
}

.bot_news img{
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    margin: 0 3px;
}

.bot_news img:nth-child(2){
    display: none;
}

.bot_news:hover{
    color: #1D3C91;
}
.bot_news:hover img:nth-child(1){
    display: none;
}
.bot_news:hover img:nth-child(2){
    display: block;
}

.next_news{
    justify-content: flex-end;
}

.next_news p{
    order: -1;
}

/* 默认样式 */
.news_con p{
    font-size: 18px;
    color: #333333;
    line-height: 45px;
    text-indent: 2em;
    margin-bottom: 20px;
}


@media screen and (max-width: 1350px) {
    .news_title h3{
        font-size: 22px;
        line-height: 36px;
    }

    .news_tools{
        margin: 15px 0 25px;
    }

    .tools_i{
        margin: 0 10px;
    }

    .tools_i img{
        width: 16px;
        height: 16px;
    }

    .tools_i p{
        font-size: 14px;
    }

    .bot_news{
        font-size: 16px;
    }

    .bot_news img{
        width: 18px;
        height: 18px;
    }

    /* 默认样式 */
    .news_con p{
        font-size: 16px;
        line-height: 36px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 998px) {
    .news_title h3{
        font-size: 16px;
        line-height: 28px;
    }

    .news_tools{
        margin: 20px 0 10px;
    }

    .tools_i{
        margin: 0 5px;
    }

    .tools_i img{
        width: 14px;
        height: 14px;
        margin-right: 2px;
    }

    .tools_i p{
        font-size: 12px;
    }

    .news_con{
        padding: 10px 0;
    }

    .bot_news{
        font-size: 14px;
    }

    .bot_news img{
        width: 14px;
        height: 14px;
    }

    /* 默认样式 */
    .news_con img, .news_con video{
        max-width: 100% !important;
        height: auto;
    }

    .news_con p{
        font-size: 14px;
        line-height: 28px;
    }
}

@media screen and (max-width: 540px) {
    .bot_news{
        width: 100%;
        line-height: 30px;
    }

    .news_title h3{
        text-align: left;
    }
}