@charset "utf-8";

.header{
    height: 80px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    justify-content: space-between;
    z-index: 999;
    border-bottom: 1px solid transparent;
}
.header_hd_wrap{
    background: var(--theme-color);
    height: 40px;
}
.header_hd_wrap .wrapper{
    height: 100%;
}
.header_hd_hd{
    flex:1;
}
.header_hd_hd .con a{
    color:#fff;
    display: flex;
    align-items: center;
    margin-right: 40px;
    cursor: pointer;
}
.header_hd_hd .con a i{
    font-size:20px;
    margin-right:5px;
}
.header_hd_hd .con a span{
    font-family: 'MontserratLight';
    font-size: 14px;
}
.header_hd_hd .con a:hover span{
    text-decoration: underline;
}
.header_hd_bd .follow_list a{
    width: 24px;
    height: 24px;
}
.header_hd_bd .follow_list a svg{
    width: 14px;
    height: 14px;
}
.header.header_on{
    background: #fff;
    border-color: rgba(0, 0, 0, .13);
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}
.header_bd{
    justify-content: space-between;
    position: relative;
}
.header_bd .logo img{
    max-height: 70px;
}
.header_bd .logo .logo2{
    display: none;
}
.nav .nav_li{
    margin:0 28px;
}
.nav .nav_li .nav1{
    position: relative;
}
.nav .nav_li .nav1 a{
    color:#fff;
    display: block;
    line-height:80px;
    position: relative;
    text-transform: capitalize;
    transition:all 0s;
    max-width: 135px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    font-size:16px;
    font-weight: bold;
}
.header_on .nav .nav_li .nav1 a:after{
    content:'';
    width:0;
    height:2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transition:all .3s;
}
.nav .nav_li .nav2{
    list-style-type: none;
    position: absolute;
    top: 80px;
    line-height: 40px;
    width: 100%;
    left: 0;
    background: #fff;
    display: none;
    border-radius:5px;
    padding:30px 30px 40px;
    color:#3a3a3a;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    overflow: hidden;
}
.nav .nav_li .nav2 .nav2_img{
    width: 360px;
    float: left;
    height: 190px;
    margin-top: 10px;
}
.nav .nav_li .nav2 .nav2_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav .nav_li .nav2 .nav2_list{
    float: left;
    padding-left: 50px;
}
.nav .nav_li .nav2 a{
    display: flex;
    font-size:14px;
    height:40px;
    min-width: 300px;
    border-bottom: 1px solid #e7e7e7;
    align-items: center;
    padding-right: 10px;
}
.nav .nav_li .nav2 a span{
    flex:1;
    line-height: 1;
}
.nav .nav_li .nav2 a i{
    font-size:10px;
    font-weight: bold;
    color:#666;
    margin-right: 10px;
}
.nav .nav_li .nav2 a:hover{
    color:var(--theme-color);
}
.nav .nav_li:hover .nav1 a,.nav .nav_li.cur .nav1 a{
    color:#fff;
}
.nav .nav_li:hover .nav1 a:after,.nav .nav_li.cur .nav1 a:after{
    width: 100%;
}
.header_bd .btns .contact{
    padding:0 20px;
    height: 36px;
    border:2px solid #fff;
    font-size:14px;
    font-family: 'GilroyMedium';
    border-radius: 100px;
    display: flex;
    align-items: center;
    transition:all .3s;
}
.header_bd .btns .contact a{
    text-transform: uppercase;
    display: block;
    color:#fff;
    transition:all .3s;
}
.header_bd .btns .contact a i{
    margin-left: 15px;
    font-weight: bold;
}
.header_bd .btns .contact:hover{
    background: #fff;
}
.header_bd .btns .contact:hover a{
   color:var(--theme-color);
}

.header_bd .btns .btn{
    color:#fff;
    font-family: 'GilroyMedium';
    font-size:14px;
    display: flex;
    margin-left: 55px;
    align-items: center;
    cursor: pointer;
}
.header_bd .btns .btn.search{
    margin-left:25px;
    padding-left: 25px;
    position: relative;
}
.header_bd .btns .btn.search i{
    font-size:22px;
}
.header_bd .btns .btn.search:before{
    width: 1px;
    height: 24px;
    display: block;
    content:'';
    position: absolute;
    left: 0;
    top: 5px;
    background: #c1c1c1;
}
.header_bd .btns .btn .lang{
    height: 80px;
    display: flex;
    align-items: center;
    font-family: 'GilroyMedium';
    text-transform: uppercase;
    transition:all .3s;
}
.header_bd .btns .btn .lang i{
    font-size:12px;
    margin-left:6px;
    font-weight: bold;
    transform: rotate(180deg);
}
.header_bd .btns .lang_box{
    position: relative;
}
.header_bd .btns .lang_box .dlang{
    position: absolute;
    left: 0;
    top: 80px;
    width: 215px;
    background: #fff;
    padding:5px 15px 10px;
    display: none;
}
.header_bd .btns .lang_box .dlang a{
    display: flex;
    align-items: center;
    padding:8px 0;
    border-bottom: 1px solid #f7f7f7;
    color:#666;
}

.header_bd .btns .lang_box .dlang a img{
    height: 16px;
    margin-right: 6px;
}
.header_bd .btns .lang_box:hover .dlang{
    display: block;
}
.header_bd .btns .lang_box:hover .lang i{
    transform: rotate(0);
}
.header.header_on .nav .nav_li .nav1 a{
    color:#333;
}
.header.header_on .nav .nav_li.cur .nav1 a,.header.header_on .nav .nav_li:hover .nav1 a{
    color:var(--theme-color);
}
.header.header_on .nav .nav_li .nav1 a:after{
    background:var(--theme-color);
}
.header_on .header_bd .btns .contact{
    border-color: #333;
}
.header_on .header_bd .btns .contact a{
    color:#333;
}
.header_on .header_bd .btns .contact:hover{
    background: var(--theme-color);
    border-color:var(--theme-color);
}
.header_on .header_bd .btns .contact:hover a{
   color:#fff;
}
.header_on .header_bd .logo .logo1{
    display: none;
}
.header_on .header_bd .logo .logo2{
    display: block;
}
.header_on .header_bd .btns .btn:hover i{
    color:var(--theme-color);
}
.header_on .header_bd .btns .btn .lang i{
    transition:all .3s;
}
.header.header_on .header_bd .btns .btn{
    color:#333;
}
.header_on .header_bd .btns .lang_box:hover .lang,.header_on .header_bd .btns .lang_box:hover .lang{
    color:var(--theme-color);
}
.banner{
    position: relative;
    overflow: hidden;
}
.banner .item_img img{
    width: 100%;
}
.banner .item .item_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-bottom:5vh;
}
.banner .item .item_con .wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner .item .item_con .info{
    display: flex;
    flex-direction: column;
    color:#fff;
}
.banner .item .item_con h4{
    font-size:60px;
    line-height:1.3;
    font-weight: bold;
    text-transform:uppercase;
    margin-bottom: 10px;
}
.banner .item .item_con h4 span{
    color:var(--subtheme-color);
}
.banner .item .item_con p{
    margin-bottom: 10px;
    color:#17b0ff;
    font-size:30px;
    margin-bottom: 60px;
}
.banner .item .more_style1{
    border-color:#fff;
    color:#fff;
}
.banner .pages{
    position: absolute;
    width:100%;
    bottom: 50px;
    display: flex;
    z-index: 30;
    justify-content: space-between;
}
.banner .swiper-pagination{
    text-align: left;
    bottom:0;
    left: 5%;
    width: auto;
}
.banner .swiper-num{
    right:5%;
    position: absolute;
    bottom: 0;
    color:#fff;
}
.banner .swiper-num .active{
    font-size:30px;
}
.banner .swiper-pagination .swiper-pagination-bullet{
    width: 6px;
    height: 6px;
    background: #fff;
    margin:0 17px;
    opacity: 1;
    position: relative;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 8px;
    height: 8px;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before{
    content:'';
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border:1px solid #fff;
    position: absolute;
    left: -9px;
    top: -9px;
}
.banner .swiper-button-prev{
    left:3%;
}
.banner .swiper-button-next{
    right: 3%;
}
.banner .swiper-button-prev, .banner .swiper-button-next{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,.2);
    display: none;
}
.banner:hover .swiper-button-prev, .banner:hover .swiper-button-next{
    display: flex;
}
.banner .swiper-button-prev:hover, .banner .swiper-button-next:hover{
    background: var(--theme-color);
}
.banner .swiper-button-prev:after, .banner .swiper-button-next:after{
    color:#fff;
    font-size:24px;
}
.banner .banner-towrap{
    position: absolute;
    bottom: 42px;
    left: 50%;
    z-index: 2;
    margin-left: -24px;
    display: flex;
    align-items: center;
}
.banner .banner-towrap p{
    font-size: 12px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 10px;
}
.banner .banner-to{
    transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    display: block;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    z-index: 9;
    margin: auto; 
    color: #fff;
    position: relative;
    height: 30px; 
    width: 20px; 
    text-align: center;
    border-radius: 10px; 
    margin: 0 5px;
}
.banner .banner-towrap span{ 
    text-transform: uppercase; 
    color: #fff; 
    font-size: 14px;
}
.banner .banner-to i{ 
    animation: downico 1.5s ease-out infinite;
    position: absolute; 
    width: 3px; 
    height: 3px;
    background: #fff;
    margin-left: -1px;
}
@keyframes downico{
	0%{top: 10%;}
	35%{top: 40%;}
	65%{top: 50%;}
	100%{top: 10%;}
}
@-webkit-keyframes downico{
	0%{top: 10%;}
	35%{top: 40%;}
	65%{top: 50%;}
	100%{top: 10%;}
}

/* tit_box1 */

.tit_box1{
    padding:70px 0 0;
    display: flex;
    align-items:center;
}
.tit_box1 .tit{
    flex:1;
    color:#333;
    font-weight: bold;
    font-size:48px;
}



.bg1{
    background:#f4f4f4;
}
.bg2{
    background:#f6f6f6;
}

/* about */

.about{
    padding:100px 0;
    position: relative;
}
.about_img{
    top: 100px;
    width:50%;
    overflow: hidden;
    position: absolute;
    right: 0;
}
.about_img img{
    width: 100%;
    height: 515px;
    object-fit: cover;
}
.about_con{
    padding:65px;
    width: 50%;
    background:#fff;
    display: flex;
    height: 515px;
    flex-direction: column;
    justify-content: center;
}
.about_con .tit{
    font-size:40px;
    font-weight: bold;
    text-transform: capitalize;
    color:#333;
}
.about_con .desc{
    font-size:16px;
}
.about_con .subtit{
    font-size:24px;
    color:#333;
    margin:40px 0 40px;
}
.about_con .more .a_more{
    font-size:14px;
    font-family: 'GilroyMedium';
    margin-right: 50px;
}
.about_con .more .a_more i{
    font-size:14px;
    font-weight: bold;
    margin-left: 6px;
}
.about_con .more .a_more:hover{
    color:var(--theme-color);
}

/* technology */

.technology{
    padding-top: 80px;
}
.technology_img{
    width: 38%;
}
.technology_img img{
    position: relative;
    margin-left: -30px;
}
.technology_con{
    flex:1;
    min-width: 0;
    padding-left: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.technology_con .tit{
    font-size:48px;
    font-weight: bold;
    color:#333;
    text-transform: capitalize;
    line-height: 1.2;
}
.technology_con .desc{
    font-size:16px;
    margin:40px 0 20px;
}
.technology_con .img_box{
    padding-top: 25px;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.technology_con .img_box .txt{
    position: absolute;
    font-size:20px;
    font-family: 'GilroyMedium';
    color:var(--theme-color);
}
.technology_con .img_box .img{
    text-align: center;
    display: inline-block;
    position: relative;
}
.technology_con .img_box .txt1{
    top: 110px;
    left: -70px;
}
.technology_con .img_box .txt2{
    top:12px;
    right: 20px;
}
.technology_con .img_box .txt3{
    top:85px;
    right: -40px;
}
.technology_con .img_box .txt4{
    top: 160px;
    right: -85px;
}

/* product */


.product_menu{
    margin:50px 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
}
.product_menu .item{
    padding:0 15px;
    align-items: center;
    cursor: pointer;
}
.product_menu .item:first-child{
    padding-left: 0;
}
.product_menu .item .ico{
    width: 41px;
    height: 41px;
}
.product_menu .item .ico .ico2{
    display: none;
}
.product_menu .item .tit{
    font-size:18px;
    color:#333;
    line-height: 1.3;
    padding-left:12px;
    font-weight: bold;
    flex:1;
    min-width: 0;
}
.product_menu .item:hover .tit,.product_menu .item.cur .tit{
    color:var(--theme-color);
}
.product_menu .item:hover .ico .ico1,.product_menu .item.cur .ico .ico1{
    display: none;
}
.product_menu .item:hover .ico .ico2,.product_menu .item.cur .ico .ico2{
    display: block;
}

.product_con{
    overflow: hidden;
    position: relative;
    padding:0 0 80px;
}
.product_con .product_con_item{
    display: none;
}
.product_con .product_con_item:first-child{
    display: block;
}
.product_con .product_con_item .item{
    background: #fff;
    padding:30px;
    display: block;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border:1px solid #fff;
}
.product_con .product_con_item .item .img{
    justify-content: center;
}
.product_con .product_con_item .item .info{
    text-align: center;
    padding-top:30px;
}
.product_con .product_con_item .item .info h4{
    font-size:20px;
    margin-bottom: 10px;
    color:#333;
}
.product_con .product_con_item .item .info span{
    font-size:14px;
    font-family: 'GilroyMedium';
    text-transform: uppercase;
    display: inline-block;
    transition:all .3s;
}
.product_con .product_con_item .item .info span i{
    font-weight: bold;
    font-size:14px;
    margin-left: 10px;
}
.product_con .product_con_item .item:hover{
    border-color:var(--theme-color);
}
.product_con .product_con_item .item:hover .info h4{
    color:var(--theme-color);
}
.product_con .product_con_item .item:hover .info span{
    transform: scale(1.1);
}
.product_con .btns{
    margin-top: 40px;
}
.product_con .swiper-pagination{
    position:inherit;
    width: auto;
    display: block;
    padding:0 10px;
}
.product_con .swiper-pagination .swiper-pagination-bullet{
    margin:0 10px;
    width: 9px;
    height: 9px;
    background: #797979;
    opacity: 1;
}
.product_con .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--theme-color);
}
.product_con .swiper-button-next,.product_con .swiper-button-prev{
    position:inherit;
    width: auto;
    height: auto;
    margin-top:0;
}
.product_con .swiper-button-next:after,.product_con .swiper-button-prev:after{
    display: none;
}
.product_con .swiper-button-next i,.product_con .swiper-button-prev i{
    font-weight: bold;
    color:#333;
    line-height: 1;
    font-size:18px;
}
.product_con .swiper-button-next.swiper-button-disabled, .product_con .swiper-button-prev.swiper-button-disabled{
    opacity:0.8;
}
.product_con .swiper-button-prev i{
    transform: rotate(180deg);
}
.product_con .swiper-button-next i:hover,.product_con .swiper-button-prev i:hover{
    color:var(--theme-color);
}


/* application_wrap */

.application_wrap{
    background: url("../images/application_bg.jpg") no-repeat center;
    background-size: cover;
    padding:100px 0;
}
.application{
    position: relative;
    height: 600px;
    z-index: 1;
}
.application_tit{
    font-size:48px;
    font-weight: bold;
    color:#fff;
    line-height: 1;
    padding-top: 60px;
}
.application_img{
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.application_tab .application_item{
    display: none;
}
.application_tab .application_item:first-child{
    display: block;
}
.application_item .application_con{
    width: 600px;
}
.application_item .application_con .tit{
    font-size:36px;
    color:#fff;
    font-weight: bold;
    display: inline-block;
    padding:0 10px;
    line-height: 1;
    position: relative;
    z-index: 1;
    margin-top: 80px;
}
.application_item .application_con .tit:after{
    width: 100%;
    height: 10px;
    background: #17b0ff;
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.application_item .application_con .desc{
    font-size:16px;
    color:#fff;
    margin-top: 20px;
}
.application_menu{
    position: absolute;
    left: 0;
    bottom: 65px;
    display: flex;
}
.application_menu .item{
    color:#fff;
    font-size:18px;
    margin-right: 20px;
    cursor: pointer;
}
.application_menu .item:hover,.application_menu .item.cur{
    color:var(--theme-color);
}


/* public_message */

.public_message_con{
    border-radius: 30px;
    background: #fff;
    margin-top: 70px;
    padding:70px;
}
.public_message_con .cover{
    width: 40%;
    height: 500px;
    background: #f6f6f6;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.public_message_con .cover img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.public_message_con .page_contact2_form{
    background: transparent;
}
.public_message_con .page_contact2_form .input_box .input input,.public_message_con .page_contact2_form textarea{
    border:1px solid #ccc;
}

.page_product_related{
    padding:70px 0 0;
}
.page_product_related_tit{
    font-size:40px;
    color:#333;
    text-align: center;
    font-family: 'MontserratSemiBold';
}

 
/* advantage_wrap */

.advantage_wrap{
    background: url("../images/advantage_wrap.png") no-repeat center bottom #ebeff2;
    padding-bottom: 180px;
}
.advantage_con{
    background:  url("../images/advantage_bg.png") no-repeat center;
    height:480px;
    margin:55px 0 0;
    padding:0 10px;
}
.advantage_con .item_wrap{
    flex:1;
        padding: 10px 5px;
}
.advantage_con .item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:80px 55px;
    height: 100%;
    transition:all .4s;
    position: relative;
    z-index: 1;
}
.advantage_con .item_wrap .item:after{
    content:'';
    width: 100%;
    height:0;
    position: absolute;
    background: #fff;
    box-shadow: 0 0 15px rgba(44,187,228,.1);
    border-radius: 200px;
    display: block;
    z-index: -1;
    transition:all .3s;
}
.advantage_con .item_wrap .item .ico{
    transition:all 2s;
    transition-delay: .2s;
}
.advantage_con .item_wrap .item .tit{
    font-size:24px;
    color:#333;
    margin:25px 0;
}
.advantage_con .item_wrap .item .desc{
    text-align: center;
}
.advantage_con .item_wrap .item:hover:after{
    height: 100%;
}
.advantage_con .item_wrap .item:hover .tit{
    color:var(--theme-color);
}
.advantage_con .item_wrap .item:hover .ico{
    transform: rotatey(360deg);
}


/* ani_demo */

.ani_demo .image-holder{
    margin-top: 45px;
}
.ani_demo .twentytwenty-handle {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px dashed #fff;
    margin-left: -41px;
    margin-top: -40px;
}
.ani_demo .twentytwenty-left-arrow {
    border: none;
    width: 50%;
    display: block;
    margin: 0;
    text-align: right;
    left: 0;
    height: 20px;
    line-height: 20px;
    margin-top: -10px;
}
.ani_demo .twentytwenty-right-arrow {
    margin: 0;
    border: none;
    width: 50%;
    display: block;
    text-align: left;
    right: 0;
    height: 20px;
    line-height: 20px;
    margin-top: -10px;
}
.ani_demo .twentytwenty-container img{
    width: 100%;
}
.ani_demo .twentytwenty-handle {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px dashed #fff;
    margin-left: -41px;
    margin-top: -40px;
}
.ani_demo .twentytwenty-horizontal .twentytwenty-handle:before{
    margin-bottom: 43px;
}
.ani_demo .twentytwenty-horizontal .twentytwenty-handle:after{
    margin-top: 43px;
}
.ani_demo .twentytwenty-horizontal .twentytwenty-handle:before,.ani_demo .twentytwenty-horizontal .twentytwenty-handle:after{
    width: 2px;
}
.ani_demo .twentytwenty-left-arrow {
    border: none;
    width: 50%;
    display: block;
    margin: 0;
    text-align: right;
    left: 0;
    height: 20px;
    line-height: 20px;
    margin-top: -10px;
}
.ani_demo .twentytwenty-right-arrow {
    margin: 0;
    border: none;
    width: 50%;
    display: block;
    text-align: left;
    right: 0;
    height: 20px;
    line-height: 20px;
    margin-top: -10px;
}
.ani_demo .twentytwenty-left-arrow:before {
    content: "←";
    font-size: 24px;
    color: #fff;
    padding-right: 5px;
    font-family: math;
}
.ani_demo .twentytwenty-right-arrow:before {
    content: "→";
    font-size: 24px;
    color: #fff;
    padding-left:5px;
    font-family: math;
}



/* case */

.case_con{
    position:relative;
    margin: 30px 0 110px;
}
.case_con:before,.case_con:after{
    width:100%;
    height: 100%;
    content:'';
    display: block;
    position: absolute;
    left: -100%;
    top: 0;
    background: rgba(255,255,255,.5);
    z-index: 4;
}
.case_con:after{
    left: auto;
    right: -100%;
}
.case_con .item .img{
    overflow: hidden;
}
.case_con .item .img img{
    height: 315px;
    width: 100%;
    object-fit: cover;
}
.case_con .item .info{
    padding-top:20px;
}
.case_con .item .info h4{
    font-size:20px;
    color:#333;
}
span.jy_more1{
    font-size:14px;
    font-family: 'GilroyMedium';
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 0 2px;
    position: relative;
}
span.jy_more1:after{
    content:'';
    width:0;
    height: 1px;
    background:#666;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition:all .3s;
}
span.jy_more1 i{
    font-weight: bold;
    margin-left: 6px;
    font-size:14px;
}
.case_con .item:hover .info span:after{
    width: 100%;
}
.case_con .item:hover .info h4{
    color:var(--theme-color);
}


.case_con .swiper-button-next,.case_con .swiper-button-prev{
    top: 40%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
}
.case_con .swiper-button-next:after,.case_con .swiper-button-prev:after{
    font-size:20px;
    font-weight: bold;
    color:#333;
}
.case_con .swiper-button-prev{
    left: -150px;
}
.case_con .swiper-button-next{
    right: -150px;
}
.case_con .swiper-button-prev:hover,.case_con .swiper-button-next:hover{
    background: var(--theme-color);
    color:#fff;
}
.case_con .swiper-button-prev:hover:after,.case_con .swiper-button-next:hover:after{
    color:#fff;
}

/* news */

.news_tit .tit_box1{
    border-bottom: 1px solid #ddd;
}
.news_subtit{
    color:#333;
    padding:15px 0;
    font-size:16px;
    font-weight: bold;
}
.hot_news{
    width: 65%;
}
.hot_news .list{
    margin:0 -20px;
}
.hot_news .list a{
    flex:1;
    min-width: 0;
    padding:0 20px;
}
.hot_news .list .item{
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
}
.hot_news .list .item .img .column{
    font-size:13px;
    color:#666;
    background: #f5f8fa;
    position: absolute;
    right: 10px;
    top: 10px;
    padding:0 10px;
    z-index: 10;
}
.hot_news .list .item .img img{
    height:280px;
    width: 100%;
    object-fit: cover;
}
.hot_news .list .item .con{
    padding:20px 0;
}
.hot_news .list .item .con span{
    font-size:14px;
}
.hot_news .list .item .con h4{
    font-size:18px;
    color:#222;
    font-weight: bold;
    transition:all .3s;
    line-height: 1.4;
    margin-top: 5px;
}
.hot_news .list .item .con .desc{
    font-size:14px;
    padding-top: 10px;
}
.hot_news .list .item .time{
    border-top: 1px solid #e0e0e0;
    margin-top:20px;
    padding: 10px 0;
    display: flex;
}
.hot_news .list .item .time span{
    flex:1;
    font-family: 'MontserratLight';
}
.hot_news .list .item .time i{
    font-size:18px;
}
.hot_news .list .item:hover .con h4{
    color:var(--theme-color);
}
.hot_news .list .item:hover .con span:after{
    width: 100%;
}

.faq_news{
    flex:1;
    padding-left:20px;
    margin-left: 20px;
    position: relative;
}
.faq_news:after{
    content:'';
    width: 1px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    background: #ddd;
    display: block;
}
.faq_news .list .item{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #fff;
    border:1px solid #fff;
}
.faq_news .list .item:last-child{
    margin-bottom: 0;
}
.faq_news .list .item .time{
    width: 120px;
    padding-left:30px;
    font-size:16px;
}
.faq_news .list .item .time span{
    display: block;
}
.faq_news .list .item .con{
    padding:20px;
    flex:1;
    min-width: 0;
    border-left: 1px solid #ddd;
}
.faq_news .list .item .con h4{
    font-size:18px;
    font-weight: bold;
    color:#222;
    transition:all .3s;
    margin-bottom: 20px;
    line-height: 1.4;
}
.faq_news .list .item:hover{
    border-color:var(--theme-color);
}
.faq_news .list .item:hover .con h4{
    color:var(--theme-color);
}
.faq_news .list .item:hover .con span:after{
    width: 100%;
}
.faq_news .list.faq_list .item{
    border:2px solid #ddd;
    background: transparent;
}

.news_more{
    padding: 20px 0 0;
}



/* news_wrap */

.news{
   
}
.news_wrap{
    position: relative;
    padding-bottom: 60px;
    overflow: hidden;
}
.news_wrap:after{
    content:'';
    display:block;
    width: 17%;
    height: 3px;
    background: var(--theme-color);
    position: absolute;
    right: 0;
    top: 45px;
}
.news_tit{
    font-family: 'MontserratBold';
    color:var(--theme-color);
    font-size: 50px;
}

.news_con{
    padding: 35px 0 60px;
    position: relative;
}
.news_con .item{
    display: block;
}
.news_con .item .img img{
    width: 100%;
}
.news_con .item .con{
    padding:30px 0;
}
.news_con .item .con .time{
    font-size:14px;
}
.news_con .item .con h4{
    font-size:18px;
    color:#333;
    hyphens:auto;
    margin: 6px 0;
}
.news_con .item .con .desc{
    font-size:14px;
    color:#888;
    font-family: 'MontserratLight';
}
.news_con .item .con .more{
    margin-top: 15px;
    color:#777;
    position: relative;
    display: inline-block;
}
.news_con .item .con .more:after{
    content: '';
    width: 0;
    height: 2px;
    transition: all .4s;
    background:var(--theme-color);
    display: block;
}
.news_con .item .con .more i{
    font-weight: bold;
    margin-left: 3px;
}
.swiper-horizontal>.swiper-pagination-progressbar{
    top: auto;
    bottom:1px;
    background: #666;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: var(--theme-color);
    height: 6px;
    top: -1px;
}
.news_con .item:hover .con h4{
    color:var(--theme-color);
}
.news_con .item:hover .more{
    color:var(--theme-color);
}
.news_con .item:hover .more:after{
    width: 100%;
}


/* footer */

.footer{
    padding-top:80px;
    background: linear-gradient(to top, #060f32 70% , #f4f4f4 30%)
}
.footer_con{
    background: #e5eff7;
    padding:80px;
    overflow: hidden;
}
.footer_address{
    width: 48%;
    padding-right: 65px;
}
.footer_address .tit{
    font-size:48px;
    color:#333;
    font-weight: bold;
    line-height: 1;
}
.footer_address .con{
    padding-top: 25px;
}
.footer_address .con p{
    font-size:14px;
    font-family: 'GilroyLight';
    color:var(--theme-color);
}
.footer_address .con p span{
    color:#333;
}
.footer_address .con p a:hover{
    text-decoration: underline;
}
.footer_address .address{
    padding-top: 35px;
}
.footer_address .address h4{
    color:#333;
    font-weight: bold;
    font-size:18px;
}
.footer_address .address .list .item{
    display: flex;
    font-size:14px;
    line-height: 1.3;
    margin-top: 10px;
}
.footer_address .address .list .item span{
    display: block;
    width:60px;
    font-size:16px;
    color:#333;
    line-height: 1.2;
}
.footer_address .address .list .item p{
    flex:1;
    min-width: 0;
    color:#666;
}
.footer_message{
    flex:1;
}
.footer_message .tit{
    font-size:16px;
    color:#929aaa;
}
.footer_message .form{
    margin-top: 20px;
}
.footer_message .form input,.footer_message .form textarea{
    width: 100%;
    background: #fff;
    height: 50px;
    outline: none;
    border:none;
    margin:0 0 20px;
    font-size:16px;
    padding:10px 20px;
    line-height: 30px;
}
.footer_message .form input::placeholder,.footer_message .form textarea::placeholder{
    font-size:14px;
    color:#999;
}
.footer_message .form textarea{
    height:140px;
    margin-bottom: 15px;
}
.footer_message .form button{
    border:none;
    outline: none;
    width: 240px;
    height: 54px;
    background: var(--theme-color);
    color:#fff;
    cursor: pointer;
    font-size:16px;
    border-radius: 100px;
    transition:all .3s;
    font-family: 'GilroyMedium';
}
.footer_message .form button:hover{
    opacity: .7;
}
.footer_message .form button i{
    font-size:20px;
    margin-right: 10px;
    font-family: 'MontserratLight';
}
.footer_message .share{
    height: 48px;
    padding:0 30px;
    background: rgba(176,181,203,.3);
    display: inline-block;
    margin-top: 48px;
    border-radius: 100px;
}

/* footer */

.footer_info{
    padding-top: 50px;
    justify-content: space-between;
    align-items: center;
}
.footer_info .f_menu a{
    color:#fff;
    font-size:16px;
    margin:0 15px;
}
.footer_info .f_menu a:hover{
    text-decoration: underline;
}
.footer_info .f_share span{
    color:#fff;
    padding-right: 15px;
}


.footer_copyright{
    font-family: 'MontserratLight';
    font-size:14px;
    padding:15px 0;
    display: flex;
}
.footer_copyright a{
    margin-left:30px;
}
.footer_copyright a.bontop{
    flex:1;
    display: flex;
    justify-content: flex-end;
}
.footer_copryright{
    font-size:14px;
    text-align: center;
    padding:40px 0 25px;
    color:#fff;
}
.footer_copryright span{
    display: inline-block;
    padding:0 10px;
}
.footer_copryright span a{
    color:#fff;
    margin:0 10px;
}
.footer_copryright span a:hover{
    text-decoration: underline;
}


/* page_banner */

.page_banner{
    position: relative;
}
.page_banner .img img{
    width: 100%;
}
.page_banner .info{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color:#fff;
    padding-top: 50px;
    text-transform: capitalize;
}
.page_banner .info .tit{
    font-size:48px;
    font-weight: bold;
    line-height: 1.2;
}
.page_banner .info .desc{
    font-size:20px;
    margin-top: 5px;
}

.inner_tit_box1{
    padding-top: 80px;
}
.inner_tit_box1 .tit{
    font-size:36px;
    color:#333;
    font-weight: bold;
}

/* page_case_menu */

.page_case_menu{
    padding:35px 0 0;
    border-bottom: 1px solid #ddd;
}
.page_case_menu .item{
    margin-right: 35px;
    font-size:16px;
    padding:0 5px 10px;
    position: relative;
    cursor: pointer;
    color:#333;
}
.page_case_menu .item:after{
    content:'';
    display: block;
    width:0;
    height: 3px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: -2px;
    transition:all .3s;
}
.page_case_menu .item.all:after{
    transition: all 0s;
}
.page_case_menu .item:hover:after,.page_case_menu .item.cur:after,.page_case_menu .item.all:after{
    width: 100%;
}
.page_case_menu .item.cur,.page_case_menu .item.all{
    font-family: 'GilroyMedium';
}
.page_case_con{
    padding-top: 40px;
}
.page_case_con .item{
    display: none;
}
.page_case_con .item:first-child{
    display: block;
}
.page_case_con .item .item_con{
    flex:1;
    min-width: 0;
    padding-right: 7%;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page_case_con .item .item_con h4{
    font-size:30px;
    font-weight: bold;
    color:#333;
}
.page_case_con .item .item_con h4:after{
    content:'';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--theme-color);
    margin: 10px 0 30px;
}
.page_case_con .item .item_con p{
    font-size:16px;
}
.page_case_con .item .item_img{
    width:57.1%;
}


.page_cases_list{
    padding-bottom: 60px;
}
.page_cases_list .list{
    margin:30px -23px 0;
}
.page_cases_list .list a{
    width: 33.333%;
    display: block;
    padding:0 23px 35px;
}
.page_cases_list .list .item{
    background: #fff;
    transition:all .3s;
}
.page_cases_list .list .item .info{
    padding:20px 30px 30px;
}
.page_cases_list .list .item .info h4{
    font-size:20px;
    line-height: 1.4;
    color:#333;
}
.page_cases_list .list .item:hover{
    background:var(--theme-color);
}
.page_cases_list .list .item:hover .info h4{
    color:#fff;
}
.page_cases_list .list .item:hover .info span.jy_more1{
    color:#fff;
}
.page_cases_list .list .item .info span.jy_more1:after{
    background:#fff;
}
.page_cases_list .list .item:hover .info span.jy_more1:after{
    width: 100%;
}

/* page_product */


.page_product_list .list{
    margin:20px -23px 0;
}
.page_product_list .list a{
    width: 25%;
    padding:20px 23px;
}
.page_product_list .list .item{
    padding:30px 30px 50px;
    border:1px solid #e7e7e7;
    transition:all .4s;
}
.page_product_list .list .item .img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_product_list .list .item .img img{
    max-height: 253px;
    object-fit: contain;
}
.page_product_list .list .item .info{
    text-align: center;
    padding-top: 20px;
}
.page_product_list .list .item .info h4{
    font-size:20px;
    font-weight: bold;
    transition:all .4s;
    color:#333;
}

.page_product_list .list .item:hover{
    border-color:var(--theme-color);
}
.page_product_list .list .item:hover .info h4{
    color:var(--theme-color);
}
.page_product_list .list .item:hover .info span:after{
    width: 100%;
}



/* page_about1 */

.page_about1{
    padding: 20px 0 90px;
    overflow: hidden;
}
.page_about1 .item{
}
.page_about1_img{
    width: 46%;
}
.page_about1_img img{
    width: 100%;
}
.page_about1_con{
    flex:1;
    min-width: 0;
    padding-right: 60px;
    font-size:16px;
}

.page_about2_wrap{
    background: url("../images/bg3.jpg") no-repeat center;
    background-size: cover;
    padding:120px 0;
}
.page_about2{
    justify-content: flex-end;
}
.page_about2_con{
    width: 43%;
    font-size:16px;
    color:#fff;
}


.page_about3 .inner_tit_box1{
    padding-top: 50px;
}
.page_about3_desc{
    padding-top: 20px;
}

.page_about3_list{
    position: relative;
    overflow: hidden;
    padding:50px 0 60px;
}
.page_about3_list .img{
    height: 310px;
    border:1px solid #e7e7e7;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.page_about3_list .img img{
    min-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.page_about3_list.swiper-horizontal>.swiper-pagination-progressbar{
    height: 5px;
    background: #f4f4f4;
    border-radius: 10px;
}
.page_about3_list .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    height: 5px;
    background: var(--theme-color);
    border-radius: 10px;
}


.page_about4{
    padding:100px 0 30px;
}
.page_about4_list{
    margin:0 -10px;
}
.page_about4_list .item_wrap{
    padding:0 10px;
}
.page_about4_list .item{
    position: relative;   
}
.page_about4_list .item .img{
    width: 100%;
}
.page_about4_list .item .info{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items:center;
    padding-bottom: 70px;
    transition:all .4s;
}
.page_about4_list .item .info .tit{
    color:#fff;
    font-weight: bold;
    font-size: 30px;
}
.page_about4_list .item .info .more{
    width: 140px;
    height: 36px;
    border:1px solid #fff;
    border-radius: 100px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-size:14px;
    margin-top: 20px;
    font-family:'GilroyMedium';
    transition:all .4s;
}
.page_about4_list .item .info .more i{
    font-size:14px;
    font-weight: bold;
    margin-left: 5px;
}
.page_about4_list .item:hover .info{
    padding-bottom: 100px;
}
.page_about4_list .item:hover .info .more{
    background: #fff;
    color:var(--theme-color);
}
.page_about4_list .item:hover .info .more i{
    color:var(--theme-color);
}

/* page_technology_banner */

.page_technology_banner .info{
    flex-direction:inherit;
    width: 1400px;
    justify-content: flex-end;
    align-items: center;
}
.page_technology_banner .info .tit{
    font-size:60px;
    padding-top: 15vh;
}
.page_technology1{
    margin-top: 20px;
    font-size:16px;
}
.page_technology2{
    padding:30px 0 0;
}
.page_technology2_list{
    display: flex;
    margin:0 -13px 40px;
}
.page_technology2_list .item_wrap{
    padding:0 13px;
    flex:1;
}
.page_technology2_list .item{
    background: #f4f4f4;
    height: 100%;
    padding:30px;
    text-align: center;
    transition:all .3s;
}
.page_technology2_list .item .img{
    
}
.page_technology2_list .item .info{
    margin-top: 20px;
}
.page_technology2_list .item .info h4{
    font-size:20px;
    margin-bottom: 15px;
    font-weight: bold;
    color:var(--theme-color);
    line-height: 1.2;
}
.page_technology2_list .item .info p{
    font-size:14px;
}
.page_technology2_list .item:hover{
    background: #fff;
    box-shadow: 0 0 15px rgba(0,93,169,.12);
}



/* page_download_center */

.page_download_center{
    padding:30px 0 50px;
}
.page_download_center .list_item .menu{
    display: flex;
    color:#333;
    font-size:20px;
    border-bottom: 1px solid #efefef;
    padding:20px 0;
    cursor: pointer;
    transition:all .3s;
}
.page_download_center .list_item .menu i{
    width: 30px;
    height: 30px;
    background:#f2f2f2;
    font-size:12px;
    color:#333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition:all .3s;
}
.page_download_center .list_item .menu:hover,.page_download_center .list_item .menu.cur{
    color:var(--subtheme-color);   
}
.page_download_center .list_item .menu:hover i,.page_download_center .list_item .menu.cur i{
    color:#fff;
    background: var(--subtheme-color);
}

.page_download_center .list_item .list{
    display: none;
    padding-top: 15px;
}
.page_download_center .list_item:first-child .list{
    display: block;
}

.page_download_center .list_item .list .item{
    background: #f6f6f6;
    margin-bottom: 10px;
    display: flex;
    height: 70px;
    padding:0 50px;
    display: flex;
    align-items: center;
}

.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;
}
.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 i{
    font-size:20px;
}
.page_download_center .list_item .list .item:hover{
    background: var(--subtheme-color);
}
.page_download_center .list_item .list .item:hover .pdf{
    border-color:#fff;
    color:#fff;
}
.page_download_center .list_item .list .item:hover h4,.page_download_center .list_item .list .item:hover i{
    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(--subtheme-color);
}
.page_download_center_more a:hover:after{
    background: var(--subtheme-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_cases_show_wrap{
    padding:60px 0 80px;
}
.technical_support{
    width: 450px;
}
.technical_support .panel1{
    margin-bottom: 30px;
    background: #fff;
    padding:30px 30px 50px;
}
.technical_support .panel1:last-child{
    margin-bottom: 0;
}
.technical_support .p1_tit{
    font-size:24px;
    color:#333;
    font-weight: bold;
    line-height: 1.3;
}
.technical_support .p1_tit:after{
    content:'';
    width: 100px;
    height:3px;
    background:var(--theme-color);
    display: block;
    margin:10px 0 35px;
}
.technical_support .ico{
    margin-top: 6px;
}
.technical_support .con{
    margin-left: 15px;
}
.technical_support .p1_con .con p{
    font-family: 'MontserratLight';
    color:#333;
}
.technical_support .p1_con .con h4{
    font-size:34px;
    font-style: italic;
    color:#2d2d2d;
    line-height: 1;
    font-family: 'GilroyBold';
}
.technical_support .p2_tit{
    text-align: center;
    margin-bottom: 20px;
}
.technical_support .p2_tit:after{
    display: none;
}
.technical_support .p2_form input,.technical_support .p2_form textarea{
    width: 100%;
    border:none;
    outline: none;
    background: #f6f6f6;
    height: 54px;
    line-height: 34px;
    border-left: 3px solid #0051a2;
    margin-bottom: 15px;
    padding:10px 22px;
}
.technical_support .p2_form textarea{
    height: 120px;
}
.technical_support button{
    width: 100%;
    height: 54px;
    background: #0051a2;
    line-height: 54px;
    border:none;
    outline: none;
    font-size:16px;
    color:#fff;
    cursor: pointer;
}
.technical_support button i{
    margin-left: 10px;
}
.technical_support button:hover{
    background: var(--subtheme-color);
}


/* product_detail */

.pd_detail{
    padding:80px 0 30px;
    position: relative;
}

.pin-wrapper{
    position: absolute;
    width: 48%;/*重要*/
    z-index: 20;
}
.pd_detail_hd{
    width:100%;
    top: 120px!important;
}

.pd_detail_hd .pics .mySwiper2{
    width: 100%;
    height:520px;
    margin:0;
    overflow: hidden;
    padding:10px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
}
.pd_detail_hd .pics .mySwiper2 .img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.pd_detail_hd .pics .mySwiper2 .img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pd_detail_hd .pics .mySwiper{
    margin-top:15px;
}
.pd_detail_hd .pics .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img{
    background: #fff;
    padding:5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #ddd;
}
.pd_detail_hd .pics .mySwiper .swiper-slide.swiper-slide-thumb-active .img{
    border:1px solid var(--theme-color);
}
.pd_detail_hd .pics .mySwiper .swiper-slide .img img{
    height:90px;
    object-fit: contain;
}
.pd_detail_hd .btns{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.pd_detail_hd .btns .btn{
    width: 160px;
    height: 45px;
    border-radius: 100px;
    background: var(--theme-color);
    text-align: center;
    line-height: 45px;
    text-transform: uppercase;
    color:#fff;
    margin:0 10px;
}
.pd_detail_hd .btns .btn.btn2{
    background: #333;
}
.pd_detail_hd .btns .btn:hover{
    opacity: .7;
}


.pd_detail_bd{
    float:right;
    width: 52%;
    min-width: 0;
    padding-left:2%;
}
.pd_detail_bd .hd{
    margin-bottom: 50px;
}
.pd_detail_bd .hd h1{
    font-size:48px;
    color:#333;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 40px;
}
.pd_detail_bd .p_tit{
    font-size:20px;
    color:var(--theme-color);
    font-weight: bold;
    margin-bottom: 15px;
}
.pd_detail_bd .hd .desc{
    font-size:18px;
}
.pd_detail_bd .bd .con{
    width:100%;
}
.pd_detail_bd .bd .con table{
    /*table-layout:fixed;*/
    /*width:100%;*/
}
.pd_detail_bd .bd .con tr{
    border-bottom: 1px solid #e7e7e7;
    line-height: 50px;
    /*display: flex;*/
    align-items: center;
    width: 100%;
    padding:10px 0;
    height:50px!important;
}
.pd_detail_bd .bd .con tr td{
    height: auto;
}
.pd_detail_bd .bd .con tr td:first-child{
    width: 38%!important;
    padding-right: 30px;
    font-family:'GilroyMedium';
}
.pd_detail_bd .bd .con tr td:last-child{
    font-family: 'GilroyLight';
    color:#666;
    white-space: normal;
    flex:1;
    min-width: 0;
    width: auto!important;
    
}
.pd_detail_bd .bd .con tr td p{
    word-wrap: break-word;
}
.pd_detail_bd .faq{
    margin-top: 50px;
}
.pd_detail_bd .faq .item .tit h4{
    font-size:16px;
    font-family: 'GilroyMedium';
    padding-right: 20px;
    flex:1;
}
.pd_detail_bd .faq .item{
    padding:20px 0;
    border-bottom: 1px solid #e7e7e7;
}
.pd_detail_bd .faq .item .tit{
    cursor: pointer;
}
.pd_detail_bd .faq .item .tit i{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    color:#fff;
    font-size:14px;
    background: var(--theme-color);
}
.pd_detail_bd .faq .item .desc{
    color:#666;
    margin-top: 10px;
    display: none;
}

.pd_detail_bd .related_product{
    padding-top: 50px;
}
.pd_detail_bd .related_product .list{
    margin:0 -12px;
}
.pd_detail_bd .related_product .list a{
    padding:0 12px;
    display: block;
}
.pd_detail_bd .related_product .list .item{
    border:1px solid #e7e7e7;
    padding:25px;
    transition:all .3s;
}
.pd_detail_bd .related_product .list .item .img{
    height: 165px;
    display: flex;
    justify-content: center;
}
.pd_detail_bd .related_product .list .item .img img{
    height: 100%;
    object-fit: contain;
}
.pd_detail_bd .related_product .list .item .info{
    padding-top: 20px;
    text-align: center;
}
.pd_detail_bd .related_product .list .item .info h4{
    font-size:16px;
}
.pd_detail_bd .related_product .list .item .info span.jy_more1{
    font-size:11px;
}
.pd_detail_bd .related_product .list .item .info span.jy_more1 i{
    font-size:11px;
}
.pd_detail_bd .related_product .list .item:hover{
    border-color:var(--theme-color);
}
.pd_detail_bd .related_product .list .item:hover h4{
    color:var(--theme-color);
}
.pd_detail_bd .related_product .list .item:hover span.jy_more1:after{
    width: 100%;
}

/* page_quality */

.pq1_info{
    
}
.pq1_info .desc{
    width: 60%;
    margin:auto;
    text-align: center;
    position: relative;
}
.pq1_info .desc:before,.pq1_info .desc:after{
    content:'';
    width: 38px;
    height: 31px;
    display: block;
    position: absolute;
}
.pq1_info .desc:before{
    background: url("../images/quality_ico1.png") no-repeat center;
    left: -50px;
    top:-6px;
}
.pq1_info .desc:after{
    background: url("../images/quality_ico2.png") no-repeat center;
    right:-50px;
    bottom: -20px;
}
.pq1_info .list{
    justify-content: center;
    margin:60px 0;
}
.pq1_info .list .item{
    margin:0 40px;
}

.pq2_info{
    background: #f8f8f8;
    border-radius:20px;
    overflow: hidden;
}
.pq2_info .pq2_info_con{
    flex:1;
    min-width: 0;
    padding:40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pq2_info .pq2_info_con .tit{
    color:#161616;
    font-size:40px;
    font-family: 'jnb';
}
.pq2_info .pq2_info_con .desc{
    color:#666;
    margin-top: 10px;
}
.pq2_info .pq2_info_img{
    width: 50%;
}


/* pq3_info */

.pq3_info{
    overflow: hidden;
    width: 1800px;
    margin:auto;
    position: relative;
    padding:0 0 80px;
}
.pq3_info_con{
    position: relative;
    width: 1600px;
    margin:auto;
    padding:20px 0 60px;
}
.pq3_info_con .item .img{
    background: #f8f8f8;
    padding:25px 36px;
    height: 390px;
}
.pq3_info_con .item .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.pq3_info_con .item .tit{
    color:#3a3a3a;
    padding:10px 10px 0;
    font-size:16px;
    text-align: center;
}

.pq3_info_con .swiper-button-next,.pq3_info_con .swiper-button-prev{
    width: 70px;
    height: 70px;
    border:1px solid #c8c8c8;
    border-radius: 50%;
    z-index: 40;
    opacity: 1;
    color:#717171;
    top: 40%;
}
.pq3_info_con .swiper-button-next:after,.pq3_info_con .swiper-button-prev:after{
    font-size:30px;
}
.pq3_info_con .swiper-button-next:hover,.pq3_info_con .swiper-button-prev:hover{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}
.pq3_info_con .swiper-button-prev{
    left: -100px;
}
.pq3_info_con .swiper-button-next{
    right: -100px;
}
.pq3_info:before,.pq3_info:after{
    content:'';
    display: block;
    width: 100px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    z-index: 30;
}
.pq3_info:before{
    left: 0;
}
.pq3_info:after{
    right: 0;
}
.pq3_info_con .swiper-pagination-bullet{
    width: 14px;
    height: 14px;
}
.pq3_info_con .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--theme-color);
}


/* page_news */


.page_news{
    padding:80px 0;
}
.page_news_list{
    flex:1;
    margin-left:50px;
    min-width: 0;
}
.page_news_list .list .item{
    padding:20px 0;
}
.page_news_list .list .item .img{
    width:280px;
    height: 180px;
    overflow: hidden;
}
.page_news_list .list .item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_news_list .list .item .con{
    flex:1;
    min-width: 0;
    padding:0 0 0 40px;
    position: relative;
    z-index: 1;
    transition:all .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.page_news_list .list .item .con:after{
    content:'';
    width:0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    background: #f4f4f4;
    transition:all .3s;
}
.page_news_list .list .item .con h4{
    font-size:20px;
    color:#333;
    font-weight: bold;
    transition:all .3s;
    line-height: 1.4;
}
.page_news_list .list .item .con p{
    font-size:16px;
    color:#666;
    padding-bottom: 10px;
}
.page_news_list .list .item .agg{
    align-items: center;
    justify-content: space-between;
}
.page_news_list .list .item .agg .name{
    color:var(--theme-color);
    margin-right: 15px;
    padding-right: 15px;
    font-size:13px;
    border-right: 1px solid #e7e7e7;
    line-height: 1;
}
.page_news_list .list .item:hover .con h4{
    color:var(--theme-color);
}
.page_news_list .list .item:hover .con span.jy_more1:after{
    width: 100%;
}
.page_news_list .list .item:hover .con{
    padding:15px 20px 15px 30px;
}
.page_news_list .list .item:hover .con:after{
    width: 100%;
}

.page_news_menu{
    width: 300px;
}
.page_news_menu .menu{
    
}
.page_news_menu .menu .tit{
    padding:0 0 10px;
    font-weight: bold;
    color:#333;
    font-size:36px;
}
.page_news_menu .menu .tit h4{
    font-size:24px;
}
.page_news_menu .menu .item{
    height: 60px;
    border-bottom: 1px solid #ddd;
    line-height: 60px;
    padding:0 10px;
    font-size:18px;
    display: flex;
}
.page_news_menu .menu .item a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color:#333;
}
.page_news_menu .menu .item i{
    display: block;
    font-size:12px;
}
.page_news_menu .menu .item a:hover,.page_news_menu .menu .item.cur a{
    color:var(--theme-color);
}


.page_news_menu .h_news{
    margin-top: 40px;
    padding:20px 15px;
    background-color: #f4f4f4;
}
.page_news_menu .h_news a{
    display: block;
    position: relative;
    padding-left: 15px;
    font-size:14px;
    font-family: 'GilroyMedium';
    margin-bottom: 15px;
}
.page_news_menu .h_news a:last-child{
    margin-bottom: 0;
}
.page_news_menu .h_news a:before{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    content:'';
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--theme-color);
}


.no_banner_pos{
    padding:100px 0 0;
}
.no_banner_pos a:last-child{
    color:var(--subtheme-color);
}

/* page_news_detail */

.page_news_detail{
    flex:1;
    margin-right:30px;
    background: #fff;
    padding:50px;
}
.page_news_detail h1{
    font-size:38px;
    font-family: 'GilroyBold';
    color:#333;
    line-height: 1.2;
    text-align: center;
}
.page_news_detail .info{
    margin-top: 30px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom:20px;
}
.page_news_detail .info .info_hd{
    flex:1;
}
.page_news_detail .info .info_hd li{
    font-size:16px;
    color:#333;
    margin-right: 50px;
}
.page_news_detail .info .info_hd li.column{
    background: #f3f3f3;
    padding:0 18px;
    height: 28px;
    line-height: 28px;
}
.page_news_detail .info .info_bd{
    align-items: center;
}
.page_news_detail .info .info_bd h4{
    margin-right: 15px;
    padding-top: 3px;
}

.page_news_detail .desc{
    padding:40px 0 20px;
    min-height: 20vh;
    border-bottom: 1px solid #e7e7e7;
}

.page_news_detail_wrap{
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}
.page_news_detail_wrap .page_news_detail{
    padding:0;
}

/* page_contact */

.page_contact{
    display: flex!important;
    padding:80px 0;
    background: #fff;
}
.page_contact .footer_message{
    padding-top:20px;
}
.page_contact .footer_message .form input,.page_contact .footer_message .form textarea{
    background: #f4f4f4;
}
.page_contact .footer_message .b_tit{
    font-size:36px;
    color:#333;
    font-weight: bold;
}
.page_contact .footer_message .tit{
    font-size:16px;
    color:var(--theme-color);
}
.page_contact .footer_address{
    width: 42%;
    padding-right: 6%;
}
.page_contact .footer_address .desc{
    font-size:15px;
    color:var(--theme-color);
    text-transform: uppercase;
}
.page_contact .footer_address .con p{
    margin-bottom: 20px;
    font-size:16px;
}
.page_contact .footer_address .con p span{
    display:block;
    margin-bottom: 10px;
    font-weight: bold;
}
.page_contact .footer_address .address .list .item{
    flex-direction: column;
    margin-top: 15px;
}
.page_contact .footer_address .address .list .item span{
    width: auto;
    margin-bottom:8px;
}
.page_contact .footer_message .form button{
    width: 100%;
    border-radius: 0;
}


/* return */

.return_page{
    position: relative;
}
.return_page dl{
    justify-content: space-between;
    padding-top:40px;
    position: relative;
}
.return_page dt{
    width: 44%;
    font-size:16px;
}
.return_page dt.next{
    text-align: right;
}
.return_page dt.next p{
    color:#717171;
    line-height: 1.2;
}
.return_page dt a{
    display: block;
}
.return_page .p1{
    padding-bottom: 6px;
}
.return_page .p1 span{
    display: inline-block;
    line-height: 1;
}
.return_page .next .p1 span{
    transform: rotate(180deg);
    margin-left: 4px;
}
.return_page .prev .p1 span{
    margin-right: 4px;
}
.return_page dt a:hover{
    color:var(--theme-color);
}
.return_page .go_back{
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
}
.return_page .go_back a{
     width: 110px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border:1px solid #666;
     border-radius: 100px;
     font-size:16px;
     line-height: 38px;
}
.return_page .go_back a i{
    font-size:12px;
    margin-left: 3px;
}
.return_page .go_back a:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}


.ind_pad{
    padding:80px 0 90px;
}
.info_ly{background: #fff;padding-left: 4%;padding-right: 4%;display: flow-root;}
.info_ly h2{text-align: center;margin-bottom: 20px;}
.info_ly .inp{width: 49.3%;height: 52px;line-height: 52px;background: #f6f6f6;display: block;float: left;margin-bottom: 16px;text-indent: 22px;}
.info_ly .inp:nth-child(2n){float: right;}
.info_ly .inp2{width: 100%;}
.info_ly textarea{height: 150px;background: #f6f6f6;text-indent: 22px;padding-top: 16px;width: 100%;display: block;}
.info_ly .sub{height: 52px;line-height: 52px;background:var(--theme-color);width: 100%;text-align: center;color: #fff;display: block;margin-top: 16px;text-transform: uppercase;border:none;cursor:pointer;}





