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


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: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:88%; margin: auto; max-width: 1520px;}

@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;}
.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;/*background: url(../images/header_bg.png) repeat-x center bottom;*/transition:all .3s;}
.header:before{ content:""; position:absolute; bottom:0; left:0; width:0; height:1px; background:rgba(255,255,255,0.1); transition:1s}
/*.header.on:before{ width:100%}*/
.header .logo {height:.9rem; transition:0.5s all;}
.header .logo img{display:block; height:.38rem; filter: grayscale(100%) brightness(6000%); }
.header .wz{margin-left:.12rem; font-family:'Microsoft Yahei';}
.header .logo h1{color:#fff;font-size:.23rem; letter-spacing:2px;}
.header .logo p{color:rgba(255,255,255,0.8);margin-top:.05rem; font-size:.11rem; }

.header.header_scroll{background:#fff!important; box-shadow: 0 2px 10px rgba(0,0,0,0.1);}
.bodymouse .header .logo img,.header_scroll .logo img{filter: grayscale(0%) brightness(100%); }
.bodymouse .header .logo h1,.header_scroll .logo h1{color:#000;}
.bodymouse .header .logo p,.header_scroll .logo p{color:#888;} 



/*下拉菜单*/
.navBox { box-sizing:border-box; position:relative; transition:0.5s all; margin-right:.1rem;}
.navBox .nav{display:flex; height:100%;}
.navBox .nav li { position: relative;}
.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: max(.16rem, 14px); color:#fff; height:100%; transition:0.3s all;  overflow:hidden;}
.navBox .nav li.active>a .txt{ color:#fff;}
.navBox .nav li>a:hover .txt{ color:var(--main_color);}
.navBox .nav>li>a .bg {background: var(--main_color);position: absolute;left:50%; transform:translateX(-50%); bottom:.22rem;width:0;display: block;height:.03rem;transition:1s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-radius:.05rem;opacity:0;}
.navBox .nav>li.curr>a .txt{ color:var(--main_color)!important;}
/*.navBox .nav>li:hover>a .bg {width:.22rem;opacity:1;}*/
.navBox .nav li>a .txt span{height:100%; display:flex; flex-direction:column; justify-content:center;align-items:center;}
.navBox .nav li>a .txt:before {content: attr(data-text); margin-top: -.9rem; height:100%; display:flex; flex-direction:column; justify-content:center;align-items:center;transition:0.3s all; background:var(--main_color); color:#fff;  padding: 0 .25rem;}
.navBox .nav li:hover>a .txt:before {margin-top: 0; }

.subNavbox{white-space: nowrap; min-width:125%; position:absolute; top:100%;left:50%;background:#fff; -webkit-transform:translate(-50%,10px);-ms-transform:translate(-50%,20px);transform:translate(-50%,20px); border-radius:10px;padding:.1rem 15px;opacity:0; pointer-events:none; transition:all .5s;box-shadow:0 1px 20px rgba(0,0,0,.15);}
.subNavbox:after{content:"";position:absolute;bottom:100%;left:50%;border-style:solid;margin-left:-7px;border-width:7px;border-color:transparent transparent #fff;}
.subNavbox p:not(:last-of-type){border-bottom:1px solid #e8e8e8}
.subNavbox a{display:block;position:relative;font-size:.16rem;padding:.18rem 0; -webkit-transition:color .3s cubic-bezier(.645,.045,.355,1);-ms-transition:color .3s cubic-bezier(.645,.045,.355,1);transition:color .3s cubic-bezier(.645,.045,.355,1); text-align: center; }
.subNavbox a:before{content:"";position:absolute;top:7px;bottom:7px;left:-15px;width:3px;background:var(--main_color);-webkit-transform:scaleY(0);-ms-transform:scaleY(0);transform:scaleY(0);-webkit-transition:-webkit-transform .3s cubic-bezier(.162,.85,.45,1);transition:transform .3s cubic-bezier(.162,.85,.45,1);}
.subNavbox a.active,.subNavbox a:hover{color:var(--main_color);}
.subNavbox a.active:before,.subNavbox a:hover:before{-ms-transform-origin:top;-webkit-transform-origin:top;transform-origin:top;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}
.subNavbox.active{pointer-events:all;-webkit-transform:translate(-50%);-ms-transform:translate(-50%);transform:translate(-50%);-webkit-transition-delay:.1s;-ms-transition-delay:.1s;transition-delay:.1s;opacity:1; }


/*鼠标经过header*/
.bodymouse .header{ background:#fff;}
.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:18px; 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; font-weight:600; transition:0.5s all; font-family:'Microsoft Yahei';}



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




/*======================手机菜单按钮======================*/
.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:#000;border-radius:3px;}
.m_nav_btn .line:before,.m_nav_btn .line:after{content: '';width: 100%;height: 3px;left: 0;position: absolute;background:#000;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;}

.top_blank{height:.9rem; }

@media screen and (max-width:768px) {
.header{ height:60px; box-shadow: 0 2px 10px rgba(0,0,0,0.25); padding:0 0;}
.header .logo{height:60px;}
.header .logo img{ height:32px; filter: grayscale(0%) brightness(100%);}
.header .wz{margin-left:8px;margin-top:5px;}
.header .logo h1{font-size:20px; letter-spacing:2px; color:#000;}
.header .logo p{font-size:10px;margin-top:3px; color:#666;}

.header_scroll.header:before{ background:rgba(0,0,0,0);}

.header_right,.navBox{display:none;}
.m_header_right{display:block;}
.top_blank{height:60px; display:block;}



.m_header_scroll{background:#fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1);}
.m_header_scroll .top_serch a svg{fill:#999;}
.m_header_scroll .logo img{filter: grayscale(0%) brightness(100%);}
.m_header_scroll .logo .txt h2{color:#000;}
.m_header_scroll .logo .txt p{color:#888; }

	

/*======================手机弹出菜单======================*/
.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:18px; 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:calc(100vh - .9rem); 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:.52rem; color:#fff; margin-bottom:.35rem; transform:translateY(200px);opacity:0; transition:all 0.3s; }
#banner .txt p{font-size:.46rem; color:#fff; transform:translateY(200px);opacity:0; transition:all 0.6s;}

#banner .swiper-slide-active .txt h3,
#banner .swiper-slide-active .txt p{transform:translateY(0px);opacity:1; transition-delay:1s;}


#banner .swiper-slide:after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.05);background-image:-webkit-linear-gradient(top,rgba(0,0,0,.1) 0,rgba(0,0,0,0) 20%);background-image:linear-gradient(to bottom,rgba(0,0,0,.1) 0,rgba(0,0,0,0) 20%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000', endColorstr='#00000000', GradientType=0);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:.35rem;}
#banner .swiper-pagination-bullet {width: .68rem;height: 5px;border-radius:0;background: rgba(255, 255, 255, .8);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; border-radius:0;}
#banner .swiper-pagination-bullet-active:before{width: 100%;transition: all 5s ease; }

@media screen and (max-width:768px) {
#banner {height:246px; position:relative; }
#banner .swiper-slide{display: block;}
#banner .txt {padding:0 15px; box-sizing:border-box;}
#banner .txt h3{ font-size:20px;margin-bottom:12px;}
#banner .txt p{font-size:18px; line-height:1.3; text-align:center;}
#banner .draw_h{display:none;}
#banner .swiper-pagination{bottom:15px;}
#banner .swiper-pagination-bullet {width:30px;}
}	

/*==========页面标题=============*/
.main_tit{padding:.8rem 0 .4rem;width:100%;  text-align:center;}
.main_tit h2{ font-size:.42rem; 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:.2rem auto 0;font-size:.16rem; color:#888;  line-height:1.8;}

@media screen and (max-width:768px) {
.main_tit{padding:35px 0 15px;}
.main_tit h2{ font-size:20px; font-weight:bold;}	
.main_tit .line{margin:10px auto; width:20px;}
.main_tit p{width:100%;font-size:14px; margin-top:5px; }
.main_tit p br{display:none;}
/*.main_tit .more{width:88px; line-height:32px;}
.main_tit .more a{font-size:14px;}*/
}

/*==========页面标题2=============*/
.main_tit1{padding:.75rem 0 .4rem;width:100%;}
.main_tit1 h2{ font-size:.52rem; 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 .25rem; height:.46rem; border:solid 2px var(--main_color); box-sizing:border-box; transition:.3s all; }
.lean_more a span{ margin-right:10px;}
.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 .5rem; height:44px; width:100%; box-sizing:border-box; border-radius:5px;}
	
}



/*首页公司介绍*/
.about_bg{background: url(../images/map_bg1.png) no-repeat left .5rem top; padding:1rem 0 1rem;}
.index_about{}
.index_about .pic,.index_about .txt{width:47%;}
.index_about .pic{position:relative;overflow:hidden;border-radius:10px;}
.index_about .pic>img{transition:all .5s;}
.index_about .pic .ico{}
.index_about .pic .ico{position:absolute;top:50%;left:50%; transform:translate(-50%,-50%) scale(0.7);width: 100px; height:100px; cursor: pointer;background: #fff;border-radius: 50%; box-shadow: 0 0 rgba(255, 255, 255, 0.15), 0 0 0 15px rgba(255, 255, 255, 0.15), 0 0 0 30px rgba(255, 255, 255, 0.15);animation: ripple-wave1 1s linear infinite;animation-play-state: running;opacity: 1;visibility: visible;
-webkit-animation: ripple-wave1 1s linear infinite;}

@keyframes ripple-wave1{
to {
	box-shadow: 0 0 0 15px rgba(218, 37, 28, 0.1),0 0 0 30px rgba(218, 37, 28, 0.1),0 0 0 50px rgba(218, 37, 28, 0.02);
	}
}

.index_about .pic:hover{}
.index_about .txt h3{font-size:.42rem;color:#000;}
.index_about .txt .desc{font-size:16px; line-height:2;margin:.3rem 0 .5rem 0 ;text-align:justify; }

/*数字*/
.index_shuzi{ margin-bottom:.6rem; width:100%;}
.index_shuzi li{width:20%;  position:relative;  box-sizing:border-box; font-size:.16rem;}
.index_shuzi li:nth-child(1){width:30%;}
.index_shuzi li:nth-child(2){width:30%;}
.index_shuzi li i{font-size: .42rem; font-style:normal; margin-right:2px;}
.index_shuzi li span{ }
.index_shuzi li p{ font-size:14px; margin-top:.1rem; color:#888;}


@media only screen and (max-width: 1440px){
.index_about .txt .desc{font-size:14px;}
}


@media only screen and (max-width: 768px){
.about_bg{background:none;  padding:35px 0 40px;}
.index_shuzi{width:100%;}
.index_shuzi li{ font-size:13px; }
.index_shuzi li i{font-size:25px;}
.index_shuzi li p{ font-size:12px; margin-top:6px;}

.index_about .pic,.index_about .txt{width:100%;}
.index_about .pic{order:2;border-radius:5px;}

.index_about .pic .ico{transform:translate(-50%,-50%) scale(0.5);}

.index_about .txt{order:1;margin-bottom:30px;}
.index_about .txt h3{font-size:20px; text-align:center;}
.index_about .txt h3:after{ content:''; display:block; width:20px; height:4px; border-radius:5px; background:var(--main_color); margin:10px auto 0px;}
.index_about .txt .desc{line-height:1.8;margin:15px 0 25px; font-size:15px;}
}



/*==========首页-主营业务=============*/
.in_zyyw_box{padding:0 0 1rem; box-sizing:border-box; overflow:hidden; background: url(../images/rel2bg.jpg) no-repeat; background-size:cover;}
.in_zyyw_box .tabs1{border-bottom:0px solid #e8e8e8;margin-bottom:.35rem;}
.in_zyyw_box .tabs1 a{margin:0 .25rem;position:relative; font-size:16px; font-weight:bold; transition:all .5s; position:relative; padding-bottom:10px;}
.in_zyyw_box .tabs1 a.active{color:var(--main_color);}
.in_zyyw_box .tabs1 a.active:after{ content:''; height:2px; background:var(--main_color); width:100%; position:absolute; left:0; bottom:0px;}
/*.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%; height:4.5rem;overflow:hidden;border-radius:.1rem 0 0 .1rem; background: url(../images/zs_bg.jpg) no-repeat center; background-size:cover;}
.in_zyyw_box li .pic img{ height:88%;}
.in_zyyw_box li .txt{flex:1; padding:0 .8rem;box-sizing:border-box;}
.in_zyyw_box li .txt h3{ font-size:.3rem;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;}
.in_zyyw_box li .txt .lean_more a{  }
.in_zyyw_box li .txt .lean_more a:last-child{ font-size:16px; font-weight:bold; margin-left:.2rem; color:var(--main_color);}
.in_zyyw_box li .txt .lean_more a i{ margin-right:5px;}
.in_zyyw_box li .txt .lean_more a:hover{ color:#fff;}

@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;}
.in_zyyw_box .tabs1 a{margin:0 15px 0 0; font-size:15px; white-space: nowrap;}

.in_zyyw_box li{border-radius:8px;}
.in_zyyw_box li .pic{width:100%; min-height:auto; max-height:200px; border-radius:0;}
.in_zyyw_box li .txt{width:100%;padding:20px 20px 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;}
.in_zyyw_box li .txt .lean_more a{width:48%; padding:0;}
.in_zyyw_box li .txt .lean_more a:last-child{ font-size:15px; margin-left:4%;}
.in_zyyw_box li .txt .lean_more a i{ margin-right:3px;}
}


/*=============首页-新闻资讯================*/
.in_news_bg{padding-bottom:.8rem;}
.in_news{display: grid;gap: 0.3rem;grid-template-columns: repeat(3, 1fr);}
.in_news .list {}
.in_news .list .pic{ overflow:hidden;}
.in_news .list .pic img{transition:.4s;}
.in_news .list a:hover .pic img{ transform:scale(1.1);}
.in_news .list .txt{ padding:.35rem .4rem 0.4rem;}
.in_news .list .txt .con1{ font-size:.16rem; color:#888;}
.in_news .list .txt .con2{ font-size:.2rem; color:#000; line-height: 1.5; height: 3em; margin:.15rem 0 .4rem;}
.in_news .list .txt .con3 i{ margin-left:5px; transition:.4s; display: inline-block;}
.in_news .list a:hover .txt .con3 i{transform: translateX(0.1rem);}
.in_news .list a{position: relative; background: #f5f5f5; display:block; height:100%;}
.in_news .list 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;}	
.in_news .list a:hover::after {width: 100%;}

.in_news .list1{display: grid;grid-template-rows: repeat(2, 1fr);gap: 0.2rem;}
.in_news .list1 .item a {position: relative;background: #f5f5f5;padding: 0.4rem .4rem .3rem; display:block;}
.in_news .list1 .item 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;}	
.in_news .list1 .item a:hover::after {width: 100%;}

.in_news .list1 .item .con1{ font-size:.16rem; color:#888;}
.in_news .list1 .item .con2{ font-size:.2rem; color:#000; line-height: 1.5; height: 3em; margin:.15rem 0 .25rem;}
.in_news .list1 .item .con3{color:#666; line-height: 1.8; height: 3.6em;}
@media only screen and (max-width: 768px){
.in_news{display:block;}
.in_news .list a{background: #fff;}
.in_news .list a::after{ display:none;}
.in_news .list .pic{ max-height:200px;}
.in_news .list .txt{ padding:20px 0;}
.in_news .list .txt .con1{ font-size:14px;}
.in_news .list .txt .con2{ font-size:17px;margin:10px 0 0; height:auto;}
.in_news .list .txt .con3 { display:none;}

.in_news .list1{display:block; border-top:solid 1px #ddd;}
.in_news .list1 .item {border-bottom:solid 1px #ddd;}
.in_news .list1 .item a {padding:25px 0 0; background:#fff;}
.in_news .list1 .item a::after{ display:none;}
.in_news .list1 .item .con1{ font-size:14px;}
.in_news .list1 .item .con2{ font-size:17px;margin:10px 0 15px; height:auto;}
}


/*认证百科*/
.baike_list{display: grid;gap: 0.25rem;grid-template-columns: repeat(3, 1fr);}
.baike_list li{ }
.baike_list li a{ border:solid 1px #e8e8e8; border-radius:.1rem; padding:.1rem; transition:0.3s all;}
.baike_list li a:hover{transform:translateY(-5px); border:solid 1px var(--main_color);}
.baike_list li .pic{width:100px; height:100px;}
.baike_list li .pic img{width:100%; height:100%;}
.baike_list li .txt{width:calc(100% - 100px); padding-left:20px; box-sizing:border-box;}
.baike_list li .txt h2{ font-size:.2rem; margin-bottom:.1rem;}
.baike_list li .txt p{ line-height:1.6; color:#666;}
@media only screen and (max-width: 768px){
.baike_list{ gap:12px;grid-template-columns: repeat(1, 1fr);} 
.baike_list li a{border-radius:8px; padding:10px;}
.baike_list li .pic{width:80px; height:80px;}
.baike_list li .txt{width:calc(100% - 80px); padding-left:12px;}
.baike_list li .txt h2{ font-size:16px; margin-bottom:8px;}
}


/*认证百科内容页*/
.baike_show{background:#fff; box-sizing:border-box; padding:.5rem .8rem; }
.baike_show .info{background: #f8f8f8; padding:.3rem .4rem;}
.baike_show .info .left{ width:2.6rem;}
.baike_show .info .right{ width:calc(100% - 3rem);}
.baike_show .info .right .title_txt{ margin:.1rem 0 .15rem;}
@media screen and (max-width:768px) {
.baike_show{padding:0;}
.baike_show .info{ padding:.3rem 0;}
.baike_show .info .left{ width:50%; margin:auto;}
.baike_show .info .right{ width:100%;}  
.baike_show .info .right .title_txt{ margin:20px 0 10px; font-size:22px; color:#000; font-weight:bold;}
}

.baike_show_con { text-align:justify;  line-height:1.8; font-size:15px; overflow:hidden; width:100%; color:#555; padding:.2rem 0 .25rem; box-sizing:border-box;}
.baike_show_con h3{ background: linear-gradient(90deg, var(--main_color), transparent); line-height:38px; font-size:18px; color:#fff; padding-left:20px; margin:10px 0 15px; font-weight:bold;}
.baike_show_con p {margin-bottom:15px; }
.baike_show_con img{ max-width:100%;}
.baike_show_con table{ border:1px solid #eff3f8; border-collapse:collapse;   font-size:14px; line-height:24px; margin-bottom:15px;}
.baike_show_con table p{margin-bottom:0;}
.baike_show_con table tr:nth-child(1){ font-size:14px; background:#eff3f8; font-weight:bold;}
.baike_show_con table td{padding:5px 10px; border:1px solid #D5DFEC;text-align:center;}
.baike_show_con a{color:var(--main_color);}

.baike_show_con video{ max-width:100%;}



@media screen and (max-width:768px) {
.baike_show_con { padding:10px 15px; }
.baike_show_con h3{line-height:32px; font-size:16px; margin:10px 0 10px;}
.baike_show_con {font-size:15px; }
.baike_show_con img{ max-width:100%;}
.baike_show_con video{ width:100%;}
}

/*=============首页-合作伙伴================*/
.in_hzhb_bg{background:url(../images/in_hzxq_bg.jpg) no-repeat center; background-size:cover; margin-top:.6rem; padding-bottom:1rem; box-sizing:border-box; overflow:hidden; position:relative;}
.in_hzhb_bg .bg-video{position: absolute;left:0;top:0;width: 100%;height: 100%;z-index: 1; background:#000;}
.in_hzhb_bg .bg-video video{ width:100%; height:100%; object-fit:cover; opacity:0.8;}
.in_hzhb_bg .main{ position:relative; z-index:2;}
.in_hzhb_bg .list{display: grid;grid-template-columns: repeat(6, 1fr);gap:.2rem;}
.in_hzhb_bg .list li{border-radius:5px; overflow:hidden; transition:0.3s all; /*box-shadow: 0 0 25px #ddd;*/ background:#fff; padding:.2rem .35rem; opacity:0.8;}
.in_hzhb_bg .list li img{display:inline-block;  max-width:100%; max-height:100%;}
.in_hzhb_bg .list li:hover{ transform: translate3d(0, -5px, 0);-webkit-transform: translate3d(0, -5px, 0); opacity:1;}
.in_hzhb_bg .main_tit h2{color:#fff;}
.in_hzhb_bg .main_tit p{color:#fff;}

@media only screen and (max-width: 768px){
.in_hzhb_bg{background:#f2f2f2; padding:0 0 40px;}
.in_hzhb_bg .bg-video{ display:none;}
.in_hzhb_bg .list{display: grid;grid-template-columns: repeat(3, 1fr);gap:10px;}
.in_hzhb_bg .list li{padding:.2rem .25rem; box-shadow: 0 0 25px #ddd; opacity:1;}
.in_hzhb_bg .main_tit h2{color:#000;}
.in_hzhb_bg .main_tit p{color:#666;}
}






.foot_cn{display: grid;grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom:.3rem;}
.foot_cn li{}
.foot_cn li .ico{margin-right:.1rem;}

.foot_cn li .txt h5{ font-size:17px; color:#fff; margin-bottom:.1rem;}
.foot_cn li .txt p{ color:rgba(255,255,255,0.8);}
@media only screen and (max-width: 768px){
.foot_cn{ grid-template-columns: repeat(2, 1fr); row-gap:20px;}
.foot_cn li .ico{width:30px;}
.foot_cn li .ico img{width:100%;}
.foot_cn li .txt {flex:1;}
.foot_cn li .txt h5{ font-size:15px; margin-bottom:.1rem;}
.foot_cn li .txt p{font-size:13px;}
}



/*================底部=====================*/
.foot_bg{ background: url(../images/footer_bg.png) no-repeat right bottom #171D24;padding:9vh 0 0;}
.foot_logo{width:100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom:.3rem;}
.logo_txt{font-size:.26rem; letter-spacing: 1.8px; color:#fff; font-weight:bold; font-family:'Microsoft Yahei';}
.foot_logo img{height:.42rem; margin-right:.15rem;}
.foot_logo p{color:rgba(255,255,255,.5); margin-left:.3rem;font-size:14px; letter-spacing:2px;}

.foot_bg .box1{ padding-top:.5rem;}


.foot_box1 li{ display:inline-block; padding-right:.3rem; margin-right:.3rem; position:relative;}
.foot_box1 li:after{position:absolute;content:'';display:block;top:0;right:0;width:1px;height:.16rem;background:rgba(255,255,255,0.1);}
.foot_box1 li:last-child{ margin-right:0; padding-right:0;}
.foot_box1 li:last-child:after{width:0;}
.foot_box1 li a{color:rgba(255,255,255,0.7);font-size:.16rem; transition: all .3s;}
.foot_box1 li a:hover{color:var(--main_color);}

.foot_box2{color:rgba(255,255,255,.6); margin-top:.5rem; line-height:2.2; font-size:.16rem;}
.foot_box2 span{ margin-right:.25rem;}

.foot_tel{}
.foot_tel a{color:var(--main_color);font-size:.32rem; font-weight:normal;}
.foot_tel svg{height:.38rem; fill:var(--main_color); margin-right:.1rem;}

.foot_ewm li:nth-child(1){margin-right:.25rem;}
.foot_ewm li .pic img{width:108px;}
.foot_ewm li .txt{color:rgba(255,255,255,.6);margin-top:.15rem;}


.copyright{width:100%;padding: 4.81vh 0px;border-top: 1px solid rgba(255,255,255,0.1);margin-top:.5rem;color:rgba(255,255,255,.6);}
.copyright a{color:rgba(255,255,255,.6);transition: all .3s;}
.copyright .foot_link li{padding:0 .1rem;position:relative;}
.copyright .foot_link li:after{position:absolute;content:'';right:0;top:50%; transform:translateY(-50%);width:1px;height:12px;background:rgba(255,255,255,.2);}
.copyright .foot_link li:last-child{padding-right:0;}
.copyright .foot_link li:last-child:after{display:none;}
.copyright .foot_link li:hover a{color:#fff;}
.copyright .foot_link img{height:16px; margin:0 .1rem 0 .15rem;}

.foot_logo .m_pic{ display:none;}
@media only screen and (max-width: 768px){
#particles-js{display:none;}
.foot_bg{padding:50px 0 0;}
.foot_logo{width:100%;overflow:hidden;text-align:center;margin-bottom:0px; border-bottom:0;}
.logo_txt{font-size:20px; }
.foot_logo .pic{width: 100%; }
.foot_logo .pic img{height:32px;}
.logo_txt{width:100%;display:flex; flex-direction:column; justify-content:center;align-items:center;}
.foot_logo p{font-size:12px; margin:15px 0 20px; letter-spacing:5px;text-align:center!important;}
.foot_bg .box1{ padding-top:0;}
.foot_box1{display:none;}

.foot_bg .box1 .left{width:100%;}
.foot_box2{margin:.5rem 0; line-height:2.2; font-size:13px; text-align:center;}
.foot_box2 span{ margin-right:.25rem;}


.foot_tel{ margin-bottom:20px; width:100%;}
.foot_tel a{font-size:25px;}
.foot_tel svg{height:25px; fill:var(--main_color); margin-right:.1rem;}

.copyright{padding: 15px 0px;margin-top:20px;color:#8f8f8f;}
.copyright p{font-size:13px;width:100%;text-align:center;line-height:1.8;}
.copyright a{font-size:13px;}
.copyright .foot_link {width:100%; margin-top:5px;}


.foot_ewm{width:100%;}
.foot_ewm li:nth-child(1){margin-right:20px;}
.foot_ewm li .pic img{width:90px;}
.foot_ewm li .txt{margin-top:10px;}


}

.m_f_blank,.m_footer{display:none;}
@media screen and (max-width:768px) {
.m_f_blank{ height:56px; display:block;}
.m_footer{ display:flex; height:56px; background:#fff; border-top:solid 1px #e8e8e8; box-sizing:border-box; position:fixed; left:0; bottom:0; width:100%; z-index:99;}
.m_footer li{ width:25%; text-align:center; font-size:14px;}
.m_footer li .ico{ margin:8px auto 2px; position:relative;}
.m_footer li .ico svg{ height:22px; fill:#666;}
.m_footer li .ico span{position: absolute; right: 12px; top: -5px; font-size:10px; display:block; width:15px; line-height:15px; border-radius:100%; text-align:center;background:var(--second_color); color:#fff;}
.m_footer li a{display:block;}
.m_footer li.active .txt{color:var(--main_color);}
.m_footer li.active .ico svg,.m_footer li:hover .ico svg{fill:var(--main_color);}


.foot_ico {position: fixed;width: 100%;left: 0;bottom: 0;z-index: 9; padding: 0 10px 10px; overflow:hidden; overflow: hidden; box-sizing:border-box;}
.foot_ico li {width: 50%;text-align: center;background:#017ffd; padding:10px 0;}
.foot_ico li:last-child{ background:#ff5e00;border-radius:0 30px 30px 0; }
.foot_ico li:first-child{border-radius:30px 0 0 30px; }
.foot_ico li img{width: 20px; margin-right: 10px; vertical-align: middle;}
.foot_ico li a{color: #fff;}

}
/*****--------------------*****/

/*二级页面 banner*/
.page_ban{ width:100%; position:relative;}
.page_ban .pic {width:100%;  height: 56vh;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;  overflow:hidden;/*background:rgba(0,0,0,.1);*/}
.page_ban_active h4{ font-size:.32rem; color:#fff; font-weight:normal; margin-bottom:15px;}
.page_ban_active h2{ font-size:.42rem; color:#fff; font-weight:normal;}


.page_ban .letter span{display: inline-block;opacity: 0;filter: blur(10px);-webkit-filter: blur(10px);transform: translateY(-16px);}
.page_active .letter span{ opacity: 1; filter: blur(0px); -webkit-filter: blur(0px); transform: translateY(0px);}



@media screen and (max-width:768px) {
.page_ban .txt{}
.page_ban .pic{height:160px;}
.page_ban_active h4{ font-size:14px;margin-bottom:10px; }
.page_ban_active h2{ font-size:18px; }
}

/*位置*/
.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 5px;}

.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;}
.sub_weizhi .weizhi i.ico {margin-right:10px;}
.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:25px; height:25px;  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); }
}




/*===========内容页位置导航===============*/
.pro_weizhi{line-height:32px;margin:18px 0 12px;}
.pro_weizhi span{display:inline-block; margin:0 5px;}
.pro_weizhi i svg{width:18px; fill:#000;margin-right:10px;margin-top: 6px;}
.pro_weizhi p a{ margin:0 5px; display:inline-block; color:#333;}

@media screen and (max-width:768px) {
.pro_weizhi,.pro_side{ display:none;}
}




/*=============内页-公司简介============*/
.page_about_bg{padding-bottom:1.15rem;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:25%;}
.page_about .tit h2{ font-size:.42rem; color:#000; line-height:1.4; position:relative;}
/*.page_about .tit h2:nth-child(2):after{content: ""; display:block;background:var(--second_color);width: .6rem;height: 4px; margin-top:20px;}*/
.page_about .tit .info{position:relative;}
.page_about .tit span{ width:2px; display:inline-block; position:absolute; left:8px;}
.page_about .tit span.line1{height:.35rem; background:var(--main_color); top:.2rem;}
.page_about .tit span.line2{height:1rem; background:#ccc; top:.66rem;}
.page_about .tit em{ position:absolute; left:16px; top:1.8rem; font-size:16px;color: rgba(0,0,0,0.3); font-weight:500; font-style:normal;text-transform: uppercase;letter-spacing: .03rem;transform: rotate(90deg);
	transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
}

.page_about .right{width:66%;}
.page_about .con{text-align:justify; font-size:max(.16rem,14px); line-height:2;}
.page_about .con p{ margin-bottom:25px;}
.page_about .con img {
    max-width: 100%;
}
.page_about .right .title{font-size:.25rem; font-weight:bold; margin:.5rem 0 .3rem;}
.page_about .right .list{display: grid;grid-template-columns: repeat(3, 1fr);gap:.2rem;}
.page_about .right .list li{position:relative; }
.page_about .right .list li:after{ content:''; position:absolute; left:0; top:0; right:0; bottom:0; background:rgba(0,0,0,0.5);}
.page_about .right .list li .pic{overflow:hidden;}
.page_about .right .list li .pic img{width:100%; display:block; transition:all .5s;}
.page_about .right .list li .txt{position:absolute; left:0; top:0; right:0; bottom:0; color:#fff; z-index:2;}
.page_about .right .list .ico img{height:.55rem;margin-bottom:.2rem;}
.page_about .right .list li h3{ font-size:.18rem; font-weight:normal; opacity:1; transition:0.5s all;}
.page_about .right .list li:hover .pic img{ transform:scale(1.1,1.1);}



@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 h2:nth-child(2):after{ width: .6rem;height: 4px; margin-top:8px;}
.page_about .tit .info{ display:none;}
.page_about .right{width:100%; margin-top:25px;}
.page_about .con{ font-size:15px; 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 { padding:.3rem 0; box-sizing:border-box; border-bottom:solid 1px #ddd; position:relative; margin-bottom:.2rem;}
.page-number-info li:after {content: '';width: 25px;height: 1px;background-color:var(--second_color);position: absolute;left: -25px;bottom: -1px;z-index: 2;animation: moveline 4s linear infinite;}
.page-number-info li b {display: inline-block;position: relative; font-weight:normal;  color:var(--second_color);}
.page-number-info li p {font-size:.18rem; color:#888;}
.page-number-info li b i { font-style:normal; font-size:.42rem; }
.page-number-info li b sup { font-size: .16rem; }
.page-number-info li b span { font-weight:normal; font-size: .2rem;}

.page-number-info li:nth-child(2):after{animation-delay: 1s;}
.page-number-info li:nth-child(3):after{animation-delay: 2s;}
.page-number-info li:nth-child(4):after{animation-delay: 3s;}
@keyframes moveline {
  0% {
    left: -25px;
  }
  100% {
    left: 100%;
  }
}

@media screen and (max-width:768px) {
.page-number-info {border-top:0; margin-top:15px;}
.page-number-info li{padding:18px 0; }
.page-number-info li b{ }
.page-number-info li b i {font-size:28px;}
.page-number-info li b sup {font-size:12px; }
.page-number-info li b span {font-size: 14px;}
.page-number-info li p {font-size:16px;}

}







/*关于我们视频*/
.about_vedio { background: url(../images/ve.jpg) center no-repeat fixed; padding:.25rem 0 1.25rem; background-size:cover; text-align:center; position:relative;}
.about_vedio:after{ content:''; display:block;background:rgba(0,0,0,0.5); position:absolute; top:0; left:0; width:100%; height:100%; z-index:1;}
.about_vedio .table{position:relative; z-index:2; max-width:12rem; margin:auto;}
.about_vedio h3 {font-size: .33rem;color: #fff; font-weight:normal; line-height:1.6;}
.about_vedio h5 {font-size:.25rem;color: rgba(255,255,255,0.8);  font-weight:normal; text-transform: uppercase;margin: .25rem 0 .4rem;}
.about_vedio h2 img { transition: 1s;}
.about_vedio h2 img:hover {transform: rotate(360deg);}
@media screen and (max-width:768px) {
.about_vedio { background-attachment:scroll; }
.about_vedio .table{width:90%;}
.about_vedio h3 {font-size:18px; font-weight:normal;}
.about_vedio h5 {display:none;font-size:15px; margin: .25rem 0 .4rem;}
.about_vedio h2 img { width:45px;}
}



/*团队优势*/
.about_tdys_box .left{width:62%;display: grid;grid-template-columns: repeat(2, 1fr);gap: .15rem;order:2;}  
.about_tdys_box .left li{position: relative;overflow:hidden;border-radius:8px;}
.about_tdys_box .left li .pic{overflow:hidden;}
.about_tdys_box .left li .pic img{width:100%;height:100%;display:block;transition:all .4s;}
.about_tdys_box .left li .txt{position:absolute;content:'';width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.5);padding:0 .5rem;box-sizing:border-box;}
.about_tdys_box .left li .txt h3{color:#fff;font-size:.24rem;margin-bottom:.2rem;}
.about_tdys_box .left li .txt p{text-align:center;line-height:1.6;color:#fff;font-size:.16rem;}
.about_tdys_box .left li:hover .pic img{transform:scale(1.1);}

.about_tdys_box .right{width:37%;position: relative;overflow:hidden;border-radius:8px;order:1;}
.about_tdys_box .right .pic{overflow:hidden;}
.about_tdys_box .right .pic img{width:100%;display:block;transition:all .4s;}
.about_tdys_box .right .txt{position:absolute;content:'';width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.5);padding:0 .5rem;box-sizing:border-box;}
.about_tdys_box .right .txt p{text-align:center;line-height:2;color:#fff;font-size:.16rem;}
.about_tdys_box .right:hover .pic img{transform:scale(1.1);}


@media screen and (max-width:768px) {
.about_tdys_box .left{width:100%;grid-template-columns: repeat(1, 1fr);gap: 0;}  
.about_tdys_box .left li{margin-top:15px}
.about_tdys_box .left li .txt{padding:0 20px;}
.about_tdys_box .left li .txt h3{font-size:18px;margin-bottom:15px;}
.about_tdys_box .left li .txt p{font-size:14px;}

.about_tdys_box .right{width:100%;}
.about_tdys_box .right .txt{padding:0 20px;}
.about_tdys_box .right .txt p{font-size:14px;}
}


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

.cggs_list{ box-sizing:border-box; margin-bottom:1rem;}
.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(--second_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;}
}



/*======================主营业务======================*/
.yewu_list{display: grid; grid-template-columns: repeat(5, 1fr);gap: 0.6rem; row-gap: 0.35rem; margin-bottom:.8rem;}
.yewu_list li{border-bottom: 1px solid #e6e4e4;  transition: 0.3s all;}
.yewu_list li .pic{ position:relative; overflow:hidden;}
.yewu_list li .pic img{ transition:0.3s all;}
.yewu_list li:hover .pic img{ transform:scale(1.1);}
.yewu_list li .txt{ padding:.25rem 0;}
.yewu_list li .txt h2{ font-size:.22rem; transition: 0.3s all; text-align:center;}
.yewu_list li .txt p{ color:#666; line-height:1.5;}
.yewu_list .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;}
.yewu_list .mask i {display: block;width:30px;height: 30px;border: solid 2px #fff;border-radius: 100%; opacity:0; transition: 0.3s all;}
.yewu_list .mask i::after {content: '';width: 12px;height: 2px;background: #fff;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.yewu_list .mask i::before {content: '';width: 2px;height: 12px;background: #fff;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.yewu_list li:hover .mask,.yewu_list li:hover .mask i{ opacity:1;}
.yewu_list li:hover .txt h3{ color:var(--main_color);}
.yewu_list li:hover {border-bottom: 1px solid var(--main_color);}
@media screen and (max-width:768px) {
.yewu_list{grid-template-columns: repeat(1, 1fr); row-gap:20px; margin-bottom:.8rem;}
.yewu_list li .txt h2{ font-size:20px; margin-bottom:10px;}
}

.show_con{background:#fff; box-sizing:border-box; padding:.6rem .68rem; }
.show_con .left{ width:4rem;}
.show_con .right{ width:calc(100% - 4.6rem);}
.show_con .right .title_txt{ margin:.1rem 0 .15rem;}
@media screen and (max-width:768px) {
.show_con{padding:35px 0; }
.show_con .left{ width:100%;}
.show_con .right{ width:100%;}  
.show_con .right .title_txt{ margin:20px 0 10px; font-size:22px; color:#000; font-weight:bold;}
}

/*======================服务支持======================*/
.fwzc{position:relative; margin-bottom:.5rem; overflow:hidden; padding-bottom:40px;}
.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(--second_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;}
}



/*================企业文化=====================*/
.qywh{padding-bottom:.5rem;}
.qywh li{margin-bottom:.6rem;}
.qywh li .txt{width:30%;}
.qywh li:nth-child(2n) .txt{order:2;}
.qywh li:nth-child(2n) .pic{order:1;}
.qywh li .txt h3 {font-size: .36rem;color: #000000;font-weight:normal;}
.qywh li .txt i {display: block;width: 30px;height: 3px;background: var(--main_color);margin: .3rem 0;}
.qywh li .txt span {font-size: .42rem; text-transform: uppercase;color: #b7b7b7;display: block;margin-bottom: .4rem;font-weight:bold;line-height:1.1; transition:all .6s;}
.qywh li .txt p {font-size: .16rem;color: #404044;line-height: 1.8;}
.qywh li:hover .txt span{color:var(--main_color);}
.qywh li .pic{width:65%; height:4.5rem;position: relative;}
.qywh li .pic img{width: 123%; height:100%; max-width: inherit;position: absolute;left: 0;top: 0;}
.qywh li:nth-child(even) .pic img {left: auto;right: 0;}
.qywh li .pic:before {content: "";display: block;width: 23%;height: 100%;position: absolute;z-index: 2;background: #fff;left: 100%; transition: .9s;}
.qywh li:nth-child(odd).aos-animate .pic:before {left: 123%;}
.qywh li:nth-child(even).aos-animate .pic:before {right: 123%;}
.qywh li:nth-child(even) .pic:before {left: auto;right: 100%;}

@media only screen and (max-width: 768px){
.qywh li:nth-child(odd) .txt{order:2;}
.qywh li:nth-child(odd) .pic{order:1;}

.qywh li .txt{width:100%; }
.qywh li .txt h3 {font-size:18px;}
.qywh li .txt i {width: 20px;margin: 10px 0;}
.qywh li .txt span {display:none;}
.qywh li .txt p {font-size: 13px;line-height: 1.6;}
.qywh li .pic{height:auto;width:100%; margin-bottom:15px; overflow:hidden;}
.qywh li .pic img{width:100%; height:100%; object-fit:cover; position:static;}

}

/*======================发展历程======================*/
.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;}

}


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

/*概述通用*/
.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;}	
}======*/

.page_hzhb_bg .desc{text-align:center;font-size:.16rem;color:#666;width:80%;line-height:2;margin:-.15rem auto .5rem;}
.brand_list{display: grid;grid-template-columns: repeat(6, 1fr);gap: .2rem;}
.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;}
.brand_list li:hover{ transform:translateY(-5px); box-shadow: 0 1px 15px rgb(0 0 0 / 10%);}
.brand_list li img{max-width:75%;max-height:75%;display:block;/* filter: grayscale(1); */transition:0.3s all;}
.brand_list li:hover img{ filter: grayscale(0);}

@media screen and (max-width:768px) {
.page_hzhb_bg .desc{font-size:15px;width:100%;line-height:1.8;margin:-10px auto 25px; text-align:justify;}
.page_hzhb_bg .desc br{ display:none;}
.brand_list{display: grid;grid-template-columns: repeat(3, 1fr);gap: 12px;}
.brand_list li{height:56px; box-sizing:border-box;border-radius:8px;}
.brand_list li img{max-width:90%;max-height:90%;}
}

/*===================合作伙伴列表================*/
.page_hzhb_bg{padding-bottom:.8rem; background:#eff0f4;}
.hzhb_list{display: grid;grid-template-columns: repeat(5, 1fr);gap: .2rem;grid-row-gap: 0;margin-top:0;}
.hzhb_list li {position:relative;}
.hzhb_list li .txt{height:1.3rem;}
.hzhb_list li .txt .mask{width:100%;overflow:hidden;position:absolute;top:.07rem;left:50%; transform:translateX(-50%); z-index:1;} 
.hzhb_list li .txt .mask img{width:80%;display:block;}
.hzhb_list li .txt .box{position:relative;top:.1rem;z-index:2;max-width:1.6rem;margin:0 auto;height:100%;}
.hzhb_list li .txt h3{font-size:.19rem;text-align:center;line-height:1.4; font-family:'MiSans';}
.hzhb_list .pic{overflow:hidden;}
.hzhb_list .pic img{width:90%;display:block;margin:0 auto;}

@media screen and (max-width:768px) {
.hzhb_list{display: grid;grid-template-columns: repeat(2, 1fr);gap:10px;grid-row-gap: 0;margin-top:0;}
.hzhb_list li .txt{height:80px;}
.hzhb_list li .txt .mask{width:100%;top:2px;} 
.hzhb_list li .txt .mask img{width:90%;}
.hzhb_list li .txt .box{max-width:110px;top:5px}
.hzhb_list li .txt h3{font-size:16px;line-height:1.2;}
.hzhb_list .pic{overflow:hidden;}
.hzhb_list .pic img{width:95%;display:block;margin:0 auto;}
	
}


/*================人才理念=======================*/
.rcln_box_bg{ padding:.8rem 0 1rem;}
.rcln_box .txt .main_tit2{padding:0!important;}
.rcln_box .txt{width:46%;position:relative;}
.rcln_box .txt .con{margin-top:.35rem;}
.rcln_box .txt p{line-height:2; text-align:justify;font-size:.16rem;color:#666;margin-bottom:.2rem;}
.rcln_box .txt .img{position:absolute;bottom:.35rem;right:.5rem;overflow:hidden;}
.rcln_box .txt .img img{width:100%;display:block; opacity:.8;}
.rcln_box .pic{width:46%;overflow:hidden;border-radius:10px;}
.rcln_box .pic img{width:100%;display:block;}
@media screen and (max-width:768px) {
.rcln_box_bg{padding:30px 0 40px;}
.rcln_box .txt{width:100%;}
.rcln_box .txt .con{margin-top:15px;}
.rcln_box .txt p{line-height:1.8; font-size:14px;margin-bottom:10px;}
.rcln_box .txt .img{bottom:30px;right:0;}
.rcln_box .pic{width:100%;margin-top:15px;border-radius:4px;}
}

/*================员工福利=======================*/
.ygfl_bg{background:#f8f8f8;padding-bottom:1rem;}
.ygfl_box{display: grid;grid-template-columns: repeat(4, 1fr);gap: .3rem;margin-top:.5rem;}
.ygfl_box li{position:relative;padding:.4rem .4rem;box-sizing:border-box;background:#fff;border-radius:10px;}
.ygfl_box li h3{font-size:.22rem;margin-bottom:.2rem;}
.ygfl_box li p{font-size:.16rem;color:#999;line-height:2;}
.ygfl_box li .ico{width:1rem;height:1rem;border-radius:100%;background:#fff;box-shadow: 0px 7px 33.48px 2.52px rgba(25, 17, 64, 0.09);position: absolute;top: -.5rem;right: .4rem; transition:all .5s;}
.ygfl_box li .ico img{width:.45rem;transition:all .5s;}
.ygfl_box li:hover .ico{background:var(--main_color);}
.ygfl_box li:hover .ico img{filter: grayscale(100%) brightness(6000%);}


.page_join_bg3{padding-bottom:1rem;}
.join_gshd{display: grid;grid-template-columns: repeat(4, 1fr);gap: .25rem;}
.join_gshd li{overflow:hidden;border-radius:8px;}
.join_gshd li img{width:100%;display:block;}
.join_link{margin-top:1rem;}
.join_link h4{text-transform:uppercase;font-size:.3rem;font-weight:normal;}
.join_link h3{font-size:.4rem;margin:.25rem 0;}
.join_link a{width:3rem; background:var(--main_color); color:#fff; text-align:center;line-height:.6rem;margin-top:.2rem;font-size:.18rem; border-radius:4px; transition:all .5s;}
.join_link a:hover{background:var(--main_color); color:#fff;}


@media screen and (max-width:768px) {
.ygfl_bg{padding-bottom:0;}
.ygfl_box{grid-template-columns: repeat(1, 1fr);gap: 0;margin-top:20px;}
.ygfl_box li{padding:25px 20px;border-radius:6px;margin-bottom:40px;}
.ygfl_box li h3{font-size:18px;margin-bottom:10px;}
.ygfl_box li p{font-size:14px;line-height:1.8;}
.ygfl_box li .ico{width:70px;height:70px;top: -30px;right: 20px;}
.ygfl_box li .ico img{width:30px;}

.page_join_bg3{ }
.join_gshd{grid-template-columns: repeat(2, 1fr);gap:10px;}
.join_gshd li{border-radius:4px;}
.join_link{margin-top:40px;}
.join_link h4{font-size:16px;}
.join_link h3{font-size:20px;margin:15px 0;}
.join_link a{width:240px;line-height:46px;margin-top:10px;font-size:16px;;}
.join_link a:hover{border-radius:46px;}
}

/*=======================招聘信息=======================*/
.job_tit{ text-align:center; margin-top:.68rem; margin-bottom:.5rem;}
.job_tit .tt{ font-size:.42rem; color:#000; line-height:1.4; font-weight:bold;}
.job_tit p{ font-size:.18rem; margin-top:.25rem; color:#888;}
@media screen and (max-width:768px) {
.job_tit{ margin-top:35px; margin-bottom:35px;}
.job_tit .tt{ font-size:20px; line-height:1.5;}
.job_tit p{ font-size:13px; margin-top:15px; color:#666;}
}
/*======================招聘岗位======================*/
.job_list{ margin-bottom:.8rem; display: grid;grid-template-columns: repeat(3, 1fr);gap: .25rem;}
.job_list li{}
.job_list li a{display:block; background:#f8f8f8; padding:42px 32px; border-radius:5px; width:100%; box-sizing:border-box; transition:0.3s all;}
.job_list li a:hover{background:var(--main_color); color:#fff;}
.job_list li a:hover i,.job_list li a:hover span{color:#fff;}
.job_list li .tit{ font-size:20px; font-weight:bold; margin-bottom:.5rem;}
.job_list li .tit i{ float:right; font-size:30px; color:var(--main_color); opacity:0.6; margin-top:-.1rem;  transition:0.3s all;}
.job_list li .txt span{font-size:16px; color:#666; display: flex;align-items: center;transition:0.3s all;}
.job_list li .txt span i {display: block;width: 20px;height: 20px;margin-right: 8px;background-repeat: no-repeat;background-size: cover;}
.job_list li .txt .line {margin-left: 24px;margin-right: 24px; margin-top: 2px;width: 2px;height: 15px; background-color: rgba(0, 0, 0, 0.10);}
.job_list li .txt .job_edu i {background-image: url(../images/job_1.svg);}
.job_list li:hover .txt .job_edu i {background-image: url(../images/job_1_h.svg);}
.job_list li .txt .job_year i {background-image: url(../images/job_2.svg);}
.job_list li:hover .txt .job_year i {background-image: url(../images/job_2_h.svg);}
.job_list li:hover .txt .line { background-color: rgba(255, 255, 255, 0.5);}
@media screen and (max-width:768px) {
.job_list{ margin-bottom:.8rem; display: grid;grid-template-columns: repeat(1, 1fr);gap: 15px;}
.job_list li a{ padding:25px 20px;}
.job_list li .tit{ font-size:17px; margin-bottom:.5rem;}
.job_list li .tit i{ font-size:28px; opacity:0.6; margin-top:-10px; }
.job_list li .txt span{font-size:15px;}
}


/*招聘弹窗*/
.tc_join{width:925px; max-width:90%; background:#fff; /*min-height:480px;*/ padding:60px; box-sizing:border-box; border-radius:10px; position: relative;z-index: 1;}
.tc_join .close{position:absolute; top:25px; right:20px; cursor:pointer;}
.tc_join .close img{height:30px;}

.tc_join .tit{}
.tc_join .tit h4{ font-size:25px; margin-bottom:.25rem;}
.tc_join .tit p{ color:#888; font-size:15px;}
.tc_join .tit p span{ display:inline-block; margin-right:20px;}
.tc_join .tit p i{ margin-right:5px;}

.tc_join .scrollbox{max-height:360px; overflow: auto; padding-right:.5rem;}
.scrollbox::-webkit-scrollbar {width: 3px;height: 8px;background-color: #f8f8f8;}
.scrollbox::-webkit-scrollbar-track {border-radius: 10px;background-color: #E2E2E2;}
.scrollbox::-webkit-scrollbar-thumb {border-radius: 10px;-webkit-box-shadow:none;background-color:var(--main_color);}

.tc_join .con{ line-height:2; font-size:15px; color:#666;}
.tc_join .con h5{font-size:18px; margin:30px 0 10px 0; color:#333;}
@media screen and (max-width:768px) {
.tc_join{width:95%; max-width:95%;  padding:25px 20px; border-radius:10px; }
.tc_join .close{ top:15px; right:5px; }
.tc_join .close img{height:30px;}

.tc_join .tit{}
.tc_join .tit h4{ font-size:18px; margin-bottom:15px;}
.tc_join .tit p{  font-size:14px;}
.tc_join .tit p span{ display: block; margin-right:0; margin-bottom:10px;}
.tc_join .tit p i{ margin-right:5px;}
.tc_join .con{ line-height:1.8; font-size:14px; }
.tc_join .con h5{font-size:16px; margin:10px 0 5px 0; }

}

.job_bottom{padding-top: 48px;padding-bottom: 1rem;border-top: 1px solid rgba(0, 0, 0, 0.10);}
.job_bottom .tit{ font-size:.3rem; font-weight:bold; color:#000; line-height:1.5;}
.job_bottom .desc{ font-size:16px; margin-top:.2rem; color:#888;}
.job_bottom ul{ margin-top:.8rem;}
.job_bottom li{}
.job_bottom li img{ margin-right:16px;}
.job_bottom li h3{ font-size:20px; margin-bottom:.1rem;}
.job_bottom li p{ font-size:16px; color:#666;}
.job_bottom .line{margin-left: 20px;margin-right: 20px;width: 1px;height: 56px;background-color: rgba(0, 0, 0, 0.10);}
@media screen and (max-width:768px) {
.job_bottom{padding-top:35px;padding-bottom: 40px; }
.job_bottom .tit{ font-size:17px;}
.job_bottom .desc{ font-size:14px; margin-top:15px; }
.job_bottom ul{ margin-top:.6rem;}
.job_bottom li{width:100%; margin-bottom:20px; border-bottom:solid 1px #e8e8e8; padding-bottom:20px;}
.job_bottom li img{width:45px; margin-right:12px;}
.job_bottom li h3{ font-size:16px; margin-bottom:10px;}
.job_bottom li p{ font-size:14px; color:#666;}
.job_bottom .line{ display:none;}
}

/*========================新闻通用样式==============================*/

/*样式1*/
.news_list_art li{ width:49%;  margin-bottom:.25rem; position:relative; background:#fff; border:solid 1px #e8e8e8; border-radius:0px; box-sizing:border-box; transition:0.3s all;}
.news_list_art li a{display:block;padding:.3rem;}
.news_list_art li:before{ content:''; width:0; height:2px; background:var(--main_color); display:block; position:absolute; right:0; bottom:-1px; z-index:2; transition:0.6s all;}
.news_list_art li:hover:before{ width:100%; left:0;}
.news_list_art li .tit{font-size:.2rem; font-weight:bold;  margin-bottom:25px;}
.news_list_art li .desc{ color:#666; line-height:1.8; margin-bottom:25px;}
.news_list_art li .info span{ font-size:13px;  margin-right:15px; color:#999; }
.news_list_art li .arr{ display:none;}

@media screen and (max-width:768px) {
.news_list_art li{ width:100%; margin-bottom:12px;  border:0; border-bottom:solid 1px #e8e8e8; border-radius:0px;}
.news_list_art li a{padding:0 0 15px 0;}
.news_list_art li .tit{font-size:15px; line-height:1.6; font-weight:normal; margin-bottom:10px;}
.news_list_art li .desc{ display:none;}
.news_list_art li .info span{ margin-right:10px; font-size:12px;}
.news_list_art li .arr{color: #aaa;float: right; margin-top: 15px; display:block;}
}

/*样式2*/
.page_news_bg{ padding-bottom:.5rem; background:#fff;}
.pic_art_list {display: grid;grid-template-columns: repeat(3, 1fr);gap: .4rem;}
.pic_art_list li{ background:#fff; transition:0.3s all; border-radius:.1rem; overflow:hidden; border-bottom: 2px solid #fff;box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);}
.pic_art_list li .pic{overflow:hidden;}
.pic_art_list li .pic img{width:100%; height:100%; objtct-fit:cover; display:block; transition: all 0.5s ease;}
.pic_art_list li:hover .pic img{ transform:scale(1.1); }
.pic_art_list li:hover{-webkit-transform: translate(0, -5px);transform: translate(0, -5px);border-color: var(--main_color);box-shadow: 0 0 15px rgba(0, 0, 0, .15);}

.pic_art_list li .txt{ padding:.3rem;}
.pic_art_list li .txt .time{margin-bottom:.15rem; color:#555;}
.pic_art_list li .txt h2{font-size:.2rem;line-height:1.3; margin-bottom:.15rem;}
.pic_art_list li .txt .desc{line-height:1.6;color:#777; }

@media screen and (max-width:768px) {
.page_news_bg{ background:#fff;}
.pic_art_list { grid-template-columns: repeat(1, 1fr);gap:20px;}
.pic_art_list li{border-color: #c7000a;box-shadow: 0 0 15px rgba(0, 0, 0, .15);}
.pic_art_list li .pic{ max-height:200px;}

.pic_art_list li .txt{ padding:20px;}
.pic_art_list li .txt .time{margin-bottom:12px;}
.pic_art_list li .txt h2{font-size:17px;line-height:1.3; margin-bottom:12px;}
}




/*===================联系我们================*/

/*.page_lxfs_bg{padding-bottom:.8rem;}
.page_lxfs_box{ padding:.8rem 0 .4rem;}
.page_lxfs_box .tit{ font-size:.42rem; font-weight:bold; line-height:1.2;}
.page_lxfs_box li{}
.page_lxfs_box li:first-child{ margin-right:.5rem; padding-right:.5rem; border-right:solid 1px #ddd;}
.page_lxfs_box li .ico{ margin-right:.15rem;}
.page_lxfs_box li .ico img{ }
.page_lxfs_box li .txt{}
.page_lxfs_box li .txt h3{ font-size:15px; margin-bottom:6px;}
.page_lxfs_box li .txt p{}
@media screen and (max-width:768px) {
.page_lxfs_box{ padding:35px 0 25px;}
.page_lxfs_box .tit{ font-size:20px; line-height:1.3; text-align:center; width:100%; margin-bottom:25px;}
.page_lxfs_box .box{width:100%; display:block;}
.page_lxfs_box li{width:100%; margin-bottom:20px; padding-bottom:20px; border-bottom:solid 1px #e8e8e8;}
.page_lxfs_box li:first-child{ margin-right:0; padding-right:0;border-right:0; }
.page_lxfs_box li .ico{ margin-right:10px; }
.page_lxfs_box li .ico img{ height:30px;}
.page_lxfs_box li .txt h3{ font-size:15px; margin-bottom:6px;}

}

.page_lx_list{display: grid;grid-template-columns: repeat(3, 1fr);gap: .3rem; }
.page_lx_list li{background:#f6f6f6; padding:.35rem .5rem; border-radius:.1rem;}
.page_lx_list li .ico{ margin-bottom:.3rem;}
.page_lx_list li .ico img{ height:.5rem; }
.page_lx_list li h3{font-size:.22rem; margin-bottom:.25rem;}
.page_lx_list li .box{line-height:1.5;}
.page_lx_list li dl{ margin-bottom:5px; line-height:1.5;}
.page_lx_list li dt{width:46px;}
.page_lx_list li dd{ flex:1;}
@media screen and (max-width:768px) {
.page_lx_list{display: grid;grid-template-columns: repeat(1, 1fr);gap: 15px; }
.page_lx_list li .ico{ margin-bottom:.3rem;}
.page_lx_list li .ico img{ height:42px; }
.page_lx_list li h3{font-size:16px; margin-bottom:.25rem;}
.page_lx_list li .box{line-height:1.5;}
.page_lx_list li dl{ margin-bottom:5px; line-height:1.3;}
.page_lx_list li dt{width:46px;}
.page_lx_list li dd{ flex:1;}

}*/

.lxfs_bg{background:#fff; background-size: cover; }
.page_lx{ border-radius:10px;overflow:hidden; border-bottom:solid 1px #e8e8e8; padding-bottom:.68rem;}
.page_lx li{width:30%; text-align:center; font-size:16px; line-height:1.8; }
/*.page_lx li:first-child{font-size:16px;}*/
.page_lx li img{}
@media screen and (max-width:768px) {
.page_lx li{width:100%; font-size:15px; line-height:1.6; background:#f4f5f7; padding:15px; box-sizing:border-box; margin-bottom:15px;}

}


/*===================留言================*/
.hezuo_bg{ position:relative; max-height:4.6rem; overflow:hidden;}
.hezuo_bg .txt{ position:absolute; left:0; top:1rem; right:0; text-align:center; color:#fff;}
.hezuo_bg .txt h3{ font-size:.42rem; margin-bottom:.2rem;}
.hezuo_bg .txt p{ font-size:.2rem;}
@media screen and (max-width:768px) {
.hezuo_bg{max-height:4.6rem; height:180px;}
.hezuo_bg .txt{ position:absolute; left:0; top:1rem; right:0; text-align:center; color:#fff;}
.hezuo_bg .txt h3{ font-size:20px; margin-bottom:.2rem;}
.hezuo_bg .txt p{ font-size:14px;}

}



/*合作表单*/
.cooperate_form{border-radius:.2rem;box-shadow: 0px 0px 20px 0px rgb(20 18 18 / 5%);background: #fff;padding:.1rem 10% .3rem;max-width: 1280px;box-sizing: border-box;margin: -1.8rem auto .8rem;position: relative;}
.cooperate_form .desc{font-size:.16rem;text-align:center;margin-bottom:.5rem;}

.cooperate_form .form{}
.cooperate_form .ly_tit{font-weight:normal;font-size:16px;color:#333;margin-bottom:15px;}
.cooperate_form .ly_tit i{font-style:normal;color:rgba(255,0,0,1);margin-right:5px;}
.cooperate_form .message_input {margin-bottom:25px;}
.cooperate_form .message_input input::-webkit-input-placeholder,
.cooperate_form .message_input textarea::-webkit-input-placeholder{font-size:16px;font-family:Microsoft Yahei;color:#999;}
.cooperate_form .message_input li{ width: 49%;} 
.cooperate_form .message_input input{border: 1px solid #d1d8de;outline: none; width: 100%;padding:22px 20px; border-radius:5px;  box-sizing:border-box;} 
.cooperate_form .message_input select{background:#fff;border: 1px solid #d1d8de;outline: none; width: 100%;padding:18px 20px; border-radius:5px;  box-sizing:border-box;font-size:16px;font-family:Microsoft Yahei;color:#999;} 
.cooperate_form .message_input input::-webkit-input-placeholder {} 
.cooperate_form .message_input textarea{font-size:16px; display: block;border: 1px solid #d1d8de;outline: none; width: 100%;padding: 20px 20px;box-sizing: border-box;min-height:150px; border-radius:5px;} 
.cooperate_form .form-group {width:70%;position:relative;}
.cooperate_form .form-group img{position:absolute;right:0;top:50%; transform:translateY(-50%);background:rgba(204,204,204,.2);height:100%; padding:0 10px;border-radius:0 5px 5px 0;}
/*.cooperate_form .form-group input{ margin-right:1%;  margin-bottom:.2rem;}*/
.cooperate_form .message_input .submit{ border:none;outline: none; font-size:.2rem; margin:15px auto 0; cursor:pointer; text-align:center; color:#fff; background:var(--main_color); font-family:"微软雅黑"; transition:0.3s all; width:2.8rem; line-height:60px; border-radius:.1rem;}
.cooperate_form .message_input textarea::-webkit-input-placeholder{}
.cooperate_form .message_input .submit i{margin-left:.25rem;}
.cooperate_form .message_input input:focus,.message_input textarea:focus{border:solid 1px var(--main_color);}

@media screen and (max-width:768px) {
.cooperate_form{margin:-50px 15px 50px;padding:1px 25px 40px;box-sizing:border-box; }
.cooperate_form .page_tit{margin-bottom:10px;}
.cooperate_form .desc{font-size:14px;margin-bottom:15px;line-height:1.6;}

.cooperate_form .form{width:100%;margin:0 auto;}	
.cooperate_form .ly_tit{display:none;font-size:14px;margin-bottom:5px;line-height:1.6;}

.cooperate_form .message_input input::-webkit-input-placeholder,
.cooperate_form .message_input textarea::-webkit-input-placeholder{color: #999; font-size:14px;}
.cooperate_form .message_input {margin-bottom:0;}
.cooperate_form .message_input1{margin-bottom:15px;}
.cooperate_form .message_input li{ width:100%; margin-bottom:10px;} 
.cooperate_form .message_input input{padding:14px 15px;} 
.cooperate_form .message_input select{padding:10px 15px;font-size:14px;}
.cooperate_form .message_input textarea{min-height:100px;padding: 15px 15px;}
.cooperate_form .message_input .submit{width:100%; line-height:42px;margin-top:20px;font-size:16px;border-radius:42px;}

.cooperate_form .form-group {width:100%;}
.cooperate_form .form-group img{width:100px;padding:0 10px;}
	
}







/*===================内容页================*/
.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: 100px;}


.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:.33rem;line-height:1.5;  color:#000; }
.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;  }
.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; }
#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:18px;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;}

}

/*相关阅读*/
.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 li{ margin-bottom:.4rem;}
.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:.1rem;}
.side_news_list li:hover .pic img{ transform:scale(1.1);}


/*上一篇下一篇*/
.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:.5rem 0 0 0;}
.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;
    }
}
.main_tit{position:relative;}

@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;}	
}



.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;}
