/* 新闻详情页面样式 */
.news_title{
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 38px;
    color: #333333;
    text-align: center;
    line-height: 56px;
    background: linear-gradient(-90deg, #8A25CC 35.4736328125%, #0115A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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: 30px;
}

.tool_i:last-child{
    margin-right: 0;
}

.tool_i img{
    width: 22px;
    height: 22px;
    margin-right: 3px;
}

.tool_i p{
    font-size: 16px;
    color: #9F9E9E;
}

.news_container{
    box-sizing: border-box;
    padding: 30px 0;
}


/* 默认样式 */
/*.news_container p{
    font-size: 18px;
    color: #333333;
    line-height: 45px;
    text-indent: 2em;
    margin-bottom: 30px;
}*/

.news_container img, .news_container video, .news_container table{
    max-width: 100% !important;
    height: auto;
}

.news_bot{
    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
    padding-top: 20px;
    border-top: 1px solid rgba(217,217,217,0.52);
}

.news_bot a{
    display: flex;
    align-items: center;
    width: 48%;
}

.news_bot a img{
    width: 24px;
    height: 24px;
    margin: 0 5px;
}

.news_bot a img:nth-child(2){
    display: none;
}

.news_bot a p{
    font-size: 18px;
    color: #333333;
}

.news_bot a.next_news{
    justify-content: flex-end;
}

.news_bot a.next_news p{
    order: -1;
    text-align: right;
}

.news_bot a:hover img:nth-child(1){
    display: none;
}

.news_bot a:hover img:nth-child(2){
    display: block;
}

.news_bot a:hover p{
   color: #2719b0; 
}

@media screen and (max-width: 1700px) {
    .news_title{
        font-size: 32px;
        line-height: 46px;
    }
}

@media screen and (max-width: 1400px) {
    .news_title{
        font-size: 28px;
        line-height: 40px;
    }
}

@media screen and (max-width: 998px) {
    .news_title{
        font-size: 15px;
        line-height: 28px;
    }

    .news_tool{
        flex-wrap: wrap;
        padding: 15px 0 10px;
    }

    .tool_i img{
        width: 14px;
        height: 14px;
    }

    .tool_i p{
        font-size: 11px;
        line-height: 18px;
    }

    .tool_i{
        margin-right: 10px;
    }

    .news_container{
        padding: 15px 0;
    }

    /* 默认样式 */
    /*.news_container p{
        font-size: 14px;
        line-height: 28px;
        margin-bottom: 10px;
    }*/

    .news_bot{
        padding-top: 15px;
    }

    .news_bot a img{
        width: 14px;
        height: 14px;
    }

    .news_bot a p{
        font-size: 14px;
    }
}

@media screen and (max-width: 540px){
    .news_bot{
        padding-top: 10px;
        flex-wrap: wrap;
    }

    .news_bot a{
        width: 100%;
        line-height: 28px;
    }
}