body{
    overflow: hidden;
}





/* 列表 */
.news_list{
    padding: 0.8rem 0 1.7rem;
}
.news_item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 0.63rem;
    position: relative;
}
.news_item:first-child{
    margin-top: 0;
}
.news_item .news_img{
    width: 5.87rem;
    height: 3.37rem;
    border-radius: 0.1rem;
    overflow: hidden;
    position: absolute;
    left: 0;
    z-index: 2;
}
.news_item .news_img img{
    transition: all 0.5s;
}
.news_item .news_txt{
    width: calc(100% - 4.13rem);
    height: 4.45rem;
    background: #F2F9FF;
    border-radius: 0.1rem;
    overflow: hidden;
    padding: 0.78rem 0.53rem 0.67rem 2.34rem;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
}
.news_item .news_txt::before{
    content: '';
    position: absolute;
    right: 0.19rem;
    bottom: 0.27rem;
    width: 4.6rem;
    height: 2.8rem;
    background: url(../img/logo4.png) center center no-repeat;
    background-size: cover;
    opacity: 0;
}
.news_item:hover .news_txt::before{
    opacity: 1;
}
.news_item .news_txt .news_title{
    height: 0.76rem;
    font-family: Poppins-Bold;
    font-weight: bold;
    font-size: 0.25rem;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 0.06rem;
}
.news_item .news_txt .news_info{
    height: 0.54rem;
    font-family: Poppins-Light;
    font-weight: 300;
    font-size: 0.18rem;
    color: #000000;
    line-height: 1.333;
    margin-bottom: 0.25rem;
    column-gap: 0.08rem;
}
.news_item .news_txt .news_time{
    display: flex;
    align-items: center;
    font-family: Poppins-SemiBold;
    font-weight: 600;
    font-size: 0.18rem;
    color: #ACACAC;
    margin-bottom: 0.55rem;
} 
.news_item .news_txt .news_time i{
    width: 0.2rem;
    height: 0.2rem;
    display: block;
    background: url(../img/news_time1.png) center center no-repeat;
    background-size: cover;
    margin-right: 0.08rem;
}
.news_item .news_txt .news_btn {
    border: 0.01rem solid #0068B7;
    color: #0068B7;
}
.news_item .news_txt .news_btn i{
    filter: brightness(1) invert(0);
}
.news_item .news_txt .news_btn i::after{
    filter: brightness(1) invert(0);
}
.news_item .news_txt .news_btn i::before{
    background: #0068B7;
}
.news_item .news_img:hover img{
    transform: scale(1.1);
}
.news_item .news_txt:hover{
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.35rem 0.01rem rgba(0,98,255,0.18);
}
.news_item .news_txt .news_title:hover,
.news_item .news_txt .news_info:hover,
.news_item .news_txt .news_time:hover{
    color: #0068B7;
}
.news_item .news_txt .news_time:hover i{
    background: url(../img/news_time2.png) center center no-repeat;
    background-size: cover;
}
.news_item .news_txt .news_btn:hover {
    color: #fff;
}
.news_item .news_txt .news_btn:hover i{
    filter: brightness(0) invert(1);
}
.news_item .news_txt .news_btn:hover i::after{
    filter: brightness(0) invert(1);
}













/* 详情 */
.news_view{
    width: 100%;
    background: #F8F8F8;
    padding: 0.8rem 0 2.9rem;
    box-sizing: border-box;
}
.news_view .view_box{
    display: flex;
    justify-content: space-between;
}
.news_view .view_box .view_fl{
    width: calc(100% - 3.8rem);
    background: #FFFFFF;
    border-radius: 0.1rem;
    padding: 0.6rem 0.5rem;
    box-sizing: border-box;
}
.view_fl .view_title{
    width: 100%;
    text-align: center;
    font-family: Poppins-SemiBold;
    font-weight: 600;
    font-size: 0.35rem;
    color: #000000;
    line-height: 1.28;
}
.view_fl .view_time{
    margin-top: 0.16rem;
    text-align: center;
    font-family: Poppins-Regular;
    font-weight: 400;
    font-size: 0.2rem;
    color: #747474;
}
.view_fl .view_content{
    margin-top: 0.35rem;
    padding-top: 0.34rem;
    border-top: 0.01rem solid #E5E5E5;
    font-family: Poppins-Regular;
    font-weight: 400;
    font-size: 0.18rem;
    color: #595757;
    line-height: 1.666;
} 
.view_fl .view_content p{
    font-family: Poppins-Regular;
    font-weight: 400;
    font-size: 0.18rem;
    color: #595757;
    line-height: 1.666;
}
.view_fl .view_content img{
    width: revert-layer;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: inline;
}
.view_fr{
    width: 3.3rem;
    height: auto;
    position: relative;
}
.view_fr .view_list{
    position: sticky;
    top: 1.4rem;
}
.view_fr .view_list .view_li{
    width: 100%;
    height: auto;
    margin-top: 0.49rem;
}
.view_fr .view_list .view_li:first-child{
    margin-top: 0;
}
.view_fr .view_list .view_li .view_litpic{
    width: 100%;
    height: 2rem;
    overflow: hidden;
    border-radius: 0.05rem;
    margin-bottom: 0.18rem;
}
.view_fr .view_list .view_li .view_litpic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.view_fr .view_list .view_li:hover .view_litpic img{
    transform: scale(1.1);
}
.view_fr .view_list .view_li .view_date{
    font-family: Poppins-Bold;
    font-weight: bold;
    font-size: 0.16rem;
    color: #656363;
    margin-bottom: 0.12rem;
}
.view_fr .view_list .view_li .view_mintitle{
    font-family: Poppins-Bold;
    font-weight: bold;
    font-size: 0.18rem;
    color: #000000;
    line-height: 1.388;
}
.view_fr .view_list .view_li:hover .view_date,
.view_fr .view_list .view_li:hover .view_mintitle{
    color: #0068B7;
}
.view_fr .view_list .return{
    width: 0.32rem;
    height: 0.32rem;
    background: #0068B7;
    border-radius: 50%;
    margin: 0.59rem 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.view_fr .view_list .return img{
    width: 0.15rem;
    height: 0.12rem;
    object-fit: contain;
}



.view_product{
    margin-top: 1.22rem;
    position: relative;
    overflow: hidden;
}
.view_product .view_product_tit{
    margin-bottom: 0.72rem;
    font-family: Montserrat-Bold;
    font-weight: bold;
    font-size: 0.45rem;
    color: #000000;
}
.view_product .swiper-button-next,
.view_product .swiper-button-prev{
    width: 0.57rem;
    height: 0.57rem;
    border: 0.01rem solid #0068B7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: 0;
    margin: 0;
}
.view_product .swiper-button-next::after,
.view_product .swiper-button-prev::after{
    display: none;
}
.view_product .swiper-button-next img,
.view_product .swiper-button-prev img{
    width: 0.19rem;
    height: 0.17rem;
    object-fit: contain;
}
.view_product .swiper-button-next{
    right: 0rem;
}
.view_product .swiper-button-prev{
    left: auto;
    right: 0.66rem;
}
.view_product .swiper-button-next:hover,
.view_product .swiper-button-prev:hover{
    background: #0068B7;
}
.view_product .swiper-button-next:hover img,
.view_product .swiper-button-prev:hover img{
    filter: brightness(0) invert(1);
}
.view_product .view_swiper .product_item{
    width: 100%;
    height: auto;
}
.view_product .view_swiper .product_img{
    width: 100%;
    height: 2.98rem;
    overflow: hidden;
    border-radius: 0.1rem;
    margin-bottom: 0.24rem;
    background: url(../img/product_bg2.png) center no-repeat;
    background-size: cover;
}
.view_product .view_swiper .product_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.view_product .view_swiper .product_item:hover img{
    transform: scale(1.1);
}
.view_product .view_swiper .product_txt{
    padding: 0 0.22rem;
    text-align: center;
    font-family: Poppins-SemiBold;
    font-weight: 600;
    font-size: 0.2rem;
    color: #000000;
    line-height: 1.25;
}
.view_product .view_swiper .product_item:hover .product_txt{
    color: #0068B7;
}




@media screen and (max-width: 1043px) {
    .news_list{
        padding: 40px 0 90px;
    }
    
    .news_item{
        margin-top: 30px;
    }
    .news_item .news_img{
        width: 40%;
        height: auto;
        border-radius: 8px;
    }
    .news_item .news_txt{
        width: 80%;
        height: auto;
        padding: 20px 20px 20px 24%;
    }
    .news_item .news_txt::before{
        width: 50%;
        height: 100%;
        bottom: 0;
        right: 0;
        background-size: contain;
    }
    .news_item .news_txt .news_title{
        font-size: 16px;
        height: auto;
        margin-bottom: 18px;
    }
    .news_item .news_txt .news_info{
        font-size: 14px;
        height: auto;
        margin-bottom: 15px;
    }
    .news_item .news_txt .news_time{
        font-size: 14px;
        margin-bottom: 15px;
    }
    .news_item .news_txt .news_time i{
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
    .news_item .news_txt .news_btn{
        height: 36px;
        font-size: 14px;
        padding: 0 20px;
    }
    
    
    
    
    .news_view{
        padding: 40px 0 80px;
    }
    .view_fr{
        display: none;
    }
    .news_view .view_box .view_fl{
        width: 100%;
        padding: 20px;
        border-radius: 8px;
    }
    .view_fl .view_title{
        font-size: 24px;
    }
    .view_fl .view_time{
        font-size: 14px;
        margin-top: 15px;
    }
    .view_fl .view_content{
         margin-top: 20px;
        padding-top: 20px;
    }
    .view_fl .view_content,
    .view_fl .view_content p{
        font-size: 14px;
    }
    
    
    
    .view_product{
        margin-top: 30px;
        padding-top: 50px;
    }
    .view_product .view_product_tit{
       font-size: 28px;
        margin-bottom: 30px;
    }
    .view_product .view_swiper .product_img{
        height: 0;
        border-radius: 8px;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 76%;
    }
    .view_product .view_swiper .product_img img{
        object-fit: contain;
        position: absolute;
    }
    .view_product .view_swiper .product_txt{
        font-size: 16px;
    }
    .view_product .swiper-button-next,
    .view_product .swiper-button-prev{
        width: 40px;
        height: 40px;
        top: 47px;
    }
}

@media screen and (max-width: 769px) {
    .news_item{
        flex-wrap: wrap;
    }
    
    .news_item .news_img{
        width: 100%;
        position: inherit;
    }
    .news_item .news_txt{
        width: 100%;
        position: inherit;
        padding: 20px;
    }
    
    
    .view_fl .view_title{
        font-size: 20px;
    }
    .view_product{
        padding-top: 30px;
        margin-top: 15px;
    }
    .view_product .view_product_tit{
        font-size: 24px;
        margin-bottom: 20px;
    }
    .view_product .swiper-button-next, 
    .view_product .swiper-button-prev{
        width: 30px;
        height: 30px;
        top: 30px;
    }
    /*.view_product .view_swiper .product_img{*/
    /*    height: 260px;*/
    /*}*/
}




