/* 新闻详情页面样式 */
.news_details{
    padding-top: 5px;
}

.news_title{
    max-width: 80%;
    margin: 0 auto;
    font-size: 30px;
    color: #333333;
    font-weight: bold;
    line-height: 45px;
    text-align: center;
    margin: 30px auto;
}

.news_tools{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tool_i{
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.tool_i img{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.tool_i p{
    width: fit-content;
    font-size: 16px;
    color: #9F9E9E;
}

.news_info{
    padding: 20px 0;
    border-top: 1px solid rgba(217,217,217,0.52);
}

.news_info p{
    font-size: 18px;
    color: #333333;
    line-height: 45px;
    text-align: 2em;
}

.bot_btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}

.news_btn{
    display: flex;
    align-items: center;
    width: 45%;
    height: 60px;
    background: #F0F4F8;

    box-sizing: border-box;
    padding: 0 30px;

    font-size: 18px;
    color: #333333;
}

.news_btn p{
    margin: 0 5px;
}

.next_news{
    justify-content: flex-end;
}

.news_btn:hover{
    color: #1F3694;
    font-weight: bold;
}

@media screen and (max-width: 998px){
    .news_title{
        font-size: 24px;
        line-height: 36px;
        margin: 20px auto;
    }

    .news_info p{
        font-size: 16px;
        line-height: 36px;
    }

    .news_info img, .news_info video{
        max-width: 100% !important;
        height: auto !important;
    }

    .news_btn{
        width: 48%;
        font-size: 16px;
        height: 50px;
        padding: 0 20px;
    }

    .tool_i p{
        font-size: 14px;
    }

    .tool_i img{
        width: 16px;
        height: 16px;
        margin-right: 3px;
    }
}

@media screen and (max-width: 540px){
    .news_title{
        font-size: 18px;
        line-height: 28px;
        margin: 5px auto 10px;
    }

    .news_tools{
        flex-wrap: wrap;
        line-height: 20px;
    }

    .tool_i{
        margin: 0 3px;
    }

    .tool_i p{
        font-size: 12px;
    }

    .tool_i img{
        width: 14px;
        height: 14px;
        margin-right: 0;
    }

    .news_info p{
        font-size: 14px;
        line-height: 28px;
    }

    .bot_btn{
        flex-wrap: wrap;
        margin-top: 50px;
    }

    .news_btn{
        font-size: 14px;
        width: 100%;
        height: 40px;
        padding: 0 10px;
        margin-bottom: 10px;
    }
}