@charset "utf-8";
/* CSS Document */
:root{    
	--main_color:#094;        /*主色 */
	--main_color_rgb:2,58,145 ;  /*rgba*/
    --second_color:#8FC31F;      /* 副色 */ 
	--hui_color:#BED630;    
}

@font-face{font-family:'din'; src: url('../font/din.OTF');}
body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,p,form,img,select,figure{margin:0; padding:0;}
body{ color:#333;  font-size:14px; font-family:MiSans,Microsoft Yahei,PingFang SC,Arial, sans-serif; overflow-x:hidden;background:#fff; scroll-behavior: smooth;}
body{ -webkit-font-smoothing:antialiased;font-smoothing:antialiased;-webkit-overflow-scrolling:touch;/*安卓和 IOS html5 动画卡顿解决方案*//* overflow-x:hidden; */line-height: 1; }
a{text-decoration:none; color:#333; outline-style:none;}
a:hover{ color:var(--main_color);}
a,input,img,:focus{ -webkit-tap-highlight-color:transparent; mayfish:expression(this.onfocus=this.blur); cursor:handbblr:expression(this.onFocus=this.blur());/*IE使用*/ outline-style:none;/*FF使用*/ }
ul,li{list-style:none;}
.clear{clear:both;}
img{border:0;}
.fl{float:left;}
.fr{float:right;}
.bottom_blank{height:.6rem;}
.mt10{margin-top:.1rem;}
.mt20{margin-top:.2rem;}
.mt30{margin-top:.3rem;}
.mt40{margin-top:.4rem;}
.mt50{margin-top:.5rem;}
.mb_50{ padding-bottom:.5rem;}
section{background:#fff; position:relative;}

/*滚动条美化*/
body::-webkit-scrollbar {width: 10px !important;}
body::-webkit-scrollbar-track {background-color: #f3f3f3;}
body::-webkit-scrollbar-track-piece {background-color: #f3f3f3;-webkit-border-radius: 4px;}
body::-webkit-scrollbar-thumb {background-color: #ddd;border: solid 1px #C0C0C0;border-radius: 4px;}
body::-webkit-scrollbar-corner {background-color: #ddd;}
body::-webkit-resizer {background-repeat: no-repeat;background-position: bottom right;}
body::-webkit-scrollbar-thumb:hover {background-color: #F3F3E0;}
::-webkit-scrollbar {width: 15px;}
@media screen and (max-width:768px) {
body::-webkit-scrollbar {width:0px !important;}
::-webkit-scrollbar {width:0px;}
}


/*图片放大*/
.picShow img{transition:0.3s all;}
.picShow img:hover,.picShow a:hover img{transform:scale(1.05);}

/*======================主体宽度======================*/
.only_pc_show{ display:block;}
.only_m_show{display:none;}
img.pic_cover{width:100%; height:100%;object-fit:cover; display:block;}
.main{width:90%; margin: auto; max-width: 1500px;}

@media screen and (max-width:768px) {
	body{font-size:14px; }
	.main{width:100%; padding:0 15px; box-sizing:border-box;}
	.only_pc_show{ display:none;}
	.only_m_show{ display:block;}
}
.flex_space{display:flex;justify-content:space-between; flex-wrap:wrap;}
.flex_start{display:flex;justify-content: flex-start;flex-wrap:wrap;}
.flex_start_nowrap{display:flex;justify-content: flex-start;flex-wrap:nowrap;}
.t_center{display:flex; flex-direction:column; justify-content:center;align-items:center;}
.t_left_center{display:flex; flex-direction:column; justify-content:center;}
.t_right_center{display:flex; flex-direction:column; justify-content:center; align-items:flex-end;}
.t_center_nowrap{display:flex; justify-content:center;align-items:center;}

/*文字省略*/
.ellipsis1 {overflow: hidden; text-overflow: ellipsis;white-space: nowrap;}
.ellipsis2 {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow: ellipsis;}
.ellipsis3 {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;text-overflow: ellipsis;}
.ellipsis4 {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 4;overflow: hidden;text-overflow: ellipsis;}



/*头部*/
.header{z-index:900;width: 100%;  box-sizing:border-box; position:fixed; left:0; top:0; transition:all .3s;}
.header:after{ content:""; position:absolute; bottom:0; left:0; width:0; height:1px; background:rgba(255,255,255,0.1); transition:1s}
.header.on:after{ width:100%}
.header:before{content:""; position: absolute; top:0; left: 50%; transform: translateX(-50%); width:85%;height: 100%;background: #FFF;box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); transition: all 0.5s;opacity: 0;border-radius: 0.5rem; z-index:-1;}

.header .logo {height:.86rem; transition:0.5s all;}
.header .logo img{display:block; height:.5rem; /*filter: grayscale(100%) brightness(6000%); */}

.header .logo a img:nth-child(2),
.bodymouse .header .logo a img:nth-child(1),
.header_scroll .logo a img:nth-child(1){ display:none;}
.bodymouse .header .logo a img:nth-child(2),
.header_scroll .logo a img:nth-child(2){ display:block;}


/*滚动隐藏导航*/
.header.header_hide{opacity: 0; transform: translate(0, -90px); 
	-webkit-transform: translate(0, -90px);
    -moz-transform: translate(0, -90px);
    -ms-transform: translate(0, -90px);
    -o-transform: translate(0, -90px);}
@media screen and (max-width:768px) {
.header.header_hide{opacity: 1; transform: translate(0, 0); 
	-webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);}

}

/*主导航*/
.navBox { transition:0.5s all; margin-right:.5rem;}
.navBox .nav{display:flex; height:100%;}
.navBox .nav li {padding: 0 .25rem;}
.navBox .nav li>a {position: relative; height:100%; display:flex; justify-content:center;align-items:center;}
.navBox .nav li>a .txt {position: relative;z-index: 2; font-size:16px; transition:0.5s all; color:#fff;}
.navBox .nav li>a:hover .txt{color:var(--main_color);}
/*.navBox .nav li>a:after{ content:''; position:absolute;  left: 50%;transform: translateX(-50%); bottom:0; width:0; display:block;height:3px; background:var(--main_color); transition:0.3s all;}
.navBox .nav li.curr>a:after,.navBox .nav li>a:hover:after{width:100%; }*/

/*下拉菜单*/
.subNavbox {position: absolute; left: 0px; top: 100%; width: 100%; box-shadow: 1px 3px 5px 0 rgba(88, 88, 88, 0.2); display: none; border-top:solid 1px #e8e8e8;}
.subNavbox:before{ content:''; width:50%; height:100%; position:absolute; left:0; top:0; background:#f8f8f8; z-index:-1;}
.subNavbox:after{ content:''; width:50%; height:100%; position:absolute; right:0; top:0; background:#fff; z-index:-1;}
.subNavbox .left{width:33%;padding: 4vw 4vw 5vw 0;background: #f8f8f8; box-sizing:border-box;}
.subNavbox .left h3 {font-size:.3rem; color:#000; }
.subNavbox .left p {line-height:1.68; margin-top:.2rem;text-align: justify;}

.subNavbox .right {width:66%;padding: 4vw 0 5vw 4vw;  background:#fff; box-sizing:border-box;display: grid;gap: 0.3rem;grid-template-columns: repeat(4, 1fr);}
.subNavbox .right a{ display:inline-block; font-size:.16rem; text-align:center;}
.subNavbox .right .pic{border-radius:6px; margin-bottom:10px; overflow:hidden; transition: all .4s ease;}
.subNavbox .right .pic img{transition: all .4s ease;}
.subNavbox .right a:hover .pic{ transform:scale(0.9);}
.subNavbox .right a:hover img{ transform:scale(1.15);}



/*鼠标经过header*/
.bodymouse .header:before{ width:100%; opacity:1; border-radius:0;}
.bodymouse .navBox .nav li>a .txt,.header_scroll .navBox .nav li>a .txt{color:#333;}
.bodymouse .navBox .nav li>a:hover .txt,.header_scroll .navBox .nav li>a:hover .txt{color:var(--main_color);}



/*======================搜索======================*/
.header .top_serch{padding-right:.2rem;transition:0.5s all; position:relative; margin:0 .2rem 0 0;}
.header .top_serch a{height:100%;}
.header .top_serch a svg{width:max(.18rem, 16px); fill:#fff;  transition:0.5s all;}
.header .top_serch a:hover svg{transform:scale(1.2);}
.header .top_serch:after{ content: ""; width:1px; height:14px; background:rgba(255,255,255,0.5); position: absolute;right: 0;top: 50%;transform: translate(0,-50%);transition: 0.5s all;}
.index_header .top_serch a svg{fill:#fff;}
.index_header .top_serch:after{background:rgba(255,255,255,0.2555);}

.header .tc{transition:all ease 300ms;position: fixed;width: 100%;height: 100%;top: 0;left: 0;z-index: 9999999999; display:flex; flex-direction:column; justify-content:center;align-items:center;}
.header .tc{ pointer-events: none;  filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity:0; opacity:0;transform:scale(1.1);}
.header .tc.act{ filter:alpha(opacity=100); -moz-opacity:1; -khtml-opacity: 1; opacity: 1;  pointer-events: auto;transform:scale(1);}
.header .tc-bg {width: 100%;height: 100%;background: rgba(0,0,0,.85);position: absolute;top: 0;left: 0;z-index: 0;}

.header .tc-box {width: 700px;max-width: 90%;margin: 0 auto;box-sizing: border-box;  /* background:#fff; */display: block;position: relative;z-index: 1;
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	overflow: hidden;
}
.header .tc.act .tc-box {-webkit-animation-name: anim-open-2;animation-name: anim-open-2;transform: scale(1);}
/*搜索弹窗内容样式*/
.header .tc-box form {position: relative;}
.header .tc-box .tc_fdj {position: absolute;left: 20px;display: block;height:.75rem;width: 25px;background: url(../images/icon-sq2.png) center no-repeat;}
.header .tc-box #keyword {width: 80%;height:.75rem;padding: 0 15px;padding-left:55px;font-size:.18rem;color: #999;box-shadow: none;-webkit-appearance: none;border:0; box-sizing:border-box;outline:none; float:left;}
.header .tc-box .btn_submit {width: 20%; height:.75rem; line-height:.75rem;background:var(--main_color);font-size:.2rem;color: #fff;cursor: pointer;text-transform: uppercase;border:0; outline:none;}

.header .tel{ color:#fff; font-size:.2rem; transition:0.5s all; z-index:2;}



/*导航下拉*/
.header_scroll {background:#fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1);}
.header_scroll.on:before{width:0px;transition: 0.01s all;}
.header_scroll .navBox{ height:.86rem;}
.bodymouse .header .top_serch a svg,.header_scroll .top_serch a svg{ fill:#666;}
.bodymouse .header .top_serch:after,.header_scroll .top_serch:after{background:#ccc;}
.bodymouse .header .tel,.header_scroll .tel{ color:var(--main_color);}

/*语言*/
.lag{position:relative; color:#fff;}
.lag a{color:#fff;}
.lag img{width:max(.18rem, 16px); margin-right:8px; filter: grayscale(100%) brightness(1000%);}
.lag .box{ position:absolute; left:50%; top:100%; background:#fff; padding:.1rem .25rem; box-shadow:0 5px 20px rgba(0,0,0,.15); border-radius:5px; min-width:1rem; transform:translate(-50%,20px); opacity:0;  pointer-events:none; transition:all .3s; text-align:center;}
.lag .box a{ display:block; line-height:2.5; font-size:.16rem;}
.lag .box p:not(:last-of-type){border-bottom:1px solid #ddd}
.lag .box:after{content:"";position:absolute;bottom:100%;left:50%;border-style:solid;margin-left:-7px;border-width:7px;border-color:transparent transparent #fff;}

.lag:hover .box{transform:translate(-50%,0); opacity:1; pointer-events: all;}
.header_scroll .lag a,.bodymouse .header .lag a{color:#333;}
.header_scroll .lag a:hover,.bodymouse .header .lag a:hover{color:var(--main_color);}
.header_scroll .lag img,.bodymouse .header .lag img{filter: grayscale(100%) brightness(100%);}
@media screen and (max-width:768px) {
.lag{ font-size:12px; margin-right:15px; margin-top: 15px;} 
.lag img{width:16px;}
  
.lag .box{ padding:10px 25px;  top:45px;}
.lag .box a{  font-size:14px;}
}



/*======================手机菜单按钮======================*/
.m_nav_btn{width: 30px;height: 30px;transition: 0.3s;cursor: pointer;border:none;padding: 0;outline: none;background:none; margin-top:15px; display:block;}
.m_nav_btn .line{position: relative;display: block;width: 25px;height: 3px;margin: 0px auto 0;background:#333;border-radius:3px;}
.m_nav_btn .line:before,.m_nav_btn .line:after{content: '';width: 100%;height: 3px;left: 0;position: absolute;background:#333;border-radius:3px;transition-duration: 0.3s,0.3s;transition-delay: 0.1s,0s;}
.m_nav_btn .line:before{transition-property: bottom,transform;bottom: 8px;}
.m_nav_btn .line:after{transition-property: top,transform;top: 8px;}


.m_nav_btn_active .line {background: transparent;-webkit-transition-delay: 0s,0s;-moz-transition-delay: 0s,0s;-ms-transition-delay: 0s,0s;-o-transition-delay: 0s,0s;transition-delay: 0s,0s}
.m_nav_btn_active .line:after,.m_nav_btn_active .line:before {-webkit-transition-delay: 0s,.1s;-moz-transition-delay: 0s,.1s; -ms-transition-delay: 0s,.1s; -o-transition-delay: 0s,.1s; transition-delay: 0s,.1s}
.m_nav_btn_active .line:before {bottom: 0px;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg)}
.m_nav_btn_active .line:after {top:0px;-webkit-transform: rotate(-45deg);-moz-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);}




/*======================手机搜索图标======================*/
.m_serch{ width:50px; height:62px;}
.m_serch a{height:100%;}
.m_serch a svg{width:18px; fill:#333;}

@media screen and (max-width:768px) {
.header{ height:60px; box-shadow: 0 2px 20px rgba(0,0,0,0.1);  position:fixed; background:#fff;}
.header .logo{height:60px;}
.m_header .logo a img{ height:38px;}
.m_header .logo a img:nth-child(1){ display:none;}
.m_header .logo a img:nth-child(2){ display:block;}

.header_right,.navBox{display:none;}
.m_header_right{display: flex;justify-content: flex-start; flex-wrap: wrap;}
.top_blank{height:60px; display:block;}

.m_header_right .lang{ margin-right:30px;}
.m_header_right .lang a{ padding-top:3px; font-size:16px;}
.m_header_right .lang svg{width:20px; height:20px; margin-right:5px; fill:#333;}	

/*======================手机弹出菜单======================*/
.m_tc_box{position: fixed;top:60px;left: 0;bottom: 0;right: 0;background: #fff;z-index:98; display:none;}
.m_tc_box .wrapper {position: absolute;left: 0;right: 0;height: 100%;padding:15px; box-sizing:border-box;overflow-x: hidden;overflow-y: auto;z-index: 110;}

/*搜索表单*/
.m_search_box {width:100%;  position: relative;border: 1px solid #e1e6f0; overflow:hidden; border-radius:3px; margin-bottom:10px; margin-top:20px;}
.m_search_box .search-btn {position: absolute;top:0px;right:0px;width:50px ;height:100%;}
.m_search_box form {height:46px;}
.m_search_box form input[type="text"] {width: 100%;height: 100%;background:rgba(255,255,255,0.8); box-sizing: border-box;padding: 0 50px 0 15px;border: none; font-size:15px;}
.m_search_box form input[type="submit"]{display: inline-block;width:30px;height:30px; background: url('../images/zoom.png') no-repeat center; border:none; background-size:23px auto;}

/*手机下拉菜单*/
.m_menu{overflow-x: hidden;overflow-y: auto;}
.m_menu .nav1 ul{ padding:0 0 0 30px; display:none; background-color:#fff;}
.m_menu .item{border-bottom: 1px solid #efefef; padding:16px 10px; font-size:16px;}
.m_menu .item i{float:right; color:#ccc; transition:0.3s all;}
.m_menu .item.active> i{ -webkit-transform: rotate(180deg); transform: rotate(180deg); }
.m_menu .item.curr a,.m_menu .item a:hover{color:var(--main_color);}

/*电话*/
.m_tel{text-align:center; margin-top:35px; font-size:20px; font-family:din; color:#fff; background:var(--main_color); padding:15px; border-radius:5px; letter-spacing:1px;} 
.m_tel i{ font-size:18px; margin-right:5px;}
}
/*======================轮播图======================*/
#banner {width:100%;height:100vh; position:relative; z-index:0; overflow:hidden;}
#banner .swiper-slide{ overflow: hidden;} 
#banner .slide-inner { position: absolute; left: 0; top: 0; right:0; bottom:0; background-size: cover; background-position: center; background-repeat: no-repeat;}
#banner .swiper-button-prev{ background:url(../images/banner_left.png) center no-repeat; opacity:.8; left:2%;} 
#banner .swiper-button-next{ background:url(../images/banner_right.png) center no-repeat; opacity:.8; right:2%;} 

#banner .txt{ position:absolute;z-index: 999;left:0;top:50%; transform:translateY(-50%);right:0; bottom:0; /*text-shadow:rgba(0,0,0,0.1) 0px 1px 10px;*/}
#banner .txt h3{font-size:max(.66rem, 56px); color:#fff; margin:.6rem 0 .3rem; overflow: hidden }
#banner .txt p{font-size:max(.2rem, 18px); color:#fffc; overflow: hidden; line-height:1.5; max-width:768px; text-align:justify;}
#banner .txt .more{overflow: hidden  }
#banner .txt .more a{margin-top:.5rem; line-height: 46px;border-radius: 6px;padding: 0 32px;box-sizing: border-box;font-size: 16px;color: #fff; display:inline-block; background:var(--main_color);}
#banner .txt .more a:last-child{background: #ffffff1a;border: 1px solid rgba(255, 255, 255, .3);backdrop-filter: blur(4px);-webkit-backdrop-filter: blur(4px); margin-left:.15rem;}

/* slide up */
.text-slide-up .swiper-slide span {
	display: inline-block;
	transform: translate3d(0, 120%, 0);
	-webkit-transform: translate3d(0, 120%, 0);
	-ms-transform: translate3d(0, 120%, 0);
	-moz-transform: translate3d(0, 120%, 0);
	transition: all .6s ease-in-out 0.4s;
	-webkit-transition: all .6s ease-in-out 0.4s;
	-ms-transition: all .6s ease-in-out 0.4s;
	-moz-transition: all .6s ease-in-out 0.4s;
}
.text-slide-up .swiper-slide-active span {
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}
.text-slide-up .swiper-slide h3 span {transition-delay: 1s;}
.text-slide-up .swiper-slide p span {transition-delay: 1.1s;}
.text-slide-up .swiper-slide .more span {transition-delay: 1.2s;}

#banner .swiper-slide:after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.15);z-index: 1;}


/*#banner .swiper-slide::before {display: block;content: '';position: absolute;left: 0;top: 0;z-index: 2;width: 100%;height: 100%;
    background-image: linear-gradient(to right, var(--main_color), rgba(0, 0, 0, 0.1)); opacity:0.3;}*/
	
/*左右切换按钮*/	
.draw_h{ width: 67px !important; height: 67px !important; line-height: 67px !important; display:block; border-radius: 50%; box-sizing:border-box;} 
.draw_h:before{ content:""; display:block; width:100%; height:100%; position:absolute; left:0; top:0; border: 2px solid rgba(100%,100%,100%,.5);  box-sizing:border-box;border-radius: 50%;} 
svg.drawcircle{position:absolute;top:0;left:0;overflow: inherit;display: block;pointer-events: none;} 
svg.drawcircle circle {
 fill: none; box-sizing:border-box;
 stroke-width: 2;
 stroke: none;
 stroke-dasharray: 0 , 188.49;
 stroke-dashoffset:188.49;
 transition: all .3s linear 0s;	 
} 
.draw_h:hover svg.drawcircle circle { 
 stroke:#fff;
 stroke-dasharray:188.49 , 0;
 stroke-dashoffset:188.49;
 -webkit-transition: all .7s cubic-bezier(0.11, 0.57, 0.58, 1);
 transition: all .7s cubic-bezier(0.11, 0.57, 0.58, 1); 
} 
.draw_h .icon { fill: #626262; vertical-align: middle; transition:.3s;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translate(-50%, -50%);
 transform: translate(-50%, -50%); 
} 
.draw_h:hover .icon{ fill:#0081cc;} 


/*分页器*/
#banner .swiper-pagination{bottom:.3rem;}
#banner .swiper-pagination-bullet {width: .8rem;height: 5px;border-radius:0;background: rgba(255, 255, 255, 1);opacity: 1;position: relative;margin: 0 5px !important;}
#banner .swiper-pagination-bullet:before{content: "";position: absolute;top: 0;left: 0;background:var(--main_color);width: 0;height: 5px;z-index: 1;transition: 0s;}
#banner .swiper-pagination-bullet-active:before{width: 100%;transition: all 6s ease;}

.ban_topbg{ position:absolute; left:0; top:0; width:100%;  z-index:2; }
.ban_topbg img{ width:100%; display:block;}

@media screen and (max-width:768px) {
#banner {height:calc(100vh - 60px); position:relative; }
#banner .swiper-slide{display: block;}
#banner .txt {box-sizing:border-box;}
#banner .txt h3{ font-size:30px; margin:0 0 20px;}
#banner .txt p{font-size:16px; max-width:80%;}
#banner .txt .more a{margin-top:25px; line-height:38px; padding: 0 25px; }


#banner .draw_h{display:none;}
#banner .swiper-pagination{bottom:20px;}
#banner .swiper-pagination-bullet {width:30px; height: 4px;}
}	



/*==========页面标题=============*/
.main_tit{padding:.68rem 0 .4rem;width:100%;  text-align:center;}
.main_tit h2{ font-size:.4rem; color:#000;}
.main_tit .line {display: block;width:25px;height: 4px;background:var(--main_color); margin: .2rem auto auto auto; border-radius:5px;}
.main_tit p{ margin:.25rem auto 0;font-size:max(.18rem, 16px); line-height:1.8;}
.main_tit .desc{ margin:.2rem auto 0;font-size:max(.18rem, 16px); line-height:1.8; max-width:1080px;}

@media screen and (max-width:768px) {
.main_tit{padding:35px 0 20px;}
.main_tit h2{ font-size:22px; font-weight:bold;}	
.main_tit .line{margin:10px auto; width:20px;}
.main_tit p{width:100%;margin-top:15px; line-height:1.6;}
.main_tit .desc{ margin:15px auto 0; line-height:1.6; text-align:justify;}

}

/*==========页面标题2===========
.main_tit1{padding:.75rem 0 .4rem;width:100%;}
.main_tit1 h2{ font-size:.42rem; color:#000; font-weight:normal; line-height:1.4;}
@media screen and (max-width:768px) {
.main_tit1{padding:30px 0 15px;}
.main_tit1 h2{ font-size:20px; font-weight:bold;}

}==*/

/*标题通用2
.main_tit2{padding:.68rem 0 .5rem;}
.main_tit2 h2{font-size: .42rem;color: #000;line-height: 1.4;}

@media screen and (max-width:768px) {
.main_tit2{padding:30px 0 15px;}
.main_tit2 h2{font-size:20px;}
}
*/

/*================更多链接=====================*/
.lean_more{display:flex;}
.lean_more a{padding:0 .3rem; height:.5rem; border-radius:5px; border:solid 2px #bfbfbf; box-sizing:border-box; transition:.3s all;}
.lean_more a span{ margin-right:12px;}
.lean_more a:hover{ border:solid 2px var(--main_color); background:var(--main_color); color:#fff;}

.lean_more a.is_color{border:solid 2px var(--main_color); background:var(--main_color); color:#fff;}
.lean_more a.is_color:hover{ opacity:0.68;}

.lean_more a.is_dark{border:solid 2px #fff; color:#fff;}
@media only screen and (max-width: 768px){
.lean_more a{padding:0 .3rem; height:42px;}
	
}



/*==========首页-产品=============*/
.index_pro{display: grid;gap: .35rem;grid-template-columns: repeat(3, 1fr);}
.index_pro li{ position:relative;overflow:hidden; border-radius:.1rem; background:#f2f2f2;}
.index_pro li .pic{overflow:hidden; height:3.3rem;}
.index_pro li .pic img{transition:all .3s;}
.index_pro li .txt{position:absolute;top:.4rem;left:.25rem;text-shadow: rgba(0, 0, 0, 0.5) 0px 1px 10px; }
.index_pro li .txt h3{font-size:.28rem;color:#fff; margin-bottom:.15rem;}
.index_pro li .txt p{color:#fff;line-height:1.5;text-transform:uppercase;}
.index_pro li .wz{position:relative;}
.index_pro li .wz:before{position:absolute;content:'';background:url(../images/fuhao.png) no-repeat left center;top: -54px;left: -61px; width:100px;height:100px;}
.index_pro li .wz:after{position:absolute;content:'';background:url(../images/fuhao2.png) no-repeat right center;bottom: -34px;right: -70px; width:100px;height:100px;}

.index_pro li .wz h2{font-weight:normal;font-size:.3rem;color:#000;line-height:1.6;text-align:center;}
.index_pro li .img{overflow:hidden;margin:.5rem auto 0;width:90%;}
.index_pro li .img img{max-height:.6rem;display:block;}
.index_pro li:hover .pic img{ transform:scale(1.1,1.1);}


@media screen and (max-width:768px) {
.index_pro{ gap:12px;grid-template-columns: repeat(2, 1fr);}
.index_pro li{border-radius:5px;}
.index_pro li .pic{height:146px;}
/*.index_pro li:nth-child(4){display:none;}*/
.index_pro li .txt{top:auto;left:0; bottom:0; width:100%;height:100%;background:rgba(0,0,0,.2);padding:20px 10px 0 10px;box-sizing:border-box;}
.index_pro li .txt h3{font-size:18px;margin-bottom:10px;}
.index_pro li .txt p{font-size:14px; display:none;}


.index_pro li .wz:before{top: -1px;left: -20px; width:15px;height:15px; background-size:15px auto;}
.index_pro li .wz:after{bottom: -1px;right: -20px; width:15px;height:15px; background-size:15px auto;}

.index_pro li .img{overflow:hidden; width:90%;}
.index_pro li .img img{max-height:36px;}

}

/*=============首页-生成能力================*/
.in_scnl_bg{ background:url(../images/rel2bg.jpg) no-repeat center #f2f2f2; background-size:cover; padding-bottom:.8rem; margin-top:.6rem;}
.in_scnl_box1 li{ position:relative; border-radius:.12rem; overflow:hidden; }
.in_scnl_box1 li img{ transition:0.3s all;}
.in_scnl_box1 li:hover img{ transform:scale(1.1);}
.in_scnl_box1 li .txt{pointer-events: none; position: absolute;bottom: 0;left: 0;right: 0;background: linear-gradient(0deg, #1e293bcc, #1e293b00);padding: 32px;box-sizing: border-box; color:#fff;}
.in_scnl_box1 li .txt h3{ font-size:.25rem; margin-bottom:.15rem; font-weight:normal;}
.in_scnl_box1 li .txt p{ font-size:max(.18rem, 16px);}

/*分页器*/
.in_scnl_box1 .swiper-pagination{bottom:0; display:none;}
.in_scnl_box1 .swiper-pagination-bullet {width:30px;height:4px;border-radius:0;background:#999;opacity: 1;}
.in_scnl_box1 .swiper-pagination-bullet-active{background:var(--main_color);}

@media screen and (max-width:768px) {
.in_scnl_box1{ padding-bottom:35px!important;}
.in_scnl_box1 li{border-radius:.12rem; height:200px;}
.in_scnl_box1 li .txt{padding:20px 15px;}
.in_scnl_box1 li .txt h3{ font-size:20px; margin-bottom:12px; font-weight:bold;}
.in_scnl_box1 .swiper-pagination{display:block;}
}

.in_scnl_box2{display: grid;gap: 0rem;grid-template-columns: repeat(4, 1fr); margin-top:.56rem;}
.in_scnl_box2 li{ padding:0 .35rem; text-align:center; }
.in_scnl_box2 li .txt h3{font-size:20px; color:#000; margin:.25rem 0 .15rem;}
.in_scnl_box2 li .txt p{ line-height:1.5;}
@media screen and (max-width:768px) {
.in_scnl_box2{grid-template-columns: repeat(2, 1fr); margin-top:0px;}
.in_scnl_box2 li{ padding:0 8px; margin-top:20px;}
.in_scnl_box2 li .ico{width:52px; margin:auto;}
.in_scnl_box2 li .ico img{width:100%;}
.in_scnl_box2 li .txt {flex:1; padding-left:10px;}
.in_scnl_box2 li .txt h3{font-size:16px; color:#000; margin:8px 0 .15rem;}
.in_scnl_box2 li .txt p{ font-size:13px;}
}






/*==========服务与支持===============*/
.in_fuwu{display: grid;grid-template-columns: repeat(4, 1fr);gap:.5rem; margin-bottom:.8rem;}
.in_fuwu li{position:relative; border-radius:8px; overflow:hidden;}
.in_fuwu li .pic {overflow:hidden; }
.in_fuwu li .pic img{ width:100%; height:100%; object-fit:cover; display:block; transition:0.3s all; }
.in_fuwu li:hover .pic img{transform:scale(1.1);}
.in_fuwu li .txt{ position:absolute; left:0; top:0; bottom:0; right:0; font-size:.25rem; color:#fff;text-shadow:rgba(0,0,0,0.25) 1px 1px 1px;} 
.in_fuwu li .txt svg{ height:52px; fill:#fff; margin-bottom:.2rem; }
.in_fuwu li .txt .ico,.in_fuwu li .txt p{position:relative; z-index:3;}
.in_fuwu li .txt:before{ content:''; width:100%; height:100%; display:block; position:absolute; right:0; top:0; background:rgba(0,0,0,0.2); z-index:1;  transition:0.3s all;}
.in_fuwu li .txt:after{ content:''; width:0; height:100%; display:block; position:absolute; right:0; top:0; background:rgba(0,0,0,0.5); z-index:2;  transition:0.3s all;}
.in_fuwu li:hover .txt:after{ width:100%; left:0;}
@media screen and (max-width:768px) {
.in_fuwu{ grid-template-columns: repeat(2, 1fr);gap:15px; margin-bottom:.8rem;}
.in_fuwu li{}
.in_fuwu li .txt svg{ height:36px; margin-bottom:.2rem; }
.in_fuwu li .txt{ font-size:18px; text-shadow:rgba(0,0,0,0) 1px 1px 1px;} 
}




/*============想了解更多================*/
.more_full{ color:#fff; background:var(--main_color);position:relative;padding:.5rem 0;overflow:hidden;}
.more_full h3{ font-size:.38rem; margin-bottom:25px;position:relative; z-index:88;}
.more_full p{ font-size:18px; position:relative; z-index:88;}
@media screen and (max-width:768px) {
.more_full{padding:35px 0;}
.more_full h3{ font-size:25px; margin-bottom:15px;}
.more_full p{ font-size:16px; }
	
}

/*======动画=======*/
.more_full .bag .yuanimg {position: absolute;border-radius: 50%;animation: transzh 8s linear infinite;}
.more_full .bag .yuanimg:before {content: "";display: block; padding-bottom: 100%;}
.more_full .bag .yuanimg1 {width: 6.66666667%;background-image: linear-gradient(-82deg, #009944 0%, #00B953 100%), linear-gradient(#00B953, #00E366);background-blend-mode: normal, normal;left: 0.5rem;}
.more_full .bag .yuanimg2 {width: 61.97916667%;background-image: linear-gradient(-82deg, #00AC4E 0%, #00B953 85%), linear-gradient(#3357b1, #3357b1);background-blend-mode: normal, normal;opacity: 0.4;top: -0.4rem;left: -1rem;animation-delay: 2s;}
.more_full .bag .yuanimg3 {width: 30.41666667%;background-image: linear-gradient(125deg, #00AC4E 0%, #00B953 100%), linear-gradient(#3357b1, #3357b1);background-blend-mode: normal, normal;right: -16%;top: -1.4rem;animation-delay: 4s;
}

@media only screen and (max-width: 768px){
.more_full .bag .yuanimg1{width:80px;}
.more_full .bag .yuanimg2{width:100px;}
.more_full .bag .yuanimg3{width:150px;}
}

@keyframes transzh {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  25% {
    transform: translate(26px, 30px);
    -webkit-transform: translate(26px, 30px);
  }
  50% {
    transform: translate(-26px, -30px);
    -webkit-transform: translate(-26px, -30px);
  }
  75% {
    transform: translate(-26px, 0);
    -webkit-transform: translate(-26px, 0);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}
@-webkit-keyframes transzh {
  0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  25% {
    transform: translate(26px, 30px);
    -webkit-transform: translate(26px, 30px);
  }
  50% {
    transform: translate(-26px, -30px);
    -webkit-transform: translate(-26px, -30px);
  }
  75% {
    transform: translate(-26px, 0);
    -webkit-transform: translate(-26px, 0);
  }
  100% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
}


/*============通用表单================*/
.comm_form_bg{background:#f2f3f5; padding:.8rem 0;}
.comm_form_bg .left{width:48%;}
.comm_form_bg .right{width:48%;}
.comm_form_bg .left .main_tit{ text-align:left; padding:0;}
.comm_form_bg .left .desc{font-size:max(.18rem, 16px);line-height:1.6; margin-bottom:.4rem; text-align:justify;}
.comm_lx{}
.comm_lx li{ margin-top:.3rem;}
.comm_lx li .ico{width:48px; height:48px; background:#fff; margin-right:.15rem; border-radius:50%;}
.comm_lx li .ico svg{ height:56%; fill:var(--main_color);}
.comm_lx li .txt{}
.comm_lx li .txt h3{ font-size:17px; margin-bottom:8px; color:#111;}
.comm_lx li .txt p{font-size: 16px;line-height:1.5; }
@media screen and (max-width:768px) {
.comm_form_bg{padding:25px 0 50px;}
.comm_form_bg .left{width:100%;}
.comm_form_bg .right{width:100%;}
.comm_form_bg .left .main_tit h2{ text-align:center; padding-top:10px;}	
.comm_lx li{ margin-top:20px;}
.comm_lx li .ico{width:52px; height:52px; margin-right:15px;}
.comm_lx li .ico svg{ height:56%; fill:var(--main_color);}
.comm_lx li .txt{}
.comm_lx li .txt h3{ font-size:16px; margin-bottom:5px;}
.comm_lx li .txt p{font-size: 15px;}
}

.comm_form{background: #fff;border-radius: 12px; box-shadow: 0 2px 4px -2px #0000001a, 0 4px 6px -1px #0000001a;padding:.5rem .5rem .3rem;}
.comm_form .ly_tit{margin-bottom:.1rem; font-size:16px;}
.comm_form .ly_tit i{color:rgba(255,0,0,1);}
.comm_form .in_input {margin-bottom:25px;}
.comm_form .in_input input::-webkit-input-placeholder,
.comm_form .in_input textarea::-webkit-input-placeholder{font-family:Microsoft Yahei;color:#94a3b8;}
.comm_form .in_input li{ width: 48%;} 
.comm_form .in_input input,
.comm_form .in_input select,
.comm_form .in_input textarea{width: 100%;padding: 15px 16px;border: 1px solid #CBD5E1;border-radius: 6px;color: #1e293b;background: #fff;box-sizing: border-box;outline: none; font-size:16px;} 
.comm_form .in_input textarea{ min-height:100px;}
.comm_form .in_input input::-webkit-input-placeholder {} 
.comm_form .in_input textarea::-webkit-input-placeholder{}
.comm_form .in_input input:focus,.comm_form .in_input textarea:focus{border:solid 1px var(--main_color);}
/*.in_input .form-group input{width:45%; }*/
.comm_form .in_input .form-group label{position:relative;}
.comm_form .in_input .form-group label img{position:absolute; right:0; top:50%; transform:translateY(-50%);}
.comm_form .in_input .submit{ border:none;outline: none; font-size:16px; cursor:pointer; color:#fff; background:var(--main_color); transition:0.3s all; width:100%; line-height:46px; border-radius:6px;}

@media screen and (max-width:768px) {
.comm_form{padding:25px 20px 25px; margin-top:25px; box-shadow:none;}
.comm_form .ly_tit{margin-bottom:6px;}
.comm_form .in_input li{ width: 100%;margin-bottom:15px;} 
.comm_form .in_input {margin-bottom:0;}
.comm_form .in_input .submit{ margin-top:20px;}
}


/*=============首页-新闻资讯================*/
.page_news_bg{padding-bottom:.3rem;}
.news_list{display: grid;gap: 0.36rem;grid-template-columns: repeat(3, 1fr);}
.news_list li {}
.news_list li .pic{ overflow:hidden;}
.news_list li .pic img{transition:.4s;}
.news_list li a:hover .pic img{ transform:scale(1.1);}
.news_list li .txt{ padding:.35rem .4rem 0.4rem;}
.news_list li .txt .con1{ font-size:.16rem; color:#888;}
.news_list li .txt .con2{ font-size:.2rem; color:#000; line-height: 1.5; height: 3em; margin:.15rem 0 .4rem;}
.news_list li .txt .con3 i{ margin-left:5px; transition:.4s; display: inline-block;}
.news_list li a:hover .txt .con3 i{transform: translateX(0.1rem);}
.news_list li a{position: relative; background: #f5f5f5; display:block; height:100%;}
.news_list li a::after {content: "";position: absolute;bottom: 0;left: 0;height: 3px;background:var(--main_color);width: 0%;-webkit-transition: 0.4s;-o-transition: 0.4s;transition: 0.4s;}	
.news_list li a:hover::after {width: 100%;}
@media only screen and (max-width: 768px){
.news_list{display:block;}
.news_list li{ margin-bottom:15px;}
.news_list li a::after{ display:none;}
.news_list li .pic{ max-height:200px;}
.news_list li .txt{ padding:15px 15px;}
.news_list li .txt .con1{ font-size:14px; display:none;}
.news_list li .txt .con2{ font-size:16px;margin:0px;  height:auto; font-weight:bold;}
.news_list li .txt .con3 { display:none;}
}




/*================底部=====================*/
.foot_bg{ width:100%; background:/* url(../images/footbg.jpg) no-repeat center*/ #1e293b; padding:.8rem 0 0 0; background-size:cover;}

.foot_left{width:35%;}
/*底部LOGO*/
.foot_logo{ margin-bottom:.35rem;}
.foot_logo img{height:.56rem;}

/*底部导航*/
.footer_nav{  box-sizing:border-box; width:55%;}
.footer_nav dl{}
.footer_nav dt {margin-bottom:.25rem;}
.footer_nav dt a{font-size:18px; color:#fff; }
.footer_nav dd{margin-bottom:20px;}
.footer_nav dd a{display:block;color:#9ca3af; font-size:16px; transition:0.3s all;}
.footer_nav a:hover{ text-decoration:underline; color:var(--main_color);}

/*底部联系方式*/
.foot_cotact{box-sizing:border-box;}
.foot_cotact .tit{ margin-bottom:.25rem; font-size:18px; color:#fff;}
.foot_cotact ul li{color:#9ca3af;margin-bottom:20px; font-size:16px; line-height: 22px;}
.foot_cotact ul li img{width:25px; height:25px; margin-right:10px;}
.foot_cotact ul li a{ color:#9ca3af; display:block;}
.foot_cotact ul li .p2{ margin-top:12px;}
@media only screen and (max-width: 768px){
.foot_bg{padding:46px 0 0 0;}
.foot_left{width:100%;}
.footer_nav{display:none;}
.foot_bg .left{width:100%;}
.foot_logo{width:100%; text-align:center; margin-bottom:30px;}
.foot_logo img{height:46px;}

.foot_cotact{width:100%;}
.foot_cotact .tit{ margin-bottom:20px; display:none;}
.foot_cotact ul li{line-height: 26px; margin-bottom:15px;}
.foot_cotact ul li span{ flex:1;}
.foot_cotact ul li img{width:30px; height:30px;}
.foot_cotact ul li .p2{ margin-top:8px;}
}



/*底部自媒体图标*/
.f_zmt{padding-top:.35rem;}
.f_zmt li{position: relative;cursor: pointer;margin-right:.16rem;}
.f_zmt li .ico{width: .52rem;height: .52rem;position: relative; background:rgba(255,255,255,0.1); border-radius: 50%; }
.f_zmt li .ico img{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%); opacity:0.5;}
.f_zmt li .dox{position: absolute;bottom: 70px;left: 50%;transform: translateX(-50%);-webkit-transform: translateX(-50%); border-radius:.1rem;padding:.1rem .1rem 12px;text-align: center;color: #fff;font-size: 13px; opacity: 0;pointer-events: none;display: flex; background: #ffffff1a; border: 1px solid rgba(255, 255, 255, .3);backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);}
.f_zmt li .dox .ewm{width: 1rem;}
.f_zmt li .dox .ewm img{width: 100%;margin-bottom:5px; border-radius:5px;}
.f_zmt li .dox s{display: block;width: 12px;height: 6px;position: absolute;top: 100%;left: 50%;margin-left: -6px;background: url(../images/f_zmt_arr.svg) center no-repeat;}
.f_zmt li:hover .dox{bottom: 60px;opacity: 1;}
.f_zmt li:hover .ico{background:var(--main_color); }
.f_zmt li:hover .ico img{ opacity:1;}
@media only screen and (max-width: 768px){
.f_zmt{justify-content:center;align-items:center; padding-top:5px;}
.f_zmt li{margin:0 5px;}
.f_zmt li .ico{width:46px;height:46px;}
.f_zmt li .ico img{height:50%;}
.f_zmt li .dox .ewm{width:90px;}
}


/*底部版权*/
.copyright{padding:.25rem 0;  margin-top:.8rem; color:#6b7280; border-top: 1px rgba(255, 255, 255, 0.1) solid;}
.copyright a{color:#6b7280; transition:all .5s;}
.copyright a:hover { text-decoration:underline;}
.copyright br,.copyright span{display:none;}
@media only screen and (max-width: 768px){
.copyright{padding:15px 0 15px;  margin-top:35px; font-size:13px; text-align:center;}
.copyright .left{width:100%; line-height:1.6; }
.copyright br{display:block;}
.copyright span{display:inline-block; margin-left:6px;}
}
/*--------------------*/



/*二级页面 banner*/
.page_ban{ width:100%; position:relative; overflow:hidden; background:#000; }
.page_ban .pic {animation: o-scale 20s linear infinite; height:68vh;  overflow:hidden;}
.page_ban .pic img{width:100%; height:100%;object-fit:cover; display:block;}

.page_ban .txt{position:absolute; left:0; top:0; bottom:0; right:0;  z-index:9; }
.page_ban .txt h2 { font-size:.4rem; font-weight:500; color:#fff; margin-bottom:.25rem; margin-top:.2rem;}
.page_ban .txt h5 { font-size:.25rem; font-weight:500; color:#fff; opacity:0.7; letter-spacing:1px; text-transform:uppercase;}

/*.page_ban:before {content: "";background: rgba(0,0,0,.0) url(../images/header_bg.png) repeat-x left top -50px;position: absolute;left: 0;top: 0; right: 0;bottom: 0;z-index: 2;}*/
/*.page_ban:after {content: "";background: url(../images/b.png) repeat-x left bottom;position: absolute;left: 0px;top: 0px;right: 0px;bottom: 0px;opacity:1;z-index: 3;}*/

@media screen and (max-width:768px) {
.page_ban .pic{height:180px;}
.page_ban .txt h2 { margin-top:0; font-size:22px;}
.page_ban:before {display:none;}
}

/*位置*/
.sub_weizhi{height:60px; background:#f8f8f8; border-bottom:solid 1px #eee; position:relative; z-index:9;/*box-shadow: 0 1px 5px rgba(0,0,0,0.1);*/}
.sub_weizhi .weizhi{ color:#666; position: relative;  display:flex; align-items:center;}
.sub_weizhi .weizhi a{color:#666;}
.sub_weizhi .weizhi i.ico { margin-right:10px;}
.sub_weizhi .weizhi i.ico svg {height: 20px;width: 20px; fill:#666;}
.sub_weizhi .weizhi span{margin:0 1px;}

.page_weizhi{line-height:.66rem; font-size:.16rem; border-bottom:solid 1px rgba(0,0,0,0.1); margin-bottom:.5rem;}

@media screen and (max-width:768px) {
.sub_weizhi{height:36px;}
.sub_weizhi .weizhi{margin-left:15px; font-size:14px; max-width:calc(100% - 60px); overflow:hidden;}
.sub_weizhi .weizhi a{white-space: nowrap}
.sub_weizhi .weizhi i.ico {margin-right:3px;}
.sub_weizhi .weizhi i.ico svg {width: 16px;}
}

/*===================子栏目导航================*/
#n_nav a{position: relative;float: left;display: block; font-size:15px; min-width:108px; padding:0 15px; background: url(../images/line_n_title.jpg) right 1px center no-repeat; text-align: center; }
#n_nav a:last-child{ background: none;}
#n_nav a strong{background: url(../images/bg_n_nav.png) center no-repeat; position: relative; display: block;z-index: 9; height: 60px; line-height:60px; color: #333; font-weight:normal; transition:0.6s all; }
#n_nav a span{position: absolute; left: 0px; top: 0px; z-index: 1; width: 100%; display: inherit; text-align: center;}
#n_nav a i{ display:inline-block; background:var(--main_color); height: 60px; width: 0px; transition:0.6s all; opacity:0;}
#n_nav  a.on i,#n_nav a:hover i{width:100%; opacity:1;}
#n_nav  a.on strong,#n_nav a:hover strong{ color: #fff; }

.m_sub_nav{display:none;}
@media screen and (max-width:768px) {
.sub_weizhi .main{padding:0;}	
#n_nav{display:none; width:100%; background: #fff;box-shadow: 0 2px 10px #ccc;z-index: 9; box-sizing:border-box;}
.m_sub_nav{display:flex; height:36px; margin-right:15px;}
.m_sub_nav svg{width:22px; height:220px;  fill:var(--main_color); transition:0.3s all;}
.m_sub_nav.active svg{ -webkit-transform: rotate(-180deg); transform: rotate(-180deg); }

#n_nav a{width:100%; padding:0 15px;  background:none; text-align:left; border-bottom: 1px solid #e1e6f0; box-sizing:border-box;}
#n_nav a strong{height:46px; line-height:46px; color: #333;}
#n_nav a span{display:none;}
#n_nav a.on strong,#n_nav a:hover strong{ color:var(--main_color); }
}


/*===========内容页位置导航===============*/
.show_weizhi_bg{ line-height:.6rem; }
.show_weizhi{color:#666;}
.show_weizhi span{display:inline-block; margin:0 3px;}
.show_weizhi i svg{width:.18rem; fill:#000;margin-right:.1rem;position:relative;top:.03rem;}
.show_weizhi a{font-size:14px; margin:0 5px; display:inline-block; color:#666;}
.show_weizhi p{color:#333;font-size:14px;}

@media screen and (max-width:768px) {
.show_weizhi_bg{ background:#f2f2f2;}
.pro_side{ display:none;}
.show_weizhi_bg{line-height:38px;margin-bottom:0; padding-top:5px;}
.show_weizhi i svg{width:14px; margin-right:3px;}
}




/*=============内页-公司简介============*/
.page_about_bg{padding-bottom:.8rem;/*background: #fff url(../images/page_about_bg.png) no-repeat center bottom; background-size: 100%;*/}

.page_about{padding:.8rem 0 0 0;}
.page_about .tit{width:4.2rem;}
.page_about .tit h2{ font-size:.42rem; color:#000; line-height:1.4; position:relative;}
.page_about .tit h4{font-weight:normal;font-size:.2rem;line-height:1.6;margin-top:.1rem;}
.page_about .right{width:calc(100% - 5.2rem);margin-top:.1rem;}
.page_about .con{text-align:justify; font-size:16px; line-height:2;overflow:hidden;}
.page_about .con p{ margin-bottom:20px;}
.page_about .con img{border-radius:10px;margin-top:10px;width:100%;display:block;}



@media screen and (max-width:768px) {
.page_about{padding:25px 15px 0;}
.page_about .tit{width:100%;}
.page_about .tit h2{ font-size:22px;}
.page_about .tit h4{ font-size:15px;margin-top:8px;}
.page_about .right{width:100%; margin-top:25px;}
.page_about .con{ font-size:14px; line-height:1.68;}
.page_about .con p{ margin-bottom:15px;}
.page_about .right .title{font-size:20px; text-align:center;}
.page_about .right .list{display: grid;grid-template-columns: repeat(2, 1fr);gap:10px;}
.page_about .right .list li{ overflow:hidden; border-radius:5px;}
.page_about .right .list .ico img{}
.page_about .right .list li h3{ font-size:16px; text-align:center; line-height:1.3;  padding:0 20px;}
}

/* 数字变换css */
.page-number-info { margin-top:.5rem; overflow:hidden;}
.page-number-info ul {}
.page-number-info li {background:#f5f5f5;padding:.2rem .3rem;border-radius:10px;margin-bottom:.15rem;box-sizing:border-box;}
.page-number-info li .ico{width:.6rem;height:.6rem;border-radius:50%;border: 1px #e2e2e2 solid;}
.page-number-info li .ico img{width:.35rem;}
.page-number-info li .txt{width:calc(100% - .9rem);}
.page-number-info li .txt i{display:inline-block;font-style:normal;font-size:.33rem;color:var(--main_color); font-family:'din';font-weight:bold;}
.page-number-info li .txt span{font-size:.16rem;}
.page-number-info li .txt p{font-size:.16rem;margin-top:.1rem;color:#666;}

@keyframes moveline {
  0% {
    left: -25px;
  }
  100% {
    left: 100%;
  }
}

@media screen and (max-width:768px) {
.page-number-info ul{display: grid;grid-template-columns: repeat(2, 1fr);gap: 10px;}
.page-number-info ul li{margin-bottom:0;padding:20px 10px;}
.page-number-info ul .ico{width:50px;height:50px;margin:0 auto;}
.page-number-info ul .ico img{width:28px;}
.page-number-info ul .txt{width:100%;text-align:center;margin-top:15px;}
.page-number-info ul .txt i{font-size:28px;}
.page-number-info ul .txt span{font-size:14px;}
.page-number-info ul .txt p{font-size:15px;margin-top:10px;}
}




/*======================参观公司======================*/

.cggs_list{ box-sizing:border-box;padding-bottom:.8rem;}
.cggs_list li { overflow:hidden; border-radius:10px; position:relative;}
.cggs_list li .pic img{width:100%;height:100%; object-fit:cover; display:block; transition:.4s all;}
.cggs_list li .txt{background:rgba(0,0,0,0.4); position:absolute; top:0; left:0; width:100%; height:100%; opacity:0; transition: 0.4s all;}
.cggs_list li .txt i {display: block;width: 60px;height: 60px;background:var(--main_color);border-radius: 100%; opacity:0; transition: 0.6s all;}
.cggs_list li .txt i::after {content: '';width: 20px;height: 2px;background: #fff;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.cggs_list li .txt i::before {content: '';width: 2px;height: 20px;background: #fff;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.cggs_list li:hover .txt,.cggs_list li:hover .txt i{ opacity:1;}
	
/*按钮切换*/
#cggs_btn{position:relative;}	
#cggs_btn .swiper-button-prev { left:0px; background: url(../images/focus_btn_prev.png) no-repeat; background-size: cover;}
#cggs_btn .swiper-button-next {right:0px;background: url(../images/focus_btn_next.png) no-repeat; background-size: cover;}
#cggs_btn .swiper-button-prev,#cggs_btn .swiper-button-next { width:.68rem;height:.68rem; outline:none;  opacity:1; transition:0.3s all;}


/*分页器*/
#cggs_btn .swiper-pagination-bullet{width: 12px;height: 12px; display: inline-block; border-radius: 50%; background:#ddd; transition: all .5s ease;opacity: 1.0;}
#cggs_btn .swiper-pagination-bullet-active{background:#FF5F2A; opacity: 1.0;}
#cggs_btn .swiper-pagination{ text-align:center; width:100%; bottom:-40px;}
#cggs_btn .swiper-pagination span{margin:0 3px;}
@media screen and (max-width:768px) {
.cggs_list{ margin:0;}
.cggs_list li { border-radius:5px; }
.cggs_list li .txt i {width: 35px;height: 35px;}
.cggs_list li .txt i::after {content: '';width: 15px;height: 2px;}
.cggs_list li .txt i::before {content: '';width: 2px;height: 15px;}
}


/*=============内页-荣誉资质============*/
.list_honor_bg {background: url(../images/ry_bg01.jpg) no-repeat center;background-size: cover;padding: 0 0 .8rem;}
.list_honor_box{display: grid;gap: .35rem;grid-template-columns: repeat(4, 1fr);}
.list_honor_box figure{background:#fff;padding:.3rem .3rem;box-sizing:border-box;}
.list_honor_box figure .pic{ height:2rem; margin-bottom:0;overflow:hidden;}
.list_honor_box figure .pic img{max-width:100%; max-height:100%; transition:all .5s;}
.list_honor_box figure .txt{text-align:center;margin-top:.2rem;}
.list_honor_box figure:hover .pic img{ transform:scale(1.1,1.1);}

@media screen and (max-width:768px) {
.list_honor_box{display: grid;gap: 15px;grid-template-columns: repeat(2, 1fr);}
.list_honor_box figure{padding:15px 15px;box-sizing:border-box;border-radius:4px;}
.list_honor_box figure .txt{margin-top:10px;line-height:1.4;}
}



/*================合作品牌=====================*/
.hezuo{background:#EFF0F4;  padding-bottom:1rem;}

.hz_logo{display: grid; grid-template-columns: repeat(6, 1fr); gap:.25rem;}
.hz_logo li{ background:#fff; border-radius:.1rem; overflow:hidden;min-height:1.4rem;}
.hz_logo li img{ width:68%;}
@media only screen and (max-width: 768px){
.hz_logo{display: grid; grid-template-columns: repeat(2, 1fr); gap:15px;}
.hz_logo li { min-height:100px;}
.hz_logo li img{ width:68%;}    
}


.tabs2 {text-align:center; margin-bottom:.5rem;}
.tabs2 li{width:2.3rem;  height:56px; border: 1px solid #ccc; line-height:56px; text-align:center; font-size:.18rem;box-sizing:border-box; cursor:pointer; display:inline-block; margin:0 5px;}
.tabs2 li.active{background:var(--main_color); color:#fff; border: 1px solid var(--main_color);}

#tabs-container2{ overflow:hidden; padding:8px 6px;}

.brand_list{ margin-bottom:.8rem;}
.brand_list li{width:15.6%; margin:0 0.5% .15rem; height:1rem;position: relative;box-sizing: border-box;border: 0px solid #e8e8e8; background:#fff; border-radius:5px; overflow:hidden; box-shadow: 0 1px 10px rgb(0 0 0 / 4%); transition:0.3s all;}
.brand_list li:hover{ transform:translateY(-3px); box-shadow: 0 1px 15px rgb(0 0 0 / 10%);}
.brand_list li img{max-width:90%;max-height:90%;display:block;/* filter: grayscale(1); */transition:0.3s all;}
.brand_list li:hover img{ filter: grayscale(0);}

@media screen and (max-width:768px) {
.tabs2 {text-align:center; margin-bottom:15px;}
.tabs2 li{width:45%;height:36px; line-height:36px; font-size:15px;margin:0;}
.tabs2 li.active{background:var(--main_color); color:#fff;}

.brand_list{ margin-bottom:20px; padding-top:1px;}
.brand_list li{width:31.7%; height:56px;margin:0 8px 10px 0; box-sizing:border-box;border-radius:5px;}
.brand_list li:nth-child(3n){margin-right:0;}
}




/*======================应用领域======================*/
.page_yyly_bg{}
.yyly_list{display: grid;grid-template-columns: repeat(4, 1fr);gap:.35rem;}
.yyly_list .pic{overflow:hidden;}
.yyly_list .pic img{transition:.4s;}
.yyly_list li{ border-radius:10px; overflow:hidden;}
.yyly_list li a:hover .pic img{ transform:scale(1.1);}
.yyly_list .txt{padding:.3rem .25rem 0.3rem;}
.yyly_list .txt h2{font-size:.2rem; color:#000; }
.yyly_list .txt p{ margin:.15rem 0 .3rem; line-height: 1.5; color:#666;}
.yyly_list .txt .more i{ margin-left:5px; transition:.4s; display: inline-block;}
.yyly_list li a:hover .txt .more i{transform: translateX(0.1rem);}
.yyly_list li a{position: relative; background: #f8f8f8; display:block; height:100%;}
.yyly_list li a::after {content: "";position: absolute;bottom: 0;left: 0;height: 3px;background:var(--main_color);width: 0%;-webkit-transition: 0.4s;-o-transition: 0.4s;transition: 0.4s;}	
.yyly_list li a:hover::after {width: 100%;}

@media only screen and (max-width: 768px){
.yyly_list{ grid-template-columns: repeat(1, 1fr);gap:15px;}
.yyly_list li a{}
.yyly_list li a::after{ display:none;}
.yyly_list li .pic{ max-height:200px;}
.yyly_list li .txt{ padding:25px 20px 20px;}
.yyly_list li .txt h2{ font-size:17px;margin-bottom:15px;}

}




/*======================服务支持======================*/
.fwzc{position:relative;  overflow:hidden; }
.fwzc li{text-align: center; background: #f5f6f7;border-radius: 10px; overflow: hidden;position: relative; padding:.35rem .3rem .2rem;  transition:0.3s all;}
.fwzc li .pic img{ transition:0.3s all;}
.fwzc li .txt h3{ font-size:.18rem; margin-top:15px;}
.fwzc li .txt h3:after {content: '';display: block;width: 25px;height: 2px;background:var(--main_color);margin:.15rem auto; transition:0.3s all;}
.fwzc li .txt p{ line-height:1.6; height:100px; color:#666;transition:0.3s all;}
.fwzc li .num{ font-size:.25rem; color:#ccc; }
.fwzc li:hover{ background:var(--main_color); color:#fff;}
.fwzc li:hover .pic img{filter: grayscale(100%) brightness(1000%);}
.fwzc li:hover .txt p{color:rgba(255,255,255,0.8);}
.fwzc li:hover .num{color:#fff; }
.fwzc li:hover .txt h3:after { background:#fff;}

/*分页器*/
#fwzc_btn .swiper-pagination-bullet{width: 8px;height: 8px; display: inline-block; border-radius: 50%; background:#fff; border:solid 2px #999; transition: all .5s ease;opacity:1;}
#fwzc_btn .swiper-pagination-bullet-active{background:var(--main_color); border:solid 2px var(--main_color); }
#fwzc_btn .swiper-pagination{ text-align:center; width:100%; bottom:0px; overflow:hidden;  display:none;}
#fwzc_btn .swiper-pagination span{margin:0 3px;}

@media screen and (max-width:768px) {
.fwzc li .txt h3{ font-size:15px; margin-top:10px;}
.fwzc li .txt h3:after { width: 20px;height: 2px; margin:15px auto; }
.fwzc li .pic img{ height:36px;}
.fwzc li .txt p{ line-height:1.6; font-size:13px; height:80px;}
.fwzc li .num{ font-size:20px; }

#fwzc_btn .swiper-pagination{ display:block; }

}

.into-city {width: 100%;height: 209px;left: 0;bottom: 0;background: url(../images/intojt1img.png) repeat center center/auto 100%;animation: citymove 60s linear infinite;}
@keyframes citymove{0%{background-position:0px 0px;}100%{background-position:1920px 0;}}
@media screen and (max-width:768px) {
.into-city { height:125px;}
}




/*======================常见问题======================*/
.faq_bg{padding-bottom:.8rem;}
.faq_bg .main{background:url('../images/faq-bg.png') no-repeat left bottom; min-height:6rem; background-size:5.6rem auto;}
.faq_bg .left{ }
.faq_bg .left .main_tit h2{text-align:left; line-height:1.3;}
.faq_bg .right{ width:60%; padding-top:.8rem;}
.wenda_list{}
.wenda_list li{border-bottom: 1px solid #EBECF0;padding:5px .35rem; transition: 0.3s; line-height:28px;}
.wenda_list li.active{box-shadow: 0px 20px 20px rgba(3, 4, 28, 0.08); border-radius: 0 0 20px 20px;}
.wenda_list li .tit{ padding:.2rem 0 .15rem 0; font-size:16px; cursor:pointer;}
.wenda_list li .tit strong{ flex:1;}
.wenda_list li .tit span{width: 26px;height: 26px;border: 1px solid #C0C2C8;border-radius: 50%;transition: 0.3s; position:relative; display:block;}
.wenda_list li .tit span:before {position: absolute;content: "";width: 2px;height: 12px;left: 50%;top: 50%;transform: translate(-50%, -50%);background: #525258;border-radius: 2px;transition: 0.4s;}
.wenda_list li.active .tit span:before {transform: translate(-50%, -50%) rotate(90deg);}
.wenda_list li .tit span:after {position: absolute;content: "";width: 12px;height: 2px;left: 50%;top: 50%;transform: translate(-50%, -50%);background: #525258;border-radius: 2px;}
.wenda_list li .con{ display:none; font-size:15px; line-height:1.8; color:#666; padding-bottom:.25rem; text-align:justify;}
.wenda_list li:first-child .con{ display:block;}
@media screen and (max-width:768px) {
.faq_bg .main{background:none;}
.faq_bg .left{width:100%}
.faq_bg .left .main_tit h2{text-align:center; line-height:1.5;}
.faq_bg .right{ width:100%; padding-top:0;}
.wenda_list li{ padding: 6px 20px 6px 3px;}
.wenda_list li.active{box-shadow: 0px 5px 20px rgba(3, 4, 28, 0.08); padding-left:20px;}
.wenda_list li .con{ font-size:14px;}

}


/*======================发展历程======================*/
.fzlc_bg{ background:url(../images/fzlc_bg1.jpg) center; min-height:620px; background-size:cover; padding-bottom:.5rem; box-sizing:border-box;}

.thumbs, .gallery{width: 100%;position: relative;padding: 0 80px;user-select: none; box-sizing:border-box;overflow:hidden;}
.thumbs::after{content: "";position: absolute;width: calc(100% - 160px);height: 2px;background:#ddd;bottom: 17px;left: 0;right: 0;margin: 0 auto; z-index:0;}
.thumbs-year{width: 100%;position: relative;display: flex;transition: all .4s ease;line-height: 1;align-items: flex-end;justify-content: center;height:70px;padding-bottom:50px;font-size: 20px;color: #666; }
.thumbs-year::before, .thumbs-year::after{content: "";position: absolute;right: 0;left: 0;margin: 0 auto;border-radius: 50%;}
.thumbs-year::before{width: 30px;height: 30px;background: #ddd;opacity:1; bottom:4px;transition: all .4s ease;}
.thumbs-year::after{width:10px;height:10px;background: #ccc;bottom: 14px;transition: all .4s ease;}
.thumbs-year:hover{color:var(--main_color);}
.thumbs-year.active{color:var(--main_color);font-size:.3rem;}
.thumbs-year.active::before{background:var(--main_color); transform: scale(1.1); }
.thumbs-year.active::after{background:#fff;transform: scale(1.2);}

.gallery{margin-top: 50px;}
.gallery li .num{width:4rem;font-size:.8rem;color:var(--main_color); }
.gallery li .num, .gallery li .cont .pic{ height:1rem; overflow:hidden;}
.gallery li .txt{width:calc(100% - 4rem); font-size:16px; line-height:2; }
.gallery li .txt img{width: 100%;object-fit: cover;}
.gallery li .txt p{ margin-bottom:.1rem; position:relative; padding-left:18px;}
.gallery li .txt p:before{content: '';width: 5px;height:5px; border:solid 2px var(--main_color);border-radius: 50%; position: absolute;left: 0;top: 13px;}
.thumbs-prev, .thumbs-next{position: absolute;width: 35px;height: 35px;bottom: 1px;background: url('../images/mtarr.png') no-repeat center;transition: all .4s ease;cursor: pointer; outline:none;}
.thumbs-prev{left:25px;}
.thumbs-next{right: 25px;transform: rotate(180deg);}
.thumbs-prev:hover, .thumbs-next:hover{background-image: url('../images/mtarrh.png');}

.gallery .swiper-pagination{ display:none;}

@media screen and (max-width:768px) {
.fzlc_bg{min-height:auto; padding-bottom:0; background:#fff;}
.thumbs, .gallery{padding: 0 25px;}
.thumbs::after{width: calc(100% - 50px); bottom: 17px;}
.thumbs-year{height:50px;padding-bottom:40px;font-size:16px;}
.thumbs-year::before{width: 25px;height: 25px;background: #ddd;opacity: 0.8; bottom:5px;transition: all .4s ease;}
.thumbs-year::after{width:8px;height:8px; bottom: 14px; }
.thumbs-prev, .thumbs-next{width:25px;height: 25px; background-size:cover; bottom:6px;}
.thumbs-prev{left:0px;}
.thumbs-next{right: 0px;transform: rotate(180deg);}

.gallery{margin-top: 20px;}
.gallery li .num{width:100%;font-size:25px; align-items:start;}
.gallery li .txt{width:100%; font-size:14px; line-height:1.6; }
.gallery li .txt p{ margin-bottom:10px; position:relative; padding-left:15px;}
.gallery li .txt p:before{ width: 5px;height:5px;top:6px;}



.gallery .swiper-container{position:relative; padding-bottom:40px;}
.gallery .swiper-pagination-bullet{width: 10px;height: 10px; display: inline-block; border-radius: 50%; background:#999; transition: all .5s ease;opacity: 1.0;}
.gallery .swiper-pagination-bullet-active{background:var(--main_color); opacity: 1.0;}
.gallery .swiper-pagination{ text-align:center; width:100%; display:block;}
.gallery .swiper-pagination span{margin:0 3px;}
.zuo_you{width:150px;height:42px;margin:-40px auto 30px auto; position:relative;background:url(../images/you.png) no-repeat right top;background-size: 36px auto; }
.zuo_you:before{content:"";position:absolute;top:0;left:0;width:36px; height:42px;background:url(../images/zuo.png) no-repeat top;background-size:100% auto;}
}


/*===================旗下公司================*/
.xsgs_bg{padding:0 0 1rem;}
.zgs_side .sticky{position: sticky;top: 100px;}
.zgs_side{width:380px;}
.zgs_side li{padding:.15rem .2rem;box-sizing:border-box;font-size:.18rem;position:relative;}
.zgs_side li:before{position:absolute; content:'';width:8px;height:8px;border-radius:50%;background:var(--main_color);left:0;top:.2rem; transition:all .5s; transform:scale(0.1); opacity:0;}
.zgs_side li a{transition:all .5s;}
.zgs_side li.current a{color:var(--main_color);}
.zgs_side li.current:before{ transform:scale(1); opacity:1;}
.zgs_con{width:calc(100% - 480px);}

.zgs_con li{padding-top:1.2rem;position:relative;padding-left:.5rem;box-sizing:border-box;}
.zgs_con li:before{position:absolute; content:''; height:100%; border-left:1px dashed #ddd;left:0;top:0;}
.zgs_con li:nth-child(1):before{top:1.5rem;}
.zgs_con .pic{overflow:hidden;margin-bottom:.3rem;}
.zgs_con .pic img{width:100%;display:block;}
.zgs_con .txt h3{font-size:.25rem;color:#000;}
.zgs_con .txt .desc{margin:.3rem 0 0;}
.zgs_con .txt .desc p{font-size:.16rem;color:#666;line-height:1.8; text-align:justify;margin-bottom:.2rem;}
.zgs_con .txt .desc p a{color:var(--main_color);  text-decoration:underline;font-size:.18rem;}
.zgs_con .txt span{display:block;width:.46rem ;line-height:.46rem;background:var(--main_color);color:#fff;font-size:.2rem;font-weight:bold;border-radius:50%;text-align:center; position:absolute;left:-23.5px;top:1.4rem;}


@media screen and (max-width:768px) {
.xsgs_bg{padding:0 0 30px;}
.zgs_side{}
.zgs_side li{display:none;}
.zgs_side .rc_tit{margin-bottom:0;}
.zgs_con{width:100%;padding:0 15px;box-sizing:border-box;}
.zgs_con li{padding-top:15px;padding-left:25px; padding-bottom:10px;}
.zgs_con li:nth-child(1):before{top:20px;}
.zgs_con .pic{margin-bottom:20px;}
.zgs_con .txt h3{font-size:16px;}
.zgs_con .txt .desc{margin:15px 0 0;}
.zgs_con .txt .desc p{font-size:13px;margin-bottom:10px;}
.zgs_con .txt .desc p a{font-size:14px;}
.zgs_con .txt span{display:block;width:30px ;line-height:30px;font-size:15px; left:-14.5px;top:8px;}

}


.xsgs_box .rc_tit{margin-bottom:.5rem}

.xsgs_box li{width:49%;margin-bottom:.3rem;}
.xsgs_box li .pic{width:50%;overflow:hidden; height:2.6rem;}
.xsgs_box li .pic img{width:100%;height:100%;object-fit:cover;display:block; transition:all .5s;} 

.xsgs_box li .txt{width:50%;background:#fff;padding:0 .3rem;box-sizing:border-box;position:relative;}
.xsgs_box li .txt h3{font-weight:normal;font-size:.2rem;color:#000;margin-bottom:.3rem;}
.xsgs_box li .txt .lx dl{margin-bottom:.15rem;}
.xsgs_box li .txt .lx dl .ico{width:25px;height:25px;border-radius:50%;background:var(--main_color);}
.xsgs_box li .txt .lx dl .ico i{color:#fff;font-size:10px;}
.xsgs_box li .txt .lx dl p{width:calc(100% - 35px); font-size:14px;color:#333;line-height:1.4;}
.xsgs_box li .txt span{position:absolute;width:35px;height:35px;background:var(--main_color);right:0;bottom:0; transition:all .5s;}
.xsgs_box li .txt span i{color:#fff;font-size:16px;}
.xsgs_box li:hover .pic img{ transform:scale(1.1,1.1);}
.xsgs_box li:hover .txt span{background:var(--second_color);}


@media screen and (max-width:768px) {
.xsgs_box .rc_tit{margin-bottom:20px;}

.xsgs_box li{width:100%;margin-bottom:20px;border-radius:4px;overflow:hidden;}
.xsgs_box li .pic{width:100%;height:180px;}

.xsgs_box li .txt{width:100%;padding:20px 20px;}
.xsgs_box li .txt h3{font-size:18px;margin-bottom:20px;}
.xsgs_box li .txt .lx dl{margin-bottom:10px;}
.xsgs_box li .txt .lx dl p{font-size:14px;}
.xsgs_box li .txt .lx dl:last-child p{font-size:13px;}
.xsgs_box li .txt span{width:30px;height:30px;}
}


/*===================公司业务-频道页================*/
.cate_service_bg{padding-bottom:.8rem;}
.cate_service{display: grid;grid-template-columns: repeat(2, 1fr);gap:.3rem;}
.cate_service li{position:relative;overflow:hidden;border-radius:8px;}
.cate_service li .pic{overflow:hidden;}
.cate_service li .pic img{width:100%;display:block; transition:all .5s;}
.cate_service li .txt{width:3.8rem;height:100%;background:rgba(0,0,0,.3);padding:0 .4rem;box-sizing:border-box;position:absolute;right:0;top:50%; transform:translateY(-50%);transition:all .5s;}
.cate_service li .txt h3{font-size:.26rem;color:#fff;}
.cate_service li .txt .desc{color:rgba(255,255,255,.9);line-height:2; text-align:justify;font-size:.16rem;margin:.3rem 0 .5rem;}
.cate_service li .txt span{display:block;width:1.2rem;line-height:.36rem;background:var(--second_color);text-align:center;color:#fff;border-radius:.36rem;transition:all .5s;}
.cate_service li:hover .pic img{ transform:scale(1.1,1.1);}
.cate_service li:hover .txt{background:var(--second_color);}
.cate_service li:hover .txt span{background:#fff;color:var(--second_color);}

@media screen and (max-width:768px) {
.cate_service_bg{padding-bottom:10px;}
.cate_service{display: grid;grid-template-columns: repeat(1, 1fr);gap:0;}
.cate_service li{margin-bottom:20px;}
.cate_service li .pic{height:200px;}
.cate_service li .pic img{width:100%;height:100%;object-fit:cover;}
.cate_service li .txt{padding:0 20px; width:100%;}
.cate_service li .txt h3{font-size:17px;}
.cate_service li .txt .desc{line-height:1.4; font-size:14px;margin:15px 0 20px;}
.cate_service li .txt span{width:100px;line-height:30px;border-radius:308px;transition:all .5s;}
}

/*行业应用*/
.cate_service_bg1{padding-bottom:.8rem; background:#f6f6f6;}
.hangye_list{}
.hangye_list li{width:23.8%; background:#fff; border-radius:.1rem; overflow:hidden; box-sizing:border-box; box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.05);}
.hangye_list li h2{ background:var(--second_color); color:#fff; font-size:.2rem; text-align:center; line-height:.52rem;}
.hangye_list li p{ line-height:1.6;  padding:.2rem .2rem; color:#444;}
@media screen and (max-width:768px) {
.hangye_list li{width:100%; border-radius:8px; margin-bottom:15px;}
.hangye_list li h2{font-size:18px; line-height:46px;}
.hangye_list li p{ padding:20px;}

}


/*========================塑料粒子======================*/
.lizi_ys{display: grid; grid-template-columns: repeat(6, 1fr);gap:0;}
.lizi_ys li{ position:relative;}
.lizi_ys li .pic{ height:5.2rem;}
.lizi_ys li .txt{ position:absolute; left:0; top:0; right:0; bottom:0; background:rgba(0,0,0,0.25); transition:all .5s;}
.lizi_ys li .txt .ico{}
.lizi_ys li .txt h3{ font-size:.3rem; color:#fff; margin-top:.35rem;}
.lizi_ys li:hover .txt{ background:var(--main_color);}
@media only screen and (max-width: 768px){
.lizi_ys{display: grid; grid-template-columns: repeat(3, 1fr);gap:12px;}
.lizi_ys li .pic{ height:150px;}
.lizi_ys li .txt .ico img{ height:46px;}
.lizi_ys li .txt h3{ font-size:18px; margin-top:12px;}    
}

/*========================三大亮点======================*/
.ld{ }
.ld .tabs1{margin-bottom:.4rem; margin-top:-.1rem;}
.ld .tabs1 a{ border:solid 1px #999; font-size:.18rem; height:.46rem; margin:0 .1rem; border-radius:.1rem; padding:0 .25rem; transition:all .5s;}
.ld .tabs1 a.active{border:solid 1px var(--main_color); background:var(--main_color); color:#fff;}


.ld .swiper-container{  overflow:hidden; background:#f2f2f2; border-radius:.1rem; }
.ld li{overflow:hidden; }
.ld li .pic{width:50%; max-height:5rem;overflow:hidden;border-radius:.1rem;}
.ld li .txt{flex:1; padding:0 .8rem;box-sizing:border-box;}
.ld li .txt h3{font-weight:normal;font-size:.33rem;color:#000;margin-bottom:.3rem;}
.ld li .txt .desc{color:#666;line-height:2; font-size:.16rem; text-align:justify;margin-bottom:.5rem;}


@media only screen and (max-width: 768px){
.ld .tabs1{margin-bottom:20px;}
.ld .tabs1 a{  font-size:13px; height:auto; text-align:center;  padding:10px; line-height:1.6;}

.ld li .pic{width:100%; max-height:160px;}
.ld li .txt{padding:20px 20px;}
.ld li .txt h3{font-weight:bold;font-size:18px;margin-bottom:15px;}
.ld li .txt .desc{font-size:14px; line-height:1.6;}
}

.fuzhu_box{ background:#f8f8f8;}



/*========================公司业务-列表页======================*/

/*概述通用
.yewu_box{margin:.6rem 0 .8rem;border-radius:8px;overflow:hidden;}
.yewu_box .pic{width:50%;overflow:hidden; min-height:4.8rem;}
.yewu_box .pic img{display:block;width:100%; height:100%; object-fit:cover;}
.yewu_box .txt{width:50%;background:#f8f8f8;padding:0 .6rem;box-sizing:border-box;}
.yewu_box .txt h3{position:relative;font-weight:bold;width:100%;border-bottom:1px solid rgba(204,204,204,.5);padding-bottom:.2rem;font-size:.34rem;}
.yewu_box .txt h3::after {width: 10%;height: 3px;bottom: -2px;display: block;content: '';background:var(--main_color);position: absolute;
left: 0;}
.yewu_box .txt p{margin:.3rem 0 .5rem;color:#666;font-size:.16rem;text-align:justify;line-height:1.8; }
.yewu_box .txt a{display:inline-block;width:1.6rem;line-height:.42rem;border:1px solid rgba(204,204,204,1);border-radius:25px;margin-right:.3rem;text-align:center;font-size:15px; transition:all .3s;}
.yewu_box .txt a i{font-size:18px;margin-right:10px;}
.yewu_box .txt .tel{margin-right:0;background:var(--main_color);width:2.2rem;color:#fff;font-size:18px;border:1px solid var(--main_color);}
.yewu_box .txt a:hover{ transform:translateY(-10px);}

@media screen and (max-width:768px) {
.yewu_box .pic{width:100%;order:1; min-height:auto; height:150px; border-radius:6px;}
.yewu_box .txt{width:100%;padding:25px 0 0;order:2; background:#fff;}
.yewu_box .txt h3{padding-bottom:15px;font-size:17px;}
.yewu_box .txt h3::after {width: 15%;}
.yewu_box .txt p{margin:15px 0 20px;font-size:14px;line-height:1.8;}
.yewu_box .txt a{width:108px;line-height:36px;margin-right:15px;font-size:14px;}
.yewu_box .txt a i{font-size:15px;margin-right:10px;}
.yewu_box .txt .tel{width:180px; font-size:15px;}
}
*/
/*AAA信用等级*/
/*.list_yewu_bg{background:#f8f8f8;padding-bottom:.8rem;}*/
/*.ywly_box{display: grid;grid-template-columns: repeat(3, 1fr);gap:.2rem;grid-row-gap: .25rem;}*/
/*.ywly_box{}*/
/*.ywly_box li{width:32.3%; margin-bottom:.25rem; background:rgba(255,255,255,1);padding:.4rem .3rem;box-sizing:border-box;border-radius:8px;box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.03);overflow:hidden;position:relative;}*/
/*.ywly_box li:nth-child(n+4){width:23.8%;}*/
/*.ywly_box li:before{content:'';position:absolute;width:0;height:100%;left:0;top:0;background:var(--second_color); z-index:1; transition:all .5s;}*/
/*.ywly_box li h3{font-size:.22rem;font-weight:normal;color:#000;position:relative; z-index:2;transition:all .5s;}*/
/*.ywly_box li p{line-height:1.6; text-align:justify;margin-top:.2rem;color:#999;position:relative; z-index:2;transition:all .5s;}*/
/*.ywly_box li:hover:before{width:100%;right:0;}*/
/*.ywly_box li:hover h3{color:#fff;}*/
/*.ywly_box li:hover p{color:rgba(255,255,255,.8);}*/
/*@media screen and (max-width:768px) {*/
/*.ywly_box{display: grid;grid-template-columns: repeat(1, 1fr);gap:0;grid-row-gap: 0;}*/
/*.ywly_box li,.ywly_box li:nth-child(n+4){width:100%;padding:25px 20px;margin-bottom:20px;}*/
/*.ywly_box li:last-child{margin-bottom:0;}*/
/*.ywly_box li h3{font-size:17px;}*/
/*.ywly_box li p{margin-top:10px;}*/
/*}*/


/*AAA信用认证作用*/
/*.ywys_box{display: grid;grid-template-columns: repeat(2, 1fr);gap:.25rem;padding-bottom:1rem;}*/
/*.ywys_box li{border-radius:8px;overflow:hidden;}*/
/*.ywys_box li .pic{width:50%;overflow:hidden;}*/
/*.ywys_box li .pic img{width:100%;display:block;}*/
/*.ywys_box li .txt{width:50%;background:#f8f8f8;padding:0 .3rem;box-sizing:border-box;}*/
/*.ywys_box li .txt h3{font-size:.25rem;font-weight:normal;margin-bottom:.2rem;}*/
/*.ywys_box li .txt p{color:#888;line-height:2;font-size:.16rem;}*/

/*@media screen and (max-width:768px) {*/
/*.ywys_box{display: grid;grid-template-columns: repeat(1, 1fr);gap:0;padding-bottom:10px;}*/
/*.ywys_box li{border-radius:8px;overflow:hidden;margin-bottom:20px;}*/
/*.ywys_box li .pic{width:100%;height:140px;}*/
/*.ywys_box li .pic img{width:100%;height:100%;object-fit:cover;}*/
/*.ywys_box li .txt{width:100%;padding:20px 25px;}*/
/*.ywys_box li .txt h3{font-size:18px;margin-bottom:15px;}*/
/*.ywys_box li .txt p{font-size:14px;}*/
/*}*/


/*ISO体系
.iso_box{display: grid;grid-template-columns: repeat(2, 1fr);gap:.3rem;}
.iso_box li{background:#fff;padding:.3rem .3rem;box-sizing:border-box;border-radius:8px;box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.03);overflow:hidden;}
.iso_box li .pic img{width:1rem;}
.iso_box li .txt{width:calc(100% - 1.2rem);}
.iso_box li h3{font-size:.22rem;font-weight:normal;color:#000;transition:all .5s;}
.iso_box li p{line-height:1.6; text-align:justify;margin-top:.15rem;color:#999;transition:all .5s;}

.iso_box2{display: grid;grid-template-columns: repeat(5, 1fr);gap:0;padding-bottom:.8rem;}
.iso_box2 li{overflow:hidden;background:#f8f8f8;height:2.2rem;}
.iso_box2 li img{width:100%;height:100%;object-fit:cover;display:block;}
.iso_box2 li:nth-child(even){padding:0 .2rem;box-sizing:border-box;}
.iso_box2 li p{line-height:2.2;font-size:.15rem;}

@media screen and (max-width:768px) {
.iso_box{grid-template-columns: repeat(1, 1fr);gap:0;}
.iso_box li{padding:25px 15px;margin-bottom:20px;}
.iso_box li:last-child{margin-bottom:0;}
.iso_box li .pic{width:100%;}
.iso_box li .pic img{width:100px;}
.iso_box li .txt{width:100%;margin-top:20px;text-align:center;}
.iso_box li h3{font-size:17px;}
.iso_box li p{line-height:1.6; margin-top:15px;}

.iso_box2{display: grid;grid-template-columns: repeat(1, 1fr);gap:0;}
.iso_box2 li{height:140px;}
.iso_box2 li img{border-radius:8px;}
.iso_box2 li:nth-child(even){padding:0 20px;height:120px;}
.iso_box2 li p{font-size:16px;}
}
*/

/*商品售后服务体系
.shfw_box{display: grid;grid-template-columns: repeat(3, 1fr);gap:.3rem;}
.shfw_box li{background:#fff;border-radius:8px;overflow:hidden;padding:.1rem 0 .3rem;box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.03);}
.shfw_box .pic{overflow:hidden;}
.shfw_box .pic img{width:100%;display:block;}
.shfw_box .txt{line-height:.32rem;font-size:.2rem;text-align:center;}

.shfw_box2{display: grid;grid-template-columns: repeat(4, 1fr);gap:.3rem;padding-bottom:.8rem;}
.shfw_box2 li{background:#f8f8f8;border-radius:8px;overflow:hidden;box-sizing:border-box;}
.shfw_box2 li .pic{overflow:hidden;}
.shfw_box2 li .pic img{width:100%;display:block;}
.shfw_box2 li .txt{padding:.25rem 0;font-size:.18rem;text-align:center;}

@media screen and (max-width:768px) {
.shfw_box{display: grid;grid-template-columns: repeat(1, 1fr);gap:0;}
.shfw_box li{padding:10px 0 20px;margin-bottom:20px;}
.shfw_box li:last-child{margin-bottom:0;}
.shfw_box .txt{line-height:28px;font-size:16px;}

.shfw_box2{display: grid;grid-template-columns: repeat(1, 1fr);gap:0;padding-bottom:10px;}
.shfw_box2 li{margin-bottom:20px;}
.shfw_box2 li .pic{height:160px;}
.shfw_box2 li .pic img{width:100%;height:100%;object-fit:cover;}
.shfw_box2 li .txt{padding:20px 0;font-size:16px;text-align:center;}
}
*/
/*证书样本
.list_zs_bg{ padding-bottom:.8rem; overflow:hidden;}
.ry_box1 {background: url(../images/ry_bg1.jpg) center;background-size: cover; padding:0 0 1rem;}
.zzry_list{ overflow:hidden;  box-sizing:border-box; padding:0 10px; margin-bottom:.5rem;}
.zzry_list li {background: #f8f8f8; padding:25px 10px; box-sizing:border-box; border-radius:10px; overflow:hidden;}
.zzry_list li .pic{ height:2.6rem;}
.zzry_list li .pic img{max-width:90%;max-height:100%;display: inline-block;opacity:1;}
.zzry_list li .txt{ background:rgba(0,0,0,0.4); position:absolute;border-radius:5px; transform: scale(0.3); top:0; left:0; width:100%; height:100%; color:#fff; text-align:center; opacity:0; transition: 0.6s all;}
.zzry_list li:hover .txt{ opacity:1; transform: scale(1);}
.zzry_list li p{ text-align:center; margin-top:.15rem;}
*/
/*按钮切换*/
/*#zzry_btn{position:relative;}	*/
/*#zzry_btn .swiper-button-prev { left:-35px; background: url(../images/focus_btn_prev.png) no-repeat; background-size: cover;}*/
/*#zzry_btn .swiper-button-next {right:-35px;background: url(../images/focus_btn_next.png) no-repeat; background-size: cover;}*/
/*#zzry_btn .swiper-button-prev,#zzry_btn .swiper-button-next { width:80px;height: 80px; margin-top:-40px; outline:none;  opacity:1; transition:0.3s all;}*/
/*#zzry_btn .swiper-button-prev:hover,#zzry_btn .swiper-button-next:hover{ opacity:1; transform:scale(1.1);}*/
/*分页器*/
/*#zzry_btn .swiper-pagination-bullet{width: 12px;height: 12px; display: inline-block; border-radius: 50%; background:#ddd; transition: all .5s ease;opacity: 1.0;}*/
/*#zzry_btn .swiper-pagination-bullet-active{background:#FF5F2A; opacity: 1.0;}*/
/*#zzry_btn .swiper-pagination{ text-align:center; width:100%; bottom:-40px;}*/
/*#zzry_btn .swiper-pagination span{margin:0 3px;}*/

/*@media screen and (max-width:768px) {*/
/*.zzry_list li .pic{ height:160px;}*/
/*.zzry_list li .pic img{max-width:85%;max-height:100%; }*/

/*#zzry_btn .swiper-button-prev,#zzry_btn .swiper-button-next { width:60px;height: 60px; margin-top:-30px;}*/
/*#zzry_btn .swiper-button-prev { left:-15px; }*/
/*#zzry_btn .swiper-button-next {right:-15px; }*/

/*}*/


/*荣誉资质
.rongyu_box li{margin-bottom:.5rem; background:#fff; border-radius:8px; overflow:hidden;}
.rongyu_box li:nth-child(even) .pic{order:2;}
.rongyu_box li:nth-child(even) .txt{order:1;}
.rongyu_box li .pic{width:50%;overflow:hidden;border-radius:8px;}
.rongyu_box li .pic video{width: 100%;}
.rongyu_box li .pic img{width:100%;display:block;}
.rongyu_box li .txt{width:50%;background:#fff;padding:.5rem .4rem;box-sizing:border-box;border-radius:8px;}
.rongyu_box li .txt h3{font-weight:normal;font-size:.26rem;color:#000;position:relative;padding-left:.15rem;margin-bottom:.25rem;}
.rongyu_box li .txt h3:before{position:absolute;content:'';width:4px;height:22px;background:var(--main_color);top:56%; transform:translateY(-50%);left:0;}
.rongyu_box li .txt p{color:#666;line-height:1.6;text-align:justify;margin:0 0 .1rem;}
.rongyu_box li:last-child{margin-bottom:0;}

.rongyu_bar{width: 100%; height:3.2rem;overflow-y: auto;padding-right:.15rem;}
.rongyu_bar::-webkit-scrollbar {width: 3px;height: 4px;}
.rongyu_bar::-webkit-scrollbar-thumb {border-radius: 5px;background:var(--main_color);}
.rongyu_bar::-webkit-scrollbar-track {border-radius: 0;background: #ededed;}

.rongyu_box2 li .txt{padding:.2rem 0;}

@media screen and (max-width:768px) {
.page_jlb_bg{padding-bottom:0;}
.rongyu_box li{margin-bottom:15px;border-radius:8px;overflow:hidden;}
.rongyu_box li:nth-child(even) .pic{order:1;}
.rongyu_box li:nth-child(even) .txt{order:2;}
.rongyu_box li .pic{width:100%;height:170px;border-radius:0;}
.rongyu_box li .pic img{width:100%;height:100%;object-fit:cover;}
.rongyu_box li .txt{width:100%;padding:20px;border-radius:0;}
.rongyu_box li .txt h3{font-size:18px;padding-left:10px;margin-bottom:20px;}
.rongyu_box li .txt h3:before{height:18px;top:49%; }
.rongyu_box li .txt p{margin:0 0 10px;}
.rongyu_bar{ height:260px;}
}*/


/*===================单页面-合作伙伴================*/
.page_hzhb_bg .desc{text-align:center;font-size:.16rem;color:#888;width:80%;line-height:2;margin:0 auto .5rem;}
.hzhb_list{display: grid;grid-template-columns: repeat(5, 1fr);gap:0;padding-bottom:.8rem;}
.hzhb_list li{overflow:hidden;height: 10vw;max-height: 270px;/*box-sizing:border-box;box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);border-radius:8px;*/}
.hzhb_list li:nth-of-type(odd){background: #f5f5f5;}
.hzhb_list li img{width:60%;display:block;}

@media screen and (max-width:768px) {
.page_hzhb_bg .desc{font-size:14px;width:100%;line-height:1.6;margin:0 auto 25px; text-align:justify;}
.hzhb_list{grid-template-columns: repeat(3, 1fr);}
.hzhb_list li{height:80px;max-height:none;}
.hzhb_list li img{width:85%;display:block;}	
}





/*========================产品中心封面======================*/
.pro_category{display: grid;grid-template-columns: repeat(3, 1fr);gap: .4rem; margin-bottom:.8rem;}
.pro_category li{ background:#f8fafc; border-radius:12px; overflow:hidden; transition:0.3s all;}
.pro_category li:hover{ transform:translateY(-8px); box-shadow: 0 8px 24px #0000001a;}
.pro_category li .pic{ position:relative; overflow:hidden;}
.pro_category li .pic:after {content: '';position: absolute;left: -100%;top: 0;width: 100%;height: 100%;transform: skewx(-25deg);
    background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
    background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5), rgba(255, 255, 255, 0));
}
.pro_category li:hover .pic:after {left:100%; -moz-transition:1s; -o-transition:1s; -webkit-transition:1s; transition:1s;}
.pro_category li .txt{ padding:.3rem;}
.pro_category li .txt h2{ font-size:.2rem; margin-bottom:15px;}
.pro_category li .txt .desc{ line-height:1.6; color:#666; font-size:16px; margin-bottom:.25rem; text-align:justify;}
@media screen and (max-width:768px) {
.page_case_bg{padding-bottom:30px;}
.pro_category{ grid-template-columns: repeat(1, 1fr);gap:15px;}
.pro_category li .txt{ padding:20px 20px;}
.pro_category li .txt h2{ font-size:18px; margin-bottom:10px;}
}

/*箭头*/
.pro_category li .arr{ width:50px; height:25px; background:var(--main_color); border-radius:25px; transition:0.3s all; display: flex;overflow: hidden;}
.pro_category li .arr i {width:50px;height:25px;display: flex;justify-content: center;align-items: center;transform: translateX(-100%);transition: all 0.5s;flex-shrink: 0;}
.pro_category li .arr svg{ width:40%; fill:#fff; transition:0.3s all;}
.pro_category li:hover .arr{ background:var(--main_color);}
.pro_category li:hover .arr svg{fill:#fff;}
.pro_category li:hover .arr i {transform: translateX(0);}


/*============导热界面材料封面===============*/

/*产品介绍*/
.in_zyyw_box{padding:0 0 .8rem; box-sizing:border-box; overflow:hidden; background: url(../images/ry_bg1.jpg) no-repeat; background-size:cover;}
.in_zyyw_box .tabs1{border-bottom:0px solid #e8e8e8;margin-bottom:.4rem;}
.in_zyyw_box .tabs1 a{padding:.1rem .8rem 0rem;position:relative; color:#333;}
.in_zyyw_box .tabs1 a:after{position: absolute;content: "";width: 1px;height: .5rem;background:rgba(204,204,204,.4);right: 0px;top: 50%; transform:translateY(-50%);}
.in_zyyw_box .tabs1 a:before{position: absolute;content: "";width: 0;height:2px;background:var(--main_color);left:50%;bottom: -1px; transform:translateX(-50%);}
.in_zyyw_box .tabs1 a:last-child::after{display:none;}
.in_zyyw_box .tabs1 .ico img{/*filter: grayscale(100%) brightness(50%);*/ transition:all .5s; display:block; height:.32rem;}
.in_zyyw_box .tabs1 .txt{font-size:.18rem;margin-top:.15rem;  transition:all .5s;}
.in_zyyw_box .tabs1 a.active .ico img{/*filter: grayscale(0) brightness(100%);*/}
.in_zyyw_box .tabs1 a.active .txt{color:var(--main_color);}
/*.in_zyyw_box .tabs1 a.active:before{width:60%;}*/

.in_zyyw_box .swiper-container{  overflow:hidden; box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);}
.in_zyyw_box li{overflow:hidden; background:#fff; border-radius:.1rem; }
.in_zyyw_box li .pic{width:50%; min-height:4.5rem;overflow:hidden;border-radius:.1rem;}
.in_zyyw_box li .txt{flex:1; padding:0 .8rem;box-sizing:border-box;}
.in_zyyw_box li .txt h3{font-weight:normal;font-size:.33rem;color:#000;margin-bottom:.3rem;}
.in_zyyw_box li .txt .desc{color:#666;line-height:2; font-size:.16rem; text-align:justify;margin-bottom:.5rem;}


@media only screen and (max-width: 768px){
.in_zyyw_box{padding:0 0 40px;}
.in_zyyw_box .tabs1{ overflow-x: auto; justify-content: flex-start; margin:12px 0 12px;}
.in_zyyw_box .tabs1 a{padding:0; margin-right:25px; white-space: nowrap;}
.in_zyyw_box .tabs1 a:after{display:none;}
.in_zyyw_box .tabs1 .ico img{height:30px;}
.in_zyyw_box .tabs1 .txt{font-size:14px;margin-top:15px;}

.in_zyyw_box li{border-radius:8px;}
.in_zyyw_box li .pic{width:100%; height:180px; min-height:auto; border-radius:0;}
.in_zyyw_box li .txt{width:100%;padding:25px 25px 25px;}
.in_zyyw_box li .txt h3{font-size:18px;}
.in_zyyw_box li .txt .desc{margin-bottom:20px; line-height:1.8; font-size:14px;}
}

/*应用场景*/
.drcl_yyly_bg{padding-bottom:.8rem;}
.in_yyly{display: grid;gap: 0.3rem;grid-template-columns: repeat(5, 1fr);}
.in_yyly li { position:relative; border-radius:.1rem; overflow:hidden;}
.in_yyly li .pic{height:2rem; overflow:hidden;}
.in_yyly li .pic img{ transition:0.3s all;}
.in_yyly li:hover .pic img{ transform:scale(1.1);}
.in_yyly li .txt{ background: rgba(0, 0, 0, 0.3); font-size:16px; text-align:center; line-height:.42rem; position:absolute; left:0; bottom:0; width:100%; color:#fff;}
@media only screen and (max-width: 768px){
.in_yyly{ gap: 15px;grid-template-columns: repeat(2, 1fr);}
.in_yyly li .pic{min-height:115px;}
.in_yyly li .txt{font-size:16px;line-height:36px;}

}





/*========================产品中心通用样式======================*/
.pro_hlj_bg{padding:0 0 .1rem; box-sizing:border-box; overflow:hidden; background: #f8f8f8;}
.pro_intro_bg{padding-bottom:.68rem;}
.pro_intro_scroll{position:relative; max-width:1000px; margin:auto;}
#pro_intro_box{border-radius:12px;}
.pro_intro_scroll li{ position:relative;}
.pro_intro_scroll li img{transition:0.5s all;}
.pro_intro_scroll li .txt{ background:rgba(0,0,0,0.35); position:absolute; left:0; bottom:0; padding:.2rem; text-align:center; color:#fff; width:100%; box-sizing:border-box; font-size:.2rem;}


/*按钮切换*/
.pro_intro_scroll .swiper-button-prev,.pro_intro_scroll .swiper-button-next {color:#888; width:.6rem;height: .6rem;background:#f8f8f8;border-radius:50%;  outline:none;  opacity:1; transition:0.3s all;border:1px solid rgba(204,204,204,.3); transition:all .5s; margin-bottom:.2rem;}
.pro_intro_scroll .swiper-button-prev i,.pro_intro_scroll .swiper-button-next i{font-size:.22rem;}
.pro_intro_scroll .swiper-button-prev:hover,.pro_intro_scroll .swiper-button-next:hover{background:var(--main_color);color:#fff;}

/*分页器*/
.swiper_dot {position:relative; padding-bottom:35px;}
.swiper_dot .swiper-pagination{bottom:0;left:50%; transform:translateX(-50%);}
.swiper_dot .swiper-pagination-bullet {width:12px;height:12px;border-radius:100%;background:#ddd;opacity: 1;margin: 0 3px !important; box-sizing:border-box;}
.swiper_dot .swiper-pagination-bullet-active{background:var(--main_color);}


@media screen and (max-width:768px) {
.pro_intro_bg{padding-bottom:25px;}
.pro_intro_scroll li .txt{font-size:16px;}

/*按钮切换*/
.pro_intro_scroll .swiper-button-prev,.pro_intro_scroll .swiper-button-next {width:35px;height:35px;}
.pro_intro_scroll .swiper-button-prev i,.pro_intro_scroll .swiper-button-next i{font-size:18px;}
}

/*--核心产品--*/
.pro_list_bg{background:url(../images/dev_bg.jpg) no-repeat center;padding:0 0 .5rem;background-size:cover;}
.pro_list_box{display: grid;grid-template-columns: repeat(4, 1fr);gap: .25rem;grid-row-gap: .25rem; cursor:pointer;}
.pro_list_box li{background:#fff;border-radius:8px;overflow:hidden;padding:.2rem .2rem;position:relative;}
.pro_list_box li:before{content:'';position:absolute;top:0;left:0;width:0;height:100%;background:var(--main_color); transition:all .5s;}
.pro_list_box li .pic{overflow:hidden;position:relative; z-index:2;}
.pro_list_box li .pic img{width:100%;display:block;transition:all .5s;}
.pro_list_box li .txt{position:relative; z-index:2;}
.pro_list_box li .txt h3{font-size:.18rem;margin:.2rem 0 .12rem;transition:all .5s;}
.pro_list_box li .txt p{color:#888;transition:all .5s;}
.pro_list_box li:hover:before{width:100%;right:0;}
.pro_list_box li:hover .pic img{ transform:scale(1.1,1.1);}
.pro_list_box li:hover h3,.pro_list_box li:hover p{color:#fff;}

@media screen and (max-width:768px) {
.pro_list_box{grid-template-columns: repeat(1, 1fr);grid-row-gap:20px;}
.pro_list_box li{padding:15px 15px;}
.pro_list_box li .txt{padding:10px 0;}
.pro_list_box li .txt h3{font-size:18px;margin:10px 0 10px;}
.pro_list_box li .txt p{}
}




/*--应用场景--*/
.pro_yycj_bg{padding:0 0 .8rem;}
.pro_yycj_box{position:relative;overflow:hidden;padding:0 0 .8rem;}
.pro_yycj_box li {border-radius:8px;overflow:hidden;position:relative;}
.pro_yycj_box li .pic{overflow:hidden;}
.pro_yycj_box li .pic img{width:100%; display:block; transition: all .5s ease-in-out;}
.pro_yycj_box li .txt{position:absolute;width:100%;height:100%;top: 25%;left: 50%;transform: translate(-50%,-50%);text-align:center;padding:0 .25rem;box-sizing:border-box;background:linear-gradient(45deg, transparent 0, rgba(0, 0, 0, .35));transition: all .5s ease-in-out;}
.pro_yycj_box li .txt .ico img{width:.6rem;display:none;}
.pro_yycj_box li .txt h3{font-weight:normal;font-size:.26rem;color:#fff;margin:0 0 .15rem;}
.pro_yycj_box li .txt p{color:rgba(255,255,255,.95);font-size:.16rem;line-height:1.6;}

.pro_yycj_box li:hover .pic img{ transform:scale(1.1,1.1);}
.pro_yycj_box li:hover .txt{top:50%;background:rgba(0,153,68,.9);}

/*按钮切换*/
.pro_yycj_box .swiper-button-prev,.pro_yycj_box .swiper-button-next {color:#888; width:45px;height: 45px;background:#f8f8f8;border-radius:50%; top:auto;bottom:0; outline:none;  opacity:1; transition:0.3s all;border:1px solid rgba(204,204,204,.3)}
.pro_yycj_box .swiper-button-prev i,.pro_yycj_box .swiper-button-next i{font-size:18px;}
.pro_yycj_box .swiper-button-prev{left:0;right: auto;}
.pro_yycj_box .swiper-button-next{left:55px;right: auto;}
.pro_yycj_box .swiper-button-prev:hover,.pro_yycj_box .swiper-button-next:hover{background:var(--main_color);color:#fff;}

/*分页器*/
.swiper-pagination-progressbar{width:90%!important;right:0!important;left:auto!important;top:auto!important;background:rgba(204,204,204,.35)!important;height:3px!important;}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--main_color)!important}
.pro_yycj_box .swiper-pagination { text-align:center; width:100%; bottom:20px;right:0;}

@media screen and (max-width:768px) {
.pro_yycj_bg{padding:0 0 .8rem;}
.pro_yycj_box{position:relative;overflow:hidden;padding:0 0 50px;}
.pro_yycj_box li .txt{top: 30%;}
.pro_yycj_box li .txt h3{font-size:20px;margin:0 0 15px;}
.pro_yycj_box li .txt p{font-size:14px;line-height:1.4;}

.pro_yycj_box .swiper-button-prev,.pro_yycj_box .swiper-button-next{width:35px;height: 35px;}
.pro_yycj_box .swiper-button-next{left:42px;}

.swiper-pagination-progressbar{width:73%!important;}
.pro_yycj_box .swiper-pagination { bottom:15px;}
}


/*--商业合作-
.pro_hzhb_bg{background:url(../images/pro_hzhb_bg.jpg) no-repeat center ;padding:0 0 .8rem;background-size:cover; background-attachment:fixed;}
.pro_brand_list{display: grid;grid-template-columns: repeat(6, 1fr);gap: .2rem;}
.pro_brand_list li{height:1rem;position: relative;box-sizing: border-box;border: 0px solid #e8e8e8; background:#fff; border-radius:.1rem; overflow:hidden; box-shadow: 0 1px 10px rgb(0 0 0 / 4%); transition:0.3s all;}
.pro_brand_list li:hover{ transform:translateY(-5px); box-shadow: 0 1px 15px rgb(0 0 0 / 10%);}
.pro_brand_list li img{max-width:75%;max-height:75%;display:block;/* filter: grayscale(1); *transition:0.3s all;}
.pro_brand_list li:hover img{ filter: grayscale(0);}

@media screen and (max-width:768px) {
.pro_hzhb_bg{ background-attachment:scroll;}
.pro_brand_list{display: grid;grid-template-columns: repeat(3, 1fr);gap: 10px;}
.pro_brand_list li{height:56px; box-sizing:border-box;border-radius:8px;}
.pro_brand_list li img{max-width:90%;max-height:90%;}
}-*/





/*========================塑胶模具封面======================*/
.tabs1_btn{margin-bottom:.4rem;}
.tabs1_btn a{ line-height:.52rem; border-radius:.52rem; padding:0 .5rem; background:#fff; font-size:.2rem; margin:0 .15rem; display:inline-block;}
.tabs1_btn a.active{ background:var(--main_color); color:#fff;}


.muju_box li{ border-radius:12px; overflow:hidden; background:#fff;}
.muju_box li .pic{overflow:hidden; position:relative;}
.muju_box li .pic img{transition:0.3s all;}
.muju_box li:hover .pic img{ transform:scale(1.1);}
.muju_box li .txt{ padding:.15rem; font-size:16px; text-align:center;}

.muju_box li .mask{background:rgba(0,0,0,0.25); position:absolute; top:0; left:0; width:100%; height:100%; opacity:0; transition: 0.3s all; z-index:1;}
.muju_box li .mask i {display: block;width:30px;height: 30px;border: solid 2px #fff;border-radius: 100%; opacity:0; transition: 0.3s all;}
.muju_box li .mask i::after {content: '';width: 12px;height: 2px;background: #fff;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.muju_box li .mask i::before {content: '';width: 2px;height: 12px;background: #fff;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.muju_box li:hover .mask,.muju_box li:hover .mask i{ opacity:1;}

@media screen and (max-width:768px) {
.tabs1_btn{margin-bottom:20px;}
.tabs1_btn a{ line-height:38px; border-radius:32px; padding:0 15px; font-size:16px; margin:0 5px;}


.muju_box li{ border-radius:8px;}
.muju_box li .txt{ padding:12px 5px; font-size:15px;}

}



/*================产品分类循环=====================*/
.category_pro .item{ margin-bottom:.2rem;}
.category_pro .item .title{border-bottom:1px solid #e8e8e8; margin-bottom:.25rem;height:45px;}
.category_pro .item .title h3{background:var(--main_color); height:46px; line-height:46px;padding:0 .3rem;color:#fff;font-size:.2rem;font-weight:normal;border-radius:6px 6px 0 0;}
.category_pro .item .title h3 i{margin-right:.1rem;font-size:.2rem;}
.category_pro .item .title a{display:inline-block;line-height:.4rem; font-size:16px;}

@media screen and (max-width:768px) {
.category_pro .item .title{margin-bottom:15px;height:35px;}
.category_pro .item .title h3{height:36px; line-height:36px;padding:0 15px;font-size:15px;}
.category_pro .item .title h3 i{margin-right:5px;font-size:14px;}
.category_pro .item .title a{line-height:36px; font-size:13px;}
}


/*==========================产品列表===========================*/
.product_list{padding-bottom:.5rem; display: grid;grid-template-columns: repeat(5, 1fr);gap: .3rem;}
.product_list li{ transition: 0.5s all; border:solid 1px #e8e8e8; background:#fff; border-radius:10px; position:relative; overflow:hidden;}
.product_list li .pic{width:100%; position:relative;  overflow:hidden;}
.product_list li .pic>img{width:100%; display:block;transition: 0.5s all;}
.product_list li:hover .pic>img{ -webkit-transform:scale(1.1); moz-transform:scale(1.1); -o-transform:scale(1.1); transform:scale(1.1);}
.product_list li .pic .mask{ position:absolute; left:0; top:0; bottom:0; right:0; background:rgba(0,0,0,0.25); opacity:0; transition: all 0.5s ease;}
.product_list li .pic .mask dt{position: absolute;left: 50%;top: 50%;transform: translateX(-50%) translateY(-50%);z-index: 5;}
.product_list li .pic .mask dd{position: absolute;left: 50%;top: 50%;transform: translateX(-50%) translateY(-50%);z-index: 5;}
.product_list li:hover .pic .mask{ opacity:1;}
.product_list li:hover .pic .mask dd img{-webkit-transform:rotate(360deg);animation:rotation 10s linear infinite;-moz-animation:rotation 10s linear infinite;-webkit-animation:rotation 10s linear infinite;-o-animation:rotation 10s linear infinite;}
@-webkit-keyframes rotation{
	from{-webkit-transform:rotate(0deg);}
	to{-webkit-transform:rotate(360deg);}
}

.product_list li .txt{ padding: 6px 5% 6px; background:#eee;}
.product_list li .txt h2{ font-size:16px; line-height:32px; font-weight:normal;  text-align:center;}
.product_list li:hover{background:var(--main_color);}

@media screen and (max-width:768px) {
.product_list{grid-template-columns: repeat(2, 1fr);gap:15px;}
.product_list li .txt{}
.product_list li .txt h2{ line-height:1.5;}
.product_list li:hover .pic .mask dd{ display:none;}
}




/*===================产品内容页================*/
.pro_show1{ margin-top:.6rem;}
.pro_show1 .left{ width:43%;  overflow: hidden; border:solid 1px #e2e8f0; border-radius:.2rem;}
.pro_show1 .left img{ max-width:100%; }

.pro_show1 .right{ width:53%;}

.pro_show1 .right h1{ font-size:.33rem; color:#000; line-height:1.3; margin-bottom:.2rem;}
.pro_show1 .right .pro_subtitle{margin:.25rem 0 .15rem 0;padding-left: 15px;border-left: 4px solid var(--main_color); color:#000; font-weight:bold; font-size:17px;}
.pro_show1 .right .desc{line-height:1.8; font-size:.16rem; text-align:justify; background:#f8f8f8; padding:.2rem .25rem; border-radius:5px;}
.pro_show1 .right .info{line-height:1.8; font-size:.16rem; text-align:justify;}
.pro_show1 .right .btn{margin-top:20px;}
.pro_show1 .right .btn a{ line-height:50px; padding:0 .5rem; border-radius:50px; display:inline-block; background:var(--main_color);font-size: 15px; font-weight: 600;color: #FFFFFF; margin-right:15px; box-shadow: 0 4px 12px rgba(0, 149, 218, 0.2);}
.pro_show1 .right .btn i{ font-size:18px; margin-right:5px;}
.pro_show1 .right .btn a.a2{ /*background:#059b80;*/ background:var(--second_color); box-shadow: 0 4px 12px rgba(245, 130, 33, 0.2);}


.pro_show2{margin-top:.5rem; margin-bottom:.1rem; }
.pro_show2 .tit{ font-size:25px; padding-bottom:15px; margin-bottom:.25rem; border-bottom: 1px solid #e8e8e8; color:#000; font-weight:bold;}
.pro_show2 .tit i{width:.56rem; height:.56rem;background:var(--main_color); border-radius:100%; margin-right:10px;}
.pro_show2 .tit i svg{fill:#fff; height:35px;}

.page_table{overflow-x: auto!important;}
.page_table table{ border:1px solid #eff3f8; border-collapse:collapse;   font-size:14px; line-height:24px; margin-bottom:15px;}
.page_table table p{margin-bottom:0;}
.page_table table tr:nth-child(1){ font-size:15px; background:#eff3f8; font-weight:bold; white-space: nowrap;}
.page_table table tr.trbg{ font-size:15px; background:#eff3f8; font-weight:bold; white-space: nowrap;}
.page_table table td{padding:5px 10px; border:1px solid #D5DFEC;text-align:center;}

.pro_yycj{display: grid;gap:.3rem;grid-template-columns: repeat(4, 1fr);}
.pro_yycj .pic{ border-radius:.1rem; overflow:hidden;}
.pro_yycj .txt{ text-align:center; font-size:16px; margin-top:15px;}

@media screen and (max-width:768px) {
.pro_show1{ margin-top:0;}
.pro_show1 .left{ width:100%;}
.pro_show1 .right{ width:100%;}
.pro_show1 .right h1{ font-size:15px;  margin-bottom:15px; margin-top:20px; display:none;}
.pro_show1 .right .pro_subtitle{padding-left: 12px;font-size:16px;}
.pro_show1 .right .desc{padding:20px 0 0; font-size:15px; background:#fff; color:#333;}
.pro_show1 .right .info{font-size:14px;}
.pro_show1 .right .btn{margin-top:10px; justify-content:space-between;}
.pro_show1 .right .btn a{ line-height:42px; padding:0; width:48%; text-align:center; font-size: 14px; margin-right:0;}
.pro_show1 .right .btn i{ font-size:16px;}

.pro_show2{margin-top:25px; margin-bottom:30px; }
.pro_show2 .tit{ font-size:18px; padding-bottom:10px; margin-bottom:15px;}
.pro_show2 .tit i{width:38px; height:38px;}
.pro_show2 .tit i svg{ height:25px;}

.pro_yycj{gap:15px;grid-template-columns: repeat(2, 1fr);}
}



/*===================服务支持================*/

/*服务承诺*/
.fwcn_bg{padding-bottom:.8rem;}
.fwcn_box{display: grid;grid-template-columns: repeat(3, 1fr);gap: .4rem;}
.fwcn_box li{overflow:hidden;border-radius:8px;position:relative;}
.fwcn_box li .pic{overflow:hidden;}
.fwcn_box li .pic img{width:100%;display:block; transition:all .5s;}
.fwcn_box li .txt{position:absolute;bottom:0;left:0;width:100%;background-image: -webkit-linear-gradient(270deg, transparent 0, rgba(0, 0, 0, .5) 100%);height:2.2rem;transition:all .5s;}
.fwcn_box li .txt h3{font-size:.24rem;color:#fff;margin:.25rem 0 .15rem;}
.fwcn_box li .txt p{color:#fff;font-size:.18rem;}
.fwcn_box li:hover .pic img{ transform:scale(1.1,1.1);}
.fwcn_box li:hover .txt{background-image: -webkit-linear-gradient(270deg, transparent 0, rgba(0, 153, 68, .6) 100%);}

@media screen and (max-width:768px) {
.fwcn_bg{padding-bottom:.8rem;}
.fwcn_box{grid-template-columns: repeat(1, 1fr);gap: 20px;}
.fwcn_box li{height:200px;}
.fwcn_box li .pic img{width:100%;height:100%;object-fit:cover;}
.fwcn_box li .txt h3{font-size:20px;margin:0 0 10px;}
.fwcn_box li .txt p{font-size:15px;}	
}

/*服务团队*/
.fwtd_bg{background:url(../images/n_fuwu03_bg.jpg) no-repeat center ;padding:.3rem 0 1rem;background-size:cover; background-attachment:fixed;}
.fwtd_box{display: grid;grid-template-columns: repeat(4, 1fr);gap: .3rem;}
.fwtd_box li{width:3rem;height:3rem;background: #ffffff1a;border: 1px solid rgba(255, 255, 255, .3);backdrop-filter: blur(4px);-webkit-backdrop-filter: blur(4px);border-radius: 50%;margin:0 auto;position:relative; transition:all .5s;}
.fwtd_box li .ico img{width:.6rem;}
.fwtd_box li .txt h3{ font-family:'din';font-size:.5rem;color:#fff;margin:.2rem 0 .15rem;}
.fwtd_box li .txt h3 strong{font-size:.18rem;margin-left:5px;}
.fwtd_box li .txt p{color:#fff;font-size:.18rem;}
.fwtd_box li:hover{background:var(--main_color);border: 1px solid var(--main_color);}

@media screen and (max-width:768px) {
.fwtd_bg{padding:0 0 .6rem;background-attachment:scroll;}
.fwtd_box{grid-template-columns: repeat(2, 1fr);gap: 0;}
.fwtd_box li{margin-bottom:20px;border-radius:4px;padding:10px 0;}
.fwtd_box li .ico img{width:40px;}
.fwtd_box li .txt h3{ font-size:30px;margin:15px 0 15px;}
.fwtd_box li .txt h3 strong{font-size:14px;margin-left:5px;}
.fwtd_box li .txt p{font-size:14px;}	
}

/*售后发货流程*/
.shfw_bg{padding-bottom:.8rem;}
.shfw_box{display: grid;grid-template-columns: repeat(4, 1fr);gap: .4rem;}
.shfw_box li{padding:.5rem .3rem;border: 1px solid rgba(0, 153, 68, .1);background-image: -webkit-linear-gradient(-30deg, rgba(0, 153, 68, .015) 0, rgba(0, 153, 68, .08) 100%); transition:all .5s;}
.shfw_box li span{font-family:'din';font-size:.56rem;color:var(--main_color);}
.shfw_box li .line{width:40px;height:2px;background:var(--main_color);margin:.4rem auto;}
.shfw_box li h3{font-size:.24rem;color:#000;margin-bottom:.25rem;}
.shfw_box li p{text-align:center;line-height:1.6;text-align:center;font-size:.16rem;}
.shfw_box li:hover{ transform:translateY(-10px);border: 1px solid rgba(0, 153, 68, .3);}

@media screen and (max-width:768px) {
.shfw_bg{padding-bottom:.8rem;}
.shfw_box{grid-template-columns: repeat(1, 1fr);gap: 0;}
.shfw_box li{padding:30px 20px;}
.shfw_box li span{font-size:36px;}
.shfw_box li .line{width:30px;height:2px;margin:20px auto;}
.shfw_box li h3{font-size:20px;margin-bottom:15px;}
.shfw_box li p{font-size:15px;}
}



/*=============内页-企业文化============*/
.qywh_bg{background: url(../images/qywh_bg.jpg) no-repeat center fixed;height:6.6rem; background-size:cover; position:relative;}

.qywh_bg .left {position: absolute;left: 0;top: 0;right: 0;bottom: 0;z-index: 1;}
.qywh_bg .box {width: 50%;box-sizing: border-box;margin-top:.8rem;}
.qywh_bg .box .title h2{font-size:.4rem;color:#fff;line-height:1.6;}
.qywh_bg .box .txt{position:absolute;bottom:1.1rem;left:auto;}
.qywh_bg .box .txt .ico img{height:.5rem;}
.qywh_bg .box .txt h3{font-weight:normal;font-size:.25rem;color:#fff;margin:.35rem 0 .2rem;}
.qywh_bg .box .txt p{font-size:.18rem;color:#fff;}

.qywh_bg .right{width:50%;border-left:1px solid rgba(255,255,255,.35);box-sizing:border-box;}
.qywh_bg .right li{width:50%;padding:0 .5rem;box-sizing:border-box;}
.qywh_bg .right li:nth-child(1){border-right:1px solid rgba(255,255,255,.35);border-bottom:1px solid rgba(255,255,255,.35);}
.qywh_bg .right li:nth-child(2){border-bottom:1px solid rgba(255,255,255,.35);}
.qywh_bg .right li:nth-child(3){border-right:1px solid rgba(255,255,255,.35);}
.qywh_bg .right li .ico img{height:.5rem;}
.qywh_bg .right li h3{font-weight:normal;font-size:.25rem;color:#fff;margin:.35rem 0 .2rem;}
.qywh_bg .right li p{font-size:.18rem;color:#fff;}

@media screen and (max-width:768px) {
.qywh_bg{background: url(../images/qywh_bg.jpg) no-repeat center;height:auto;  position:relative;}

.qywh_bg .left {position:static;width:100%;border-bottom:1px solid rgba(255,255,255,.35);}
.qywh_bg .box {width: 100%;margin-top:30px; order:1;}
.qywh_bg .box .txt{position:static;bottom:auto;left:auto;margin:20px 0;}
.qywh_bg .box .txt .ico img{height:30px;}
.qywh_bg .box .txt h3{font-size:16px;margin:20px 0 10px;}
.qywh_bg .box .txt p{font-size:13px;}

.qywh_bg .right{width:100%;order:2;}
.qywh_bg .right li{padding:20px 20px;}
.qywh_bg .right li .ico img{height:30px;}
.qywh_bg .right li h3{font-size:16px;margin:20px 0 10px;}
.qywh_bg .right li p{font-size:13px;}


}





/*===================内容页================*/
.show_top_blank{ height:1.5rem;}

.page_main{width:calc(100% - 3.5rem); background:#fff; box-sizing:border-box; padding:.5rem .68rem; }
.page_side{width:3rem; }
.page_side .sticky{position: sticky;top: 10px;}


.page_side_box{ padding:25px 30px; background:#fff;}
.page_side_tit {font-size:.25rem; color: #000; margin-top:.1rem;  margin-bottom:.2rem;}

.show_weizhi{ font-size:12px; color:#666; margin-bottom:.05rem;}

/*内容页*/
.title_txt {font-size:.3rem;line-height:1.5;  color:#000; text-align:center;}
.page_main1 .title_txt { margin-bottom:.2rem;}
.show_pro_tit {font-size:.36rem;line-height:1.6;  color:#000; border-bottom:solid 2px #e8e8e8; padding-bottom:.25rem; margin-bottom:.25rem;}

.art_info{margin-bottom:25px; color:#888; border-bottom: solid 1px #e8e8e8; position:relative; text-align:center; }
.art_info em{position:relative;font-size:14px; display:inline-block; line-height:60px; font-style:normal; margin-right:25px;}
.art_info em img{ margin:-3px 5px 0 0; vertical-align:middle;}
.art_info em a{color:#888;}


/*share*/
.share-main{ width: 102px; height: 24px; position:absolute; right:0; top:15px; z-index:10;}
.share-main b{ position:absolute; left:-80px; top:10px; font-weight:normal;}
.share-bar a{margin-left: 10px; margin-top:5px; float: left; display: block; width: 24px; height: 24px; background-image:url(../images/icon-share.png); }
.share-bar .share-tsina{background-position: 0 0;}
.share-bar .share-weixin{background-position: -24px 0;}
.share-bar .share-qzone{background-position: -48px 0;}
.weixin-share-open{position: absolute; bottom: 34px; left:0; display: none; background: #fff;}
.weixin-wrap{ padding: 10px; width: 200px; height: 80px; border: 1px solid #ddd;}
.share-qrcode{float: left;}
.share-qrcode img{display: block; width: 80px; height: 80px;}
.weixin-close{position: absolute; top: 5px; right: 5px; display: block; width: 20px; height: 20px; line-height: 20px; text-align: center; font-size: 16px; color: #d4d4d4; cursor: pointer;}
.weixin-text{padding: 10px 0 0 90px; line-height: 24px; font-size: 12px; color: #666;}


/*正文*/
#art_box { text-align:justify;  line-height:2; font-size:16px; overflow:hidden; width:100%;}
#art_box p {margin-bottom:15px; }
#art_box img{ max-width:100%; border-radius:3px;}
#art_box table{ border:1px solid #eff3f8; border-collapse:collapse;   font-size:14px; line-height:24px; margin-bottom:15px;}
#art_box table p{margin-bottom:0;}
#art_box table tr:nth-child(1){ font-size:14px; background:#eff3f8; font-weight:bold;}
#art_box table td{padding:5px 10px; border:1px solid #D5DFEC;text-align:center;}
#art_box a{color:var(--main_color);}

#art_box video{ max-width:100%;}

.pro_content{}
.pro_content h3{ font-size:18px; color:var(--main_color); position:relative; padding-left:18px;}
.pro_content h3:before{ content:''; display:block; position:absolute; left:0; top:50%; transform: translateY(-50%); width:7px; height:7px; border-radius:100%; border:solid 2px var(--main_color);}   
.pro_content h4{ font-size:15px;}


@media screen and (max-width:768px) {
.page_side{width:100%;}
.page_main{width:100%;  padding:20px 0; margin-top:0;}
.share-main{ display:none;}
.title_txt {font-size:20px;line-height:1.5; text-align:center;}
.art_info{margin-bottom:15px; text-align:center;}
.art_info em{font-size:13px; line-height:40px; margin-right:10px;}
#art_box { line-height:1.8;}

}

/*声明*/
.shenming{padding:15px;background:#f4f5f7;border-radius:4px;color:#888;line-height:1.6;font-size:13px;margin:30px 0;text-align:justify;}
.shenming a{ color:red;}

@media screen and (max-width:768px) {
.shenming{padding:10px 10px;line-height:1.6;font-size:13px;margin:0 0 20px; }
}

/*相关阅读*/
.xg_tit {  margin-top:.5rem;}
.xg_tit h5{font-size:20px; margin:.3rem 0 .25rem 0; position:relative; padding-left:15px;}
.xg_tit h5:after {width:5px;height:18px; border-radius:5px;
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    background:var(--main_color);
}

.xg_art{}
.xg_art li{position:relative; padding-left:15px; font-size:16px; width:48%; box-sizing:border-box; line-height:2.4;}
.xg_art li:before{ content: ""; display: block; width:7px; height:7px; border-radius:5px; border:solid 1px var(--main_color); position: absolute; top: 50%; left: 0;transform: translate(0, -50%);}
.xg_art li span{float:right; margin-top:5px; color:#999;font-size:13px;}

@media screen and (max-width:768px) {
.xg_art li{ width:100%; line-height:2.2;}
.xg_tit { margin-top:25px;}
.xg_tit h5{font-size:20px; margin:25px 0 15px 0; position:relative; padding-left:12px;}
.xg_tit h5:after {width:5px; border-radius:5px;top: 0px;}

}


/*===================侧面新闻列表================*/
.side_news_list{ padding-bottom:20px;}
.side_news_list li{ margin-bottom:.25rem;}
.side_news_list .pic{ border-radius:10px; overflow:hidden;}
.side_news_list .pic img{ width:100%; display:block; transition:0.4s all;}
.side_news_list .type{ font-size:12px; color:#666; margin:20px 0 10px;}
.side_news_list .tit{ font-size:16px; line-height:1.6; text-align:justify; margin-top:.15rem;}
.side_news_list li:hover .pic img{ transform:scale(1.1);}


@media screen and (max-width:768px) {
.page_side_tit {font-size:20px;margin:10px 0 20px; text-align:center; font-weight:bold;}
.side_news_list li{ margin-bottom:15px;border-radius:4px;}
.side_news_list .type{margin:0 0 10px;}
.side_news_list .tit{ font-size:16px;}
}

/*===================侧面图片列表================*/
.side_pic_list {padding-top:.6rem; display: grid;gap:.25rem;grid-template-columns: repeat(1, 1fr);}
.side_pic_list li{position:relative;border-radius:10px; overflow:hidden;}
.side_pic_list .pic{ }
.side_pic_list .pic img{ width:100%; display:block; transition:0.4s all;}
.side_pic_list .type{ font-size:12px; color:#666; margin:20px 0 10px;}
.side_pic_list .tit{ font-size:16px; text-align:center; position:absolute; left:0; bottom:0; width:100%; padding:.15rem 0; background:rgba(0,0,0,0.3); color:#fff;}
.side_pic_list li:hover .pic img{ transform:scale(1.1);}
@media screen and (max-width:768px) {
.side_pic_list {padding-top:20px; display: grid;gap:15px;grid-template-columns: repeat(2, 1fr);}

}



/*上一篇下一篇*/
.ctrl{margin-top: 40px;}
.ctrl a{position: relative; height: 60px;width:33%; background-color: #e7e7e7; box-sizing: border-box;z-index: 99;transition: 0.3s;}
.ctrl a:before{content: "";position: absolute;bottom: 0;left: 0;width: 100%;height: 1px;background-color:var(--main_color);opacity: 0;transition: 0.3s;z-index: -1;}
a#back:after,a#prev:after,a#next:after{content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-image: url(../images/btn-back.png);background-repeat: no-repeat;background-position: center;transition: 0.3s;}
a#back:after{background-image: url(../images/btn-back.png);}
a#prev:after{background-image: url(../images/btn-prev.png);}
a#next:after{background-image: url(../images/btn-next.png);}

.ctrl a:hover:before{height: 100%;opacity: 1;}
a#back:hover:after{background-image: url(../images/btn-back2.png);}
a#prev:hover:after{background-image: url(../images/btn-prev2.png);}
a#next:hover:after{background-image: url(../images/btn-next2.png);}

.show_pre_next{ margin-top:.5rem; position:relative;}
.show_pre_next li{ width:100%;border-top: 1px solid #e8e8e8;padding:.3rem 0;}
.show_pre_next li:last-child{border-bottom: 1px solid #e8e8e8;}
.show_pre_next li h3{width:66px; color:#000;font-weight:normal;font-size:16px;}
.show_pre_next li p{flex:1;}
.show_pre_next li p a{color:#000;font-size:16px; transition:all .5s;}
.show_pre_next li span{ color:#999;}
.show_pre_next li:hover a{color:var(--main_color);}

@media screen and (max-width:768px) {
.show_pre_next{ margin-top:20px;}
.show_pre_next li{padding:12px 0;}
.show_pre_next li h3{ line-height:1.4;}
.show_pre_next li p{width:90%;line-height:1.4;}
.show_pre_next li p a{ transition:all .5s;}
.show_pre_next li span{display:none;}
.show_pre_next li:hover a{color:var(--main_color);}
}

/*======================表单页面======================*/
.message {padding-top:.25rem;}
.message input::-webkit-input-placeholder,
.message li{ width: 48%;} 
.message input{border:1px solid #e8e8e8;background: none;outline: none;width: 100%; height:.5rem; font-size:16px; padding:0 10px; box-sizing:border-box; border-radius:3px;} 
.message textarea{clear: both;display: block;border:1px solid #e8e8e8;background: none; outline: none;width: 100%;padding: 14px 15px;box-sizing: border-box;min-height: 1.6rem;font-size:16px;font-family: "微软雅黑"; border-radius:3px;} 
.message .submit{ border:none;outline: none; font-size:16px; margin-top:15px; cursor:pointer; text-align:center; color:#fff; background:var(--main_color); font-family:"微软雅黑"; transition:0.3s all; width:3rem; line-height:52px;border-radius:3px;}

.message li select {width: 100%;height: 45px;background: #fff;border:1px solid #e8e8e8;font-size: 16px;color:#888;font-family: "微软雅黑";outline: none;padding:0 15px; border-radius:3px;}
.message p{font-size:.16rem;margin-bottom:10px;}
.message p span{color:rgba(255,0,0,1);}
@media screen and (max-width:768px) {
.message {padding-top:0;}
.message li{ width: 100%; margin-bottom:10px;} 
.message p{font-size:14px;margin-bottom:10px;}
.message input{ height:36px; font-size:14px;} 
.message li select { height: 36px;font-size:14px;color:#888;}
.message .submit{ width:100%; line-height:42px; }
}

/*======================返回按钮======================*/
.n_bottom{ text-align:center; margin-top:.5rem;}
.n_bottom li{display:inline-block;margin: 0 25px;cursor: pointer;}
.n_bottom li .img{display:inline-block;width:55px;height:55px; border: #ccc 1px solid; border-radius:50%;text-align:center;overflow: hidden; transition:0.6s; box-sizing:border-box;}
.n_bottom li .img h6{height:100%;transition:0.6s;overflow: hidden;}
.n_bottom li h5{ font-size:13px; color:#888; margin-top:6px; font-weight:normal;}
.n_bottom li a{ display:block;}
.n_bottom li a:hover .img h6{transform: translateY(-53px);}
.n_bottom li a:hover .img{ border:var(--main_color) 1px solid; background:var(--main_color);}



/*404*/
.page_msg {padding: 50px; background:#fff; margin:0 0;}
.page_msg h5 { line-height: 60px;border-bottom: 1px solid #ddd;margin-bottom: 10px; font-size:25px; text-align:center;}
.page_msg_con {color: #999; line-height:40px; text-align:center;padding: 25px 0;}
.page_msg_con i {font-size:100px;color: #ddd; margin-bottom:10px;}
@media screen and (max-width:768px) {
.page_msg {padding: 20px;}

}


/*内页分页*/
.search-pagination{text-align:center; padding-top:.6rem;}
.pagination li {display: inline-block;margin:0 3px;}
.pagination li a{display: inline-block;font-size: 15px;  border-radius:3px;min-width: 46px;height: 46px;line-height: 46px; box-sizing: border-box; padding:0 20px; box-sizing:border-box;transition: 0.3s; background:#e8e8e8; border:solid 0px #ddd;}
.pagination li.active a,.pagination li a:hover{color: #fff !important;background-color:var(--main_color);border:solid 0px #004d98;}
@media screen and (max-width:768px) {
.page_msg {padding: 20px;}
.pagination li {margin:0 3px 6px;}
.pagination li a{min-width: 40px;height: 40px;line-height: 40px; padding:0 15px;}
}

@keyframes o-upfade-top {
    0% {opacity: 0;
        transform: translateY(50px);
    }
    100% {opacity: 1;
        transform: translateY(0);
    }
}
@keyframes o-scale {
    0%,85%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.06);
    }
}
@keyframes o-opacity {
    0%,30%,60%,100%{
        opacity: 0;
    }
    15%,45%{
        opacity: 1;
    }
}
@keyframes o-scroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
} 
@keyframes bg {
    from {
        transform: scale(1.3);
    }
    to {
        transform: none;
    }
}

@keyframes gd01_pic {
    0%{
        opacity: 0; transform: translateY(-100%);
    }
    100%{
        opacity: 1;  transform: translateY(0);
    }
}




/*搜索页面*/
.search_box{ background:#fff; /*box-shadow: 2px 2px 20px rgba(0,0,0,.05);*/padding: 60px 80px; box-sizing:border-box; margin:0 auto;}

.serch_n{position:relative;width:50%; margin:auto;}
.serch_n input{width:100%; padding:15px 15px; font-size:16px; outline:none; border-radius:5px; box-sizing:border-box; height:.6rem; line-height:.6rem; border:solid 1px #ddd;}
.serch_n .btn{ position:absolute; right:0; top:0px;}
.serch_n .btn i{font-style:normal;}
.serch_n .btn button{ width:1.25rem; height:.6rem; border:0; cursor:pointer; outline:none; padding-left:.4rem;border-radius:0 5px 5px 0; font-size:.18rem; color:#fff; background: url('../images/icon-hsrch.png') no-repeat 30px center var(--main_color);}

.search_tit{ height:50px; line-height:50px; border-bottom: 1px solid #eee; display: flex;justify-content: space-between; margin:20px 0;}
.search_tit h5{font-size:18px; position:relative; float:left; padding:0 5px;}
.search_tit h5:after{content: "";position: absolute;width:100%; height: 2px;left: 0;bottom: -1px;background:var(--main_color);}

.serch_list{}
.serch_list li{font-size:16px; padding-left:15px; line-height:2.6; overflow: hidden; text-overflow: ellipsis;white-space: nowrap; position:relative;}
.serch_list li:before{ content: ""; display: block; width:6px; height:6px; border-radius:5px; background:#ccc; position: absolute; top: 50%; left: 0;transform: translate(0, -50%);}
.serch_list li:nth-child(5n){border-bottom:dotted 1px #ccc; margin-bottom:.25rem; padding-bottom:.25rem;} 
.serch_list li span{color:#888; float:right; font-size:14px;}

@media screen and (max-width:768px) {
.search_box{ padding:15px 15px; }
.serch_list li{font-size:14px; }
.serch_list li span{font-size:12px;}
.serch_n {width:100%;border: 1px solid #e1e6f0; overflow:hidden; border-radius:3px; margin-bottom:10px; box-sizing:border-box;}
.serch_n input[type="text"] {width: 100%;height:44px;background:rgba(255,255,255,0.8);box-sizing: border-box;padding: 0 50px 0 15px;border: none;}
.serch_n .btn {position: absolute;top:0px;right:0px;width:50px ;height:100%;}
.serch_n .btn i{display:none;}
.serch_n .btn button{width:100%;height:100%; background: url('../images/zoom.png') no-repeat center; border:none; background-size:23px auto;}

}



/*表单*/
.form_box{width:330px; margin:auto;}
.form_box .con li,.form_box .con .form-actions{margin-top:15px; position:relative;}
.form_box .con li input{background: #fff; font-size:15px;border-radius: 4px;border: 1px solid #dcdfe6;box-sizing: border-box;color: #606266;height: 46px;line-height: 46px;outline: none;padding: 0 15px;transition: border-color .2s cubic-bezier(.645,.045,.355,1);width: 100%;}
.form_box .con li input:focus,.form_box .con li input:hover{border:solid 1px #FF2442;}
.form_box .con li .yzm{position:absolute; padding:0 10px; top:0px; right:0px; border-left:solid 1px #dcdfe6; transition:.2s all;}

.form_box .con button{ width:100%; height:50px; background:#FF2442; border:none; font-size:15px; color:#fff; cursor:pointer; outline:none; border-radius:3px;}
.form_box .con button:hover{ opacity:0.9;}

.form_box .con .sms_btn{ width:125px; line-height:46px; background:#333; font-size:14px; color:#fff; display:block; text-align:center; border-radius:3px; text-decoration:none;}

.btn_flash{overflow:hidden; position: relative;}
.btn_flash .anim { -moz-transform: translateY(-50%) translateX(-50%); -ms-transform: translateY(-50%) translateX(-50%); -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); position: absolute; top: 50%; left: 50%; }
.btn_flash .anim:before { position: relative; content: ''; display: block; margin-top: 100%; }
.btn_flash .anim:after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; border-radius: 50%; }
.btn_flash:hover .anim { -moz-animation: anim-out 0.75s; -webkit-animation: anim-out 0.75s; animation: anim-out 0.75s; }
.btn_flash:hover .anim:after { -moz-animation: anim-out-pseudo 0.75s; -webkit-animation: anim-out-pseudo 0.75s; animation: anim-out-pseudo 0.75s; }
@-webkit-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@-moz-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
} 
@-ms-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@-webkit-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@-moz-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@-ms-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}

/*弹窗*/
.tc{transition:all ease 300ms;position: fixed;width: 100%;height: 100%;top: 0;left: 0;z-index: 99999; display:flex; flex-direction:column; justify-content:center;align-items:center;}
.tc{ pointer-events: none;  filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity:0; opacity:0;transform:scale(1.1);}
.tc.act{ filter:alpha(opacity=100); -moz-opacity:1; -khtml-opacity: 1; opacity: 1;  pointer-events: auto;transform:scale(1);}
.tc-bg {height: 100%;background: rgba(0,0,0,.6);position: absolute;top: 0;left: 0;width: 100%;z-index: 0;}

/*留言弹窗*/
.buy_form{width:9rem; height:6rem; padding:.5rem .8rem; background:#fff; border-radius:10px; box-sizing:border-box; position:absolute; top:0; left:0; right:0; bottom:0; z-index:2; margin:auto;}
.buy_form .close{position:absolute; top:40px; right:40px; cursor:pointer;}

.buy_form .tit{font-size:.36rem; color:#000; margin-bottom:.15rem}
.buy_form .info{ line-height:2em; font-size:.16rem; color:#888; border-bottom:solid 1px #ddd; height:.5rem; margin-bottom:.35rem;}

.buy_form ul{display:flex; justify-content:space-between; flex-wrap:wrap;}
.buy_form li{font-size:.15rem; margin-bottom:.15rem; width:49%;}

.buy_form input,.buy_form select{padding:.15rem;width:100%; box-sizing:border-box;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 2px; font-size:.16rem;
}
.buy_form textarea{padding:.2rem;width:100%; box-sizing:border-box;border: 1px solid rgba(0,0,0,.1); height:1.25rem; border-radius: 2px; font-size:.16rem; font-family:"微软雅黑";}
.buy_form .form-group {width:100%;}
.buy_form .form-group input{width:49%; margin-right:1%;  margin-bottom:.2rem;}

.buy_form .submit{ border:none; font-size:.2rem; cursor:pointer; text-align:center; color:#fff; background:var(--main_color); border-radius: 3px; transition:0.3s all; width:100%; height:.6rem; line-height:.6rem;}
.buy_form .submit:hover{}
@media screen and (max-width:768px) {
.buy_form{width:90%; height:auto; padding:25px 15px 25px; border-radius:5px; position:absolute; top:50%; transform:translateY(-40%); left:0; right:0; bottom:auto; z-index:2;box-sizing:border-box;}
.buy_form .close{ top:15px; right:15px; }
.buy_form .info{ line-height:1.8; font-size:12px; height:auto; margin-bottom:10px; border-bottom:0;}

.buy_form li{font-size:14px; margin-bottom:10px; width:100%;}
.buy_form input,.buy_form select{padding:12px 15px; border-radius: 3px; font-size:14px;}
.buy_form .submit{ border:none; font-size:16px; width:100%; height:50px; }
.buy_form textarea{padding:12px 15px;width:100%; box-sizing:border-box;border: 1px solid rgba(0,0,0,.1); height:60px; border-radius: 3px; font-size:14px; font-family:"微软雅黑";}

}

/*右侧浮动*/
.online_q {position: fixed;right:10px;bottom:10%; z-index: 99;width: 50px;border-radius: 25px;background: #fff;box-shadow: 0px 0px 8px 0px rgba(181,181,181,0.5);}
.side-menu-itembox { position: relative}
.side-menu-itembox:not(:last-child) { margin-bottom:5px;}
.side-menu-itembox:hover .side-menu-screen {right: 50px;visibility: visible;opacity: 1}
.side-menu-itembox:hover .side-menu-btn {background: #E2EEFC;}
.side-menu-itembox:hover .side-menu-btn.mine:before {width: 22px;height: 22px; background: url("../images/float_ico.png") -49px -50px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.message:before { width: 22px;height: 23px;background: url("../images/float_ico.png") 0px 0px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.qrcode:before {width: 22px;height: 22px;background: url("../images/float_ico.png") 0px -50px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.yijian:before {width: 22px;height: 22px;background: url("../images/float_ico.png") -98px 0px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.totop:before {width: 22px; height: 22px;background: url("../images/float_ico.png") -24.5px -25.5px/120px no-repeat}
.side-menu-itembox:hover .side-menu-btn.totop { cursor: pointer}

.side-menu-btn {display: block;width: 50px;height: 50px; box-sizing: border-box;border: 4px solid #fff; background: #fff; border-radius: 50%;position: relative}
.side-menu-btn:before { content: '';position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%)}
.side-menu-btn.mine:before { width: 22px;height: 22px; background: url("../images/float_ico.png") -49px 0px/120px no-repeat}
.side-menu-btn.message:before {width: 22px;height: 23px;background: url("../images/float_ico.png") -24.5px 0px/120px no-repeat}
.side-menu-btn.qrcode:before {width: 22px;height: 22px;background: url("../images/float_ico.png") -73.5px 0px/120px no-repeat}
.side-menu-btn.yijian:before {width: 22px; height: 22px;background: url("../images/float_ico.png") -98px -24.5px/120px no-repeat}
.side-menu-btn.totop:before {width: 22px;height: 22px;background: url("../images/float_ico.png") 0px -25.5px/120px no-repeat}

.side-menu-screen {padding-top: 4px;position: absolute;padding-right: 11px; top: 0; right: 65px;transition: all .2s;visibility: hidden;opacity: 0}
.side-screen-box {position: relative; background: #fff;box-shadow: 0px 2px 7px -1px rgba(225,225,225,.5);border-radius: 6px;display: block}
.side-screen-box:before {content: '';position: absolute;top: 14px;right: -7px;border-left: 7px solid #fff; border-top: 7px solid rgba(0,0,0,0);border-bottom: 7px solid rgba(0,0,0,0)}
.side-screen-box.only-text {height: 42px;line-height: 42px;font-size: 15px;font-weight: 400;color: #111; white-space: nowrap; padding: 0 18px;}
.side-screen-box.qrcode {width: 136px;line-height: 20px;text-align: center;font-weight: 400;font-size: 12px;color: #333;padding: 5px 0 5px}
.side-screen-box.qrcode .gzh-qrcode {width: 125px;display: block;margin:auto}
@media screen and (max-width:768px) {
.online_q{ display:none;}	
}

@keyframes o-upfade-top {
    0% {opacity: 0;
        transform: translateY(50px);
    }
    100% {opacity: 1;
        transform: translateY(0);
    }
}
@keyframes o-scale {
    0%,85%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.06);
    }
}
@keyframes o-opacity {
    0%,30%,60%,100%{
        opacity: 0;
    }
    15%,45%{
        opacity: 1;
    }
}
@keyframes o-scroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
} 
@keyframes bg {
    from {
        transform: scale(1.3);
    }
    to {
        transform: none;
    }
}

@keyframes gd01_pic {
    0%{
        opacity: 0; transform: translateY(-100%);
    }
    100%{
        opacity: 1;  transform: translateY(0);
    }
}

.btn_flash{overflow:hidden; position: relative;}
.btn_flash .anim { -moz-transform: translateY(-50%) translateX(-50%); -ms-transform: translateY(-50%) translateX(-50%); -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); position: absolute; top: 50%; left: 50%; }
.btn_flash .anim:before { position: relative; content: ''; display: block; margin-top: 100%; }
.btn_flash .anim:after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; border-radius: 50%; }
.btn_flash:hover .anim { -moz-animation: anim-out 0.75s; -webkit-animation: anim-out 0.75s; animation: anim-out 0.75s; }
.btn_flash:hover .anim:after { -moz-animation: anim-out-pseudo 0.75s; -webkit-animation: anim-out-pseudo 0.75s; animation: anim-out-pseudo 0.75s; }
@-webkit-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@-moz-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
} 
@-ms-keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@keyframes anim-out-pseudo {
    0% { background: rgba(255, 255, 255, 0.25); }
    100% { background: transparent; }
}
@-webkit-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@-moz-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@-ms-keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes anim-out {
    0% { width: 0%; }
    100% { width: 100%; }
}

/*更多*/
.lookmore{ text-align:center;}
.lookmore a{display:inline-block;border: #222 1px solid; font-size:15px; border-radius:22px; padding:12px 50px; color: #333; position:relative;overflow:hidden; transition:0.5s all;}
.lookmore a span{ position:relative; z-index:10}
.lookmore a:hover{color:#fff;border:var(--main_color) 1px solid;background: var(--main_color); transition-delay:0.36s}
@-webkit-keyframes criss-cross-left {
0% {
left: -20px;
}
50% {
left: 50%;
width: 20px;
height: 20px;
}
100% {
left: 50%;
width: 375px;
height: 375px;
}
}
@keyframes criss-cross-left {
0% {
left: -20px;
}
50% {
left: 50%;
width: 20px;
height: 20px;
}
100% {
left: 50%;
width: 375px;
height: 375px;
}
}
@-webkit-keyframes criss-cross-right {
0% {
right: -20px;
}
50% {
right: 50%;
width: 20px;
height: 20px;
}
100% {
right: 50%;
width: 375px;
height: 375px;
}
}
@keyframes criss-cross-right {
0% {
right: -20px;
}
50% {
right: 50%;
width: 20px;
height: 20px;
}
100% {
right: 50%;
width: 375px;
height: 375px;
}
}
.btn-11 {
position: relative;
color: #9a7cba;
}
.btn-11:before, .btn-11:after {
position: absolute;
top: 50%;
content: '';
width: 20px;
height: 20px;
background: var(--main_color);
border-radius: 50%;
}
.btn-11:before {
left: -20px;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
/*     animation: criss-cross-left 0.8s reverse; */
}
.btn-11:after {
right: -20px;
-webkit-transform: translate(50%, -50%);
transform: translate(50%, -50%);
/*     animation: criss-cross-right 0.8s reverse; */
}
.btn-11:hover:before, .btn-11:hover:after {
/*       @include size($btn-width); */
}
.btn-11:hover:before {
-webkit-animation: criss-cross-left 0.8s both;
animation: criss-cross-left 0.8s both;
}
.btn-11:hover:after {
-webkit-animation: criss-cross-right 0.8s both;
animation: criss-cross-right 0.8s both;
}


/*向上*/
.cd-top {
  display: inline-block; z-index:9999;
  height: 46px;
  width: 46px;
  position: fixed;
  bottom: 60px;
  right: 5px;border-radius: 50%;
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.15) url(../images/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* 如果用户继续向下滚动,这个按钮的透明度会变得更低 */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: var(--main_color);
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 10px;
    bottom: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 46px;
    width: 46px;
    right: 5px;
    bottom: 60px;
  }
}
.cd-top:hover{background-color:var(--main_color);transition: all 0.3s ease 0s;}
