/* 新闻详情页面样式 */
.news_deatils{

}

.news_title h3{
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 46px;
}

.news_tool{
    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
    margin-top: 20px;
}

.tool_item{
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.tool_item:last-child{
    margin-right: 0;
}

.tool_item img{
    width: 22px;
    height: 22px;
}

.tool_item p{
    font-size: 14px;
    color: #AFAFAF;
}

.news_content{
    box-sizing: border-box;
    padding: 20px 0;
}

/* 默认样式 */
.news_content p{
    font-size: 16px;
    color: #333333;
    line-height: 36px;
    text-indent: 2em;
    margin-bottom: 15px;
}

.news_content img, .news_content video{
    max-width: 100% !important;
}

.func_btn{
    display: flex;
    align-items: center;
    justify-content: center;
}

.func_btn button{
    outline: none;
    border: none;
    width: 100px;
    height: 36px;
    background: #8e0209;
    margin: 0 10px;

    font-size: 15px;
    color: #ffffff;
}

.news_bot{
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding-top: 15px;
    border-top: 1px solid #f1f1f1;
    margin-top: 30px;
}

.news_bot a{
    width: 48%;
    display: flex;

    font-size: 16px;
    color: #c2c2c2;
}

.news_bot a span{
    flex-shrink: 0;
}

.news_bot a p{
    color: #333333;
}

.news_bot a:hover, .news_bot a:hover p{
    color: #8e0209;
}

@media screen and (max-width: 998px) {
    .news_title h3{
        font-size: 20px;
        line-height: 28px;
    }

    .news_tool{
        margin-top: 15px;
        flex-wrap: wrap;
        line-height: 18px;
    }

    .tool_item{
        margin-right: 10px;
    }

    .tool_item img{
        width: 15px;
        height: 15px;
    }

    .tool_item p{
        font-size: 12px;
    }

    .news_content{
        padding: 15px 0;
    }

    .news_content p{
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .func_btn{
        display: none;
    }

    /* .func_btn button{
        width: 90px;
        height: 28px;
        margin: 0 5px;

        font-size: 14px;
    } */

    .news_bot{
        margin-top: 0;
        display: block;
    }

    .news_bot a{
        width: 100%;
        font-size: 16px;
        line-height: 28px;
    }
}