.news_info_main{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.news_info_main .width_limit{
    position: relative;
    width: 61%;
}
.news_info_main::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 16vh;
    background: linear-gradient(to bottom, #A7A7A7,transparent);
}
.news_info_main .page_nav{
    margin-top: 23vh;
}
.news_info_main .page_nav .level_1{
    color: #808080;
}
.news_info_main .page_nav .level_2{
    color: #1B1B1B;
}
.news_info_main .page_nav>span{
    color: #808080;
    margin: 0 0.5vw;
    font-size: 1vw !important;
}
.news_info_main .page_nav>a,.news_info_main .page_nav>span{
    font-family: none;
    font-size: 0.84vw;
}
.news_info_main .title{
    font-family: none;
    color: #1B1B1B;
    font-size: 2.1vw;
    font-weight: bold;
    margin: 2.188vw 0 1.198vw;
}
.news_info_main .release_time{
    font-family: none;
    font-size: 0.84vw;
    color: #808080;
}
.news_info_main .article_main{
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 0.94vw;
    color: #434343;
    line-height: 1.666;
    margin-top: 2.917vw;
    margin-bottom: 10.156vw;
}
.news_info_main .article_main p,.news_info_main .article_main span{
    font-size: 0.94vw;
    color: #434343;
    font-family: none;
    white-space: pre-line;
    word-break: normal;
    word-wrap:break-word;
    overflow-wrap: break-word; /* 早期浏览器写做 word-wrap: break-word; */
    /* letter-spacing: 0.01vw; */
    /* word-spacing: 10px; */
}
.news_info_main .article_main img{
    width: 100%;
    object-fit: contain;
    margin: 3.646vw 0;
    transition: scale .5s;
}
.news_info_main .article_main img:hover{
    scale: 1.02;
}
.more_news_container{
    position: relative;
    width: 100%;
    background-color: #EEEEEE;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4.2vw 0;
    box-sizing: border-box;
}
.more_news_container .width_limit{
    position: relative;
    width: 61%;
}
.more_news_container .title_btn{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.more_news_container .title_btn .title{
    color: #313131;
    font-weight: bold;
    font-family: none;
    font-size: 2.5vw;
}
.more_news_container .switch_btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.more_news_container .switch_btn>div{
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 0.5vw;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.more_news_container .switch_btn>div .gsticon{
    font-size: 0.885vw;
}
.more_news_container .switch_btn .prev{
    background: #C9C9C9;
    margin-right: 0.885vw;
    transition: background .3s;
}
.more_news_container .switch_btn .prev:hover{
    background: #D6020F;
}
.more_news_container .switch_btn .prev .gsticon{
    transform: rotate(180deg);
}
.more_news_container .switch_btn .next{
    background: #C9C9C9;
    transition: background .3s;
}
.more_news_container .switch_btn .next:hover{
    background: #D6020F;
}
.more_news_container .swiper {
    position: relative;
    width: 100%;
    height: 20.833vw;
    margin-top: 2.1vw;
}
.more_news_container .swiper .item{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.more_news_container .swiper .item .news_cover{
    position: relative;
    width: 100%;
    height: 63%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.more_news_container .swiper .item .news_cover img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 1s;
}
.more_news_container .swiper .item:hover .news_cover img{
    scale: 1.05;
}
.more_news_container .swiper .item .news_time {
    width: 88%;
    font-family: none;
    font-size: 0.84vw;
    margin: 0.94vw 0;
    color: #808080;
    line-height: 1;
    
    /* 新增：单行文本溢出显示省略号 */
    white-space: nowrap;      /* 强制在一行内显示 */
    overflow: hidden;         /* 溢出内容隐藏 */
    text-overflow: ellipsis;  /* 溢出部分用省略号代替 */
}

.more_news_container .swiper .item .news_title {
    width: 88%;
    font-family: none;
    font-weight: bold;
    font-size: 1.25vw;
    color: #1A1A1A;
    line-height: 1.25;
    
    /* 新增：多行文本溢出显示省略号（限制为两行） */
    display: -webkit-box;             /* 将对象作为弹性伸缩盒子模型显示 */
    -webkit-box-orient: vertical;     /* 设置伸缩盒子的子元素排列方式为从上到下 */
    -webkit-line-clamp: 2;            /* 限制显示的文本行数为 2 行 */
    overflow: hidden;                 /* 溢出内容隐藏 */
    transition: color .3s;
}
.more_news_container .swiper .item:hover .news_title{
    color: #D6020F;
}

@media (max-width: 996px) {
    .news_info_main .width_limit{
        width: 91.8%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .news_info_main::before{
        display: none;
    }
    .news_info_main .release_time{
        order: 1;
        margin-top: 15vh;
        width: 100%;
        font-size: 12px;
    }
    .news_info_main .title{
        order: 2;
        font-size: 5.4vw;
        margin: 5.4vw 0 11vw;
    }
    .news_info_main .article_main{
        order: 3;
    }
    .news_info_main .article_main{
        font-size: 3.6vw;
    }
    .news_info_main .article_main p, .news_info_main .article_main span{
        font-size: 3.6vw;
    }
    .news_info_main .article_main img{
        margin: 10vw 0;
    }
    .change_news_container{
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
    .change_news_container .bg{
        width: 8vw;
        height: 8vw;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 1vw;
        color: #fff;
    }
    .change_news_container .prev_btn,.change_news_container .next_btn{
        display: flex;
        align-items: center;
        margin: 12vw 4.6vw;
    }
    .change_news_container .prev_btn .bg{
        background-color: #E5E5E5;
    }
    .change_news_container .prev_btn .bg .gsticon{
        transform: rotate(180deg);
    }
    .change_news_container .bg .gsticon{
        font-size: 3vw;
    }
    .change_news_container .next_btn .bg{
        background-color: #C8030F;
    }
    .change_news_container .text{
        font-size: 3.6vw;
        color: #808181;
        margin: 0 3.6vw;
    }
}