@charset "utf-8";

.header{
    height: 120px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    justify-content: space-between;
    z-index: 9999;
    border-bottom: 1px solid rgba(255,255,255,.3);
    transition:all .4s;
    padding: 0 5%;
}
.header_wrap{
    height: 120px;
}
.header .logo{
    flex:1;
}

.header .logo img{
    height: 120px;
}
.nav .nav_li{
    margin:0 30px;
    position: relative;
}
.nav .nav_li:last-child{
    margin-right: 0;
}
.nav .nav_li .nav1 a{
    color:#fff;
    display: block;
    line-height:72px;
    position: relative;
    transition:all 0s;
    font-size:18px;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
}
.nav .nav_li .nav1 a:after{
    content:'';
    width:0;
    height:3px;
    background:#fff;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition:all .3s;
}
.nav .nav_li .nav1 a i{
    margin-left: 5px;
}
.nav .nav_li .nav2{
    list-style-type: none;
    position: absolute;
    top:71px;
    line-height: 40px;
    width: 300px;
    background: #fff;
    border-radius:5px;
    padding:15px 30px ;
    color:#3a3a3a;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    z-index: 10;
    display: none;
}
.nav .nav_li .nav2 a{
    display: flex;
    align-items: center;
    padding-top:10px;
    padding: 10px 0;
}
.nav .nav_li .nav2 a span{
    flex:1;
    line-height: 1;
}
.nav .nav_li .nav2 a i{
    margin-left: 10px;
}
.nav .nav_li .nav2  .nav2_pro .item h5 a{
    font-size:16px;
    font-weight: bold;
}
.nav .nav_li .nav2  .nav2_pro a img{
    width: 30px;
    height: 30px;
    margin-right: 6px;
}
.nav .nav_li .nav2 a i{
    font-size:12px;
}
.nav .nav_li .nav2 a:hover{
    color:var(--theme-color);
}

.nav .nav_li .nav2_app_wrap{
    width:650px;
    left: -200px;
}
.nav .nav_li .nav2_app_wrap .app_menu{
    width:210px;
}
.nav .nav_li .nav2_app_wrap .app_menu i{
    margin-right: 5px;
}
.nav .nav_li .nav2_app_wrap .app_list{
    flex:1;
    margin-top:15px;
}
.nav .nav_li .nav2_app_wrap .app_list .item{
    display: none;
    padding-top: 0;
}
.nav .nav_li .nav2_app_wrap .app_list .item span{
    display: block;
    font-size:16px;
    font-family: 'MontserratBold';
    margin-bottom: 15px;
}
.nav .nav_li .nav2_app_wrap .app_list .item:first-child{
    display:block;
}
.nav .nav_li .nav2_app_wrap .app_menu .item.cur{
    color:var(--theme-color);
}
.nav .nav_li:hover .nav1 a:after,.nav .nav_li.cur .nav1 a:after{
    width: 100%;
}

.nav .nav_li .nav2_pro_wrap.nav2{
    width:660px;
    left: -100%;
    padding: 45px;
}
.nav .nav_li .nav2_pro_wrap .nav2_txt{
    width:280px;
}
.nav .nav_li .nav2 .nav2_txt h4{
    font-size:20px;
    padding:10px 0;
    text-transform: capitalize;
    justify-content: space-between;
}
.nav .nav_li .nav2 .nav2_txt p{
    font-size: 18px;
    line-height: 1.3;
    color:#666;
}
.nav .nav_li .nav2 .nav2_txt a{
    margin-top: 10px;
}
.nav .nav_li .nav2 .nav2_txt a i{
    margin-left: 6px;
}

.nav .nav_li .nav2_pro_wrap .nav2_pro{
    flex:1;
    min-width: 0;
    padding-left: 50px;
}
.nav .nav_li .nav2_pro_wrap .pro_menu{
    width:400px;
    border-left: 1px solid #ccc;
    height: 100%;
}
.nav .nav_li .nav2_pro_wrap .pro_menu .item{
    padding: 0 22px 5px;
    
}
.nav .nav_li .nav2_pro_wrap .pro_menu .item a{
    padding: 0 20px;
    transition:all .3s;
    font-size: 18px;
    height: 50px;
}
.nav .nav_li .nav2_pro_wrap .pro_menu .item a i{
    font-size: 18px;
}
.nav .nav_li .nav2_pro_wrap .pro_menu .item a:hover{
    border-color: var(--theme-color);
    background: var(--theme-color);
    color:#fff;
}

.nav .nav_li .nav2_pro_wrap .pro_list{
    flex:1;
    padding-left: 40px;
    min-width: 0;
}
.nav .nav_li .nav2_pro_wrap .pro_list .item a:hover{
    text-decoration: underline;
}
.nav .nav_li .nav2_pro_wrap .pro_list .item_wrap{
    margin:0 -10px;
  
}
.nav .nav_li .nav2_pro_wrap .pro_list .item_w{
    display: none;
}
.nav .nav_li .nav2_pro_wrap .pro_list .item_w:first-child{
    display: block;
}
.nav .nav_li .nav2_pro_wrap .pro_list .item_wrap .item{
    width: 50%;
    display: block;
    padding:0 10px;
}
.nav .nav_li .nav2_pro_wrap .pro_list .item_wrap .item .img{
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.nav .nav_li .nav2_pro_wrap .pro_list .item_wrap .item .img:before{
    content:'';
    display: block;
    background: url("../images/hot.png") no-repeat center;
    background-size:50px auto;
    width: 50px;
    height:50px;
    position: absolute;
    right:-3px;
    top:-3px;
    z-index: 3;
}
.nav .nav_li .nav2_pro_wrap .pro_list .item_wrap .item .img span{
    width: 130px;
    position: absolute;
    left: -40px;
    top: 13px;
    height: 24px;
    font-size: 12px;
    background: red;
    color: #fff;
    text-align: center;
    line-height: 24px;
    transform: rotate(-45deg);
    text-transform: capitalize;
}
.nav .nav_li .nav2_pro_wrap .pro_list .item_wrap .item h5{
    font-size:14px;
    text-align: center;
    padding:10px 0;
}



.nav_info{
    flex-direction: column;
}
.header_info{
    padding-top: 5px;
    height: 48px;
    align-items: center;
    justify-content: flex-end;
}
.header_info .tel{
    padding-right: 30px;
}
.header_info .tel .search{
    cursor: pointer;
}
.header_info .tel .search i{
    color:#fff;
}
.header_info .tel a{
    color:#fff;
    font-family: 'Arial';
    font-size:14px;
    display: flex;
    margin-left:18px;
    padding-left: 18px;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition:0s;
}
.header_info .tel a:before{
    position: absolute;
    left: 0;
    top: 6px;
    content:'';
    display: block;
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.6);
}
.header_info .tel a i{
    font-size:14px;
    margin-right: 5px;
    color:var(--theme-color);
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav_info .lang_box{
    cursor: pointer;
    margin-right: 20px;
}
.nav_info .lang_box .ico i{
    margin-right: 5px;
}
.nav_info .lang_box:hover .ico{
    color:var(--theme-color);
}
.nav_info .lang_box .lang{
    display: flex;
    align-items: center;
    height: 28px;
    padding:0 20px;
    border-radius: 100px;
    cursor: pointer;
    color:#fff;
    transition:all .3s;
}
.nav_info .lang_box .lang img{
    height:18px;
    margin-right: 10px;
}
.nav_info .lang_box:hover .lang{
    background:#fff;
    color: var(--theme-color);
}
.nav_info .lang_box .lang i{
    margin-right: 3px;
}
.nav_info .lang_box .dlang a{
    padding: 5px 0;
}
.nav_info .lang_box .lang i.iconjt{
    margin-right: 0;
    font-size:12px;
    margin-left: 3px;
    transform: rotate(180deg);
    transition:all .3s;
}
.nav_info .lang_box:hover .lang i.iconjt{
    transform: rotate(0deg);
}
.nav_info .lang_box{
    position: relative;
    z-index: 100;
    margin-left: 15px;
}
.nav_info .lang_box .dlang{
    position: absolute;
    left: 0;
    top: 28px;
    width: 145px;
    background: #fff;
    padding:5px 15px 10px;
    display: none;
    border-radius: 3px;
    box-shadow: 0 3px 15px rgba(0,0,0,.1);
}
.nav_info .lang_box .dlang a{
    display: flex;
    align-items: center;
    color:#666;
}
.nav_info .lang_box .dlang a:hover{
    color:var(--theme-color);
}
.nav_info .lang_box .dlang a img{
    height: 16px;
    margin-right: 6px;
}
.nav_info .lang_box:hover .dlang{
    display: block;
}
.header.header_on{
    background:#fff;
    border-color: rgba(0, 0, 0, .08);
    box-shadow:  0 0 10px rgba(0,0,0,.08);
}
.header.header_on .logo .img1{
    display: none;
}
.header.header_on .logo .img2{
    display: block;
}
.header_on .nav .nav_li .nav1 a{
    color:#333;
}
.header_on .nav .nav_li.cur .nav1 a,.header_on .nav .nav_li:hover .nav1 a{
    color:var(--theme-color);
}
.header_on .nav .nav_li:hover .nav1 a:after,.header_on .nav .nav_li.cur .nav1 a:after{
    background: var(--theme-color);
}
.header_on .header_info .tel .search i,.header_on .header_info .tel a{
    color:#333;
}
.header_on .header_info .tel a:before{
    background-color:#999;
}
.header_on .nav_info .lang_box .lang{
    color:#333;
}
.header .nav_lang .get_touch{
    height: 44px;
    line-height: 44px;
    padding: 0 30px;
    background: var(--theme-color);
    color:#fff;
    cursor: pointer;
    margin-left: 100px;
}
.header .nav_lang .get_touch:hover{
    opacity: .8;
}

.header .follow_list a{
    width: 22px;
    height: 22px;
}
.header .follow_list a svg{
    width: 14px;
    height: 14px;
}

/* banner */
.banner{
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}
.banner .item_img img{
    width: 100%;
}
.banner .item .item_con{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 175px;
    background: rgba(0,0,0,.6);
    color:#fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 16%;
}

.banner .item .item_con .tit{
    
}
.banner .item .item_con .subtit{
    
}
.banner .item .item_desc{
    color:#fff;
    position: absolute;
    right: 0;
    bottom: 0;
    width:30%;
    background: rgba(214,41,55,.8);
    height: 310px;
    padding:60px 5% 0 40px;
    z-index: 999;
}
.banner .item .item_desc:before{
    content:'';
    display: block;
    width: 80px;
    height: 100%;
    clip-path: polygon(100% 0, 100% 100%,0 100%);
    position: absolute;
    left: -79.5px;
    bottom: 0;
    z-index: 55;
    background: rgba(214,41,55,.8);
}

.banner .swiper-pagination{
    color: #fff;
    font-size: 14px;
    z-index: 10;
    border-radius: 4px;
    padding-left: 8%;
    height: 175px;
    display: flex;
    align-items: center;
    font-family: 'Arial';
    position: absolute;
    bottom: 0;
    color:rgba(255,255,255,.5);
}
.banner .swiper-pagination span{
    margin: 0 6px;
}

.banner .swiper-pagination span.swiper-pagination-current{
    width: 30px;
    height:30px;
    border-radius: 50%;
    color:#fff;
    border:1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner .arrow{
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
    padding: 0 0 40px 40px;
}
.banner .swiper-button-next,.banner .swiper-button-prev{
    position: static;
    color:#fff;
}
.banner .swiper-button-next:after,.banner .swiper-button-prev:after{
    font-size: 18px;
}

.banner_ico{
    position: absolute;
    left: 50%;
    bottom:20px;
    z-index: 30;
    width: 42px;
    height: 42px;
    border: 1px solid #000;
    transform: rotate(-45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: downico 2s ease-out infinite;
    color:#000;
    transition:all .6s;
    cursor: pointer;
    border-radius: 5px;
}
.banner_ico i{
    transform: rotate(-45deg);
    display: block;
    font-size:20px;
}
@keyframes downico{
	0%{bottom: 20px;}
	50%{bottom:50px;}
	100%{bottom:20px;}
}
.banner_ico:hover{
    border-color: var(--theme-color);
    background: var(--theme-color);
    color:#fff;
}

.pub_btn1{
    height: 50px;
    background: var(--theme-color);
    line-height: 50px;
    display: inline-block;
    padding:0 26px;
    border-radius: 5px;
    color:#fff;
    transition:all .5s;
}
.pub_btn1 i{
    font-size:13px;
    margin-left: -5px;
    opacity: 0;
    transition:all .5s;
}
.pub_btn1:hover{
    opacity: .9;
    box-shadow: 0 5px 20px 0 rgb(1 153 52 / 35%);
}
.pub_btn1:hover i{
    opacity: 1;
    margin-left:10px;
}




/* tit_box1 */


.tit_box1_center{
    text-align: center;
}
.tit_box1 .tit h4{
    
}
.tit_box1 .tit p{
    line-height: 1.4;
    margin-top: 10px;
}
.tit_box2{
    text-align: center;
    padding:80px 0 30px;
}
.tit_box2 .tit h4{
    color:#333;
    line-height: 1.1;
    font-size:40px;
    font-family: 'PoppinsSemiBold';
    text-transform: capitalize;
}
.tit_box2 .tit p{
    font-size:18px;
    margin-top:30px;
    color:#333;
}

.bg1{
    background:#f2f2f2;
    overflow: hidden;
}
.bg2{
    background:var(--theme-color);
}
.bg3{
    background: #f5f5f5;
}

/* product_menu */

.product_menu{
    margin:-10px;
}
.product_menu .item{
    padding:10px;
    width: 16.666%;
}
.product_menu .item a{
    background: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    transition:all .4s;
}
.product_menu .item a .item_img immg{
    transition:all .4s;
}
.product_menu .item .item_con .tit{
    margin-top: 10px;
}
.product_menu .item a:hover,.product_menu .item:first-child a{
    background: var(--theme-color);
    color:#fff;
}
.product_menu .item a:hover .item_img img,.product_menu .item:first-child a .item_img img{
    filter: brightness(100000%);
}


/* product_list */


.product_list{
   overflow: hidden;
   position: relative;
}
.product_list .item_con{
    padding-top: 30px;
}
.product_list .item_con .info{
    flex:1;
    min-width: 0;
    padding-right: 20px;
}
.product_list .item .item_con .tit{
    transition:all .4s;
}
.product_list .item_con .info .desc{
    color:#666;
    line-height: 1.3;
    margin-top: 10px;
}
.product_list .item_con .btn{
    width: 55px;
    height: 55px;
    border: 2px solid #7b7b7b;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .4s;
}
.product_list .item_con .btn i{
    font-size: 20px;
}
.product_list .item:hover .item_con .tit{
    color:var(--theme-color);
    font-family: 'MagraBold';
    font-weight: bold;
}
.product_list .item:hover .item_con .btn{
    border-color:var(--theme-color);
    color:var(--theme-color);
}


.public_arrow{
    position: relative;
}
.public_arrow .swiper-button-prev:after,.public_arrow .swiper-button-next:after{
    display: none;
}
.public_arrow .swiper-button-prev{
    left: -50px;
}
.public_arrow .swiper-button-next{
    right: -50px;
}
.public_arrow .swiper-button-prev i,.public_arrow .swiper-button-next i{
    font-size:42px;
    font-weight: bold;
    display: block;
    color:#c5c5c5;
}
.public_arrow .swiper-button-prev i{
    transform: rotate(180deg);
}
.public_arrow .swiper-button-prev:hover i,.public_arrow .swiper-button-next:hover i{
    color:var(--theme-color);
}

/* about */

.about_wrap{
    background: url("../images/map.png") no-repeat center #f6f6f6;
}

.about_img{
    width: 45.6%;
}
.about_img img{
    width: 100%;
}
.about_con{
    flex:1;
    min-width: 0;
    padding-right:6%;
}
.about_con .tit:after{
    content:'';
    width: 80px;
    height: 4px;
    background: var(--theme-color);
    display: block;
    margin-top: 40px;
}

.about_con .desc{
    margin:40px 0 60px;
    color:#666;
}


/* about_data */

.about_data{
    gap:50px;
}
.about_data .item{
    padding:20px 60px;
    background: #fff;
    width: 33.333%;
}
.about_data .item .num{
   font-family: 'Arial';
   font-weight: bold;
}
.about_data .item .num span{
    line-height: 1.2;
}
.about_data .item .desc{
    color: #666;
    line-height: 1.3;
}
.about_data .item .img{
    padding-right: 20px;
}

/* global_customer_swiper */

.certifications_wrap{
    background: url("../images/map.png") no-repeat center;
}
#global_customer_swiper_arrow{
    width: 1100px;
    margin: auto;
}
.global_customer_swiper {
  overflow: hidden;
  margin-top: 4vw;
  perspective: 1200px;
  z-index: 1;
  position: relative;
  -webkit-box-reflect: below -100px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), to(rgba(250, 250, 250, 0.3)));
  max-width: 1070px;
  margin: auto;
  padding-bottom: 45px;
}

.global_customer_swiper .swiper-wrapper {
  align-items: flex-end;
  transform-style: preserve-3d;
}

.global_customer_swiper .item {
  background: url(../images/bg21.png) no-repeat center;
  width: 270px;
  background-size: 100% 100%;
  height: 360px;
  text-align: center;
  padding: 25px;
  box-sizing: border-box;
  position: relative;
  transition: ease 1s;
  transform-origin: center bottom;
}

.global_customer_swiper .item:last-child {
  margin-right: 0;
}
.global_customer_swiper .swiper-pagination{
    text-align: center;
    margin-top: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: 1;
}
.global_customer_swiper .swiper-pagination .swiper-pagination-bullet{
    display: block;
    width: 9px;
    height: 9px;
    background: #dcdcdc;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 4px;
    transition: ease 0.4s;
    cursor: pointer;
    outline: none;
    opacity: 1;
}
.global_customer_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 19px;
    background:var(--theme-color);
    border-radius: 4px;
}

/* solution_list */

.solution_list{
    position: relative;
}
.solution_list .swiper-slide {
    width:820px;
	transition-timing-function:linear;
}
.solution_list .item{
    overflow: hidden;
    position: relative;
    display: block;
}
.solution_list .item .con{
    position: absolute;
    left: 0;
    bottom:-50%;
    width: 100%;
    padding: 40px 60px;
    color:#fff;
    transition:all .4s;
}
.solution_list .item .con h4{
    font-family: 'MagraBold';
    margin-bottom: 10px;
    font-weight: bold;
}
.solution_list .item:hover .con{
    bottom: 0;
}

.solution_list .swiper-button-prev{
    left:10%;
}
.solution_list .swiper-button-next{
    right:10%;
}
.solution_list .swiper-button-prev,.solution_list .swiper-button-next{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height:80px;
    background: rgba(0,0,0,.2);
}
.solution_list .swiper-button-prev i,.solution_list .swiper-button-next i{
    font-size:60px;
    display: block;
    color:#fff;
}
.solution_list .swiper-button-prev:after,.solution_list .swiper-button-next:after{
    display: none;
}
.solution_list .swiper-button-prev i{
    transform: rotate(180deg);
}
.solution_list .swiper-button-prev:hover i,.solution_list .swiper-button-next:hover i{
    color:var(--theme-color);
}

/* network_wrap */

.network_wrap{
    background: url("../images/map1.png") no-repeat right top 80px #f2f2f2;
}
.network_tit{
    width: 40%;
}
.network_list{
    overflow: hidden;
}
.network_list .item{
    background: #fff;
    padding: 40px;
    transition:all .4s;
}
.network_list .item .item_con{
    flex:1;
    min-width: 0;
    padding-left: 30px;
}
.network_list .item .item_con .desc{
    line-height: 1.4;
    color:#666;
}
.network_list .item:hover{
    background: var(--theme-color);
}
.network_list .item:hover .item_con,.network_list .item:hover .item_con .desc{
    color:#fff;
}
.network_list .item:hover .item_img img{
    filter: brightness(100000%);
}

/* news */
.news_tit .tit{
    flex:1;
}
.news_tit .tit h4:after{
    width: 80px;
    height: 4px;
    background: var(--theme-color);
    content:'';
    display: block;
    margin-top:20px;
}
.news_list{
    margin:0 -20px;
}
.news_list .item{
    width: 33.333%;
    padding:0 20px;
    display: block;
}
.news_list .item .item_img{
    overflow: hidden;
    height: 300px;
}
.news_list .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_list .item .item_con{
    border: 1px solid #eee;
    border-top: none;
    padding: 25px 35px;
    transition:all .5s;
}
.news_list .item .item_con .tit{
    font-family: 'MagraBold';
    color:#333;
    height: 72px;
    line-height: 1.4;
    font-weight: bold;
    transition:all .5s;
}
.news_list .item .item_con .desc{
    margin:3px 0 25px;
    line-height: 1.5;
}
.news_list .item .item_con .btn_time{
    border-top:1px solid #eee;
    padding-top: 15px;
}
.news_list .item .item_con .btn_time .btn{
    line-height: 1.4;
}
.news_list .item .item_con .btn_time .btn:after{
    content:'';
    width: 100%;
    height: 2px;
    display: block;
}
.news_list .item .item_con .btn_time .time{
    display: flex;
    flex:1;
    justify-content: flex-end;
    font-family: 'PoppinsSemiBold';
    color:var(--theme-color);
}
.news_list .item:hover .item_con{
    box-shadow: 0 0 15px rgba(0,0,0,.15);
}
.news_list .item:hover .item_con .tit{
    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 #ddd;
}


/* footer */

.footer{
    background: #1e1f20;
}
.footer_hd{
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer_hd .tit{
    color:#fff;
    flex:1;
    min-width: 0;
}
.footer_hd .tit h4{
    line-height: 1;
    margin-bottom: 10px;
}
.footer_hd .more .more_style3{
    color:#fff;
    border-color:#fff;
    width: 220px;
}

.footer_con{
    padding: 50px 0;
    color:#97a1aa;
}
.footer_info{
    width:40%;
    padding-right: 60px;
}
.footer_info .logo p{
    font-family: 'MagraBold';
    padding-left:40px;
    margin-left:40px;
    border-left: 1px solid rgba(255,255,255,.45);
    color:#fff;
    line-height: 1.4;
    font-weight: bold;
}
.footer_info .info{
    margin: 40px 0 40px;
}
.footer_info .info p{
    font-size: 18px;
}
.footer_info .info p span{
    margin-right: 20px;
}
.footer_info .info p i{
    font-family:'Arial';
    margin-right: 20px;
    color:#fff;
}
.footer_info .info p a{
    color:#fff;
}
.footer_info .share h4{
    margin-right: 20px;
}
.footer_menu{
    flex:1;
    min-width: 0;
}
.footer_menu .item{
    flex:1;
}
.footer_menu .item:nth-child(-n+2){
    flex:1.5;
}
.footer_menu .item h4{
    margin-bottom: 10px;
}
.footer_menu .item h4 a{
    font-size: 22px;
    color:#fff;
    font-family: 'MontserratRegular';
    font-weight: normal;
}
.footer_menu .item h5 a{
    margin-bottom: 10px;
    display: block;
}

.footer_message{
    width:40%;
}

.footer_message .form .input_box{
    margin:0 -10px;
}
.footer_message .form .input{
    padding:0 10px;
    flex:1;
}
.footer_message .form input,.footer_message .form textarea{
    border-radius: 200px;
    height: 45px;
    outline: none;
    border: none;
    border-bottom: 1px solid #bbb;
    font-size:14px;
    padding:15px 0;
    width: 100%;
    line-height: 25px;
    border-radius: 0;
    background: transparent;
    margin-bottom: 10px;
}
.footer_message .form textarea{
    height: 100px;
}
.footer_message .form .button{
    margin-top: 15px
}
.footer_message .form button,.footer_message .form .button a{
    border:none;
    outline: none;
    width:180px;
    height: 45px;
    border-radius:5px;
    background: var(--theme-color);
    color:#fff;
    cursor: pointer;
    font-size:16px;
    transition:all .3s;
    font-family: 'PoppinsMedium';
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_message .form .button a{
    background: #333;
    margin-left: 20px;
}
.footer_message .form .button a:hover{
    text-decoration: none;
}
.footer_message .form button:hover,.footer_message .form .button a:hover{
    opacity: .8;
}


.footer_copyright{
    font-size:14px;
    display: flex;
    height: 70px;
    justify-content: center;
    align-items: center;
    color:#b0b0b0;
    border-top: 1px solid rgba(255,255,255,.2);
    font-family: 'Arial';
}
.footer_copyright a{
    margin-left:30px;
    color:#b0b0b0;
}
.footer_con a:hover{
    color:var(--theme-color);
    text-decoration: underline;
}
.footer_copyright a:hover{
    text-decoration: underline;
}

/* page_banner */

.page_banner{
    margin-top:120px;
    position: relative;
}
.page_banner .img img{
    width: 100%;
}
.page_banner_con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#fff;
}
.page_banner_con .info{
    width: 100%;
    text-align: center;
}
.page_banner_con .tit{
    text-transform: uppercase;
}
.page_banner_con .subtit{
    margin-top:20px;
}
.page_banner_con .pos{
    text-transform: uppercase;
}
.page_banner_con .pos a{
    padding: 0 3px;
}


.page_about_banner_con{
    padding-right: 13%;
    top: 24%;
    align-items:flex-end;
}
.page_about_banner_con .tit{
    color:#333;
}

.page_product_banner_con{
    position: absolute;
    left: 0;
    top:80px;
    width: 100%;
    text-align: center;
}
.page_product_banner_con .tit{
    font-size:70px;
    font-family: 'RobotoMedium';
    line-height: 1;
}
.page_product_banner_con .subtit{
    font-size:40px;
}
.page_product_banner_con a{
    width: 150px;
    height: 40px;
    border-radius: 100px;
    background: var(--theme-color);
    font-size:14px;
    font-family: 'RobotoBold';
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:25px auto 0;
    color:#fff;
    transition:all .4s;
}
.page_product_banner_con a:hover{
    background: #333;
}


.page_banner_menu{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.page_banner_menu .list{
    justify-content: center;
}
.page_banner_menu .list .item a{
    background: rgba(0,0,0,.6);
    height: 60px;
    border-left: 1px solid rgba(255,255,255,.2);
    padding:0 40px;
    display: flex;
    align-items: center;
    color:#fff;
    font-size:18px;
}
.page_banner_menu .list .item.cur a,.page_banner_menu .list .item:hover a{
    background: var(--subtheme-color);
}


.pt80b100{
    padding-top: 80px;
    padding-bottom: 100px;
}

.inner_pos{
    padding-top: 20px;
    color:#999;
    font-size:18px;
    text-transform: uppercase;
}
.inner_pos a{
    color:#999;
    padding: 0 3px;
}
.inner_pos a:first-child{
    padding-left: 0;
}
.inner_pos a:last-child{
    color:#333;
}
.inner_pos a:hover{
    color:var(--theme-color);
}



/* page_product_menu */


.page_product_menu{
    width: 440px;
    margin-right: 100px;
}
.page_product_menu .bg{
    background: #f7f7f7;
}
.page_product_menu .search form{
    position: relative;
    margin-bottom:20px;
}
.page_product_menu .search .input{
    font-size:12px;
    border: 2px solid #e7e7e7;
    border-radius: 3px;
    width: 100%;
    height: 45px;
    padding:0 20px 0 38px;
}
.page_product_menu .search button{
    position: absolute;
    border:none;
    background: transparent;
    left: 10px;
    top: 10px;
}
.page_product_menu .menu{
    overflow: hidden;
}
.page_product_menu .menu_tit{
    font-family: 'MagraBold';
    color:#fff;
    height: 90px;
    display: flex;
    align-items: center;
    background: var(--theme-color);
    padding: 0 40px;
    font-weight: bold;
}
.page_product_menu .menu_list{
    padding:10px 40px;
}
.page_product_menu .menu_list .item{
    border-bottom: 1px solid #ddd;
    padding:14px 0;
}
.page_product_menu .menu_list .item:last-child{
    border-bottom: none;
}
.page_product_menu .menu_list .item .hd a{
    flex:1;
    min-width: 0;
    position: relative;
}
.page_product_menu .menu_list .item .hd i{
    cursor: pointer;
    line-height: 1;
    transition:all .4s;
    color:var(--theme-color);
    opacity: 0;
    font-size: 18px;
}
.page_product_menu .menu_list .item:hover .hd i{
    opacity: 1;
}
.page_product_menu .menu_list .item .bd{
    display: none;
    padding-left: 16px;
}
.page_product_menu .menu_list .item .bd a{
    font-size:14px;
    padding-top:8px;
    line-height: 1.4;
}

.page_product_menu .menu_list .item .hd.cur i,.page_product_menu .menu_list .item .hd i:hover{
    transform: rotate(0deg);
    color:var(--theme-color);
}

.page_product_menu .menu_list .item .hd.cur a,.page_product_menu .menu_list .item .hd a:hover,.page_product_menu .menu_list .item .bd a:hover{
    color:var(--theme-color);
}
.page_product_menu .menu_list .item .hd.cur a:before,.page_product_menu .menu_list .item .hd a:hover:before{
    background: var(--theme-color);
}


/* page_product_list */

.page_product_list{
    flex:1;
    min-width: 0;
}
.page_product_list .list{
    margin:-25px;
}

.page_product_list .item{
    display: block;
    padding:25px;
    width:50%;
}
.page_product_list .item .item_img img{
    width: 100%;
}
.page_product_list .item .item_con{
    padding-top: 30px;
}
.page_product_list .item .item_con .info{
    flex:1;
    min-width: 0;
    padding-right: 20px;
}
.page_product_list .item .item_con .tit{
    transition:all .4s;
    font-weight: bold;
}
.page_product_list .item .item_con .info .desc{
    color:#666;
    line-height: 1.3;
    margin-top: 10px;
}
.page_product_list .item .item_con .btn{
    width: 55px;
    height: 55px;
    border: 2px solid #7b7b7b;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .4s;
}
.page_product_list .item .item_con .btn i{
    font-size: 20px;
}
.page_product_list .item:hover .item_con .tit{
    color:var(--theme-color);
    font-family: 'MagraBold';
    font-weight: bold;
}
.page_product_list .item:hover .item_con .btn{
    border-color:var(--theme-color);
    color:var(--theme-color);
}



/* product_detail */

.j_pd_detail{
    padding:80px 0 50px;
}
.j_pd_detail_con{
   padding-top: 60px;
}
.j_pd_detail_hd_img{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.j_pd_detail_hd .infos{
    flex: 1;
    padding:0 0 0 5%;
    min-width: 0;
}

.j_pd_detail_hd .infos h1{
    font-size:48px;
    line-height: 1.2;
    color:var(--theme-color);
    font-family: 'RobotoBold';
}

.j_pd_detail_hd .infos .desc{
    font-size:18px;
    margin:35px 0 50px;
}
.j_pd_detail_hd .infos .desc p{
    padding-left: 25px;
    position: relative;
    margin-bottom: 6px;
}
.j_pd_detail_hd .infos .desc p:before{
    content:'';
    display: block;
    width: 13px;
    height: 8px;
    background: url("../images/arrow.png") no-repeat;
    position: absolute;
    left: 0;
    top: 10px;
}

.j_pd_detail_hd .infos .list{
    display: flex;
    margin:0 -16px;
}
.j_pd_detail_hd .infos .list .item{
    padding:0 16px;
}
.j_pd_detail_hd .infos .list .item .img{
    border-radius: 50%;
    border:2px solid var(--theme-color);
    overflow: hidden;
}


.j_pd_detail_hd .infos .btns{
    margin-top:100px;
}
.j_pd_detail_hd .infos .btns .btn{
    display: flex;
    align-items: center;
    height:45px;
    width: 240px;
    background: var(--subtheme-color);
    color:#fff;
    justify-content: center;
    text-transform: capitalize;
    border-radius: 100px;
    transition:all .4s;
    font-family: 'RobotoBold';
}
.j_pd_detail_hd .infos .btns .btn i{
    color:#fff;
    font-size:20px;
    margin-right: 8px;
    transition:all .3s;
}
.j_pd_detail_hd .infos .btns .btn:hover{
    background: var(--theme-color);
}


/* pdd_tit_box */

.pdd_tit_box{
    text-align: center;
    padding: 60px 0 30px;
}
.pdd_tit_box .tit{
    font-size:45px;
    font-family: 'RobotoMedium';
    text-transform: uppercase;
    line-height: 1.2;
}
.pdd_tit_box .desc{
    font-size:18px;
}
.j_pd_detail_introduction .desc{
    font-size:18px;
}
.j_pd_detail_introduction .desc p{
    margin-bottom: 6px;
}
.j_pd_detail_introduction .list{
    position: relative;
    overflow: hidden;
    padding:80px 0 100px;
}
.j_pd_detail_introduction .list .item{
    border-radius: 15px;
    overflow: hidden;
}
.j_pd_detail_introduction .list .item .img img{
    width: 100%;
}
.j_pd_detail_introduction .list .arrow{
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.j_pd_detail_introduction .list .swiper-button-next,.j_pd_detail_introduction .list .swiper-button-prev{
    position: initial;
    height:40px;
    width: 40px;
    border-radius: 50%;
    background: #bbb;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    margin-top: 0;
    margin:0 10px;
}
.j_pd_detail_introduction .list .swiper-button-next:after,.j_pd_detail_introduction .list .swiper-button-prev:after{
    font-size:18px;
    font-weight: bold;
}
.j_pd_detail_introduction .list .swiper-button-next:hover, .j_pd_detail_introduction .list .swiper-button-prev:hover{
    background: var(--theme-color);
}

/* pd_detail_application */

.j_pd_detail_application .list{
    margin:-13px;
    padding-bottom: 105px;
}
.j_pd_detail_application .list a{
    display: block;
    width: 33.333%;
    padding:13px;
}
.j_pd_detail_application .list .item{
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.j_pd_detail_application .list .item .img img{
    width: 100%;
}
.j_pd_detail_application .list .item .con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding:50px;
}
.j_pd_detail_application .item .con h4{
    font-size:30px;
    font-family:'RobotoMedium';
    color:#fff;
    line-height: 1.2;
    position: relative;
    padding-top: 20px;
}
.j_pd_detail_application .item .con h4:before{
    content:'';
    width: 30px;
    height: 2px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    top: 0;
}
.j_pd_detail_application .item:hover .img img{
    opacity:0.7;
}


.j_pd_detail_introduction .desc{
    font-size:18px;
}
.j_pd_detail_introduction .desc p{
    margin-bottom: 6px;
}
.j_pd_detail_introduction .list{
    position: relative;
    overflow: hidden;
    padding:80px 0 100px;
}
.j_pd_detail_introduction .list .item{
    border-radius: 15px;
    overflow: hidden;
}
.j_pd_detail_introduction .list .item .img img{
    width: 100%;
}
.j_pd_detail_introduction .list .arrow{
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.j_pd_detail_introduction .list .swiper-button-next,.j_pd_detail_introduction .list .swiper-button-prev{
    position: initial;
    height:40px;
    width: 40px;
    border-radius: 50%;
    background: #bbb;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    margin-top: 0;
    margin:0 10px;
}
.j_pd_detail_introduction .list .swiper-button-next:after,.j_pd_detail_introduction .list .swiper-button-prev:after{
    font-size:18px;
    font-weight: bold;
}
.j_pd_detail_introduction .list .swiper-button-next:hover, .j_pd_detail_introduction .list .swiper-button-prev:hover{
    background: var(--theme-color);
}

/* pd_detail_application */

.j_pd_detail_application .list{
    margin:-13px;
    padding-bottom: 105px;
}
.j_pd_detail_application .list a{
    display: block;
    width: 33.333%;
    padding:13px;
}
.j_pd_detail_application .list .item{
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.j_pd_detail_application .list .item .img img{
    width: 100%;
}
.j_pd_detail_application .list .item .con{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding:50px;
}
.j_pd_detail_application .item .con h4{
    font-size:30px;
    font-family:'RobotoMedium';
    color:#fff;
    line-height: 1.2;
    position: relative;
    padding-top: 20px;
}
.j_pd_detail_application .item .con h4:before{
    content:'';
    width: 30px;
    height: 2px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    top: 0;
}
.j_pd_detail_application .item:hover .img img{
    opacity:0.7;
}




/* page_ecology_index */

.page_ecology_index .list{
    margin:0 -20px;
}
.page_ecology_index .list .item{
    padding:0 20px;
}
.page_ecology_index .list .item .img img{
    border-radius: 10px;
}
.page_ecology_index .list .item .tit{
    font-size:20px;
    text-align: center;
    margin-top: 20px;
}

/* page_ecology_index_swiper */

.page_ecology_index_swiper{
    padding: 40px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    display: none;
}
.page_ecology_index_swiper_Wrap .page_ecology_index_swiper:first-child{
    display: block;
}
.page_ecology_index_swiper .item{
    display: block;
    padding: 30px 60px;
    background: #fff;
    border:1px solid #fff;
}
.page_ecology_index_swiper .item .img{
    display: flex;
    justify-content: center;
}
.page_ecology_index_swiper .item .tit{
    text-align: center;
    margin-top:20px;
}
.page_ecology_index_swiper .swiper-button-next,.page_ecology_index_swiper .swiper-button-prev{
    background:var(--theme-color);
    width: 30px;
    height: 50px;
    color:#fff;
    opacity: .5;
}
.page_ecology_index_swiper .swiper-button-next:after,.page_ecology_index_swiper .swiper-button-prev:after{
    font-size:18px;
}
.page_ecology_index_swiper .swiper-button-prev{
    left: 0;
    border-radius: 0 10px 10px 0;
}
.page_ecology_index_swiper .swiper-button-next{
    right: 0;
    border-radius: 10px 0 0 10px;
}
.page_ecology_index_swiper .swiper-button-next:hover,.page_ecology_index_swiper .swiper-button-prev:hover{
    opacity: 1;
}
.page_ecology_index_swiper .item:hover{
    border-color: var(--theme-color);
}
.page_ecology_index_swiper .item:hover .tit{
    color:var(--theme-color);
}

/* page_ecology_index_partners */

.page_ecology_index_partners .list{
    margin:-25px;
    padding-bottom: 120px;
}
.page_ecology_index_partners .list .item_wrap{
    width: 20%;
    padding:25px;
}
.page_ecology_index_partners .list .item{
    background:#fff;
    padding:10px;
    box-shadow: 0 0 10px rgba(0,0,0,.08);
    border-radius: 10px;
}
.page_ecology_index_partners .list .item .img{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* page_become_form */

.page_become_form{
    width:660px;
    margin:auto;
    padding-bottom: 110px;
}
.page_become_form form{
    margin:0 -20px;
}
.page_become_form .input{
    width: 50%;
    padding:0 20px 20px;
}
.page_become_form .input.input_show{
    display: none;
}
.page_become_form .input h4{
    font-size:13px;
    color:#666;
    margin-bottom: 3px;
    text-align: left;
}
.page_become_form .input h4 i{
    color:var(--theme-color);
}
.page_become_form .input input,.page_become_form .input select,.page_become_form .input textarea{
    width: 100%;
    height: 50px;
    padding:10px;
    line-height: 28px;
    border:1px solid #ddd;
    border-radius: 5px;
    padding:0 10px;
    outline: none;
    font-size:16px;
}
.page_become_form .input input::placeholder,.page_become_form .input textarea::placeholder{
    font-size:13px;
    color:#bbb;
}
.page_become_form .input select{
    font-size:13px;
    color:#bbb;
}
.page_become_form .input select option{
    padding:5px 10px;
    font-size:16px;
    color:#333;
}
.page_become_form .input select.cur{
    color:#333;
    font-size:16px;
}
.page_become_form .input textarea{
    height: 120px;
}
.page_become_form .input.input100{
    width: 100%;
}
.page_become_form .txt_btn{
    padding:10px 20px 0;
    width: 100%;
}
.page_become_form .txt_btn .txt{
    font-size:13px;
    color:#666;
    flex:1;
    display: block;
    text-align: left;
}
.page_become_form .txt_btn .button button{
    width: 140px;
    height: 45px;
    background: var(--theme-color);
    border-radius: 100px;
    border:none;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-family: 'RobotoBold';
    text-transform: uppercase;
    font-size:16px;
    cursor: pointer;
    transition:all .4s;
}
.page_become_form .txt_btn .button button:hover{
    background: #333;
}

/* page_ecology_index_menu */

.page_ecology_index_menu{
    margin:-35px;
    padding-bottom: 100px;
}
.page_ecology_index_menu .item{
    
    width: 33.333%;
    padding:35px;
}
.page_ecology_index_menu .item a{
    background: #f7f7f7;
    border-radius:10px;
    padding:55px;
    display: block;
    text-align: center;
    height: 100%;
    transition:all .4s;
}
.page_ecology_index_menu .item .item_con{
    padding-top: 20px;
}
.page_ecology_index_menu .item .item_con .tit{
    font-size:36px;
    font-family: 'RobotoBold';
}
.page_ecology_index_menu .item .item_con .desc{
    margin-top:5px;
}
.page_ecology_index_menu .item .item_con .btn{
    width: 140px;
    height: 40px;
    border-radius: 100px;
    border:1px solid var(--theme-color);
    font-size:14px;
    margin:40px auto 0;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'RobotoBold';
    color:var(--theme-color);
    transition:all .4s;
}
.page_ecology_index_menu .item a:hover{
    box-shadow: 0 0 15px rgba(0,0,0,.08);
}
.page_ecology_index_menu .item a:hover .item_con .btn{
    background: var(--theme-color);
    color:#fff;
}

/* page_ecology_list_advantage */

.page_ecology_list_advantage .item{
    width: 25%;
    padding:40px 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.page_ecology_list_advantage .item .item_con{
    padding-top: 30px;
}
.page_ecology_list_advantage .item .item_con .tit{
    font-size:20px;
    color:var(--theme-color);
}
.page_ecology_list_advantage .item .item_con .desc{
    margin-top: 6px;
}
.page_ecology_list{
    padding:100px 0;
}
.page_ecology_list_advantage .item:hover{
    background: #f7f7f7;
}

.page_ecology_list .list{
    margin:-13px;
}
.page_ecology_list .list a{
    width: 20%;
    display: block;
    padding: 13px;
}
.page_ecology_list .list .item{
    padding:30px 50px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #fff;
    transition:all .4s;
}
.page_ecology_list .list .item .img{
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_ecology_list .list .item .con h4{
    margin-top: 20px;
    text-align: center;
}
.page_ecology_list .list .item:hover .con h4{
    color:var(--theme-color);
}
.page_ecology_list .list .item:hover{
    border-color: var(--theme-color);
}

/* public_download */

.public_download .page_support_download_list{
    padding-bottom: 40px;
}
.public_download .page_support_download_list .list_item{
    padding-top: 0;
}
.public_download .page_support_download_list .list_item .list_wrap{
    display: block;
    padding-top: 0;
}
.public_download .page_support_download_list .list_item .list{
    padding-top: 0;
}

/* public_faq */

.public_faq{
    padding-bottom: 80px;
}
.public_faq .page_support_faq_list .list{
    padding-top: 0;
}



.page_products_public_more{
    display: inline-block;
    height: 40px;
    background:var(--theme-color);
    margin:40px 0 0;
    padding: 0 20px;
    line-height: 40px;
    color:#fff;
    transition:all .4s;
    border-radius: 100px;
    text-transform: uppercase;
    font-size:14px;
}
.page_products_public_more:hover{
    background: #333;
}




/* page_public_rml_series_retrieve */

.page_public_rml_series_retrieve{
    position: relative;
}
.page_public_rml_series_retrieve .j_bg{
    position: relative;
    z-index: 1;
}
.page_public_rml_series_retrieve .j_bg1{
    background: #999;
    height: 500px;
}
.page_public_rml_series_retrieve .j_bg:after{
    content:'';
    display: block;
    width: 100%;
    height: 100%;
    z-index:2;
    background: rgba(0,0,0,.2);
    position: absolute;
    left: 0;
    top: 0;
}
.page_public_rml_series_retrieve .j_bg img{
    width: 100%;
}
.page_public_rml_series_retrieve .j_con{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color:#fff;
    z-index: 3;
}
.page_public_rml_series_retrieve .j_con .txt{
    font-size:24px;
}
.page_public_rml_series_retrieve .j_con .tit{
    font-size:54px;
    font-family: 'RobotoMedium';
    margin:20px 0 50px;
}
.page_public_rml_series_retrieve .j_con .btn{
    width: 150px;
    height: 44px;
    background: var(--theme-color);
    color:#fff;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:14px;
    text-transform: uppercase;
    transition:all .4s;
}
.page_public_rml_series_retrieve .j_con .btn:hover{
    opacity: .7;
}


/* page_about1 */

.page_about_panel1{
    background: url("../images/map.png") no-repeat center top 80px;
}
.page_about_panel1 .tit{
    padding: 0 10%;
}


/* page_about_panel2 */

.page_about_panel2_con{
    flex:1;
    min-width: 0;
    background: url("../images/bg2.jpg") no-repeat center #f5f5f5;
    padding: 50px 80px 50px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page_about_panel2_con .tit{
    padding-right: 5%;
}
.page_about_panel2_con .desc{
    margin: 40px 0 60px;
}
.page_about_panel2_img{
    width: 48%;
}

/* page_about_panel3 */


.page_about_panel3_tit .tit{
    width: 60%;
}
.page_about_panel3_tit .desc{
    flex:1;
    min-width: 0;
}
.page_about_panel3_tit .desc .more{
    width: 120px;
    height: 120px;
    margin-top: 20px;
    position: relative;
}
.page_about_panel3_tit .desc .more .ico{
    width: 70px;
    height: 70px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 25px;
    top: 25px;
    color:#fff;
}
.page_about_panel3_tit .desc .more .ico i{
    font-size: 22px;
}

.page_about_panel3_list{
    margin-top: 30px;
    overflow: hidden;
}
.page_about_panel3_list .item .item_img img{
    width: 100%;
}
.page_about_panel3_list .item .item_con{
    border:1px solid #f2f2f2;
    border-top: none;
    padding: 40px;
}
.page_about_panel3_list .item .item_con .tit{
    font-family: 'MagraBold';
    font-weight: bold;
}
.page_about_panel3_list .item .item_con .desc{
    height: 108px;
    margin-top: 10px;
    line-height: 1.5;
}
.page_about_panel3_list .item:hover .item_con{
    border-color:var(--theme-color);
}
.page_about_panel3_list .item:hover .item_con .tit{
    color:var(--theme-color);
}

/* page_lastest_news_list */

.page_lastest_news_list{
    margin-top: 30px;
}
.page_lastest_news_list .item .item_img{
    width: 36%;
    height: 185px;
    overflow: hidden;
}
.page_lastest_news_list .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_lastest_news_list .item .item_con{
    flex:1;
    min-width: 0;
    border: 1px solid #f2f2f2;
    padding: 25px 35px;
}
.page_lastest_news_list .item .item_con .time{
    color:var(--theme-color);
    font-family: 'Arial';
}
.page_lastest_news_list .item .item_con .tit{
    font-family:'MagraBold';
    font-size: 22px;
    line-height: 1.2;
    margin: 5px 0;
    transition:all .4s;
    font-weight: bold;
}
.page_lastest_news_list .item:hover .item_con .tit{
    color:var(--theme-color);
}
.page_lastest_news_list .swiper-pagination{
    text-align: center;
    width: 100%;
    margin-top: 20px;
    position: static;
}
.page_lastest_news_list .swiper-pagination .swiper-pagination-bullet{
    width: 30px;
    height: 3px;
    background: #c7c7c7;
    border-radius: 0;
    margin: 0 5px;
    opacity: 1;
}
.page_lastest_news_list .swiper-pagination .swiper-pagination-bullet-active{
    background: var(--theme-color);
}


/* public_recommended_products */

.public_recommended_products{
    padding:30px 0 50px;
}
.public_recommended_products_list .list{
    gap:13px;
    padding-top:10px;
}
.public_recommended_products_list .list .item{
    display: block;
    width: 25%;
    background: #fff;
    padding:30px 40px 50px;
    transition:all .4s;
    border-radius: 10px;
}
.public_recommended_products_list .list .item h4{
    font-size:20px;
    font-family: 'RobotoMedium';
    margin-top: 20px;
    text-align: center;
    transition:all .4s;
}
.public_recommended_products_list .list .item:hover{
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}
.public_recommended_products_list .list .item:hover h4{
    color:var(--theme-color);
}

/* public_cases_swiper */

.public_cases_swiper{
    padding-bottom: 100px;
    position: relative;
}
.public_cases_swiper .item{
    display: block;    
}
.public_cases_swiper .item .item_img{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.public_cases_swiper .item .item_img .img img{
    width: 100%;
}
.public_cases_swiper .item .item_img .con{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding:80px 40px 30px;
    background: linear-gradient(to top,rgba(0,0,0,.7),transparent);
    color:#fff;
}
.public_cases_swiper .item .item_img .con h4{
    font-size:24px;
    margin-bottom: 5px;
}
.public_cases_swiper .item .item_img .con p{
    font-family: 'RobotoLight';
}
.public_cases_swiper .item .item_btn{
    justify-content: flex-end;
    margin-top: 32px;
}
.public_cases_swiper .item .item_btn .btn{
    width: 140px;
    height: 40px;
    background: #333;
    border-radius: 100px;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .4s;
}
.public_cases_swiper .item .item_btn .btn:hover{
    background: var(--theme-color);
}
.public_cases_swiper .arrow{
    display: flex;
    position: absolute;
    right: 0;
    top:-90px;
    bottom: 100px;
}
.public_cases_swiper .swiper-button-next,.public_cases_swiper .swiper-button-prev{
    position: static;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    justify-content:center;
    align-items: center;
    margin:0;
    opacity: 1;
    color:var(--theme-color);
    margin-right:10px;
    transition:all .3s;
    background: #fff;
}
.public_cases_swiper .swiper-button-next:after,.public_cases_swiper .swiper-button-prev:after{
    font-size:18px;
    font-weight: bold;
}
.public_cases_swiper .swiper-button-next:hover,.public_cases_swiper .swiper-button-prev:hover{
    background: var(--theme-color);
    color:#fff;
    border-color: var(--theme-color);
}



/* product_detail */

.pd_detail{
    background: url("../images/bg3.jpg") no-repeat center;
}

.pd_detail_hd .pics{
    width:50%;
    position: relative;
}
.pd_detail_hd .pics .mySwiper2{
    flex:1;
    min-width: 0;
    margin:0;
    overflow: hidden;
    position: relative;
}
.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%;
    background: #fff;
}
.pd_detail_hd .pics .mySwiper2 .img img{
    width: 100%;
    object-fit: contain;
}
.pd_detail_hd .pics .mySwiper1_w{
    padding:20px 0;
}
.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 #c8c8c8;
    overflow: hidden;
    height:120px;
    width: 100%;
    padding: 5px;
}
.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{
    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:72px;
    height: 72px;
    opacity: 1;
    background:rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -13%;
    color:#fff;
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-next:after,.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev:after{
    font-size:24px;
    font-weight: bold;
}

.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev{
    
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-next{
    
}
.pd_detail_hd .pics .mySwiper1_w .swiper-button-next:hover,.pd_detail_hd .pics .mySwiper1_w .swiper-button-prev:hover{
    background: var(--theme-color);
}


.pd_detail_hd .infos{
    flex: 1;
    padding:10px 0 0 8%;
    min-width: 0;
}
.pd_detail_hd .infos h1{
    font-size:48px;
    line-height: 1.2;
    font-family: 'MagraBold';
    font-weight: bold;
}

.pd_detail_hd .infos .desc{
    font-size: 18px;
    margin:20px 0 0;
    line-height: 1.6;
}
.pd_detail_hd .infos .desc span{
    padding-left: 5px;
}

.pd_detail_hd .infos .params{
    color:#333;
    margin-top: 40px;
    gap:20px;
    justify-content:space-between;
}
.pd_detail_hd .infos .params .img{
    width: 80px;
}
.pd_detail_hd .infos .params p{
    line-height:1.6;
    margin-bottom: 12px;
    padding-left: 40px;
}


.pd_detail_hd .infos .btns{
    margin-top:60px;
}
.pd_detail_hd .infos .btns .btn{
    align-items: center;
    text-transform: capitalize;
    margin-right:20px;
    font-family: 'RobotoBold';
    line-height: 1;
    display: flex;
    background: var(--theme-color);
    color:#fff;
    height:55px;
    padding:0 30px;
    cursor: pointer;
}
.pd_detail_hd .infos .btns .btn i{
    font-size:20px;
    line-height: 1;
    vertical-align: middle;
    margin-left: 6px;
    display: inline-block;
}
.pd_detail_hd .infos .btns .btn.btn2{
    background:#333;
}
.pd_detail_hd .infos .btns .btn:hover{
    opacity: .8;
}
.pd_detail_hd .infos .share{
    margin-top: 60px;
}


.pd_detail_intro1_wrap{
    border-bottom: 1px solid #e8e8e8;
}
.pd_detail_intro{
    background: #fff;
}

.pd_detail_intro1_con{
    width: 47.5%;
    padding-right: 5%;
}
.pd_detail_intro1_con .tit{
    font-family: 'MagraBold';
    line-height: 1;
    color:var(--theme-color);
    margin-bottom: 30px;
    font-weight: bold;
}
.pd_detail_intro1_con .con{
    color:#666;
}
.pd_detail_intro1_con .btn{
    height: 55px;
    padding: 0 30px;
    background: var(--theme-color);
    color:#fff;
    display: inline-block;
    line-height: 55px;
    margin-top: 60px;
    transition:all .4s;
}
.pd_detail_intro1_con .btn i{
    margin-left: 10px;
    font-size: 18px;
}
.pd_detail_intro1_con .btn:hover{
    opacity: .7;
}

.pd_detail_intro1_list{
    flex:1;
    min-width: 0;
    border-left: 1px solid #e8e8e8;
    height: 600px;
    overflow: hidden;
    position: relative;
}
.pd_detail_intro1_list .item{
    border-bottom: 1px solid #e8e8e8;
    padding: 50px 15%;
}

.pd_detail_intro1_list .item .item_img{
    width: 90px;
}
.pd_detail_intro1_list .item .item_con{
    padding-left: 40px;
    flex:1;
    min-width: 0;
}
.pd_detail_intro1_list .item .item_con .tit{
    font-family: 'MagraBold';
    color:var(--theme-color);
    font-weight: bold;
}
.pd_detail_intro1_list .item .item_con .desc{
    line-height: 1.4;
}
.pd_detail_intro1_list .arrow{
    position: absolute;
    right: 0;
    top: 45%;
    z-index: 55;
}
.pd_detail_intro1_list .swiper-button-next,.pd_detail_intro1_list .swiper-button-prev{
    position: static;
    margin: 0;
    width: 45px;
    height: 45px;
    border: 1px solid #eee;
    opacity: 1;
    margin: 15px 0;
    color:#666;
}
.pd_detail_intro1_list .swiper-button-next:after,.pd_detail_intro1_list .swiper-button-prev:after{
    font-size: 20px;
}
.pd_detail_intro1_list .swiper-button-prev{
    transform: rotate(90deg);
}
.pd_detail_intro1_list .swiper-button-next{
    transform: rotate(90deg);
}
.pd_detail_intro2 .tit{
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}
.pd_detail_intro1_list .swiper-button-next:hover,.pd_detail_intro1_list .swiper-button-prev:hover{
    background: var(--theme-color);
    border-color:var(--theme-color);
    color:#fff;
}

/* page_related_products */

.page_related_products{
    
}
.page_related_products .list{
    
}
.page_related_products .list .item{
    width: 33.333%;
}


/* product_detail */

.j_pd_detail{
    background: #e4e7ea;
    padding:80px 0 50px;
}
.j_pd_detail_con{
   padding-top: 60px;
}
.j_pd_detail_hd_img{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.j_pd_detail_hd .infos{
    flex: 1;
    padding:0 0 0 5%;
    min-width: 0;
}

.j_pd_detail_hd .infos h1{
    font-size:48px;
    line-height: 1.2;
    color:var(--theme-color);
    font-family: 'RobotoBold';
}

.j_pd_detail_hd .infos .desc{
    font-size:18px;
    margin:35px 0 50px;
}
.j_pd_detail_hd .infos .desc p{
    padding-left: 25px;
    position: relative;
    margin-bottom: 6px;
}
.j_pd_detail_hd .infos .desc p:before{
    content:'';
    display: block;
    width: 13px;
    height: 8px;
    background: url("../images/arrow.png") no-repeat;
    position: absolute;
    left: 0;
    top: 10px;
}

.j_pd_detail_hd .infos .list{
    display: flex;
    margin:0 -16px;
}
.j_pd_detail_hd .infos .list .item{
    padding:0 16px;
}
.j_pd_detail_hd .infos .list .item .img{
    border-radius: 50%;
    border:2px solid var(--theme-color);
    overflow: hidden;
}


.j_pd_detail_hd .infos .btns{
    margin-top:100px;
}
.j_pd_detail_hd .infos .btns .btn{
    display: flex;
    align-items: center;
    height:45px;
    width: 240px;
    background: var(--subtheme-color);
    color:#fff;
    justify-content: center;
    text-transform: capitalize;
    border-radius: 100px;
    transition:all .4s;
    font-family: 'RobotoBold';
}
.j_pd_detail_hd .infos .btns .btn i{
    color:#fff;
    font-size:20px;
    margin-right: 8px;
    transition:all .3s;
}
.j_pd_detail_hd .infos .btns .btn:hover{
    background: var(--theme-color);
}


/* pdd_tit_box */

.pdd_tit_box{
    text-align: center;
    padding: 60px 0 30px;
}
.pdd_tit_box .tit{
    font-size:45px;
    font-family: 'RobotoMedium';
    text-transform: uppercase;
    line-height: 1.2;
}
.pdd_tit_box .desc{
    font-size:18px;
}
.j_pd_detail_introduction .desc{
    font-size:18px;
}
.j_pd_detail_introduction .desc p{
    margin-bottom: 6px;
}
.j_pd_detail_introduction .list{
    position: relative;
    overflow: hidden;
    padding:80px 0 100px;
}
.j_pd_detail_introduction .list .item{
    border-radius: 15px;
    overflow: hidden;
}
.j_pd_detail_introduction .list .item .img img{
    width: 100%;
}
.j_pd_detail_introduction .list .arrow{
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.j_pd_detail_introduction .list .swiper-button-next,.j_pd_detail_introduction .list .swiper-button-prev{
    position: initial;
    height:40px;
    width: 40px;
    border-radius: 50%;
    background: #bbb;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    margin-top: 0;
    margin:0 10px;
}
.j_pd_detail_introduction .list .swiper-button-next:after,.j_pd_detail_introduction .list .swiper-button-prev:after{
    font-size:18px;
    font-weight: bold;
}
.j_pd_detail_introduction .list .swiper-button-next:hover, .j_pd_detail_introduction .list .swiper-button-prev:hover{
    background: var(--theme-color);
}




/* page_support_download_list */

.page_support_download_list{
    padding-bottom: 80px;
}
.page_support_download_list .list_item{
    padding:50px 0;
    border-bottom: 1px solid #666;
}
.page_support_download_list .list_item .menu{
    line-height: 1;
    transition:all .4s;
    cursor: pointer;
}
.page_support_download_list .list_item .menu h4{
    font-size:54px;
    font-family: 'RobotoMedium';
    flex:1;
    line-height: 1;
}
.page_support_download_list .list_item .menu i{
    font-size:36px;
    transform: rotate(45deg);
    transition:all .4s;
}
.page_support_download_list .list_item .menu:hover{
    color:var(--theme-color);
}
.page_support_download_list .list_item .menu.cur i{
    transform: rotate(0deg);
}
.page_support_download_list .list_item .list_wrap{
    padding-top: 20px;
    display: none;
}
.page_support_download_list .list_item .list{
    margin:-12px;
    padding-top: 20px;
}
.page_support_download_list .list_item .list a{
    width: 33.333%;
    padding:12px;
}
.page_support_download_list .list_item .list .item{
    background: #fff;
    padding:30px 40px 20px;
    transition:all .4s;
    border-radius: 10px;
}
.page_support_download_list .list_item .list .item h4{
    font-size:24px;
    line-height: 1.3;
    height: 94px;
}
.page_support_download_list .list_item .list .item .name_btn{
    margin-top: 30px;
}
.page_support_download_list .list_item .list .item .name_btn .name{
    flex:1;
    font-size:14px;
}
.page_support_download_list .list_item .list .item .name_btn i{
    font-size:30px;
}
.page_support_download_list .list_item .list .item:hover{
    background: var(--theme-color);
    color:#fff;
}


/* page_support_cases_list */

.page_support_cases_list{
    padding-bottom:100px;
}
.page_support_cases_list .list{
    margin:-12px;
}
.page_support_cases_list .list a{
    width: 33.333%;
    padding:12px;
}
.page_support_cases_list .list .item .item_img{
    border-radius: 10px;
    overflow: hidden;
}
.page_support_cases_list .list .item .item_con{
    padding:20px 0;
}
.page_support_cases_list .list .item .item_con .time{
    color:#666;
    font-size:14px;
    line-height: 1;
}
.page_support_cases_list .list .item .item_con .tit{
    font-size:20px;
    line-height: 1.4;
    margin-top: 10px;
    height: 56px;
}
.page_support_cases_list .list .item .item_con .tag{
    height: 32px;
    border:1px solid #666;
    padding:0 15px;
    display: inline-block;
    border-radius: 100px;
    margin: 10px 10px 0 0;
    font-size:14px;
    transition:all .4s;
    line-height: 30px;
}
.page_support_cases_list .list .item:hover .item_con .tit{
    color:var(--theme-color);
}
.page_support_cases_list .list .item .item_con .tag:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}


/* page_support_faq */

.page_support_faq{
    padding:70px 0 100px;
}
.page_support_faq_menu{
    justify-content: center;
    
    border-bottom: 1px solid #666;
}
.page_support_faq_menu .item{
    font-size:20px;
    margin: 0 36px;
    padding-bottom: 20px;
    cursor: pointer;
    font-family:'RobotoMedium';
    position: relative;
}
.page_support_faq_menu .item:after{
    content:'';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scale(0);
    width: 100%;
    height: 5px;
    background: var(--theme-color);
    border-radius: 100px;
    transition:all .4s;
}
.page_support_faq_menu .item.cur:after,.page_support_faq_menu .item:hover:after{
    transform: scale(1);
}

.page_support_faq_list .list{
    display: none;
    padding-top: 15px;
}
.page_support_faq_list .list:first-child{
    display: block;
}
.page_support_faq_list .list .item{
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}
.page_support_faq_list .list .item .tit{
    cursor: pointer;
    transition:all .4s;
}
.page_support_faq_list .list .item .tit h4{
    font-size:24px;
    flex:1;
    min-width: 0;
    line-height: 1;
    padding-right: 20px;
}
.page_support_faq_list .list .item .tit i{
    font-size:30px;
    line-height: 1;
    transform: rotate(45deg);
    transition:all .4s;
}
.page_support_faq_list .list .item .desc{
    padding-top: 20px;
    font-size:18px;
    display: none;
}
.page_support_faq_list .list .item .tit.cur i{
    transform: rotate(0deg);
}
.page_support_faq_list .list .item:hover .tit{
    color:var(--theme-color);
}

/* page_news */


.page_news{
    padding-top:80px;
    background: #f5f7f5;
}

.page_latest_news{
    padding:50px 0 80px;
}
.page_latest_news .item{
    
}
.page_latest_news .item_con{
    flex:1;
    min-width: 0;
    padding-left: 60px;
}
.page_latest_news .item_con .columnname{
    font-size:14px;
    color:#333;
}
.page_latest_news .item_con .tit{
    font-size:30px;
    line-height: 1.4;
    margin:15px 0 10px;
    transition:all .4s;
    color:#333;
    font-family: 'PoppinsSemiBold';
}
.page_latest_news .item_con .time{
    font-size:14px;
    color:var(--theme-color);
    font-family: 'PoppinsSemiBold';
}

.page_latest_news .item_con .desc{
    line-height: 1.8;
    margin:20px 0 50px;
}
.page_latest_news .item_img{
    border-radius:10px;
    width: 44%;
    overflow: hidden;
}
.page_latest_news .item_img img{
    width: 100%;
}
.page_latest_news .item_con .pub_btn1{
    height: 45px;
    line-height: 45px;
}

/* page_menu_public */

.page_menu_public_box{
    border-bottom: 1px solid #e5e5e5;
}
.page_menu_public_box .j_tit{
    flex:1;
}
.page_menu_public .item{
    margin-left: 80px;
}
.page_menu_public .item a{
    display: block;
    height:64px;
    line-height:64px;
    position: relative;
}
.page_menu_public .item a:after{
    content:'';
    width:0;
    height: 1px;
    background: var(--theme-color);
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
}
.page_menu_public .item a:hover{
    border-color: var(--theme-color);
    color:var(--theme-color);
}
.page_menu_public .item.cur a{
    color:var(--theme-color);
}
.page_menu_public .item.cur a:after{
    width: 100%;
}

.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{
    
}
.page_news_list .item{
    padding: 50px 0;
    border-bottom: 1px solid #ddd;
}
.page_news_list .item .item_img{
    width: 31%;
    height: 300px;
    overflow: hidden;
}
.page_news_list .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_news_list .item .item_con{
    flex:1;
    min-width: 0;
    padding-left: 40px;
}
.page_news_list .item .item_con .tit{
    font-family: 'MagraBold';
    font-weight: bold;
}
.page_news_list .item .item_con .info{
    padding: 0 0 10px;
    color:var(--theme-color);
    font-family: 'Arial';
    line-height: 1;
}
.page_news_list .item .item_con .desc{
    margin: 20px 0 50px;
}
.page_news_list .item .item_con .info span{
    margin: 0 15px;
    width: 1px;
    height:22px;
    background: var(--theme-color);
    display: inline-block;
}
.page_news_list .item .item_con .more i{
    margin-left: 6px;
}
.page_news_list .item:hover .item_con .tit{
    color:var(--theme-color);
}

.no_banner_pos{
    margin-top: 120px;
}

/* page_news_detail */


.page_news_detail_hd{
    
}
.page_news_detail_hd .columnname{
    color:#fff;
    height: 40px;
    font-family: 'PoppinsSemiBold';
    background: var(--theme-color);
    border-radius: 5px;
    padding: 0 20px;
    display: inline-block;
    line-height: 40px;
}

.page_news_detail_hd h1{
    font-size:56px;
    font-family: 'MagraBold';
    line-height: 1.2;
}
.page_news_detail_hd .info{
    margin-top:40px;
    font-size:14px;
    color:#888;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    padding:15px 0;
}
.page_news_detail_hd .info .time{
    margin-right: 30px;
    display: flex;
    align-items: center;
}
.page_news_detail_hd .info .time i{
    margin-right: 6px;
    font-size:18px;
}
.page_news_detail_hd .info .tag{
    color:#888;
    background: #f5f5f5;
    height: 30px;
    padding:0 20px;
    border-radius: 5px;
    margin-right: 15px;
    line-height:30px;
}
.page_news_detail_hd .info .tag:hover{
    background: var(--theme-color);
    border-color: var(--theme-color);
    color:#fff;
}
.page_news_detail_hd .info .share{
    flex:1;
    min-width: 0;
    justify-content: flex-end;
}
.page_news_detail_hd .content{
    padding:35px 0 20px;
    min-height: 20vh;
    font-size:18px;
}
.page_news_detail_hd .content a{ color: var(--theme-color);}

.page_news_detail_bd{
    width: 330px;
}
.page_news_detail_bd .j_tit{
    font-size:22px;
    color:#333;
    margin-bottom: 10px;
    font-family: 'PoppinsSemiBold';
}
.page_news_detail_bd .list .item{
    background: #f5f7f5;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.page_news_detail_bd .list .item .item_con{
    padding: 20px;
}
.page_news_detail_bd .list .item .item_con .time{
    color:var(--theme-color);
    font-family: 'PoppinsSemiBold';
}
.page_news_detail_bd .list .item .item_con .tit{
    font-family: 'PoppinsSemiBold';
    color:#333;
    margin:5px 0 10px;
}
.page_news_detail_bd .list .item .item_con .btn{
    font-size:14px;
    color:#333;
    font-family: 'PoppinsMedium';
    display: inline-block;
    position: relative;
}
.page_news_detail_bd .list .item .item_con .btn:after{
    content:'';
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
}

/* page_certificates */

.page_certificates{
    background: url("../images/map.png") no-repeat center top 80px;
}

.page_certificates_tit .con{
    margin-top: 30px;
}
.page_certificates_list1{
    justify-content: space-around;
}
.page_certificates_list1 .item{
    margin: 0 20px;
    text-align: center;
}


/* page_factory_show_list */

.page_factory_show_wrap{
    background-color: #f2f2f2;
}

.page_factory_show_list{
    margin: -20px;
}
.page_factory_show_list .item_w{
    padding: 20px;
    width: 50%;
    height: 100%;
}
.page_factory_show_list .item{
    background: #fff;
}
.page_factory_show_list .item .item_img{
    flex:1;
    min-width: 0;
    height: 100%;
}
.page_factory_show_list .item .item_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page_factory_show_list .item .item_con{
    padding: 40px;
    width: 50%;
}
.page_factory_show_list .item .item_con .tit{
    font-family: 'MagraBold';
    font-weight: bold;
}
.page_factory_show_list .item .item_con .desc{
    line-height: 1.4;
    margin-top: 10px;
}

.page_equipment_show{
    margin-top: 30px;
    overflow: hidden;
}

/* page_contact */


.page_contact{
    
}
.page_contact .j_tit{
    font-size:18px;
    color:#333;
    margin-bottom: 30px;
}
.page_contact_hd{
    flex:1;
    min-width: 0;
}
.page_contact_hd.footer_message{
    background: #f7f7f7;
    padding:55px 65px;
    width: 100%;
}
.page_contact_hd.footer_message .j_tit{
    font-size: 40px;
    font-family: 'MagraBold';
    text-transform: uppercase;
    line-height: 1.3;
    font-weight: bold;
}
.page_contact_hd.footer_message .form{
    
}

.page_contact_hd.footer_message .form .input{
    margin-bottom: 15px;
    padding: 0;
}
.page_contact_hd.footer_message .form input, .page_contact_hd.footer_message .form textarea{
    border-bottom: none;
    background: #fff;
    padding:10px;
    margin-bottom: 0;
    height: 66px;
    line-height:66px;
}
.page_contact_hd.footer_message .form textarea{
    height: 160px;
}
.page_contact_hd.footer_message .form .tip{
    font-size:14px;
    color:#999;
}
.page_contact_hd.footer_message .form button{
    width: 100%;
    border-radius: 0;
    height: 66px;
    line-height: 66px;
    font-size: 20px;
    text-transform: uppercase;
}
.page_contact_bd{
    width: 57%;
    padding-right: 65px;
}
.page_contact_bd .tit1{
    text-transform: uppercase;
    margin-bottom: 10px;
}
.page_contact_bd .info{
    padding: 20px 0 0;
}
.page_contact_bd .info .info_item{
    flex:1;
}
.page_contact_bd .info .info_item .ico{
    width: 53px;
    height: 53px;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page_contact_bd .info .info_item .ico i{
    font-size: 24px;
}
.page_contact_bd .info .info_item .con{
    margin-left: 17px;
}
.page_contact_bd .info .info_item .con h4{
    font-size: 20px;
    line-height: 1.2;
}
.page_contact_bd .info .info_item .con .p{
    font-family: 'Arial';
}
.page_contact_bd .tit2{
    font-size: 22px;
    font-family: 'MagraBold';
    text-transform: uppercase;
    padding:40px 0 20px;
    font-weight: bold;
}
.page_contact_bd .info.info1{
    padding-top: 0;
}
.page_contact_bd .map{
    margin-top: 40px;
}


/* page_equ_panel1 */

.page_equ_panel1_wrap{
    background: #f5f5f5;
}
.page_equ_panel1 .desc{
    font-size:18px;
    margin:35px 0;
}
.page_equ_panel1 .list{
    margin:0 -34px;
    padding-bottom: 80px;
}
.page_equ_panel1 .list .item{
    flex:1;
    padding:0 34px;
}
.page_equ_panel1 .list .item .img img{
    border-radius: 30px;
}
.page_equ_panel1 .list .item .tit{
    font-size:18px;
    text-align: center;
    padding-top: 15px;
}

.page_equ_panel2_wrap{
    padding-bottom: 80px;
}
.page_equ_panel2_con{
    padding:40px 0 20px 0;
    position: relative;
}
.page_equ_panel2_con .item img{
    border-radius: 20px;
}

/* page_solution */


.page_solution_tit .desc{
    color:#666;
    line-height: 1.6;
    margin-top: 10px;
}

.page_solution_list{
    
}
.page_solution_list .item{
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    transition:all .4s;
}
.page_solution_list .item:nth-last-child(-n+4){
    border-bottom: none;
}
.page_solution_list .item:nth-child(4n){
    border-right: none;
}
.page_solution_list .item .item_con .tit{
    margin-top: 10px;
    color:#666;
}
.page_solution_list .item:hover{
    box-shadow: 0 3px 15px rgba(0,0,0,.08);
}


.page_solution_question .img{
    width: 45.5%;
}
.page_solution_question .con{
    flex:1;
    min-width: 0;
    padding-right: 10%;
}
.page_solution_question .con p{
    color:#666;
    line-height: 1.5;
    margin: 40px 0 80px;
}

/* page_solution_detail */

.page_solution_detail_tit .subtit{
    width: 50%;
    padding-right:10%;
}
.page_solution_detail_tit .desc{
    flex:1;
    min-width: 0;
    color:#666;
    line-height: 1.6;
}
.page_solution_detail_list{
    overflow: hidden;
}
.page_solution_detail_list .item{
    border: 1px solid #ddd;
    background: #fff;
}
.page_solution_detail_list .item .item_img{
    width: 55%;
}
.page_solution_detail_list .item .item_con{
    padding: 50px 80px;
    flex:1;
    min-width: 0;
}
.page_solution_detail_list .item .item_con .desc{
    margin: 30px 0 50px;
}
.page_solution_detail_list .item .item_con .desc p{
    padding-left: 22px;
    position: relative;
    line-height: 1.3;
    margin-bottom: 6px;
}
.page_solution_detail_list .item .item_con .desc p:before{
    width: 6px;
    height: 6px;
    background:#a8a8a8;
    display: block;
    position: absolute;
    content:'';
    left: 0;
    top: 11px;
}


/* page_paygo */

.page_paygo .panel1 .content{
    font-size:18px;
    color:#333;
}
.page_paygo .panel2{
    padding:0 7%;
}
.page_paygo .panel2 .list .item .img{
    display: flex;
    justify-content: center;
}
.page_paygo .panel2 .list .item .con{
    border-bottom: 1px solid #bbb;
    padding:50px 0;
    margin-left: 60px;
    flex:1;
    min-width: 0;
}
.page_paygo .panel2 .list .item .con h4{
    font-size:28px;
    font-family: 'PoppinsSemiBold';
    color:#333;
    margin-bottom:10px;
}
.page_paygo .panel2 .list .item .con p{
    font-size:18px;
}

.page_paygo .panel3{
    padding: 80px 7% 0;
}
.page_paygo .panel3 table{
    width: 100%;
}
.page_paygo .panel3 table tr{
    height: 60px!important;
    background: #f5f7f5;
}
.page_paygo .panel3 table tr:nth-child(2n){
    background: #fff;
}
.page_paygo .panel3 table tr td{
    padding:0 30px;
}
.page_paygo .panel3 table tr td:first-child{
    width: 25%;
}
.page_paygo .panel3 table tr:first-child td{
    color:#fff;
    font-family: 'PoppinsMedium';
}
.page_paygo .panel4 .list{
    padding:20px 0 80px;
}
.page_paygo .panel4 .list .item_wrap{
    padding: 0 20px;
}
.page_paygo .panel4 .list .item{
    text-align: center;
    border-bottom: 1px solid #bbb;
    padding:0 10px 40px;
}
.page_paygo .panel4 .list .item .con{
    font-size:18px;
    color:#333;
    padding-top:30px;
    height: 116px;
}


/* return */

.return_page{
    margin-top: 60px;
    position: relative;
}
.return_page i{
    color:var(--theme-color);
    font-size:18px;
    margin-right: 6px;
}
.return_page a:hover{
    text-decoration: underline;
    color:var(--theme-color);
}

.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;}





