
/* 新闻列表 */
.news_body{
    width: 100%;
    height: auto;
    background: #F7F7F7;
    padding: 1rem 0;
    box-sizing: border-box;
}

.news_list{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.56rem;
}

.news_list .news_item{
    width: 5rem;
    height: 5.2rem;
    background: #FFFFFF;
    border-radius: 0rem 0rem 0.05rem 0.05rem;
}
.news_list .news_item .news_litpic{
    width: 100%;
    height: 3.37rem;
    overflow: hidden;
}

.news_list .news_item .news_title{
    width: 4.5rem;
    height: 0.57rem;
    margin: 0.33rem auto 0.22rem;
    font-weight: 600;
    font-size: 0.2rem;
    color: #333333;
    line-height: 0.3rem;
}
.news_list .news_item .news_txt{
    padding: 0 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news_list .news_item .news_txt .news_time{
    font-family: MiSans-Regular;
    font-weight: 400;
    font-size: 0.18rem;
    color: #555555;
    line-height: 0.3rem;
}
.news_list .news_item .news_txt .news_icon{
    width: 0.35rem;
    height: 0.35rem;
    background: #FFFFFF;
    border: 0.01rem solid #346EC1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.news_list .news_item .news_txt .news_icon img{
    width: 0.1rem;
    height: 0.1rem;
    object-fit: contain;
    transition:transform .5s;
	-moz-transition:transform .5s;
	-webkit-transition:transform .5s;
	-o-transition:transform .5s;
}

.news_list .news_item:hover{
    box-shadow: 0rem 0rem 0.3rem 0.01rem rgba(0,0,0,0.15);
}
.news_list .news_item:hover .news_title{
    color: #346EC1;
}
.news_list .news_item:hover .news_time{
    color: #000000;
}
.news_list .news_item:hover .news_icon{
    background: #DC0017;
    border: 0.01rem solid #DC0017;
}
.news_list .news_item:hover .news_icon img{
    transform: rotate(45deg);
    filter: brightness(0) invert(1);
}




/* 新闻详情 */
.news_view_txt{
    width: 100%;
    padding: 0.92rem 0;
    box-sizing: border-box;
    background: #F7F7F7;
}
.news_view_txt .news_title{
    width: 100%;
    height: auto;
    line-height: 1.8;
    font-weight: bold;
    font-size: 0.35rem;
    color: #333333;
    text-align: center;
}
.news_view_txt .news_time{
    width: 100%;
    text-align: center;
    font-family: MiSans-Regular;
    margin-top: 0.36rem;
    font-weight: 400;
    font-size: 0.25rem;
    color: #555555;
}


.news_view .news_content{
    width: 100%;
    padding-top: 0.57rem;
    padding-bottom: 0.73rem;
    box-sizing: border-box;
    border-bottom: 0.01rem solid #DCDCDC;
    font-weight: 400;
    font-size: 0.18rem;
    color: #555555;
    line-height: 2;
}
.news_view .news_content p{
    font-weight: 400;
    font-size: 0.18rem;
    color: #555555;
    line-height: 2;
}
.news_view .news_content img{
    max-width: 100%;
    /*width: auto;*/
    width: revert-layer;
    height: auto;
    margin: 0 auto;
}



.news_view .news_share{
    margin-top: 0.35rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news_view .news_share .share_list{
    display: flex;
}
.news_view .news_share .share_list span{
    font-weight: 400;
    font-size: 0.16rem;
    color: #7B7B7B;
    display: block;
    margin-right: 0.2rem;
}
.news_view .news_share .share_list a{
    display: block;
    width: 0.22rem;
    height: 0.22rem;
    margin-right: 0.08rem;
}
.news_view .news_share .share_list a img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.news_view .news_share .news_updown{
    display: flex;
    gap: 0.2rem;
}
.news_view .news_share .news_updown a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2rem;
    height: 0.4rem;
    background: #346EC1;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    border-radius: 0.2rem;
    gap: 0.15rem;
}
.news_view .news_share .news_updown a img{
    width: 0.16rem;
    height: 0.1rem;
    object-fit: contain;
}
.news_view .news_share .news_updown a:hover{
    background: #DC0017;
}



