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

@font-face{font-family:'dinpro4'; src: url('../font/D-DIN-PRO-400-Regular.otf');}
@font-face{font-family:'dinpro5'; src: url('../font/D-DIN-PRO-500-Medium.otf');}
@font-face{font-family:'dinpro6'; src: url('../font/D-DIN-PRO-600-SemiBold.otf');}
@font-face{font-family:'dinpro7'; src: url('../font/D-DIN-PRO-700-Bold.otf');}
@font-face{font-family:'dinpro8'; src: url('../font/D-DIN-PRO-800-ExtraBold.otf');}
@font-face{font-family:'dinpro9'; src: url('../font/D-DIN-PRO-900-Heavy.otf');}
@font-face{font-family:'monr'; src: url('../font/Montserrat-Regular.otf');}
@font-face{font-family:'monb'; src: url('../font/Montserrat-Bold.otf');}
@font-face{font-family:'monl'; src: url('../font/Montserrat-Light.otf');}
@font-face{font-family:'monm'; src: url('../font/Montserrat-Medium.otf');}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,p,form,img,select,figure{margin:0; padding:0;}
body{ color: #333;  font-size:14px; font-family: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:10px;}
.mt20{margin-top:20px;}
.mt30{margin-top:30px;}
.mt40{margin-top:40px;}
.mt50{margin-top:50px;}
.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:inline-block;}
.only_m_show{display:none;}
img.pic_cover{width:100%; height:100%;object-fit:cover; display:block;}
.main{width:90%; margin: auto; max-width: 1500px;}

@media screen and (max-width:768px) {
	body{font-size:14px; }
	.main{width:100%; padding:0 15px; box-sizing:border-box;}
	.only_pc_show{ display:none;}
	.only_m_show{ display:block;}
}
.flex_space{display:flex;justify-content:space-between; flex-wrap:wrap;}
.flex_start{display:flex;justify-content: flex-start;flex-wrap:wrap;}
.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_left_center_nowrap{display:flex; justify-content: flex-start;align-items: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%; position:fixed;/* background:#fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/ transition:0.5s all; padding:0 2%; box-sizing:border-box;}
/*.header:before{ content:""; position:absolute; bottom:0; left:0; width:0; height:1px; background:rgba(255,255,255,0.2); transition:1s}
.header.on:before{ width:100%}*/
.header .logo {height:.9rem; transition:0.5s all;}
.header .logo img{display:block;height:.6rem; /*filter: grayscale(100%) brightness(6000%);*/}

/*下拉菜单*/
.navBox { box-sizing:border-box; position:relative; transition:0.5s all;}
.navBox .nav{display:flex; height:100%;}
.navBox .nav li { position: relative;}
.navBox .nav li>a {padding: 0 .25rem; position: relative; height:100%; display:flex; justify-content:center;align-items:center; }
.navBox .nav li>a .txt {position: relative;z-index: 2;font-size:15px;color:#333;transition:0.5s all; font-family:MiSans;}
.navBox .nav li.active>a .txt{ color:#fff;}
.navBox .nav>li.curr>a .bg {background: var(--main_color);position: absolute;left: 50%; margin-left:-9px; border-radius:20px; bottom:.22rem;width:18px;display: block;height:3px;transition: 0.5s;}

.navBox .nav>li>a:after{ content:''; display:block; z-index:-1; width:100%; height:0; position:absolute; left:0; bottom:0; background:var(--main_color); transition:0.5s all;}
.navBox .nav>li:hover>a:after{height:100%; left:0; bottom: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:.15rem 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; }

/*解决方案下拉*/
.jjfa_nav{ position:fixed; width:100vw; top:.9rem;left:0;background:#fff;padding:.35rem 0; border-top:solid 0px #e8e8e8; z-index:9; box-shadow:0 5px 10px rgba(0,0,0,.15); pointer-events:none; transform:translateY(20px); transition:all .5s; opacity:0;}
.navBox .nav>li.active .jjfa_nav{pointer-events:all; transform:translateY(0px); opacity:1;}
.jjfa_nav dl{margin-right:3%; border-right:solid 1px #eee; box-sizing:border-box;}
.jjfa_nav dl{width:30%;}
.jjfa_nav dl:last-child{margin-right:0;  border-right:0;}
.jjfa_nav dl dt{ border-bottom:solid 0px #ddd; height:32px; margin-bottom:.15rem}
.jjfa_nav dl dt h3{font-size:.2rem; color:var(--main_color); position:relative; height:32px;}
.jjfa_nav dl dt h3 img{ margin-right:.1rem; height:.25rem;}
/*.jjfa_nav dl dt h3:after{content:''; display:block; width:100%; height:2px; background:var(--main_color); position:absolute; left:0; bottom:-1px;}*/
.jjfa_nav dl .tit2 { display:inline-block;  margin-bottom:6px;}
.jjfa_nav dl .tit2 a{ background:var(--main_color); color:#fff; line-height:32px; padding:0 .25rem; border-radius:5px; display:block;}

.jjfa_nav dl dd { margin-bottom:.2rem;}
.jjfa_nav dl dd a{width:100%; line-height:2; position:relative; padding-left:15px; box-sizing:border-box;}
.jjfa_nav dl dd a:before{ content:''; display:block; width:5px; height:5px; border-radius:50%; background:var(--main_color); position:absolute; left:0; top:50%; transform:translateY(-50%);}
.jjfa_nav dl:last-child a{}
.jjfa_nav dl dd a em{ font-style:normal; position:relative;}
.jjfa_nav dl dd a em:after{content:''; display:block; width:0; height:1px; background:var(--main_color); position:absolute; left:0; bottom:-3px; transition:all .5s; }
.jjfa_nav dl dd a:hover em:after{width:100%;}

/*======================搜索======================*/
.header .top_serch{width:.68rem; transition:0.5s all; position:relative; }
.header .top_serch a{height:100%;}
.header .top_serch a svg{width:18px; fill:var(--main_color);  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(0,0,0,.25); display:block;position: absolute;right: 0;top: 50%;transform: translate(0,-50%);transition: 0.5s all;}

.header .tc{transition:all ease 300ms;position: fixed;width: 100%;height: 100%;top: 0;left: 0;z-index: 99; 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:var(--main_color); font-size:.25rem; transition:0.5s all; margin-left:.25rem; font-family:MiSans;}
.header .tel svg{width:.25rem; fill:var(--main_color); margin-right:6px; transition:0.5s all;}
.header_scroll .tel,.header_white .tel{ color:var(--main_color);}
.header_scroll .tel svg,.header_white .tel svg{fill: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:#333;border-radius:3px;}
.m_nav_btn .line:before,.m_nav_btn .line:after{content: '';width: 100%;height: 3px;left: 0;position: absolute;background:#333;border-radius:3px;transition-duration: 0.3s,0.3s;transition-delay: 0.1s,0s;}
.m_nav_btn .line:before{transition-property: bottom,transform;bottom: 8px;}
.m_nav_btn .line:after{transition-property: top,transform;top: 8px;}
.m_nav_btn_active .line {background: transparent;-webkit-transition-delay: 0s,0s;-moz-transition-delay: 0s,0s;-ms-transition-delay: 0s,0s;-o-transition-delay: 0s,0s;transition-delay: 0s,0s}
.m_nav_btn_active .line:after,.m_nav_btn_active .line:before {-webkit-transition-delay: 0s,.1s;-moz-transition-delay: 0s,.1s; -ms-transition-delay: 0s,.1s; -o-transition-delay: 0s,.1s; transition-delay: 0s,.1s}
.m_nav_btn_active .line:before {bottom: 0px;-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-o-transform: rotate(45deg);transform: rotate(45deg)}
.m_nav_btn_active .line:after {top:0px;-webkit-transform: rotate(-45deg);-moz-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);}

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

.m_top_blank{ display:none;}

@media screen and (max-width:768px) {
.header{ height:60px; box-shadow: 0 2px 10px rgba(0,0,0,0.25);}
.header .logo{height:60px;}
.header .logo img{ height:35px; filter: grayscale(0%) brightness(100%);}
.header_scroll.header:before{ background:rgba(0,0,0,0);}

.header_right,.navBox{display:none;}
.m_header_right{display:block;}
.m_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:20px; font-family:din; color:#fff; background:var(--main_color); padding:15px; border-radius:5px; letter-spacing:1px;} 
.m_tel i{ font-size:18px; margin-right:5px;}
}

/*鼠标经过header*/
.bodymouse .header{ background:#fff;}

/*header下拉*/
.header_scroll {background:#fff; box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);transition: all .4s ease;}




/*======================轮播图======================*/
#banner {width:100%;  position:relative; z-index:0;}
#banner .swiper-slide { overflow: hidden;} 
#banner .swiper-slide .pic{height:100vh;}
#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 .swiper-slide .txt{ position:absolute;z-index: 999;left:0;top:0; width:100%; height:100%;/*text-shadow:rgba(0,0,0,0.3) 0px 1px 10px;*/}
#banner .swiper-slide .txt h3{font-size:2.8vw; color:#000; margin-bottom:.25rem;line-height:1.2; /*transform:translateY(200px);opacity:0;*/transition:all 0.3s; }
#banner .swiper-slide .txt p{font-size:1.2vw; color:#000; line-height:1.8;/*transform:translateY(200px);opacity:0;*/transition:all 0.6s;}

#banner a{ margin:.35rem 0 .5rem;}

#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,.1);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(46,110,225,.05); background:rgba(46,110,225,.1); 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:var(--main_color);
 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:2rem; left:50%; transform:translateX(-50%); width: 90%;max-width: 1500px; text-align:left;}
#banner .swiper-pagination-bullet {width:30px;height: 5px;border-radius:5px;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:5px;}
#banner .swiper-pagination-bullet-active:before{width: 100%;transition: all 5s ease; border-radius:3px;}

@media screen and (max-width:768px) {
#banner {}	
#banner .swiper-slide .pic{height:260px; position:relative;}
#banner .swiper-slide{display: block;}
#banner .swiper-slide .txt { box-sizing:border-box; }
#banner .swiper-slide .txt h3{ font-size:20px; margin-top:0px; margin-bottom:12px;}
#banner .swiper-slide .txt p{font-size:14px; }
#banner .draw_h{display:none;}
#banner .swiper-pagination{bottom:auto; top:230px; text-align:center;}
#banner .swiper-pagination-bullet {width:30px;}
}	


.my_btn_more a{ background:#017ffd; width:1.6rem; height:.52rem; border-radius:.6rem; box-sizing:border-box; font-size:.16rem; color:#fff; position:relative; overflow:hidden;}
.my_btn_more a span{ margin-right:.15rem;}
.my_btn_more a span,.my_btn_more a svg{ position:relative; z-index:1;}
.my_btn_more a:before{content: "";width: 1.6rem;height: 1.6rem;border-radius: 50%;z-index: 0;opacity: 0;transform: translate3d(-50%, -50%, 0) scale(0);
    background: #1c47c9;position: absolute;top: 50%;left: 50%;transition: all 0.4s ease-out;}
.my_btn_more a:hover:before{transform: translate3d(-50%, -50%, 0) scale(1);opacity: 1;}
@media screen and (max-width:768px) {
.my_btn_more a{width:125px; height:38px; border-radius:38px; font-size:14px;}
.my_btn_more a span{ margin-right:10px;}
.my_btn_more a:before{content: "";width:125px;height:125px;}
}


/*==========页面标题=============*/
.main_tit{padding:.8rem 0 .5rem;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: 20px auto auto auto; border-radius:5px;}
.main_tit p{ margin:10px auto 0;font-size:.18rem; color:#444;  line-height:1.8;}

@media screen and (max-width:768px) {
.main_tit{padding:30px 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:15px; }
.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;}

}


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

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

.lean_more a.is_dark{border:solid 2px #fff; color:#fff;}
@media only screen and (max-width: 768px){
.lean_more a{padding:0 20px; height:40px;font-size:14px;}
	
}


/*==========首页-数字跳动=============*/

/*数字*/
.index_shuzi{position:absolute;left:0;bottom:.5rem;width:100%; z-index:10;}
.index_shuzi .main{backdrop-filter: blur(20px); background-color: rgba(255, 255, 255, 0.6);border-radius:10px;padding:.1rem .3rem;box-sizing:border-box;box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);}
.index_shuzi li .ico img{width:.8rem;}
.index_shuzi li .txt{width:calc(100% - .9rem);}
.index_shuzi li{width:25%; color:#000; position:relative;  box-sizing:border-box;font-size:.2rem;}
.index_shuzi li i{font-size: .3rem; font-style:normal; margin-right:2px; font-family:"MiSans"; font-weight:bold;}
.index_shuzi li span{font-size:.16rem; font-weight:normal; }
.index_shuzi li strong{font-size:.16rem; font-weight:normal;}
.index_shuzi li p{ font-size:.14rem; margin-top:.1rem; color:#666;}

@media only screen and (max-width: 768px){
.index_shuzi{border-radius:5px;padding:20px 15px;top:0; position:relative; box-sizing:border-box;}
.index_shuzi .main{ border-radius:10px;padding:.1rem .3rem;}
.index_shuzi li .ico img{width:60px;}
.index_shuzi li .txt{width:calc(100% - 68px);}
.index_shuzi li{width:100%;}
.index_shuzi li i{font-size:20px; margin-right:2px;}
.index_shuzi li span{font-size:12px;}
.index_shuzi li strong{font-size:12px;}
.index_shuzi li p{ font-size:14px; margin-top:8px;}
}


/*===================首页解决方案====================*/
.jjfa_bg{background: url(../images/bg1.png) no-repeat  center bottom 200px;position:relative; background-size:100% auto; margin-bottom:1rem;}
.jjfa_box li{width:31.5%; min-height:5.2rem; border: 1px solid var(--main_color);background: #fff;border-radius: 19px;box-shadow: rgba(3,43,183,.075) 1px 1px 40px;position: relative;overflow: hidden; box-sizing:border-box; transition:.5s all;}
.jjfa_box li .top{opacity: 1; transition: 0.5s; width:100%; height:100%; position: absolute;left: 0;top: 0; pointer-events: none; background:url(../images/tbi1-lis.png) no-repeat right bottom 25px;}
.jjfa_box li .bot{opacity: 0; transition: 0.5s;}
.jjfa_box li.active .top{opacity: 0;}
.jjfa_box li.active .bot{opacity: 1;}

/*标题*/
.jjfa_box .title {height: 80px;padding:22px 25px; box-sizing:border-box; background: url(../images/tbi1-tit.png) right center no-repeat;overflow: hidden; position:relative;}
.jjfa_box .title img{height:36px;margin-right: 15px;}
.jjfa_box .title h3{font-size:.2rem; color: #fff;}


/*原始状态*/
.jjfa_box li .top .txt{ padding:0 .35rem;}
.jjfa_box li .top .txt h3{position: relative; font-size:.2rem;  text-align:center; margin-top:.4rem;}
.jjfa_box li .top .txt h3::after{content: ''; display:block; width: 25px;height:4px;background: var(--main_color); margin:.15rem auto; border-radius:5px;}
.jjfa_box li .top .txt p{ line-height:2;color:#666; text-align:justify;}
.jjfa_box li .top .pic{ position:absolute; left:0; bottom:.25rem; width:100%; text-align:center;}
.jjfa_box li .top .pic img{max-width:100%;}

.jjfa_box li .bot .txt{ padding:25px 25px 25px 20px;}
.jjfa_box li .bot .txt h5{font-size:16px; color:#000; font-weight:normal; padding-left:30px; position:relative; margin-bottom:15px;}
.jjfa_box li .bot .txt h5 img {max-width:25px;position: absolute;left:0px; top: -2px;}

.jjfa_box li .bot .txt .info{line-height:1.8; text-align:justify; color:#666; font-size:14px; margin:15px 0 20px 30px;}
.jjfa_box li .bot .txt ul{padding-left:30px;}
.jjfa_box li .bot .txt p{position: relative;font-size: 14px;line-height:2; padding-left:16px;color:#666;}
.jjfa_box li .bot .txt p::before{content: '';position: absolute;width: 6px;height: 6px;background:var(--main_color);border-radius: 50%;left:0;top:10px;}
.jjfa_box li .bot .txt .more { margin-top:20px; text-align:center;}
.jjfa_box li .bot .txt .more a{ height:.42rem;}
@media only screen and (max-width: 768px){
.jjfa_bg{background:none;}
.jjfa_box li{width:100%; min-height:5.2rem; border-radius: 15px; margin-bottom:15px;}

.jjfa_box li .bot{opacity: 0; transition: 0.5s;}
.jjfa_box li .top{opacity: 0;}
.jjfa_box li.active .top{opacity: 0;}
.jjfa_box li.active .bot{opacity: 1;}
.jjfa_box li .bot{opacity: 1;}

/*标题*/
.jjfa_box .title {height:60px;padding:15px 20px; box-sizing:border-box; background: url(../images/tbi1-tit.png) right center no-repeat;overflow: hidden; position:relative;}
.jjfa_box .title img{height:33px;margin-right: 12px;}
.jjfa_box .title h3{font-size:18px;}

.jjfa_box li .bot .txt{ padding:20px 20px 20px 15px;}
.jjfa_box li .bot .txt h5{margin-bottom:5px;}
.jjfa_box li .bot .txt h5 img {max-width:25px;position: absolute;left:0px; top: -2px;}

.jjfa_box li .bot .txt .info{line-height:1.6; margin:10px 0 20px 30px;}
.jjfa_box li .bot .txt .more { margin-top:20px; text-align:center;}
.jjfa_box li .bot .txt .more a{ height:38px; width:50%;}

}

/*===================首页我们的优势====================*/
.youshi_bg{background: url(../images/zbg2.jpg) no-repeat center fixed;padding:0 0 .6rem;background-size:cover;}
.youshi_bg .main{ max-width:1200px;}
.youshi_box {margin-top: .25rem;}
.youshi_box li{width:45%; margin-bottom:.5rem; box-sizing:border-box;}
.youshi_box .ico img{}
.youshi_box  .txt{width:calc(100% - 1rem);}
.youshi_box  .txt h3{ font-size:.22rem;color:#000; padding-top:.1rem;}
.youshi_box  .txt p{ line-height:2; text-align:justify;margin-top:.15rem;}


@media only screen and (max-width: 768px){
.youshi_box li{width:100%; margin-top:20px; text-align:center;}
.youshi_box .ico {width:100%;}
.youshi_box .ico img{ height:66px;}
.youshi_box  .txt{width:100%;}
.youshi_box  .txt h3{ font-size:18px; padding-top:.1rem;}
.youshi_box  .txt p{ line-height:1.8; text-align:center;margin-top:10px; font-size:13px; color:#666;}

}

/*=====================滚动组图==============================*/
.scroll_zutu{position:relative;overflow:hidden;padding:0 0 .8rem;}
.scroll_zutu figure .pic{overflow:hidden;border-radius:.1rem;}
.scroll_zutu figure .pic img{width:100%;display:block; transition:0.5s all;}
.scroll_zutu figure:hover .pic img{ transform:scale(1.1);}
.scroll_zutu figure .txt{ margin-top:.25rem;}
.scroll_zutu figure .txt h2{ font-size:.18rem; font-weight:normal; line-height:1.8;}


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

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

@media screen and (max-width:768px) {
.scroll_zutu{padding:0 0 50px;}
.scroll_zutu figure .txt{ margin-top:.15rem;}
.scroll_zutu figure .txt h2{ font-size:16px;}


/*按钮切换*/
.scroll_zutu .swiper-button-prev,.scroll_zutu .swiper-button-next {width:36px;height: 36px;}
.scroll_zutu .swiper-button-prev i,.scroll_zutu .swiper-button-next i{font-size:14px;}
.scroll_zutu .swiper-button-prev{left:0;}
.scroll_zutu .swiper-button-next{left:40px;}

/*分页器*/
.scroll_zutu .swiper-pagination-progressbar{width:77%!important;height:2px!important;}
.scroll_zutu .swiper-pagination { bottom:15px;right:0;}
}


/*================底部快捷=====================*/
.contact_bg { padding:.6rem 0 .5rem; background:url(../images/voice-footer.png) no-repeat center #2e6ee1;background-size: cover; color:#fff; text-align:center; overflow:hidden; margin-top:1rem;}
.contact_bg h2{font-size:.42rem; color:#fff;}
.contact_bg .desc{font-size:.22rem;  margin:.25rem 0;}
.contact_bg .more{ text-align:center;}
.contact_bg a{ display:inline-block; width:1.68rem; line-height:.46rem; border-radius:.52rem; text-align:center; font-size:16px; border: solid 1px #fff; margin:0 .1rem; transition:0.3s all; color:#fff;}
.contact_bg a:first-child{ background:#fff;  margin:0 .15rem; transition:0.3s all; color:var(--main_color);}
.contact_bg a:hover{ background:var(--main_color); color:#fff;}
@media only screen and (max-width: 768px){
.contact_bg h2{font-size:20px;}
.contact_bg .desc{font-size:14px;  margin:15px 0;}
.contact_bg a{ width:35%; line-height:38px;}

}

.hzlc_bg {
	position: relative;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hzlc_bg li {
	position: absolute;
	display: block;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, .15);
	bottom: -160px;
	-webkit-animation: square 28s infinite;
	animation: square 28s infinite;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear
}
.hzlc_bg li:nth-child(1) {left: 10%}
.hzlc_bg li:nth-child(2){
	left: 20%;
	width: 80px;
	height: 80px;
	-webkit-animation-delay: 200ms;
	animation-delay: 200ms;
	-webkit-animation-duration: 17s;
	animation-duration: 17s
}
.hzlc_bg li:nth-child(3){
	left: 25%;
	-webkit-animation-delay: 400ms;
	animation-delay: 400ms
}
.hzlc_bg li:nth-child(4){
	left: 40%;
	width: 60px;
	height: 60px;
	-webkit-animation-duration: 10s;
	animation-duration: 10s;
	background-color: rgba(255, 255, 255, .25)
}
.hzlc_bg li:nth-child(5){
	left: 70%
}
.hzlc_bg li:nth-child(6){
	left: 80%;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
	background-color: rgba(255, 255, 255, .2)
}
.hzlc_bg li:nth-child(7){
	left: 32%;
	width: 100px;
	height: 100px;
	-webkit-animation-delay: 7s;
	animation-delay: 7s
}
.hzlc_bg li:nth-child(8){
	left: 55%;
	width: 20px;
	height: 20px;
	-webkit-animation-delay: 15s;
	animation-delay: 15s;
	-webkit-animation-duration: 40s;
	animation-duration: 40s
}
.hzlc_bg li:nth-child(9){
	left: 25%;
	width: 10px;
	height: 10px;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-duration: 40s;
	animation-duration: 40s;
	background-color: rgba(255, 255, 255, .3)
}
.hzlc_bg li:nth-child(10){
	left: 90%;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 11s;
	animation-delay: 11s
}
 @-webkit-keyframes square {
 0% {
 -webkit-transform: translateY(0);
 transform: translateY(0)
}
 100% {
 -webkit-transform: translateY(-1700px)rotate(600deg);
 transform: translateY(-1700px)rotate(600deg)
}
}
 @keyframes square {
 0% {
 -webkit-transform: translateY(0);
 transform: translateY(0)
}
 100% {
 -webkit-transform: translateY(-1700px)rotate(600deg);
 transform: translateY(-1700px)rotate(600deg)
}
}
 @-webkit-keyframes square_z {
 0% {
 -webkit-transform: translateY(0);
 transform: translateY(0)
}
 100% {
 -webkit-transform: translateY(-700px)rotate(500deg);
 transform: translateY(-700px)rotate(500deg)
}
}
 @keyframes square_z {
 0% {
 -webkit-transform: translateY(0);
 transform: translateY(0)
}
 100% {
 -webkit-transform: translateY(-700px)rotate(500deg);
 transform: translateY(-700px)rotate(500deg)
}
}

/*================底部=====================*/	
.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:.2rem;}
.foot_logo p{color:#8f8f8f; margin-left:.2rem;}

.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:#8f8f8f; margin-top:.5rem; line-height:2.2; font-size:.16rem;}
.foot_box2 span{ margin-right:.25rem;}

.foot_tel{}
.foot_tel a{font-family:'MiSans';color:var(--main_color);font-size:.36rem; font-weight:bold;}
.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:1.08rem;border-radius:5px;}
.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:#8f8f8f;}
.copyright a{color:#8f8f8f;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;}
.foot_logo .pic{width: 100%; display:none;}
.foot_logo .m_pic{ display:flex;}
.foot_logo .m_pic img{height:88px;}
.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,.foot_box2{display:none;}

.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:12px;width:100%;text-align:center;line-height:1.8;}
.copyright a{font-size:12px;}
.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;border-radius:5px;}
.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);}
}

/*--------------------*/


/*--------------------*/

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

.page_ban .txt{position:absolute; left:0; top:0; bottom:0; right:0;  z-index:9; }
.page_ban .txt h2 { font-size:.42rem; color:#000; margin-bottom:.25rem; margin-top:.2rem;}
.page_ban .txt h5 { font-size:.22rem; font-weight:500; color:#333; }

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

@media screen and (max-width:768px) {
.page_ban .pic{height:160px;}
.page_ban .txt h2 { margin-top:10px;font-size:20px;} 
.page_ban .txt h5 { font-size:15px; max-width:80%; line-height:1.5;}
.page_ban:before {display:none;}
}

	
	
/*位置*/
.sub_weizhi{height:60px; background:#fff; border-bottom:solid 1px #e8e8e8; position:relative; z-index:9;/*box-shadow: 0 1px 5px rgba(0,0,0,0.1);*/}
.sub_weizhi .weizhi{ color:#333; position: relative;  display:flex; align-items:center;}
.sub_weizhi .weizhi a{color:#333;}
.sub_weizhi .weizhi i.ico { margin-right:10px;}
.sub_weizhi .weizhi i.ico svg {height: 20px;width: 20px; fill:#333;}
.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; background:#f8f8f8;}
.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:125px; 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:20px; height:20px;  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); }
}
	


/*======================公司简介======================*/
.page_about{max-width:1200px; margin:.8rem auto 1.25rem auto;}
.page_about .pic{max-width:380px; position:relative;}
.page_about .pic:before {position: absolute;left: 0px;top: 0px;display: block;content: "";transform: translate(20px, 20px);width: 100%;height: 100%;background: rgba(49, 83, 212, 0.1); z-index:-1;}
.page_about .pic img{max-width:100%;}
.page_about .txt{width:60%; max-width:720px;}
.page_about .txt .tit{font-size:.36rem; font-weight:bold; color:#000; }
.page_about .txt .line{display: block;width: 0.3rem;height:5px; background: var(--main_color);border-radius: 10px; margin: .25rem 0 .25rem;}
.page_about .txt .con{font-size:16px; line-height:2; text-align:justify; color:#555;}
.page_about .txt .con p{margin-bottom:20px;}
@media screen and (max-width:768px) {
.page_about{margin:.8rem auto .8rem auto;}
.page_about .pic{width:68%; margin:auto; margin-bottom:12px;}
.page_about .pic:before {transform: translate(15px, 15px);}
.page_about .txt{width:100%; margin-top:25px;}
.page_about .txt .tit{font-size:18px; text-align:center;}
.page_about .txt .line{margin: 10px auto 10px; width: 0.4rem;}

.page_about .txt .con{font-size:15px; line-height:1.8; color:#333;}
.page_about .txt .con p{margin-bottom:10px;}

}


/*===================企业文化================*/
.qywh_bg{background: url(../images/qywh_bg2.jpg) center no-repeat fixed;background-size:cover;}
.qywh_box1{ padding-bottom:1rem;}
.qywh_box1 li{width:23.5%;background: #fff;padding: .5rem .5rem; box-shadow: 1px 1px 30px #eee; border-radius: 10px; box-sizing:border-box; text-align:center;}
.qywh_box1 .ico{border: solid #e8e8e8 1px;border-radius: 50%;width: 86px;height: 86px;padding: 20px; margin:auto; box-sizing:border-box;}
.qywh_box1 .ico img{}
.qywh_box1 h3{font-size: .22rem;line-height: 40px;position: relative;padding: 20px 0 15px;}
/*.qywh_box1 h3:after {width:.2rem;background: var(--main_color);height: 3px;content: ''; display:block; margin:10px auto 0;}*/
.qywh_box1 p{font-size: .16rem; color:#666; line-height:1.6; text-align: center;}
@media screen and (max-width:768px) {
.qywh_box1 li{width:100%; padding:25px; border-radius: 10px; margin-bottom:15px;}  
.qywh_box1 .ico{width: 66px;height: 66px;padding: 10px; }
.qywh_box1 .ico img{ max-width:68%;}
.qywh_box1 h3{font-size:18px;line-height:30px; padding:10px 0;}
.qywh_box1 h3:after {width:25px; margin:10px auto 0;}
.qywh_box1 p{font-size: 16px; }
}


/*=======================荣誉资质==============================*/
.ry_box2{ margin-top:.1rem;}
.ry_box2 .left{ width:300px; display:flex; align-self:flex-end;}
.ry_box2 .left img{ width:100%;}
.ry_box2 .right{ width:calc(100% - 300px); margin-bottom:.25rem;}
.circle{height: 88px;width: 88px;position:relative; }
.circle .pic { background:var(--main_color);  border-radius: 50%; width:100%; height:100%; position:relative; z-index:2;}
.circle span {width: 180%;height: 180%;position: absolute;top: -40%;left: -40%;border-radius: 50%;background-color:var(--main_color);transform: scale(0.5);animation: circleScale 3s linear infinite; z-index:1;}
.circle span:nth-of-type(2) {animation-delay: 1s;}
.circle span:nth-of-type(3) {animation-delay: 2s;}
@keyframes circleScale {
  0% {
    opacity: 1;
    transform: scale(0.5);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/*荣誉资质*/
.ry_list {max-width:1280px; margin:auto;padding-bottom:.8rem;}
.ry_list figure{ width:31.5%; margin-right:2.7%; margin-bottom:.4rem;  box-shadow: 0px 5px 30px rgba(15, 91, 183, 0.1); border-radius:.1rem;padding:.1rem 0;}
.ry_list figure:nth-child(3n){ margin-right:0; }
.ry_list figure .pic{height:3rem;}
.ry_list figure img{ max-height:88%; max-width:88%;}
.ry_list figure .txt{ font-size:.18rem; height:.5rem;text-align:center;}

@media screen and (max-width:768px) {
.ry_list figure{ width:48%; margin-right:4%; margin-bottom:12px;  border-radius:.1rem;padding:5px 10px;box-sizing:border-box;}
.ry_list figure:nth-child(3n){ margin-right:auto; }
.ry_list figure:nth-child(2n){ margin-right:0; }
.ry_list figure img{ max-height:90%; max-width:80%;}
.ry_list figure .txt{ font-size:13px; height:30px;}
	
}


/*==================公司商标=================*/
.gssb_bg{ margin-bottom:.8rem;}
.gssb_bg .tab{ border-bottom:solid 1px #e8e8e8; margin-bottom:.5rem;}
.gssb_bg .tab li{ font-size:.18rem; height:.36rem; margin:0 1rem; position:relative;  cursor:pointer;}
.gssb_bg .tab li:after{ content:''; width:100%; height:2px; background:var(--main_color); display:block; position:absolute; left:0; bottom:-1px; opacity:0;}
.gssb_bg .tab li.active{ color:var(--main_color); }
.gssb_bg .tab li.active:after{ opacity:1;}
.gssb_bg .con{ max-width:1280px; margin:auto;}
.gssb_bg .con ul{ display:none;}
.gssb_bg .con ul.active{ display:flex;}
.gssb_bg .con li{ width:23.5%; margin-right:2%; margin-bottom:.3rem;}
.gssb_bg .con li:nth-child(4n){ margin-right:0; }
.gssb_bg .con li .pic{height:3.6rem;}
.gssb_bg .con li img{ max-height:100%; max-width:100%;}
.gssb_bg .con li .txt{ font-size:.18rem; height:.5rem;}
@media screen and (max-width:768px) {
.gssb_bg .tab{margin-bottom:.5rem;}
.gssb_bg .tab li{ font-size:13px; height:25px; margin:0 5px; position:relative;  cursor:pointer;}
.gssb_bg .con li{ margin-bottom:12px;}
.gssb_bg .con li .pic{height:auto;}
}
/*=========================解决方案内页============================*/
.page_jjfa_box{ margin-top:.68rem; margin-bottom:1rem;}
.page_jjfa_box .left{width:3.3rem}
.page_jjfa_box .right{width:calc(100% - 3.9rem);}

.page_jjfa_box .left .title{ line-height:1rem; background:var(--main_color); color:#fff; padding-left:.2rem; font-size:.25rem; font-weight:bold;  margin-bottom:1px;}

.page_jjfa_box .left .list dt{ font-weight:bold; font-size:.2rem; color:var(--main_color); margin:.25rem 0 .2rem; position:relative; padding-left:.15rem;}
.page_jjfa_box .left .list dt:before {content: "";width: 5px; border-radius:5px; height: .18rem;background: var(--main_color);position: absolute;top:50%;left:0; transform:translateY(-50%); display:block;}

.page_jjfa_box .left .list a {display: block;padding:.15rem .34rem .15rem 15px; line-height:1.5; margin-bottom:1px; position: relative; font-size:.16rem; background: linear-gradient(to right, #fff, #f2f2f2);}
.page_jjfa_box .left .list a:hover,
.page_jjfa_box .left .list li.on a{color:#fff;}
.page_jjfa_box .left .list a:before {content: '';position: absolute;top: 0;left: 0;right: 0; bottom: 0;background: var(--main_color);z-index: 1;transform-origin: left center;transform: scaleX(0);transition: transform .3s ease;}
.page_jjfa_box .left .list a:hover:before,
.page_jjfa_box .left .list li.on a:before{transform: scaleX(1); transition: transform .6s ease;}

.page_jjfa_box .left .list a:after {content: '';width: 13px;height: 13px;background-image: url(../images/icon-4.png);position: absolute;right:20px;top: 50%;margin-top: -7px;transition: all 0.8s ease-in-out;z-index: 3;transform: translateX(-45px); opacity:0;}
.page_jjfa_box .left .list a:hover:after,
.page_jjfa_box .left .list li.on a:after{transform: translateX(0);opacity: 1;}
.page_jjfa_box .left .list a p {position: relative; transition: all .36s; padding-left:15px; z-index:9;}
.page_jjfa_box .left .list a p::after {content: "";width: 6px;height: 6px;background: #999;position: absolute;top: 41%;left:0;transform: rotate(45deg); transition: all .36s;}
.page_jjfa_box .left .list a:hover p::after,
.page_jjfa_box .left .list li.on a p::after{background: #fff;}




.page_jjfa_box .jjfa_item{border-radius: 10px;box-shadow: 0px 5px 27.9px 2.1px rgba(25, 17, 64, 0.09);}
.page_jjfa_box .jjfa_item .top{padding:.5rem .68rem .46rem .68rem;}
.page_jjfa_box .jjfa_item .tit{ margin-bottom:.25rem;}
.page_jjfa_box .jjfa_item .tit img{ height:.52rem; margin-right:.2rem;}
.page_jjfa_box .jjfa_item .tit h3{font-size:.36rem; color:#000;}
.page_jjfa_box .jjfa_item .desc{font-size:16px; color:#666; line-height:2; text-align:justify;}
.page_jjfa_box .jjfa_item ul{background-color: #f8f8fa; padding: .4rem .68rem .25rem .68rem;}

.page_jjfa_box .jjfa_item ul .tit2 { display:inline-block;  margin-bottom:.2rem; font-size:.18rem;}
.page_jjfa_box .jjfa_item ul .tit2 a{ background:var(--main_color); color:#fff; line-height:.4rem; padding:0 .25rem; border-radius:5px; display:block;}
.page_jjfa_box .jjfa_item ul .box{margin-bottom: .25rem;}

.page_jjfa_box .jjfa_item ul li{ font-size:16px; line-height:1.6; margin-bottom:.15rem; width:50%;}
.page_jjfa_box .jjfa_item ul li i{margin-right:.1rem; color:var(--main_color);}

.jjfa_show{}
.jjfa_show .title_txt{ font-size:.36rem; color:#000; line-height:1.6; border-bottom:solid 1px #ddd; padding-bottom:.2rem; margin-bottom:.25rem;}
@media screen and (max-width:768px) {
.page_jjfa_box{ padding:0; margin-top:35px; margin-bottom:0;}
.page_jjfa_box .right{width:100%;}
.page_jjfa_box .jjfa_item{border-radius:0px;box-shadow:none;}
.page_jjfa_box .jjfa_item .top{padding:0 15px 25px 15px;}
.page_jjfa_box .jjfa_item .tit{ margin-bottom:15px;}
.page_jjfa_box .jjfa_item .tit img{ height:35px; margin-right:10px;}
.page_jjfa_box .jjfa_item .tit h3{font-size:20px; }
.page_jjfa_box .jjfa_item .desc{font-size:14px; color:#555; line-height:1.8;}
.page_jjfa_box .jjfa_item ul{background-color: #f8f8f8; padding: 20px 15px;}
.page_jjfa_box .jjfa_item ul li{ font-size:15px; line-height:1.6; margin-bottom:15px; width:100%; border-bottom:dashed 1px #ddd; padding-bottom:10px;}
.page_jjfa_box .jjfa_item ul li a{ display:block;}

.jjfa_show{ padding:0 15px;}
.jjfa_show .title_txt{ font-size:20px;}

}


/*内容页位置导航*/
.show_news_weizhi{padding:.3rem 0; background:#f8f8f8;}
.show_news_weizhi span{display:inline-block; margin:0 5px;}
.show_news_weizhi i svg{width:18px; fill:#000;margin-right:10px;}
.show_news_weizhi p a{ margin:0 5px; display:inline-block; color:#333;}
@media screen and (max-width:1440px) {
.show_news_weizhi{ display:none;}    
}  


/*========================试用申请==============================*/
.page_sysq{border-radius: 10px;box-shadow: 0px 5px 27.9px 2.1px rgba(25, 17, 64, 0.09); background:#fff; padding:0 1rem .3rem; margin-bottom:.8rem; /*max-width:1300px;*/ box-sizing:border-box; margin-top:-.68rem; position:relative;}
.page_sysq .tit{ font-size:20px; font-weight:bold; position:relative; padding-left:16px; margin-bottom:.35rem;}
.page_sysq .tit:before{ content:''; display:block; width:6px; height:18px; position:absolute; left:0; top:2px;  background:var(--main_color); border-radius:5px; }
.zsjm_input {margin-bottom:.4rem;}
.zsjm_input li{width:31%;}
.zsjm_input h3{font-weight:normal;font-size:.16rem;margin-bottom:.15rem;}
.zsjm_input h3 i{ font-style:normal;color: #e75845;font-size:.16rem;margin-left:5px;}
.zsjm_input input[type=text]{border: 1px solid #d1d8de;outline: none; width: 100%;padding:0 15px;height:.46rem; border-radius:3px;  box-sizing:border-box;}
.zsjm_input input::-webkit-input-placeholder,.zsjm_input textarea::-webkit-input-placeholder{font-family:Microsoft Yahei;color:#999;}
.zsjm_input input:focus,.zsjm_input textarea:focus {border: 1px solid var(--main_color);}

.el-cascader{width:100%;}
.zsjm_input li textarea{width:100%;height:1.2rem;font-size:13px;padding:.2rem .2rem;box-sizing:border-box;border: 1px solid #d1d8de;border-radius:4px;}
.zsjm_input .checkbox label{ margin-right:.2rem; margin-bottom:.2rem; display:inline-block; font-size:15px;}
.zsjm_input .submit {border: none;outline: none; font-size: 16px;margin: 0 auto 0;cursor: pointer;text-align: center;color: #fff;background: var(--main_color); width: 2.5rem;line-height: .56rem;border-radius: 4px;
transition:  all .5s;}
.zsjm_input .submit:hover{background:#1c47c9;}
    
    
@media screen and (max-width:768px) {
.page_sysq{border-radius:0px;padding:0 20px .3rem; margin-bottom:0; margin-top:0px; }  
.page_sysq .tit{ font-size:18px; padding-left:16px; margin-bottom:25px; margin-top:25px;}
.page_sysq .tit:before{width:5px; height:16px; top:0px; }

.zsjm_input {margin-bottom:15px;}
.zsjm_input li{width:100%;margin-bottom:15px;}
.zsjm_input h3{margin-bottom:10px;font-size:14px;}
.zsjm_input h3 i{font-size:16px;margin-left:5px;}
.zsjm_input li input[type=text]{height:36px!important; padding:0 10px;}
.zsjm_input .checkbox label{ margin-right:10px; margin-bottom:10px; font-size:14px;}



.zsjm_input .submit {width: 100%;line-height: 46px;margin: 10px auto 15px;}
}



/*========================内页----新闻列表页======================*/
.page_news li{background:#fff;margin-bottom:.35rem; padding:.4rem .5rem;border-radius:8px;overflow:hidden;box-sizing:border-box;}
.page_news .pic{width:30%;overflow:hidden;border-radius:8px;}
.page_news .pic img{width:100%;display:block; transition:all .5s;}

.page_news .txt{width:66.5%;transition:all .5s;}
.page_news .txt .date{font-family:'din';color:#666;position:relative;padding-left:.35rem;box-sizing:border-box;}
.page_news .txt .date:before{position:absolute;content:'';width:25px;height:2px;background:var(--main_color);left:0;top:50%; transform:translateY(-50%);}
.page_news .txt h3{margin:.3rem 0 .25rem;font-family:'hmed';font-size:.24rem;font-weight:normal;}
.page_news .txt p{color:#666;line-height:2;text-align:justify;margin-bottom:.3rem;}
.page_news .txt dd{color:#888;margin-right:.3rem;}
.page_news .txt dd i{margin-right:5px}
.page_news li:hover .pic img{ transform:scale(1.1,1.1);}


@media screen and (max-width:768px) {
.page_news{margin-top:10px;}
.page_news li{margin-bottom:25px;padding:20px 15px 25px;border-radius:4px;}
.page_news .pic{width:100%;border-radius:4px;}

.page_news .txt{width:100%;padding:20px 0 0;}
.page_news .txt .date{padding-left:25px;}
.page_news .txt .date:before{width:20px;}
.page_news .txt h3{margin:15px 0 10px;font-size:15px;}
.page_news .txt p{ font-size:12px;line-height:1.6;margin-bottom:15px;}
.page_news .txt dd{color:#888;margin-right:20px;font-size:12px;}
.page_news .txt dd i{margin-left:5px}
}



/*========================文章文字列表==============================*/
.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;}
}


/*======================新闻列表======================*/
.news_list{ padding-bottom:15px;}
.news_list li{position:relative; width:31.6%; margin-right:2.6%; margin-bottom:.3rem;}
.news_list li:nth-child(3n){ margin-right:0;}
.news_list li a{ display:block;/* box-shadow: 0 1px 20px rgb(0 0 0 / 4%);*/}
.news_list li .pic{overflow:hidden}
.news_list li .pic img{width: 100%;object-fit: cover;transition: all .8s ease; display:block;}
.news_list li:hover .pic img{transform:scale(1.06)}
.news_list li .txt{background: #fff;padding: .25rem .3rem .2rem 0;z-index: 1;position: relative;transition: all .4s ease;}
.news_list li:hover .txt{transform: translateY(-.4rem)}
.news_list li .txt .time{ text-align: center; color:#666;}
.news_list li .txt .time span{width:100px; font-size: .38rem; font-family:din; display: block;line-height: 1; margin-bottom:.1rem; color:var(--main_color);}
.news_list li .txt .info{width: calc(100% - 100px);}
.news_list li .txt .info h2{font-size:18px;color: #333; line-height:1.7; font-weight:normal; }
.news_list li .news_more {position: absolute;z-index: 0;width: 100%;background: var(--main_color);color: #fff;display: flex;align-items: center;justify-content: center; height: .4rem;left: 0;bottom: 0;font-size: .15rem;}
.news_list li .news_more i{display:block;background:url("../images/arr-r.png") no-repeat center/100%;width:6px;height:10px;margin-left:20px}

@media screen and (max-width:1366px) {
.news_list li .txt .info h2{font-size:16px;line-height:1.8; }	

}

@media screen and (max-width:768px) {
.news_list li .txt .time {font-size:13px;}	
.news_list li .txt .time span{width:75px; font-size:20px; margin-bottom:8px;}
.news_list li .txt .info{width: calc(100% - 80px);}
.news_list li .txt .info h2{font-size:15px;}

.news_list li{width:100%; margin-right:0; margin-bottom:12px;}
.news_list li:hover .txt{transform: translateY(-30px)}
.news_list li .news_more {height:30px; font-size:14px;}
}



/*========================新闻列表==============================*/
.page_news_bg{ padding-bottom:.6rem;}
.pic_art_list li{ padding-bottom:.3rem; margin-bottom:.3rem; border-bottom:solid 1px #e8e8e8; transition:0.3s all;}
.pic_art_list li a{transition:0.3s all;}
.pic_art_list li .pic{width:25%; overflow:hidden; border-radius:5px;}
.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 .txt{ width:70%; }
.pic_art_list li.nopic .txt{ width:100%; }

.pic_art_list li .left{ width:calc(100% - 3rem); }
.pic_art_list li .txt h3{font-size:.25rem;line-height:1.5; font-weight:normal; margin-bottom:.25rem;}
.pic_art_list li .txt .desc{font-size:.16rem;line-height:1.8;color:#777; }

.pic_art_list li .right{ width:3rem; }
.pic_art_list li .txt .time{ color:#666; margin-bottom:.25rem; font-size:.16rem;}
.pic_art_list li .txt .time i{margin-right:6px;}

.pic_art_list li .txt .more{ width:1.4rem; line-height:.42rem; border:solid 1px #ccc; text-align:center; transition:0.3s all; position:relative;}
.pic_art_list li .txt .more:before{ content:''; width:0; height:100%; background:var(--main_color); display:block; transition:0.3s all; position:absolute; right:0; top:0; z-index:1;}
.pic_art_list li .txt .more span{ display:inline-block; position:relative; z-index:2; transition:0.3s all; margin-right:5px;}
.pic_art_list li .txt .more svg{position:relative; z-index:2;transition:0.3s all; }
.pic_art_list li:hover .txt .more{border:solid 1px var(--main_color);}
.pic_art_list li:hover .txt .more span{color:#fff;}
.pic_art_list li:hover .txt .more svg{color:#fff;}
.pic_art_list li:hover .txt .more:before{width:100%;left:0;}

@media screen and (max-width:768px) {
.pic_art_list li .pic{width:36%; min-height:86px; border-radius:5px; overflow:hidden; order:1;}
.pic_art_list li .txt{width:60%;order:0; justify-content:center;flex-direction:column;}
.pic_art_list li .txt{margin-top:0px;}
.pic_art_list li .left{ width:100%; }
.pic_art_list li .right{ width:100%; display:block;}
.pic_art_list li .txt h3{font-size:15px; margin-bottom:0;}
.pic_art_list li .txt .desc,.pic_art_list li .txt .more{ display:none;}
.pic_art_list li .txt .time{margin:15px 0 0 0; font-size:13px; letter-spacing:0; font-family:Arial, Helvetica, sans-serif;}
}


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

.page_main{width:calc(100% - 3.5rem); background:#fff; box-sizing:border-box; padding:.5rem .8rem; }
.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:.36rem;line-height:1.6;  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 strong{ color:#000; font-size:.18rem;}
#art_box img{ max-width:100%; border-radius:3px;}
#art_box table{ border:1px solid #eff3f8; border-collapse:collapse;   font-size:14px; line-height:24px; margin-bottom:15px;}
#art_box table p{margin-bottom:0;}
#art_box table tr:nth-child(1){ font-size:14px; background:#eff3f8; font-weight:bold;}
#art_box table td{padding:5px 10px; border:1px solid #D5DFEC;text-align:center;}
#art_box a{color:var(--main_color);}

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

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


@media screen and (max-width:768px) {
.page_side{display:none;}
.page_main{width:100%;  padding:20px 0; margin-top:0;}
.share-main{ display:none;}
.title_txt {font-size:18px;line-height:1.6;}
.art_info{margin-bottom:15px;}
.art_info em{font-size:13px; line-height:40px; margin-right:10px;}
#art_box {font-size:14px; line-height:1.68;}
#art_box p {margin-bottom:10px; }
#art_box strong{ font-size:16px;}
}

/*相关阅读*/
.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:15px; width:48%; box-sizing:border-box; line-height:2.4;}
.xg_art li:before{ content: ""; display: block; width:6px; height:6px; 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{font-size:14px; width:100%; line-height:2.2;}
.xg_tit { margin-top:25px;}
.xg_tit h5{font-size:16px; margin:25px 0 15px 0; position:relative; padding-left:12px;}
.xg_tit h5:after {width:5px;height:14px; 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{ font-family:'dinpro6';color:#000;font-weight:normal;font-size:16px;}
.show_pre_next li p{width:80%;}
.show_pre_next li p a{color:#000;font-size:16px; transition:all .5s;}
.show_pre_next li span{font-family:'monr';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{font-size:14px;line-height:1.5; width:60px;}
.show_pre_next li p{width:calc(100% - 60px);line-height:1.4;}
.show_pre_next li p a{font-size:14px; 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:10px 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;}

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