@charset "utf-8";

.header{
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    justify-content: space-between;
    z-index: 999;
    padding: 0 5.2vw;
    transition:all .4s;
}
.header_wrap{
    height:86px;
    justify-content: space-between;
}
.header.header_on,.header:hover{
    background: #fff;
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 5%);
}

.header .logo .img1{
    display: block;
}
.header .logo .img2{
    display:none;
}
.header .logo span{
    margin-left: 20px;
    font-size: 20px;
}
.header .logo img{
    max-height:40px;
}
.nav .nav_li{
    margin:0 30px;
}
.nav .nav_li .nav1 a{
    color:#fff;
    display: block;
    line-height:86px;
    position: relative;
    text-transform: uppercase;
    transition:all 0s;
    font-size: 18px;
}
.nav .nav_li .nav1 a.nav_arrow{
    padding-right: 16px;
}
.nav .nav_li .nav1 a.nav_arrow:before{
    content: "";
    position: absolute;
    top: 48%;
    right:0;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.nav .nav_li .nav1 a:after{
    content:'';
    width:0;
    height:3px;
    background: var(--theme-color);
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition:all .3s;
}
.nav .nav_li:hover .nav1 a,.nav .nav_li.cur .nav1 a{
    color:var(--theme-color);
}
.nav .nav_li .nav2{
    list-style-type: none;
    position: absolute;
    top:85px;
    left: 50%;
    line-height: 40px;
    width: calc(100% - 10.4vw);
    transform: translateX(-50%);
    display: none;
    border-radius:0 0 5px 5px;
    z-index: 10;
}
.nav .nav_li .nav2 .nav2_pro{
    background-color:#e5e5e5;
    border-radius: 20px;
    overflow: hidden;
}
.nav .nav_li .nav2 .nav2_pro .j_tit{
    width: 32%;
    padding: 47px;
}
.nav .nav_li .nav2 .nav2_pro .j_tit h4{
    font-size: 24px;
    margin-bottom: 64px;
}
.nav .nav_li .nav2 .nav2_pro .j_tit a{
    position: relative;
    font-size: 14px;
    line-height: 1.75;
    color: #fff;
    padding-left: 40px;
    padding-right: 32px;
    border-radius: 100px;
    background: var(--theme-color);
    padding-top: 9px;
    padding-bottom: 9px;
    transition: all 0.36s;
    display: inline-block;
}
.nav .nav_li .nav2 .nav2_pro .j_tit a:hover{
    background: #0AAA54;
}
.nav .nav_li .nav2 .nav2_pro .j_menu{
    width: 20%;
    background: #ededed;
    padding: 50px 0px;
    position: relative;
    overflow: hidden;
}
.nav .nav_li .nav2 .nav2_pro .j_menu .j_menu_all{
    padding: 0 25px;
    margin-bottom: 24px;
}
.nav .nav_li .nav2 .nav2_pro .j_menu .j_menu_all h4{
    margin-left: 10px;
    font-weight: bold;
}
.nav .nav_li .nav2 .nav2_pro .j_menu .j_menu_all i{
    margin-left: 30px;
}

.nav .nav_li .nav2 .nav2_pro .j_menu .j_menu_list .item{
    padding:13px 25px;
    transition:all .4s;
}
.nav .nav_li .nav2 .nav2_pro .j_menu .j_menu_list .item h4{
    flex:1;
    font-size: 14px;
}
.nav .nav_li .nav2 .nav2_pro .j_menu .j_menu_list .item:hover{
    background: #fff;
}
.nav .nav_li .nav2 .nav2_pro .j_list_w{
    flex:1;
    min-width: 0;
    background: #f9f9f9;
    padding: 40px;
}
.nav .nav_li .nav2 .nav2_pro .j_list{
    margin:-15px -30px;
}
.nav .nav_li .nav2 .nav2_pro .j_list .item{
    width: 33.333%;
    display: block;
    padding:15px 40px;
}
.nav .nav_li .nav2 .nav2_pro .j_list .item h4{
    text-align: center;
    margin-top: 14px;
}

.nav .nav_li .nav2 .nav2_pro #j_list_w1 .j_list{
    display: none;
}
.nav .nav_li .nav2 .nav2_pro #j_list_w1 .j_list:first-child{
    display: block;
}
.nav .nav_li .nav2 .nav2_pro .j_menu #j_menu_list_1 .item:hover{
    background: transparent;
    color:var(--theme-color);
}
.nav .nav_li .nav2 .nav2_pro .j_menu #j_menu_list_1 .item.cur{
    background: #fff;
}

.nav .nav_li .nav2 a i{
    font-size:12px;
}
.nav .nav_li .nav2 a:hover{
    color:var(--theme-color);
}
.nav .nav_li:hover .nav1 a:after{
    width: 100%;
}
.nav .nav_li:hover .nav1 a:before{
    border-color:var(--theme-color);
}

.nav .nav_li.cur .nav1 a.nav_arrow:before{
    border-color: var(--theme-color);
}

.header .tel{
    color:#fff;
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    font-family: 'Arial';
}
.header .tel span{
    font-weight: normal;
    font-size: 16px;
    display: block;
}
.header .tel .icon{
    width: 36px;
    height: 36px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.header .tel i{
    font-size: 14px;
    color:#fff;
}
.header.header_on .nav .nav_li .nav1 a.nav_arrow:before,.header:hover .nav .nav_li .nav1 a.nav_arrow:before{
    border-color: #000;
}
.header.header_on .logo .img1,.header:hover .logo .img1{
    display: none;
}
.header.header_on .logo .img2,.header:hover .logo .img2{
    display: block;
}
.header.header_on .nav .nav_li .nav1 a,.header:hover .nav .nav_li .nav1 a{
    color:#000;
}
.header.header_on .nav .nav_li:hover .nav1 a,.header.header_on .nav .nav_li.cur .nav1 a,.header:hover .nav .nav_li.on .nav1 a,.header:hover .nav .nav_li.cur .nav1 a{
    color:var(--theme-color);
}
.header.header_on .nav .nav_li.cur .nav1 a.nav_arrow:before,.header.header_on .nav .nav_li:hover .nav1 a.nav_arrow:before,.header:hover .nav .nav_li.cur .nav1 a.nav_arrow:before,.header:hover .nav .nav_li.on .nav1 a.nav_arrow:before{
    border-color: var(--theme-color);
}
.header.header_on .tel,.header:hover .tel{
    color:#000;
}



.banner{
    overflow: hidden;
    margin-top: 86px;
}
.banner_video{
    height:60vh;
    position: relative;
}
.banner_video:after{
    background-image: linear-gradient(99deg,#0c435566,#fff0);
    display: block;
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.banner_video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner_video_con{
    position: absolute;
    top:35%;
    z-index: 2;
    width: 100%;
    height: 100%;
}
.banner_video_con .tit{
    color:#fff;
    text-shadow: 0 1px 4px #333;
}
.banner_video_con .tit h4{
    font-size: 55px;
    line-height: 1.3;
    font-weight: bold;
}
.banner_video_con .tit p{
    font-weight: bold;
    font-size: 40px;
    line-height: 1.3;
}

.banner .item_img img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.banner .item{
    position: relative;
    overflow: hidden;
    display: block;
}

.banner .item .item_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    padding-left: 5.2vw;
    padding-top: 6vh;
}
.banner .item .item_con img{
    width: 27.86%;
}

.banner .swiper-pagination{
    text-align: center;
    bottom:20px;
    left:0;
    width:100%;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width:9px;
    height:9px;
    background: #fff;
    margin:0 5px;
    opacity: 1;
    position: relative;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--theme-color);
}

.banner .swiper-slide-active .item .item_img{
    animation: mysacle 5s ease both;
}
.banner .swiper-slide-active .item .item_con{
    animation: mytranslate 2s ease-in-out both;
}
@keyframes mytranslate {
    0% {
        transform: translateY(10%);
        opacity: 0;
    }
}
@keyframes mysacle {
    0% {
        transform: scale(1.05);
    }
}


/* tit_box1 */

.tit_box1{
    padding:40px 0 25px;
}
.tit_box1 .tit{
   flex:1;
}
.tit_box1 .tit h4{
    line-height: 1;
}
.tit_box1 .tit p{
    margin-top:12px;
    font-weight: 300;
}

.tit_box1 .arrow .swiper-button-prev,.tit_box1 .arrow .swiper-button-next{
    width: 48px;
    height: 48px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.36s;
    position: static;
    background: #f5f5f5;
    color:#999;
    margin-top: 0;
    margin-left: 16px;
    transition:all .5s;
}
.tit_box1 .arrow .swiper-button-prev:after,.tit_box1 .arrow .swiper-button-next:after{
    font-size: 16px;
    font-weight: bold;
}
.tit_box1 .arrow .swiper-button-prev:hover,.tit_box1 .arrow .swiper-button-next:hover{
    background: var(--theme-color);
    color:#fff;
}


.tit_box1 .more{
    margin-left: 40px;
}
.more_box1{
    height: 48px;
    padding: 0 30px;
    background:#f5f5f5;
    display: inline-flex;
    font-size: 14px;
    align-items: center;
}
.more_box1 i{
    font-size: 12px;
    margin-left: 10px;
}
.more_box1:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
}

.tit_box2{
    text-align: center;
    padding: 60px 0 30px;
}
.tit_box2 .tit{
    
}
.tit_box2 .tit h4{
    font-size:36px;
    line-height: 1;
}
.tit_box2 .tit p{
    color:#666;
}
.tit_box2_fff .tit h4{
    color:#fff;
}
.tit_box2-center{
    text-align: center;
}

.bgfff{
    background-color: #fff;
    border-radius: 16px;
}
.bg1{
    background:#f5f5f5;
}
.bg2{
    background:var(--theme-color);
}


/* product_list */

.product_list{
    margin: -8px;
}
.product_list .item{
    width: 25%;
    padding: 8px;
}
.product_list .item a{
    display: block;
    background: #f5f5f5;
    padding:40px 10px 60px 10px;
    position: relative;
}
.product_list .item .img img{
    mix-blend-mode: multiply;
}
.product_list .item .item_con{
    position: absolute;
    left: 10px;
    bottom:10px;
    width: calc(100% - 20px);
    background: #fff;
    padding: 11px 11px 11px 20px;
}
.product_list .item .item_con .con_box{
    flex:1;
    min-width: 0;
    padding-right: 10px;
}
.product_list .item .item_con .tit{
    font-weight: 700;
    line-height: 1.4;
    font-size: 18px;
    transition:all .5s;
}
.product_list .item .item_con .subtit{
    font-weight: 300;
    line-height: 1.4;
    font-size: 15px;
}
.product_list .item .item_con .ico i{
    font-size: 14px;
    color:#0c4355;
}

.product_list .item:hover .item_con .tit{
    color:var(--theme-color);
}

/* about */

.about_wrap{
    border-radius: 16px;
}
.about{
    overflow: hidden;
   
}
.about_con{
    flex:1;
    min-width: 0;
    padding-right: 50px;
}
.about_con .j_tit span{
    color:var(--theme-color);
    line-height: 1;
    font-size: 18px;
}
.about_con .j_tit h4{
    line-height: 1.3;
}

.about_con .desc{
    margin: 20px 0 50px;
    line-height: 1.8;
}
.about_con .desc p{
    margin-top: 15px;
}
.about_con .more .more_box1{
    background: linear-gradient(85deg,#0c4355,#00a6b6);
    color:#fff;
}
.about_img {
    overflow: hidden;
    width: 40%;
}




/* partner_list */

.partner_list_w{
    padding-left: 20px;
    padding-right: 20px;
}
.partner_list{
    overflow: hidden;
    
}
.partner_list_item{
    padding-bottom:10px;
}
#partner_list_2{
    padding-bottom: 0;
}
.partner_list_item .swiper-wrapper{
    transition-timing-function: linear;
}
.partner_list_item .swiper-slide{
    margin: 0 6px;
    width: 170px;
    display: flex;
}
.partner_list_item .item{
    background: #f5f5f5;
    border-radius: 5px;
}
.partner_list_item .item img{
    padding: 12px 20px;
    max-width: 100%;
    margin: auto;
    text-align: center;
    mix-blend-mode: multiply;
}



.arrows_out{
    position: relative;
}
.arrows_out .swiper-button-next,.arrows_out .swiper-button-prev{
    width: 40px;
    height: 40px;
    opacity: 1;
    border:1px solid #c3c3c3;
    color:#aaa;
    transition:all .5s;
}
.arrows_out .swiper-button-prev{
    left: -60px;
}
.arrows_out .swiper-button-next{
    right:-60px;
}
.arrows_out .swiper-button-next:after,.arrows_out .swiper-button-prev:after{
    font-size:16px;
}
.arrows_out .swiper-button-next:hover,.arrows_out .swiper-button-prev:hover{
    background: var(--subtheme-color);
    border-color:var(--subtheme-color);
    color:#fff;
}

/* case_con */

.case_con{
    margin:-8px;
}
.case_con .item{
    padding:8px;
    width: 20%;
}
.case_con .item .item_img{
    position: relative;
}
.case_con .item .item_img:before{
    content:'';
    display: block;
    background: linear-gradient(9deg,#292929,transparent);
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.case_con .item .item_img .img img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.case_con .item .item_img .ico{
    position: absolute;
    left: 16px;
    bottom:16px;
    z-index: 3;
}
.case_con .item .item_img .ico img{
    width: 64px;
}
.case_con .item .item_con .tit{
    font-weight: 700;
    font-size: 19.2px;
    margin-top: 12px;
    transition:all .5s;
}

.case_con .item:hover .item_con .tit{
    color:var(--theme-color);
}

/* news_wrap */

.news_list{
    overflow: hidden;
}
.news_list .item .item_img{
    overflow: hidden;
    position: relative;
}
.news_list .item .item_img:before{
    content:'';
    background: linear-gradient(to top,var(--subtheme-color),transparent);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left:0;
    bottom: 0;
    z-index: 2;
}
.news_list .item .item_img .time{
    background-color:var(--subtheme-color);
    padding: 10px 21px;
    display: inline-flex;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    color:#ccc;
    font-size: 14px;
}
.news_list .item .item_img img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.news_list .item .item_con{
    padding:20px 5px 0;
}
.news_list .item .item_con .subtit{
    font-weight: 300;
    color:var(--theme-color);
}
.news_list .item .item_con .tit{
    font-size:18px;
    font-weight: bold;
    transition:all .4s;
    line-height: 1.4;
    margin-top: 6px;
}

.news_list .item .item_con .time_more .more{
    flex:1;
}
.news_list .item .item_con .time_more .more i{
    margin-left: 6px;
}


.news_list .item:hover .item_con .tit{
    color:var(--theme-color);
}

.news .more_box1{
    background: #fff;
}
/* contact_wrap */

.contact_wrap{
    position: relative;
    z-index: 1;
    min-height: 460px;
}
.contact_img{
    position: absolute;
    right: 0;
    top: 40px;
    z-index: -1;
}
.contact_img img{
    object-fit: cover;
    width: 55vw;
    height:40vh;
    min-height: 350px;
}
.contact_con{
    height: 40vh;
    padding-top:80px;
    padding-bottom: 43px;
}
.contact_con .name{
    font-weight: 300;
    color:var(--theme-color);
}
.contact_con .tit{
    background-color: #fff;
    padding: 3px 15px 3px 0;
    display: inline-flex;
}
.contact_con .desc{
    font-size: 18px;
    max-width:38%;
    color:#555;
    font-weight: 300;
}
.contact_con .more_box1{
    background: linear-gradient(85deg, #0c4355, #00a6b6);
    color: #fff;
    margin-top: 40px;
}

/* contact_list_wrap */

.contact_list_wrap{
    position: relative;
}
.contact_list_wrap:before{
    background-color: #ccc;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    content:'';
    display: block;
    z-index: -1;
}
.contact_list{
    flex-direction: row;
    justify-content: space-between;
}
.contact_list .item{
    background-color: #fff;
    justify-content: center;
    align-items: center;
    width: 22%;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
}
.contact_list .item .img img{
    width: 40px;
}
.contact_list .item .tit{
    font-size: 18px;
    margin-left: 10px;
    line-height: 1.3;
    color:#666;
}

/* search */

.search{
    justify-content: center;
}
.search_con{
    width: 50%;
}
.search_con .form{
    position: relative;
    width: 100%;
    border-radius: 6px;
    background: #f5f5f5;
    overflow: hidden;
    margin-bottom: 24px;
}
.search_con .form input{
    width: 100%;
    height: 100%;
    padding-left: 16px;
    padding-right: 60px;
    font-size: 16px;
    color: #009143;
    border: none;
    background: transparent;
    outline: none;
    line-height: 60px;
    height: 60px;
}
.search_con .form input::placeholder{
    color:#999;
}
.search_con .form button{
    width: 43px;
    display: flex;
    background: var(--theme-color);
    border-radius: 2px;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    transition: all 0.36s;
    outline: none;
    border: none;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search_con .form button:hover{
    background: #0AAA54;
}
.search_con .form button i{
    color:#fff;
}
.search_con .menu a{
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    display: block;
    padding: 10px 24px;
    color: #333;
    line-height: 1;
    font-size: 14px;
    transition:all .4s;
    margin: 0 8px 8px 0;
}
.search_con .menu a:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}

.search_img{
    width: 52.5%;
    position: relative;
}
.search_img img{
    width: 100%;
}
.search_img:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.00) 100%);
}



/* footer */

.footer{
    padding: 50px 0 ;
    background: #f7f7f7;
    border-top: 1px solid #ccc;
}
.footer_con {
    
}
.footer_info{
    width: 30%;
}
.footer_info .logo img{
    height: 42px;
}
.footer_info .info .item{
    display: flex;
    margin-top: 12px;
}
.footer_info .info .item .img{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color:#fff;
}
.footer_info .info .item .img i{
    line-height: 1;
}
.footer_info .info .info_item{
    margin-top: 40px;
}
.footer_info .info .info_item h4{
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    padding-bottom: 6px;
    text-transform: uppercase;
}
.footer_info .info .item p{
    line-height: 1.4;
    font-size: 18px;
    flex:1;
    min-width: 0;
}
.footer_info .info .item p a{
    line-height: 1;
}

.footer_info .info .info_item .code{
    width: 100px;
    margin: 15px 0 0 0;
}
.footer_info .info .info_item .code img{
    width: 100%;
    border: 1px solid #ddd;
}
.footer_info .info .info_item .code p{
    font-size: 12px;
    text-align: center;
    margin-top: 5px;
}

.footer_menu {
    flex:1;
    min-width: 0;
}
.footer_menu .item {
    flex:1;
}

.footer_menu .item h4{
    font-size: 22px;
    text-transform: uppercase;
    padding:0 0 20px;
    font-weight: 700;
}
.footer_menu .item h5 a {
    display: block;
    color:#666;
    margin-bottom: 5px;
}

.footer_message{
    width: 28.57%;
}
.footer_message .j_tit{
    font-size: 22px;
    padding:0 0 20px;
    font-weight: 700;
}

.footer_message .form .input {
    margin-bottom: 15px;
}
.footer_message .form input, .footer_message .form textarea {
    height: 40px;
    outline: none;
    border: none;
    font-size:14px;
    padding:10px ;
    width: 100%;
    line-height: 20px;
    background:rgba(0,149,173,.08);
    color:var(--theme-color);
    transition:all .5s;
}
.footer_message .form input:focus, .footer_message .form textarea:focus{
    box-shadow: 0 0 20px rgba(29,115,137,.2);
    
}
.footer_message .form input::placeholder, .footer_message .form textarea::placeholder{
    color:var(--theme-color);
}
.footer_message .form textarea {
    height: 120px;
}

.footer_message .form button{
    border:none;
    outline: none;
    width:130px;
    height: 40px;
    background: var(--theme-color);
    color:#fff;
    cursor: pointer;
    transition:all .3s;
    justify-content: center;
    font-size: 16px;
    text-transform: capitalize;
}
.footer_message .form button i{
    margin-left:8px;
    font-size: 14px;
}

.footer_message .form button:hover, .footer_message .form .button a:hover {
    background: var(--subtheme-color);
    color:#fff;
}
.footer a:hover,.footer_menu .item h5 a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}

.footer_copyright{
    font-size:14px;
    padding:20px 0;
    display: flex;
    background: #eee;
    justify-content: center;
}
.footer_copyright a{
    padding: 0 8px;
}
.footer_copyright span{
    padding: 0 8px;
}
.footer_copyright img{
    margin:0 6px;
    max-height: 15px;
}
.footer_copyright a:hover{
    color:var(--theme-color);
}


/* page_banner */

.page_banner{
    position: relative;
    min-height: 300px;
    height: 45vh;
    margin-top: 86px;
}
.page_banner_img{
    position: relative;
    z-index: -1;
    height: 100%;
}
.page_banner_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.page_banner_img:before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background:linear-gradient(52deg, #0c4355, #00a6b600);
    z-index: 1;
}

.page_banner_con{
    position: absolute;
    left: 0;
    bottom:60px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color:#fff;
}
.page_banner_con .tit{
    font-size:36px;
    line-height: 1.2;
}
.page_banner_con .subtit{
    font-size:16px;
    margin-top: 10px;
    color:#ccc;
    font-weight: 300;
}
.page_banner_pos{
    position: absolute;
    top: 30px;
    color:#fff;
    font-weight: 300;
}
.page_nobanner_pos{
    position: static;
    color:#292929;
}
.page_banner_pos .pos img{
    width: 20px;
    margin-right: 8px;
}

.page_banner_pos .pos a{
    position: relative;
    padding-right: 24px;
}
.page_banner_pos .pos a:after{
    content: '';
    width: 6px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background-image: url(../images/bread.svg);
    background-size: 100% 100%;
}
.page_nobanner_pos .pos a:after{
    background-image: url(../images/bread_gray.png);
}
.page_banner_pos .pos a:last-child{
    padding-right: 0;
}
.page_banner_pos .pos a:last-child:after{
    display: none;
}
.page_banner_pos .pos a:hover{
    text-decoration: underline;
}

/* page_product */

.page_product_menu_wrap{
    background: linear-gradient(85deg,#0c4355,#00a6b6);
}
.page_product_menu{
    height: 55px;
}
.page_product_menu .item{
    margin-right:50px;
}
.page_product_menu .item a{
    color:#fff;
    font-weight: 300;
}

.page_product_menu .item a:hover{
    text-decoration: underline;
}
.page_product_menu .item i{
    margin-left: 6px;
    font-size: 12px;
    color:#fff;
}


/* page_about1 */

.page_about1{
    
}
.page_about1_img{
    width: 47.5%;
    border-radius: 20px;
    overflow: hidden;
}
.page_about1_con{
    flex:1;
    min-width: 0;
    padding-left: 80px;
}
.page_about1_con .tit{
    font-size:30px;
    position: relative;
    font-weight: bold;
}

.page_about1_con .content{
    margin-top:15px;
    font-size: 18px;
}
.page_about1_con .content p{
    line-height: 1.7;
    margin-bottom: 10px;
    text-indent: 2em;
}



.page_about2_wrap{
    background: url("../images/qywh_bg.png") no-repeat center;
    background-size: 100% auto;
}
.page_about2_con{
    gap:30px;
    display: flex;
}

.page_about2_con .item{
    flex:1;
    background: #fff;
    padding:50px 40px;
    border-radius: 16px;
    flex-direction: column;
    text-align: center;
}

.page_about2_con .item .img{
    width: 60px;
    text-align: center;
}
.page_about2_con .item .info{
    margin-top: 26px;
}
.page_about2_con .item .info .tit{
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
}
.page_about2_con .item .info .con{
    color:#666;
    line-height: 1.5;
}


.page_about5_wrap{
    background: url("../images/honor_bg.jpg") no-repeat center;
    background-size: cover;
    padding-bottom: 80px;
}

.page_about5_list_wrap{
    position: relative;
}
.page_about5_list{
    overflow: hidden;
}
.page_about5_list .item{
    background: #fff;
    padding: 40px;
}
.page_about5_list .item .img img{
    width: 100%;
}
.page_about5_list .item h4{
    margin-top: 16px;
    text-align: center;
}



/* page_about_choose */

.page_about_choose{
    padding:60px 0;
}
.page_about_choose .list{
    margin:30px -12px 0;
}
.page_about_choose .list .item_wrap{
    flex:1;
    padding:0 12px;
}
.page_about_choose .list .item{
    background: #fff;
    height: 100%;
    flex: 1;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all .3s;
    color:#333;
    position: relative;
    z-index: 1;
}
.page_about_choose .list .item .img{
    display: flex;
    justify-content: center;
}
.page_about_choose .list .item .img2{
    display: none;
}
.page_about_choose .list .item h4{
    font-size:22px;
    font-family: 'MontserratSemiBold';
    margin:15px 0 10px;
}
.page_about_choose .list .item .num{
    font-size: 90px;
    color: #f7f7f7;
    line-height: 0.8;
    text-align: right;
    font-style: italic;
    padding-right: 20px;
    transition: all .3s;
    font-weight: bold;
    position: absolute;
    right: 40px;
    bottom: 50px;
    z-index: -1;
}

.page_about_choose .list .item:hover .num{
    color: rgba(255,255,255,.1);
}
.page_about_choose .list .item:hover{
    background:var(--theme-color);
    color:#fff;
}
.page_about_choose .list .item:hover .img1{
    display: none;
}
.page_about_choose .list .item:hover .img2{
    display: block;
}


/* page_about_honor */

.page_about_honor{
    position: relative;
    margin: 90px 0;
}
.page_about_honor .con{
    flex:1;
    min-width: 0;
    padding-right: 5%;
}
.page_about_honor_list{
    width: 60%;
    overflow: hidden;
}
.page_about_honor_list .item .img img{
    height: 390px;
    width: 100%;
    object-fit: cover;
}
.page_about_honor_list .item h4{
    color:#333;
    text-align: center;
    padding-top: 10px;
}
.page_about_honor .swiper-button-prev,.page_about_honor .swiper-button-next{
    width: 60px;
    height: 60px;
    border:1px solid #d3d3d3;
    border-radius: 5px;
    left: 0;
    bottom: 8%;
    right: auto;
    top: auto;
    transition:all .3s;
}
.page_about_honor .swiper-button-next{
    left: 70px;
}
.page_about_honor .swiper-button-prev:after,.page_about_honor .swiper-button-next:after{
    font-size:22px;
    color:#aaa;
}
.page_about_honor .swiper-button-prev:hover,.page_about_honor .swiper-button-next:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
}
.page_about_honor .swiper-button-prev:hover:after,.page_about_honor .swiper-button-next:hover:after{
    color:#fff;
}




/* page_about_history_list */

.page_about_history_wrap{
    background: url("../images/bg5.jpg") no-repeat center;
    padding:80px 0;
    background-size: cover;
}
.page_about_tit_fff{
    color:#fff;
}
.page_about_history .con{
    color:#fff;
    flex:1;
    min-width: 0;
    padding-right: 5%;
}
.page_about_history_list{
    width: 60%;
    height: 300px;
    overflow: hidden;
    padding-left: 100px;
    position: relative;
}
.page_about_history_list:before{
    content:'';
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    left: 20px;
    top:40px;
    background:rgba(255,255,255,.7);
    
}
.page_about_history_list .item{
    color:#fff;
}
.page_about_history_list .item h4{
    font-size:32px;
    font-family: 'MontserratSemiBold';
    line-height: 1;
    margin-bottom: 20px;
}
.page_about_history_list .swiper-button-prev,.page_about_history_list .swiper-button-next{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    left: 0;
    top: 0;
    margin-top: 0;
}
.page_about_history_list .swiper-button-next{
    top: 50%;
    background: #fff;
}

.page_about_history_list .swiper-button-prev:after, .page_about_history_list .swiper-button-next:after{
    color:#fff;
    font-size:16px;
    transform: rotate(90deg);
}
.page_about_history_list .swiper-button-next:after,.page_about_history_list .swiper-button-prev:hover{
    color:var(--theme-color);
}


/* page_about_visits */

.page_about_visits{
    text-align: center;
    padding:80px 0;
}
.page_about_visits_list{
    position: relative;
    overflow: hidden;
    padding:30px 0 60px;
}
.page_about_visits_list .item .img img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* page_about_culture */

.page_about_culture_wrap{
    padding:80px 0;
    background: url("../images/bg20.jpg") no-repeat center;
    background-size: cover;
}
.page_about_culture{
    padding-top: 50px;
}
.page_about_culture .item_img{
    width: 50%;
}
.page_about_culture .item_img img{
    border-radius: 20px;
}
.page_about_culture .list{
    flex:1;
    padding-left: 6%;
    min-width: 0;
}
.page_about_culture .list .item{
    display: flex;
    padding:40px 0;
    align-items: center;
    border-bottom: 1px solid #c5c5c5;
}
.page_about_culture .list .item:first-child{
    padding-top: 20px;
}
.page_about_culture .list .item .img img{
    width: 72px;
    height: 72px;
}
.page_about_culture .list .item .con{
    flex:1;
    min-width: 0;
    padding-left: 40px;
    color:#333;
}
.page_about_culture .list .item .con h4{
    font-size:24px;
    font-family: 'MontserratSemiBold';
}

/* page_about_photo1 */

.page_about_photo1{
    padding-bottom: 80px;
}
.page_about_photo1 .list{
    padding:40px 0 60px;
    overflow: hidden;
    position: relative;
}

.page_about_photo1 .list .img img{
    width: 100%;
    height: 355px;
    border-radius: 20px;
    object-fit: cover;
}
.page_about_photo1 .swiper-pagination-bullet-active{
    background: var(--theme-color);
}

.page_about_photo2{
    padding-bottom: 80px;
}
.page_about_photo2 .list{
    padding: 40px 0 0;
    margin:0 -33px;
}
.page_about_photo2 .list .item{
    flex:1;
    padding:0 33px;
    position: relative;
}
.page_about_photo2 .list .item:after{
    content:'>';
    font-size:30px;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    font-family:cursive;
    color:#999;
}
.page_about_photo2 .list .item .img img{
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
}
.page_about_photo2 .list .item h4{
    text-align: center;
    line-height: 50px;
    color:#333;
    font-size:18px;
}

/* page_case_list */

.page_case_list{
    
}
.page_case_list .list{
    margin:-12px;
}
.page_case_list .item{
    padding:12px;
    width:25%;
}
.page_case_list .item a{
    display: block;
    overflow: hidden;
    position: relative;
}
.page_case_list .item a:before{
    content:'';
    background-image: linear-gradient(47deg, var(--subtheme-color), #fff0);
    width:100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    z-index: 2;
}
.page_case_list .img img{
    width: 100%;
    height: 100%;
    min-height: 46vh;
    object-fit: cover;
}

.page_case_list .item .tit{
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 24px;
    color:#fff;
}
.page_case_list .item .ico{
    width: 64px;
    position: absolute;
    left: 24px;
    top: 24px;
    z-index: 3;
}
.page_case_list a:hover .item_con:after{
    width: 100%;
}
.page_case_list a:hover .item_con .more{
    color:var(--theme-color);
}

/* page_download_center */

.page_download_center{
    padding:30px 0 50px;
}
.page_download_center .list_item {
    margin-bottom: 30px;
}
.page_download_center .list_item .menu{
    display: flex;
    color:#333;
    font-size:24px;
    padding:30px 40px;
    background: #fff;
    cursor: pointer;
    transition:all .3s;
    justify-content: space-between;
    font-family: 'MontserratSemiBold';
    align-items: center;
}
.page_download_center .list_item .menu i{
    font-size:20px;
    color:#333;
    transition:all .3s;
}
.page_download_center .list_item .menu:hover,.page_download_center .list_item .menu.cur{
    color:var(--theme-color);   
}

.page_download_tit .tit p{
    max-width: 70%;
    margin:auto;
}
.page_download_tit .tit p a{
    color:var(--theme-color);
}
.page_download_tit .tit p a:hover{
    text-decoration: underline;
}



.page_download_center .list_item .list{
    display: none;
    padding:0 40px;
    background: #fff;
}
.page_download_center .list_item:first-child .list{
    display: block;
}

.page_download_center .list_item .list .item{
    display: flex;
    height: 90px;
    display: flex;
    align-items: center;
    border-top: 1px solid #ebebeb;
}

.page_download_center .list_item .list .item .pdf{
    width: 50px;
    height: 25px;
    border:1px solid #a9a9a9;
    font-family: 'MontserratLight';
    font-size:12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.page_download_center .list_item .list .item h4{
    font-size:16px;
    color:#2d2d2d;
    margin-left:25px;
    flex:1;
}
.page_download_center .list_item .list .item .btn{
    border:1px solid #c3c3c3;
    padding:5px 20px;
    transition:all .3s;
    border-radius: 5px;
}
.page_download_center .list_item .list .item .btn i{
    margin-left: 8px;
    font-size:16px;
}
.page_download_center .list_item .list .item:hover h4{
    color:var(--theme-color);
}
.page_download_center .list_item .list .item:hover .btn{
   background: var(--theme-color);
   border-color:var(--theme-color);
   color:#fff;
}


.page_download_center_more{
    text-align: center ;
    padding-bottom: 80px;
}
.page_download_center_more a{
    padding-bottom: 5px;
    display: inline-block;
}
.page_download_center_more a:after{
    width: 100%;
    height: 1px;
    background: #666;
    content:'';
    display: block;
}
.page_download_center_more a:hover{
    color:var(--theme-color);
}
.page_download_center_more a:hover:after{
    background: var(--theme-color);
}


/* page_product_video */


.page_product_video{
    padding:50px 0 80px;
}
.page_product_video .list{
    margin:0 -17px;
}
.page_product_video .list .item{
    width: 33.33%;
    padding:0 17px;
}
.page_product_video .list .item iframe{
    height: 385px;
}




/* page_case_detail */


.page_case_detail{
    flex:1;
    min-width: 0;
}
.page_case_detail h1{
    font-size: 38px;
    line-height: 1.3;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.page_case_detail dl,.page_case_detail ol,.page_case_detail ul,.page_case_detail li{
    list-style: initial;    
}
.page_case_detail h2{
    font-size:28px;
    font-weight: normal;
    color:#000;
    margin-top: 40px;
    margin-bottom: 20px;
}
.page_case_detail h3{
    font-size: 20px;
    margin:20px 0 10px;
}
.page_case_detail table{
    border: 1px solid #eee;

}
.page_case_detail table tr th{
    background: #f5f5f5;
}
.page_case_detail .more_style5{
    margin:60px auto 0;
    background: #ccc;
}


/* product_detail */


.jy_pin_wrap{
    
}
.pd_detail{
   
}
.pd_detail_hd{
    
}
.pd_detail_hd .pics{
    width:50%;
    height: 550px;
}
.pd_detail_hd .pics .mySwiper2{
    flex:1;
    min-width: 0;
    height:100%;
    margin:0;
    overflow: hidden;
    position: relative;
    margin-left: 20px;
    background: #f4f4f4;
}
.pd_detail_hd .pics .mySwiper2 .swiper-pagination-bullet-active{
    background: var(--theme-color);
}
.pd_detail_hd .pics .mySwiper2 .img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: #f4f4f4;
}
.pd_detail_hd .pics .mySwiper2 .img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.pd_detail_hd .pics .mySwiper1_w{
    position: relative;
    padding:26px 0;
    width: 90px;
}
.pd_detail_hd .pics .mySwiper1_w .swiper-wrapper{
    flex-direction: column;
}
.pd_detail_hd .pics .mySwiper{
    overflow: hidden;
    height: 100%;
}

.pd_detail_hd .pics .mySwiper .swiper-slide .img{
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #fff;
    overflow: hidden;
    height:100%;
    width: 100%;
    padding: 5px;
}
.pd_detail_hd .pics .mySwiper .swiper-slide.swiper-slide-thumb-active .img{
    border:1px solid var(--subtheme-color);
    
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img img{
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.pd_detail_hd .pics .mySwiper1_w .swiper-button-next,.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev{
    z-index: 99;
    width:100%;
    height: 16px;
    opacity: 1;
    color:#333;
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    margin:0;
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-next:after,.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev:after{
    font-size:8px;
    font-weight: bold;
    transform: rotate(90deg);
}

.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev{
    top: 0;
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-next{
    top: auto;
    bottom: 0;
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-next:hover,.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev:hover{
    background: var(--theme-color);
    color:#fff;
}


.pd_detail_hd .infos{
    flex: 1;
    padding:10px 0 0 4%;
    min-width: 0;
}
.pd_detail_hd .infos h3{
    font-size: 20px;
    color:#666;
    font-weight: normal;
}
.pd_detail_hd .infos h1{
    line-height: 1.2;
    font-size: 40px;
    font-weight: bold;
}
.pd_detail_hd .infos h5{
    color:var(--theme-color);
    font-size: 20px;
}
.pd_detail_hd .infos .desc{
    margin:20px 0 0;
    line-height: 1.8;
    font-weight: 300;
}

.pd_detail_hd .infos .cert{
    margin-top: 20px;
}
.pd_detail_hd .infos .cert img{
    filter: saturate(0%);
    object-fit: contain;
    width: 60px;
    height: 60px;
}
.pd_detail_hd .infos .list{
    gap:15px;
}
.pd_detail_hd .infos .list .item{
    text-align: center;
    background: #fff;
    flex:1;
    border-radius: 8px;
    padding:15px 10px;
}
.pd_detail_hd .infos .list .item .item_ico i{
    font-size: 30px;
    line-height: 1;
    color:var(--subtheme-color);
}
.pd_detail_hd .infos .list .item .item_tit{
    font-size: 14px;
    margin-top: 6px;
    color:#666;
}


.pd_detail_hd .infos .btns{
    margin-top:60px;
}
.pd_detail_hd .infos .btns .btn{
    align-items: center;
    text-transform: uppercase;
    margin-right:20px;
    line-height: 1;
    display: flex;
    background: linear-gradient(to right ,var(--subtheme-color) , var(--theme-color));
    color:#fff;
    height: 48px;
    padding:0 40px;
    cursor: pointer;
}
.pd_detail_hd .infos .btns .btn i{
    line-height: 1;
    vertical-align: middle;
    margin-right:10px;
    display: inline-block;
    font-size: 22px;
}
.pd_detail_hd .infos .btns .btn.btn2{
    background:#777;
}
.pd_detail_hd .infos .btns .btn:hover{
    background: var(--subtheme-color);
}


.pd_detail_intro{
    background: #fff;
}

.pd_detail_intro_tit-download{
    padding:15px 0;
    position: -webkit-sticky;
    position: sticky;
    top: 86px;
    background: #fff;
    z-index: 50;
    border-bottom: 1px solid #ccc;
}
.pd_detail_intro_tit-download:before{
    content:'';
    width: 500%;
    height: 1px;
    background: #ccc;
    position: absolute;
    left: -250%;
    bottom: -1px;
}

.pd_detail_intro_tit{
    flex:1;
    min-width: 0;
}
.pd_detail_intro_tit .item{
    cursor: pointer;
    line-height: 1.5;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 30px;
    display: inline-block;
    position: relative;
}
.pd_detail_intro_tit .item:first-child{
    padding-left: 0;
}

.pd_detail_intro_tit .item:after{
    content:'';
    width: 1px;
    height: 20px;
    background: #ccc;
    position: absolute;
    right: 0;
    top:15px;
}
.pd_detail_intro_tit .item:last-child:after{
    display: none;
}
.pd_detail_intro_tit .item.cur{
    color:var(--theme-color);
    font-weight: bold;
}

.pd_detail_intro_tit-download .download{
    align-items: center;
    text-transform: uppercase;
    margin-right: 20px;
    line-height: 1;
    display: flex;
    background: linear-gradient(to right, var(--subtheme-color), var(--theme-color));
    color: #fff;
    height: 48px;
    padding: 0 30px;
    cursor: pointer;
}
.pd_detail_intro_tit-download .download i{
    margin-left: 10px;
    font-size: 12px;
}
.pd_detail_intro_tit-download .download:hover{
    background: var(--subtheme-color);
}

.pd_detail_intro .jy_item .j_tit{
    margin-bottom: 30px;
    padding-top: 50px;
}
.pd_detail_intro .jy_item .j_tit p{
    font-size: 18px;
    color:#666;
}
.pd_detail_intro .jy_item .j_tit h4{
    font-size:28px;
    font-weight: bold;
    line-height: 1.3;
}
.pd_detail_intro .jy_item .item_con{
    flex:1;
    min-width: 0;
}

.pd_detail_intro .jy_item .item_con .con p{
    line-height: 1.8;
}
.pd_detail_intro .pd_detail_intro1{
    padding: 60px 0 0;
}
.pd_detail_intro .pd_detail_intro1 .item_img{
    width:45%;
    padding-right: 3%;
}
.pd_detail_intro .pd_detail_intro1 .item_img img{
    width: 100%;
    object-fit: cover;
}
.pd_detail_intro .pd_detail_intro1 .item_con h4{
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 10px;
}
.pd_detail_intro .pd_detail_intro1 .item_con p{
    font-weight: 300;
}


.pd_detail_intro2 .con table{
    width: 100%!important;
}
.pd_detail_intro2 .con table tr td{
    border: 1px solid #000;
    padding: 5px 10px!important;
}
.pd_detail_intro3 .list{
    gap:16px;
}
.pd_detail_intro3 .list .item{
    width: 49%;
    background-color: #fff;
    border: 1px solid #d1d1d1;
    align-items: center;
    padding: 20px;
    display: flex;
}
.pd_detail_intro3 .list .item .ico{
    width: 50px;
    margin-right: 15px;
}
.pd_detail_intro3 .list .item .con h4{
    font-weight:600;
    font-size: 18px;
}
.pd_detail_intro3 .list .item .con p{
    line-height: 1.3;
    margin-top: 5px;
    font-weight:300;
}

.page_product_contact_wrap{
    padding:80px 0 0;
}
.page_product_contact{
    background: #fff;
    padding: 0 70px 70px;
}

.page_product_contact_flex .l_tel{
    width: 50%;
    padding:30px 6% 0 0;
}
.page_product_contact_flex .l_tel .list .item{
    display: flex;
    width: 33.333%;
}
.page_product_contact_flex .l_tel .list .item .ico{
    width: 42px;
    height: 42px;
    border:1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.page_product_contact_flex .l_tel .list .item .ico i{
    font-size:18px;
    color:#666;
}
.page_product_contact_flex .l_tel .list .item .con{
    flex:1;
    min-width: 0;
    padding-left:10px;
}

.page_product_contact_flex .list .item:last-child{
    width: 100%;
    margin-top:20px;
}
.page_product_contact_flex .l_tel .map{
    margin-top: 30px;
}
.page_product_contact_flex .l_tel .map img{
    width: 100%;
}

/* page_news */

.page_latest_news_tit{
    color:#333;
}

.page_latest_news{
    position: relative;
    overflow: hidden;
}
.page_latest_news .item{
    border-radius:16px;
    overflow: hidden;
    background: #fff;
    overflow: hidden;
}
.page_latest_news .item_con{
    flex:1;
    min-width: 0;
    padding:50px 65px;
}

.page_latest_news .item_con .tit{
    line-height: 1.3;
    transition:all .4s;
    color:#000;
    font-size: 24px;
    margin-top: 16px;
}
.page_latest_news .item_con .time{
    color:#999;
    font-size: 14px;
}
.page_latest_news .item_con .desc{
    color:#666;
    margin-top: 10px;
}
.page_latest_news .item_con .more{
    border-radius: 100px;
    width: 145px;
    height: 45px;
    border-radius: 100px;
    background:var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .5s;
    color:#fff;
    margin-top: 50px;
}
.page_latest_news .item_con .more:hover{
    background:#0b8346;
}
.page_latest_news .item_con .more i{
    margin-left: 8px;
}
.page_latest_news .item_img{
    width: 50%;
}
.page_latest_news .item_img img{
    
    object-fit: cover;
}
.page_latest_news .arrow{
    position: absolute;
    right: 50px;
    bottom: 50px;
}
.page_latest_news .arrow .swiper-button-prev,.page_latest_news .arrow .swiper-button-next{
    position: initial;
    width: 40px;
    height: 40px;
    background:#f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    transition: all .5s;
    margin-left:10px;
}
.page_latest_news .arrow .swiper-button-prev:after,.page_latest_news .arrow .swiper-button-next:after{
    font-size: 16px;
    font-weight: bold;
}
.page_latest_news .arrow .swiper-button-prev:hover,.page_latest_news .arrow .swiper-button-next:hover{
    background: var(--theme-color);
    color:#fff;
}

.page_latest_news .item:hover .item_con .tit{
    color:var(--theme-color);
}
.page_latest_news .item:hover .item_con .more{
    background: var(--theme-color);
    color:#fff;
}

/* page_menu_public */

.page_menu_public .input_list{
    position: relative;
}
.page_menu_public .name{
    font-family: 'PoppinsSemiBold';
    color:#333;
    margin-right: 10px;
}
.page_menu_public .input{
    width: 300px;
    height:56px;
    display: flex;
    justify-content: space-between;
    border-radius: 100px;
    border: 1px solid #ddd;
    padding: 0 30px 0 20px;
    align-items: center;
    cursor: pointer;
    transition:all .5s;
}
.page_menu_public .input.cur{
    border-color: var(--theme-color);
    color:var(--theme-color);
}
.page_menu_public .list{
    display: none;
    width: 260px;
    position: absolute;
    right: 20px;
    top: 56px;
    background: #fff;
    z-index: 30;
    border-radius:10px;
    border-top: none;
    padding: 10px 10px 20px 20px;
}
.page_menu_public .item{
    margin-top: 10px;
}

.page_menu_public .item a:hover{
    border-color: var(--theme-color);
    color:var(--theme-color);
}
.page_menu_public .item.all a,.page_menu_public .item.cur a{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}

.page_news_tit .menu{
    display: flex;
    align-items: center;
}
.page_news_tit .menu a{
    font-size:18px;
    display: block;
    font-family: 'MontserratLight';
    margin-left: 100px;
    position: relative;
}

.page_news_tit .menu a:after{
    content:'';
    width: 0;
    height: 2px;
    background: var(--theme-color);
    display: block;
    position: absolute;
    left: 0;
    bottom:-17px;
    transition:all .3s;
}
.page_news_tit .menu a.cur,.page_news_tit .menu a:hover{
    color:var(--theme-color);
}
.page_news_tit .menu a:hover:after,.page_news_tit .menu a.cur:after{
    width: 100%;
}

.page_news_list .list{
    margin:-10px;
}
.page_news_list .item{
    width:25%;
    display: block;
    padding: 10px;
}
.page_news_list .item a{
    display: block;
    transition:all .5s;
    background: #f4f4f4;
    height: 100%;
}
.page_news_list .item .item_img{
    overflow: hidden;
    position: relative;
}
.page_news_list .item .item_img img{
    width: 100%;
    height:200px;
    object-fit: cover;
}
.page_news_list .item .item_img:before{
    content: '';
    background: linear-gradient(to top, var(--subtheme-color), transparent);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.page_news_list .item .item_img .time{
    background-color: var(--subtheme-color);
    padding: 10px 21px;
    display: inline-flex;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    color: #ccc;
    font-size: 14px;
}
.page_news_list .item .item_con{
    padding: 20px 18px;
}

.page_news_list .item .item_con .subtit{
    font-weight: 300;
    color: var(--theme-color);
}
.page_news_list .item .item_con .tit{
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    margin-top: 10px;
    transition:all .5s;
}

.page_news_list .item .item_con .btn{
    color:#333;
    width:40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #666;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .5s;
}
.page_news_list .item .item_con .btn i{
    display: block;
    transition:all .5s;
    font-size: 12px;
}
.page_news_list .item a:hover{
    border-color: var(--theme-color);
}

.page_news_list .item a:hover .item_con .tit{
    color:var(--theme-color);
}
.page_news_list .item a:hover .item_con .btn{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}
.page_news_list .item a:hover .item_con .btn i{
    transform: rotate(-45deg);
}

.no_banner_pos{
    padding:110px 0 0;
}
.no_banner_pos .pos i{
    font-size:18px;
    margin-right: 6px;
}
.no_banner_pos .pos a{
    position: relative;
    padding-right: 24px;
    font-size: 14px;
    opacity: .8;
}
.no_banner_pos .pos a:after{
    content: '';
    width: 6px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    background-image: url(../images/breadh.svg);
    background-size: 100% 100%;
}
.no_banner_pos .pos a:last-child{
    padding-right: 0;
}
.no_banner_pos .pos a:last-child:after{
    display: none;
}
.no_banner_pos .pos a:hover{
    color:var(--theme-color);
}
/* page_news_detail */


.page_news_detail_wrap{
    align-items: flex-start;
}

.page_news_detail>h1{
    font-size:38px;
    line-height: 1.3;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.page_news_detail .info{
    margin-top: 26px;
    font-size: 14px;
    justify-content: space-between;
}

.page_news_detail .info .item span{
    color:var(--theme-color);
}
.page_news_detail .info .item i{
    font-size: 16px;
    margin-right: 8px;
    color:var(--theme-color);
}

.page_news_detail .desc{
    min-height: 20vh;
    padding: 40px 0 20px;
}
.page_news_detail .desc h2{
    font-size: 24px;
    position: relative;
    padding-left: 18px;
    line-height: 1.3;
    margin:50px 0 20px;
    color:var(--theme-color);
}
.page_news_detail .desc h2:before{
    content:'';
    width: 5px;
    height: 22px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    top:5px;
    display: block;
}
.page_news_detail .desc h4{
    font-size: 20px;
    font-weight: bold;
    padding-left: 18px;
    position: relative;
    line-height: 1.2;
    margin:30px 0 20px;
}
.page_news_detail .desc h4:before{
    content:'';
    width:6px;
    height:6px;
    border:2px solid var(--theme-color);
    left: 0;
    top: 7px;
    position: absolute;
    display: block;
    transform: rotate(45deg);
}

.page_news_detail .desc h5{
    color:#666;
    margin: 30px 0 20px;
    background: #f5f5f5;
    padding:20px 30px;
    border-radius: 10px;
}
.page_news_detail .desc h5:first-child{
    margin-top: 0;
}

.page_news_detail .desc p{
    margin-bottom: 10px;
}
.page_news_detail .desc a{
    font-weight: bold;
    color:var(--theme-color);
    text-decoration: underline;
}
.page_news_detail .desc a:hover{
    color:blue;
}

.page_news_detail .mark{
    border-bottom: 2px dashed #ccc;
    padding-bottom: 30px;
}
.page_news_detail .mark b{
    color:blue;
    font-size: 18px;
    display: inline-block;
}

.page_news_detail .tag{
    padding-top: 20px;
}
.page_news_detail .tag .j_tit{
    color:#999;
    font-size: 14px;
}
.page_news_detail .tag .j_tit i{
    margin-right: 5px;
}
.page_news_detail .tag .ul{
    flex-wrap: wrap;
    flex:1;
    min-width: 0;
}
.page_news_detail .tag .li{
    margin:5px;
}
.page_news_detail .tag .li a{
    background: rgba(0,165,81,.06);
    font-size: 14px;
    padding:3px 10px;
    border-radius: 3px;
    color: var(--theme-color);
    display:block;
}
.page_news_detail .tag .li a:hover{
    background: var(--theme-color);
    color:#fff;
}

/* page_public_content */

.page_public_menu_wrap{
    position: sticky;
    top: 86px;
    z-index: 1000;
    background: #f4f4f4;
    padding: 10px 0;
}
.page_public_menu .menu{
    flex:1;
}
.page_public_menu .menu .item{
    display: inline-block;
    height: 42px;
    line-height: 42px;
    padding: 0 20px;
    position: relative;
    cursor: pointer;
}
.page_public_menu .menu .item.cur{
    color:var(--theme-color);
}
.page_public_menu .menu .item:after{
    content:'';
    width: 1px;
    height: 30px;
    display: block;
    background: #ccc;
    position: absolute;
    right: 0;
    top: 9px;
}
.page_public_menu .menu .item:last-child:after{
    display: none;
}
.page_public_menu .j_btn{
    background: linear-gradient(85deg, #0c4355, #00a6b6);
    color: #fff;
    height: 42px;
}


.page_public_content{
    
}
.page_public_content .item{
    font-weight: 300;
    font-size: 19px;
    margin-bottom: 20px;
}
.page_public_content .item h2{
    font-size: 32px;
    font-weight: bold;
}
.page_public_content .item h4{
    font-weight: bold;
    font-size: 22px;
    padding: 10px 0;
}
.page_public_content .item ul{
    padding: 10px 0 10px 20px;
}
.page_public_content .item li{
    list-style: disc;
}


.left_con{
    flex:1;
    position: relative;
    min-width: 0;
    padding-right: 100px;
}
.left_con:before{
    content: '';
    background: #ccc;
    height: 100%;
    display: block;
    position: absolute;
    right:50px;
    width: 1px;
}

/* right_con */

.right_con{
    width:30%;
    position: sticky;
    top: 140px;
    height: 100%;
}

.right_con .outline{
    margin-bottom: 15px;
    box-shadow: 1px 1px 12px #00000036;
}
.right_con_contact .imgs{
    position: relative;
}
.right_con_contact .imgs:before{
    content:'';
    display: block;
    background-image: linear-gradient(to top, var(--subtheme-color), transparent);
    align-items: flex-end;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.right_con_contact .imgs img{
    width: 100%;
}
.right_con_contact .imgs .tit{
    position: absolute;
    left: 25px;
    bottom: 25px;
    color:#fff;
    line-height: 1;
}
.right_con_contact .cons{
    padding:20px 25px 25px;
}
.right_con_contact .cons .item{
    display: flex;
}
.right_con_contact .cons .item i{
    font-size: 18px;
    line-height: 1;
    margin-top: 10px;
}
.right_con_contact .cons .item span{
    font-size: 20px;
    font-weight: 300;
    margin-left:8px;
}
.right_con_contact .cons .item span a:hover{
    text-decoration: underline;
    color:var(--theme-color);
}
.right_con_contact .cons .item.item_code{
    align-items: flex-start;
    margin-top: 10px;
}
.right_con_contact .cons .item.item_code span em{
    display: block;
    font-size: 14px;
    color:#666;
    text-align: center;
}

.right_con_contact .form{
    padding:25px;
}
.right_con_contact .form input{
    height: 50px;
    margin-bottom: 10px;
    outline: none;
    border: none;
    background: #f4f4f4;
    width: 100%;
    padding: 6px 20px;
}
.right_con_contact .form button{
    background: linear-gradient(85deg, #0c4355, #00a6b6);
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
}
.right_con_contact .form button:hover{
    background: var(--subtheme-color);
}

.page_recommended_news{
    width: 40%;
    padding-left: 10%;
    position: sticky;
    top: 140px;
}
.page_recommended_news .j_tit{
    font-size: 20px;
    font-weight: bold;
}
.page_recommended_news .list{
    padding-top: 8px;
}
.page_recommended_news .list .item{
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(78, 89, 105, .2);
}
.page_recommended_news .list .item:last-child{
    border-bottom: none;
}
.page_recommended_news .list .item .item_img{
    width: 42%;
    border-radius: 8px;
    overflow: hidden;
}
.page_recommended_news .list .item .item_con{
    flex:1;
    min-width: 0;
    padding-left: 16px;
}
.page_recommended_news .list .item .item_con .time{
    font-size: 14px;
    color:#999;
}
.page_recommended_news .list .item .item_con .tit{
    font-weight: bold;
    transition:all .4s;
}
.page_recommended_news .list .item:hover .item_con .tit{
    color:var(--theme-color);
}


.go_back{
   
}
.go_back a{
    display: block;
    font-size:14px;
    height: 44px;
    background: #f5f5f5;
    line-height: 44px;
    text-align: center;
}
.go_back a:hover{
    background: var(--theme-color);
    color:#fff;
}


/* page_contact */

/* page_contact */

.page_contact_tit{
    text-align: center;
}
.page_contact_tit h4{
    color:#1d2129;
    font-size: 40px;
    font-weight: bold;
}
.page_contact_tit h4:after{
    content:'';
    width: 80px;
    height: 4px;
    background: var(--theme-color);
    display: block;
    margin: 10px auto 20px;
}
.page_contact_tit p{
    color:#4b5563;
    font-size: 20px;
}
.page_contact_con{
    gap: 50px;
}
.page_contact_con .j_bg{
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    background: #f2f3f5;
    padding: 30px;
}
.page_contact_con .j_message,.page_contact_con .j_contact{
    flex:1;
}
.page_contact_con .j_message .input_box{
    display: flex;
    margin:-5px -10px;
}
.page_contact_con .j_message .input_box .input{
    flex:1;
    padding:10px;
}
.page_contact_con .j_message .input_box .input input,.page_contact_con .j_message .input_box .input textarea{
    width: 100%;
    height: 50px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #fff;
    outline: none;
    padding:10px 20px;
    line-height: 30px;
    transition:all .5s;
    font-size: 16px;
}
.page_contact_con .j_message .input_box .input input::placeholder,.page_contact_con .j_message .input_box .input textarea::placeholder{
    color:#999;
    font-size: 14px;
    font-family: "PingFang SC","Source Han Sans CN","Hiragino Sans GB","Heiti SC","Microsoft Yahei",Helvetica,Arial,sans-serif;
}
.page_contact_con .j_message .input_box .input input:focus,.page_contact_con .j_message .input_box .input textarea:focus{
    border-color:  #0095ad50;
}
.page_contact_con .j_message .input_box .input textarea{
    height: 150px;
}
.page_contact_con .j_message .button button{
    width: 200px;
    height: 50px;
    background:var(--theme-color);
    color:#fff;
    border: none;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition:all .5s;
}

.page_contact_con .j_message .button button:hover{
    background: var(--subtheme-color);
}
.page_contact_con .j_message .txt{
    margin-top: 60px;
    color:#4b5563;
    font-size: 15px;
}
.page_contact_con .j_message .txt p{
    margin-bottom: 6px;
}

.page_contact_con .j_contact{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.page_contact_con .j_tit{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}
.page_contact_con .j_contact .j_list .item{
    display: flex;
    margin-bottom:30px;
}
.page_contact_con .j_contact .j_list .item:last-child{
    margin-bottom: 0;
}
.page_contact_con .j_contact .j_list .item .ico{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background:#0095ad10;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_contact_con .j_contact .j_list .item .ico i{
    font-size: 20px;
    color:var(--theme-color);
}
.page_contact_con .j_contact .j_list .item .con{
    padding-left: 15px;
}
.page_contact_con .j_contact .j_list .item .con h4{
    font-weight: bold;
}
.page_contact_con .j_contact .j_list .item .con p{
    color:#4b5563;
}
.page_contact_con .j_contact .j_list .item .con p a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}
.page_contact_con .j_contact .k_list .item{
    width: 110px;
    margin-right: 20px;
    border: 6px solid #fff;
    border-radius: 6px;
}
.page_contact_con .j_contact .k_list .item h4{
    height: 20px;
    background: #fff;
    font-size: 12px;
    text-align: center;
    color:#666;
}



/* page_tag */

.page_tag{
    background: #f5f5f5;
    margin:50px 0 20px;
    border-radius: 10px;
    padding: 20px;
}
.page_tag h4{
    margin-bottom: 3px;
    font-size: 18px;
}
.page_tag h4 b{
    color:var(--theme-color);
    padding: 0 6px;
    text-decoration: underline;
}
.page_tag p{
    font-size: 14px;
    color: #758697;
    margin-top: 5px;
}


/* return */

.return_page{
    position: relative;
    margin-top: 30px;
}
.return_page a{
    padding: 32px;
    width: 100%;
    background: #F5F5F5;
    display: block;
}
.return_page a span{
    color:rgba(51, 51, 51, 0.60);
    font-size: 14px;
}
.return_page a h4{
    line-height: 1.6;
    font-weight: bold;
    margin-top: 16px;
    transition:all .4s;
    text-align: left;
    font-size: 18px;
}
.return_page a p{
    font-size: 14px;
    color:#999;
    line-height: 1.8;
    margin-top: 8px;
}
.return_page a:hover h4{
    color:var(--theme-color);
}
.return_page a.prev{
    margin-bottom: 24px;
}
.return_page a.next{
    text-align: right;
}




