@charset "utf-8";
/* CSS Document */
:root{    
	--main_color:#DD242A;        /* 主色 */
	--main_color_rgb:221,36,42;  /*rgba*/
    --second_color:#DC9D3E;      /* 副色 */    
}
body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,p,form,img,select{margin:0; padding:0;}
body{ color: #333;  font-size:14px; font-family: "Microsoft YaHei","微软雅黑"; overflow-x:hidden;background:#fff;}
body{ -webkit-font-smoothing:antialiased;font-smoothing:antialiased;-webkit-overflow-scrolling:touch;/*安卓和 IOS html5 动画卡顿解决方案*//* overflow-x:hidden; */line-height: 1; font-size:14px; }
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;}
.mt20{margin-top:20px;}

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

/*======================主体宽度======================*/
.main{width: 90%; margin: auto; max-width: 1500px;}
@media screen and (max-width:1024px) {
	.main{width:92%;}
}
@media screen and (max-width:768px) {
	.main{width:100%; padding:0 15px; box-sizing:border-box;}
}
.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;}


/*文字省略*/
.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;}
.ellipsis5 {display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 5;overflow: hidden;text-overflow: ellipsis;}

/*头部*/
.header{height:100px; z-index: 100;width: 100%; position:fixed; transition:0.5s all; /*background:url(../images/header_bg.png) repeat-x left bottom rgba(0,0,0,0.25); */}
.header:before{ content:""; position:absolute; bottom:-1px; left:0; width:0; height:1px; background:rgba(255,255,255,0.1); transition:2s}
.header.on:before{ width:100%}
.header .logo{height:100px; transition:0.5s all; margin-left:2%; position:relative;}
.header img.logo_1{height:60px; display:block; transition:0.5s all; filter: grayscale(100%) brightness(1000%); opacity:1;}
.header img.logo_2{height:60px; display:block; transition:0.5s all;opacity:0; position:absolute; left:0; top:50%; transform:translate(0,-50%); }
.header_scroll img.logo_1{ height:56px; opacity:0;}
.header_scroll img.logo_2{ height:56px; opacity:1;}

.header_right{margin-right:2%;}
.m_tc_box,.m_header_right{ display:none;}


/*下拉菜单*/
.navBox {  height:100px; margin-right:.25rem; transition:0.5s all;}
.navBox .nav{display:flex; height:100%;}
.navBox .nav li {padding: 0 .2rem; position: relative;}
.navBox .nav li>a {display: block;position: relative; height:100%; display:flex; justify-content:center;align-items:center;}
.navBox .nav li>a .txt {position: relative;z-index: 2;font-size:16px;color:#fff; transition:0.5s all;}
.navBox .nav li>a:hover .txt{color:#fff;}
.header_scroll .navBox .nav li>a .txt {color:#333;}
.header_scroll .navBox .nav li>a:hover .txt {color:var(--main_color);}
/*.navBox .nav li.curr a .txt{color:#FF7F27;}*/

.subNavbox{white-space: nowrap; min-width:100%; position:absolute; top:100%;left:50%;background:rgba(255,255,255,.99); -webkit-transform:translate(-50%,10px);-ms-transform:translate(-50%,20px);transform:translate(-50%,20px); border-radius:5px;padding:15px 15px;opacity:0; pointer-events:none; transition:all .3s;box-shadow:0 5px 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 #ddd}
.subNavbox a{display:block;position:relative;font-size:15px;padding:15px 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 .top_serch{width:.6rem; transition:0.5s all; position:relative; margin-right:15px;}
.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: "|";color:rgba(255,255,255,0.66);font-size: 14px;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: 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:17px; letter-spacing:1px; font-weight:600; display:flex; justify-content:center;align-items:center; transition:0.5s all;}


/*导航下拉*/
.header_scroll {background:#fff; height:80px; box-shadow: 0 1px 5px rgba(0,0,0,0.1);}
.header_scroll.on:before{width:0px;transition: 0.01s all;}
.header_scroll .logo,.header_scroll .navBox, .header_scroll .lag,.header_scroll .top_blank{height:80px;}
.header_scroll .subNavbox{top:100%;}
.header_scroll .top_serch a svg{ fill:#333; }
.header_scroll .top_serch:after{ color:#ccc;}
.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:var(--main_color);border-radius:3px;}
.m_nav_btn .line:before,.m_nav_btn .line:after{content: '';width: 100%;height: 3px;left: 0;position: absolute;background:var(--main_color);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);}

@media screen and (max-width:768px) {
.header{ height:60px; position: fixed; z-index: 200; background:#fff; box-shadow: 0 1px 5px rgba(0,0,0,0.1);}
.header .logo{height:60px; margin-left:10px;}
.header img.logo_2 { display:none;}
.header img.logo_1 { opacity:1; height:42px; filter: grayscale(0) brightness(100%);}

.header_right{display:none;}
.m_header_right{display:block; margin-right:15px;}
.m_top_blank{height:60px;}
	
/*手机中英文*/
.header .m_lag{ margin:22px 20px 0 0;}
.header .m_lag a {font-size: 15px;color: rgba(255,255,255,0.7);}


/*======================手机弹出菜单======================*/
.m_tc_box{position: fixed;top:50px;left: 0;bottom: 0;right: 0;background: #fff;z-index: 102; 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:15px; margin-top:25px;}
.m_search_box .search-btn {position: absolute;top:0px;right:0px;width:50px ;height:100%;}
.m_search_box form {height:46px;}
.m_search_box form input[type="text"] {width: 100%;height: 100%;background:rgba(255,255,255,0.8); box-sizing: border-box;padding: 0 50px 0 15px;border: none; font-size:15px;}
.m_search_box form input[type="submit"]{display: inline-block;width:30px;height:30px; background: url('../images/zoom.png') no-repeat center; border:none; background-size:23px auto;}

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


/*电话*/
.m_tel{text-align:center; margin-top:35px; font-size:20px; font-family:din; color:#fff; background:var(--main_color); padding:15px; border-radius:5px; letter-spacing:1px;} 
.m_tel i{ font-size:18px; margin-right:5px;}
}


/*======================轮播图======================*/
	#banner {width:100%; position:relative; z-index:0; overflow:hidden;}

	#banner .txt{position:absolute;z-index: 999;left:0;top:0; width:100%; height:100%; text-align:center; box-sizing:border-box;} 
	#banner .txt h3{font-size:3.6vw; color:#fff; margin-top:.3rem;  /*text-shadow:rgba(0,0,0,0.25) 1px 1px 1px;*/}
	#banner .txt p{font-size:.28rem; color:#fff; margin-top:.4rem;}

	#banner .txt h3 {transform:translateY(200px);opacity:0;transition:all 0.3s; }
	#banner .txt p {transform:translateY(200px);opacity:0;transition:all 0.6s; }
	#banner .txt .viewmore {transform:translateY(200px);opacity:0;transition:all 0.9s; margin-top:50px;}
	#banner .swiper-slide-active .txt h3,
	#banner .swiper-slide-active .txt p,
	#banner .swiper-slide-active .txt .viewmore{transform:translateY(0px);opacity:1; transition-delay:1s;}
	
	.viewmore {position: relative;}
	.viewmore a{pointer-events: all; display: block;width: 2rem;line-height:.56rem; border-radius:.56rem; font-size:16px; text-align:center; color:#fff; background-image: linear-gradient(90deg,#F7630B,var(--main_color)); transition:0.3s all;}
	
	#banner .swiper-slide .pic {position:relative; z-index:1; height:100vh;}
	#banner .swiper-slide .pic img{width:100%;height:100%; object-fit: cover; transition: all 4s;  transform: scale(1,1); -webkit-transform: scale(1,1); display:block; /*-webkit-filter: blur(30px); filter: blur(30px);*/}
	#banner .swiper-slide-active .pic img{ transform: scale(1.03,1.03);  -webkit-transform: scale(1.03,1.03);  transition-delay:1s; /*-webkit-filter: blur(0px); filter: blur(0px);*/}
	
/*按钮切换*/	
	#banner .swiper-button-prev,#banner .swiper-button-next { display:none;width: 72px;height: 72px; background: url(../images/ico_sliding.png) no-repeat; margin-top:-15px;opacity:0.6;}
	#banner .swiper-button-prev {background-position: 0 0;}
	#banner .swiper-button-prev:hover { background-position: 0 -144px;}
	#banner .swiper-button-next { background-position: 0 -72px;}
	#banner .swiper-button-next:hover {background-position: 0 -216px;}
/*分页器*/
	#banner .swiper-pagination-bullet{width: 10px;height: 10px; display: inline-block; border-radius: 50%; background:rgba(255,255,255,0.36); transition: all .5s ease;-moz-transition: all .5s ease;-webkit-transition: all .5s ease;-o-transition: all .5s ease; opacity: 1.0;}
	#banner .swiper-pagination-bullet-active{background:rgba(255,255,255,0.8);color: #fff;width: 33px;border-radius: 30px;opacity: 1.0;}
	#banner .swiper-pagination{bottom:20px;}
/*鼠标*/	
	#banner .mouse{position:absolute; width:100%; left:0; top:78vh; cursor:pointer;z-index: 10000;background:url(../images/shubiao.png) top center no-repeat; height:60px; text-align:center}
	#banner .mouse span{-webkit-animation: arrowMove 1.5s infinite; animation: arrowMove 1.5s infinite; display:inline-block;width: 8px;height:20px; position: absolute; margin-left:-4px;left:50%; bottom:0;} 
	@-webkit-keyframes arrowMove {
	  to {
		-webkit-transform: translateY(.25rem);
		transform: translateY(.25rem);
		opacity: 0;
		}
	}
	@keyframes arrowMove {
	  to {
		-webkit-transform: translateY(.25rem);
		transform: translateY(.25rem);
		opacity: 0;
		}
	}
#banner li:after {content: "";background:rgba(0,0,0,0.1); /*background:url(../images/banenr_line.png) repeat-x;*/
	position: absolute;left: 0px;top: 0px;right: 0px;bottom: 0px;opacity:1;z-index: 3;}

#particles-js{position: absolute;width: 100%; height:100%; left:0; right:0; top:0; bottom:0; z-index:999; }
#particles-js {opacity: 0.6;}
.particles{pointer-events: none;}
.mouseEvents{ pointer-events: all;} 

@media screen and (max-width:768px) {
	#banner .swiper-slide .pic{height:200px;}
	#banner .txt{padding:0 5%;}
	#banner .txt h3{font-size:20px; line-height:1.2;  margin-top:0;}
	#banner .txt p{font-size:14px;}
	#banner .viewmore{display:none;}
	#banner .swiper-button-prev,#banner .swiper-button-next{ display:none;}
	#banner .swiper-pagination-bullet{width: 7px;height:7px;}
	#banner .swiper-pagination-bullet-active{width: 20px;}
	#banner .swiper-pagination{bottom:10px;}
}


/*页面标题*/
.main_tit{text-align:center; padding:.6rem 0 .4rem;width:100%; position:relative;}
.main_tit h2{ font-size:.4rem; color:#000; font-weight:normal;}
.main_tit .line {display: block;width: 20px;height: 4px;background:var(--main_color);border-radius: 10px;margin: 15px auto auto auto;}
.main_tit p{font-size:16px; color:#666; margin-top:15px; line-height:1.6;}
.main_tit .more{ position:absolute; right:0; top:.6rem;}
.main_tit .more a{display:inline-block;width: 1.35rem;line-height:.4rem; border-radius:.4rem; text-align:center; border:solid 2px #666; transition:0.5s all; }
.main_tit .more a:hover{background-image: linear-gradient(90deg,#F7630B,var(--main_color)); color:#fff; border:solid 2px var(--main_color);}


@media screen and (max-width:768px) {
.main_tit h2{ font-size:20px; font-weight:bold;}	
.main_tit .line { margin: 10px auto auto auto;}	
.main_tit p{font-size:13px; margin-top:10px;}
.main_tit .more{top:22px;}
.main_tit .more a{width:auto; padding:0 15px; line-height:25px; border-radius:32px;border:solid 1px #666; font-size:12px;}

}

.more_1{ text-align:center; margin:.5rem auto auto auto; position:relative; z-index:1;}
.more_1 a{width: 2rem; line-height: .5rem;text-align: center;border: 1px solid #5a5a5a; border-radius: 5px; overflow:hidden; display:inline-block; font-size:14px; position:relative; transition:0.3s;}
.more_1 a:hover{color:#fff; border: 1px solid var(--main_color);}
.more_1 a:before{content: "";position: absolute;z-index: -1;top: 0;right: 0;right: 0;bottom: 0; width:0; transition:.5s all;background:var(--main_color); }
.more_1 a:hover:before{ width:100%; left:0;}

@media screen and (max-width:768px) {
.more_1 a{width: 50%; line-height:36px;}
}

/*==========首页服务项目模块===============*/
.service{margin-top:1rem;}
.service .main_tit{text-align:left; padding-top:.3rem;}
.service .line{ margin: 15px 0;}
.service_left{width:30%;}
.service_left .xian{background:#e8e8e8;width:3px;height:80px;border-radius:20px;}
.service_left .desc{ line-height:2; color:#666;margin-top:40px;text-align:justify;}
.service_right{width:66%;}
.service_right li{width:32.5%;position:relative;text-align:center;border-radius:10px;margin-bottom:15px; overflow:hidden;}
.service_right li .pic img{width:100%;display:block; transition: all .5s ease;}
.service_right li .txt{position:absolute;top:0;left:0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); transition: all .5s ease;}
.service_right li .ico svg{height:52px;fill:#fff;}
.service_right li .txt p{font-size:.25rem;color:#fff;margin-top:15px;}
.service_right li:hover .pic img{transform: scale(1.1,1.1);}
.service_right li:hover .txt{background: rgba(0,0,0,0);}

@media screen and (max-width:768px) {
.service .main_tit p{display:none;}
.service{margin-top:30px;}
.service_left,.service_right{width:100%;}
.service .main_tit{text-align:center; padding-top:0;padding-bottom:0;}
.service .line{ margin: 15px auto;}
.service_left .xian{display:none;}
.service_left .desc{display:none;}
.service_right li{width:48.5%;margin-bottom:10px;border-radius:4px;}
.service_right li:nth-child(1){display:none;}
.service_right li:nth-child(2){width:100%;}
.service_right li .ico svg{height:35px;}
.service_right li .txt p{font-size:16px;}
}


/*==========首页公司简介模块===============*/
.index_about_bg{margin-top:.8rem; padding-top:.1rem; padding-bottom: .8rem; position: relative; background:url(../images/fzjg_bg.jpg) no-repeat center; background-attachment:fixed;}
.index_about{background: url(../images/map.png) no-repeat center left 30% #fff; background-size: 40% auto; padding:.5rem .6rem; }
.index_about .txt{width:48%;}
.index_about .txt h2{font-size:.25rem;}
.index_about .txt h2:after{content:''; display:block; width:25px; height:3px; background:var(--main_color); margin:20px 0 35px;}
.index_about .txt p{line-height:2; color:#666; text-align:justify;}
.index_about .txt .more{width:1.5rem; line-height:46px; margin-top:.4rem; display:block; background: var(--main_color); color:#fff; border-radius:50px; text-align:center;}
.index_about .txt .more i{margin-left:10px;}

.index_about ul{ margin-top:.3rem; width:90%;}
.index_about li{ text-align:center;}
.index_about li .ico svg{ height:45px; transition:0.6s all; margin-bottom:5px;}
.index_about li:hover .ico svg{fill:var(--main_color); transform:rotateY(180deg);}
.index_about li i{width:1px; height:100%; background:#000; display:block; opacity:0.1;}
.index_about li h6{font-size:14px; font-weight:normal;}

.index_about .pic{width:48%;}
/*焦点图*/
#page_about {width:100%; position:relative; z-index:0; background:#000; overflow:hidden;}
#page_about .swiper-slide img{width:100%; display:block;cursor: url(../images/move.png),default!important;}
/*分页器*/
#page_about .swiper-pagination{bottom: 25px;}
#page_about .swiper-pagination-bullet {width: 38px;height: 3px;border-radius: 0;background: rgba(255, 255, 255, .99);opacity: 1;position: relative;margin: 0 5px !important;}
#page_about .swiper-pagination-bullet:before{content: "";position: absolute;top: 0;left: 0;background:var(--main_color);width: 0;height: 3px;z-index: 1;transition: 0s;}
#page_about .swiper-pagination-bullet-active:before{width: 100%;transition: all 5s ease;}


@media screen and (max-width:768px) {
.index_about_bg{background-attachment:scroll;}
.index_about{background: url(../images/map.png) no-repeat center center #fff; background-size:100% auto; padding:30px 15px ; border-radius:5px;}
.index_about .txt{width:100%;}
.index_about .pic{width:100%;}
.index_about .txt h2{font-size:16px;}
.index_about .txt h2:after{content:''; display:block; width:25px; height:3px; background:var(--main_color); margin:12px 0 12px;}
.index_about .txt p{line-height:1.8; font-size:13px; }
.index_about .txt a{width:45%; line-height:20px; margin-top:15px; margin-bottom:20px;}
.index_about ul{width:100%;margin-top:20px;}
.index_about li .ico svg{ height:30px; }
.index_about .txt .more{width:120px; line-height:36px; margin-top:20px; }
}




/*===================首页项目案例列表================*/

.xmal_list li{width:32.3%;margin-right:1.5%;margin-bottom:.35rem;border-radius:10px;background:#f6f6f6;overflow: hidden;}
.xmal_list li:nth-child(3n){margin-right:0;}
.xmal_list li .pic img{width:100%;display:block;}
.xmal_list li .txt{padding:.4rem .25rem .6rem .25rem;font-size:.22rem; transition:all .5s;box-sizing:border-box;}
.xmal_list li .txt span{display:block;width: 70px;height: 3px;background-color: var(--second_color);margin-bottom:.3rem;transition:all .5s}
.xmal_list li :hover .txt span {background: #fff;width:100%;}
.xmal_list li :hover .txt{background: var(--main_color);color:#fff;}

@media screen and (max-width:768px) {
.xmal_list li{width:48%;margin:0 10px 15px 0;border-radius:5px;}
.xmal_list li:nth-child(2n){margin-right:0;}
.xmal_list li:nth-child(3){margin-right:10px;}
.xmal_list li:nth-child(5){margin-right:10px;}
.xmal_list li .txt{font-size:14px;padding:10px 10px;line-height:1.5;}
.xmal_list li .txt span{display:none;}
}


/*======================首页新闻======================*/
.index_news_bg{background: url(../images/s_news_bg.jpg) no-repeat center top;margin-top:.5rem;padding-bottom:.5rem;background-size:cover;}




/*======================首页留言======================*/
.index_ly{padding-top:.3rem;}
.index_ly h3{font-family:Impact; font-size:35px; text-align:center; margin:0px 0 .3rem 0;   padding-top:.6rem;}
.index_ly p{font-size:16px; text-align:center; margin:0px 0 50px 0;}


/*==========首页表单===============*/
.bd_box{width:1000px; margin:auto;}
.biaodan input[type=text]{width:215px; line-height:55px;border-radius: 3px;border:1px solid #ddd; background:#fff; padding-left:10px;font-size: 15px;  box-sizing:border-box; outline:none;}
.biaodan input:focus{border:1px solid var(--second_color);}
.biaodan textarea:focus{border:1px solid #999;}
.biaodan textarea{width: 100%;height:125px;font-size: 15px;border-radius: 3px;border:1px solid #ddd; background:#fff;padding: 2%;padding-top:10px; box-sizing:border-box;}
.biaodan select{width: 100%; height:34px; box-sizing:border-box; background:#f2f2f2; line-height: 34px;border-radius: 3px;border:1px solid #ddd;font-size: 14px;padding-left: 2%;}

.biaodan .form-group{}
.biaodan .form-group input{border:solid 1px #ddd; line-height:46px; color:#666; padding:0 10px; width:160px; margin-right:5px; box-sizing:border-box; outline:none;}

.biaodan .message_input{text-align:center;}
.biaodan .submit{width:130px; line-height:55px; background:var(--main_color); color:#fff; border:none; font-size:16px; border-radius:3px; cursor:pointer; outline:none; transition:all 0.3s; }
.biaodan .submit:hover{background:var(--second_color);}

@media only screen and (max-width: 768px){
.index_ly h3{font-size:22px;margin:0px 0 10px 0;  padding-top:30px;}
.index_ly p{font-size:14px; text-align:center; margin:0px 0 20px 0;}

.bd_box{width:100%; margin:auto;}
.biaodan{width:100%;}
.biaodan input[type=text]{width:330px;line-height:40px;margin-bottom:15px;font-size: 13px;}
.biaodan11{width:330px !important;height:100px;}
.biaodan .submit{width:330px;line-height:42px;}

}

/* 底部 */
.footer{ background: url(../images/dobu_img.jpg) center ; background-size:cover; padding:.7rem 0 0px; box-sizing:border-box;  width:100%; margin-top:1rem;}
.footer .left{position:relative;width:56%;}
.footer .left ul{margin-bottom:.4rem}
.footer .left ul li{font-size:16px;color:#fff;margin-right:.4rem;display: inline-block;}
.footer .left ul li a{color:#fff; -moz-transition: all 0.36s ease-in-out;-webkit-transition: all 0.36s ease-in-out;-o-transition: all 0.36s ease-in-out;-ms-transition: all 0.36s ease-in-out;transition: all 0.36s ease-in-out;}
.footer .left ul li a:hover{ color:var(--main_color);}
.footer .left .f_lianxi{font-size:15px;line-height:2.6;color:#acacac;}
.footer .left .ewm{position:absolute;right:0px;bottom:.1rem; text-align:center; font-weight:normal;}
.footer .left .ewm img{display:  inline-block;width:1.25rem;height:1.25rem;/* border: #fff 5px solid; */}
.footer .left .ewm p{width:14px; margin-left:15px; font-size:14px; line-height:1.2; color:#acacac; padding:5px 0;}

.footer .right{ width:36%;}
.footer .right h4{font-size:.3rem;color:var(--main_color);margin-bottom:.25rem; font-weight:normal;}
.footer .right h4 small{color: #fff;font-size:.16rem;vertical-align:middle;margin-left:.05rem;}
.footer .right p { line-height:2; color:#acacac; height:.88rem;}
.footer .right .con .tel{font-size:.3rem;color:var(--main_color);padding-left:.4rem;line-height:.4rem;background:url(../images/tel01.png) left center no-repeat;font-weight:  bold; margin-right:.25rem;}
.footer .right .con a{ display:inline-block; width:1.3rem; height:.4rem; background:; border:solid 1px rgba(255,255,255,0.1); border-radius:.02rem; line-height:.4rem; text-align:center; font-size:.14rem; color:#fff; -moz-transition: all 0.36s ease-in-out;-webkit-transition: all 0.36s ease-in-out;-o-transition: all 0.36s ease-in-out;-ms-transition: all 0.36s ease-in-out;transition: all 0.36s ease-in-out;}
.footer .right .con a:hover{ background:var(--main_color); border:solid .01rem var(--main_color);}


.copyright{ padding:.2rem 0; border-top:solid 1px rgba(255,255,255,0.2); margin-top:.6rem; color:rgba(255,255,255,0.5); text-transform:uppercase; font-size:13px;}
.copyright a{color:rgba(255,255,255,0.5);}
.m_foot_bg{display:none;}

@media only screen and (max-width: 768px){
.pc_footer{display:none;}
.m_foot_bg{ display:block; padding:0 15px;}
.m_foot_bg h5{font-size:14px; text-align:center; font-weight:normal; color:rgba(255,255,255,0.68);}
.m_foot_bg h3{font-size:20px; text-align:center; margin:10px 0 15px 0;}
.m_foot_bg h3 a{color:#fff;}
.m_foot_bg p{font-size:14px; text-align:center; color:rgba(255,255,255,0.68); line-height:1.6; margin-bottom:5px;}
.copyright p{width:100%; line-height:1.6; text-align:center; font-size:12px; padding: 0 15px;}
.copyright p:last-child{ display:none;}
}

.m_f_blank,#footer{display:none;}
@media screen and (max-width:768px) {
.m_f_blank{ height:56px; display:block;}
#footer{ display:flex; height:56px;background:#f3f4f7; border-top:solid 1px #e0e1e4; box-sizing:border-box; position:fixed; left:0; bottom:0; width:100%; z-index:9;}
#footer li{ width:25%; text-align:center; font-size:14px;}
#footer li .ico{ margin:8px auto 3px; position:relative;}
#footer li .ico svg{ height:22px; fill:#333;}
#footer li a{display:block; color:#333;}
#footer li.active .txt{color:var(--main_color);}
#footer li.active .ico svg{fill:var(--main_color);}
}

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

@keyframes o-upfade-top {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes o-scale {
    0%,85%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
}
@keyframes o-opacity {
    0%,30%,60%,100%{
        opacity: 0;
    }
    15%,45%{
        opacity: 1;
    }
}
@keyframes o-scroll {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}  

/*二级页面 banner*/
.page_ban{ width:100%; position:relative; overflow:hidden; background:#000; }
.page_ban:after {content: ""; /*background:url(../images/banenr_line.png) repeat-x;*/
	position: absolute;left: 0px;top: 0px;right: 0px;bottom: 0px;opacity:0;z-index: 3;}

.page_ban .pic img{width:100%; height:100%;object-fit:cover; display:block;}
.page_ban .pic {animation: o-scale 20s linear infinite; height:6rem;}

.page_ban .txt{position:absolute; left:0; top:0; bottom:0; right:0; display: flex; z-index:9; flex-direction:column; align-items:center;}
.page_ban .txt h2 { font-size:.4rem; font-weight:normal; color:#fff; margin-bottom:.15rem; }
.page_ban .txt h5 { font-size:.32rem; font-weight:normal; color:#fff; opacity:0.7; letter-spacing:1px; text-transform:uppercase;}

@media screen and (max-width:768px) {
.page_ban .pic{height:160px;}
}

/*位置*/
.sub_weizhi{position:relative; z-index:9; margin-top:-.5rem;}
.sub_weizhi .main{background: #fff;height:1rem;line-height:1rem;padding: 0px .45rem 0 0.25rem; box-sizing:border-box;box-shadow: 0 8px 15px rgba(0,0,0,0.1);border-radius:5px;}
.sub_weizhi .weizhi{padding-left:35px; position: relative;}
.sub_weizhi .weizhi i.ico { position: absolute;left: 10px;top: -3px;}
.sub_weizhi .weizhi i.ico svg { width: 20px;vertical-align: middle;fill:#333;}

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

/*===================子栏目导航================*/
#n_nav a{position: relative;float: left;display: block; font-size:16px; margin-left:50px;}
#n_nav a:last-child{ background: none;}
#n_nav a:after{ content:'';position: absolute;left: 0px;bottom: 0px;width:0;display: block;height:3px;transition: 0.6s; background:var(--main_color); opacity: 0;visibility: hidden;}
#n_nav a:hover:after,#n_nav a.on:after{width: 100%; opacity: 1; visibility: visible; }
#n_nav a.on{ color:var(--main_color);}

.m_sub_nav{display:none;}
@media screen and (max-width:768px) {
.sub_weizhi{  font-size:13px; margin-top:0; background:#eee;}
.sub_weizhi .main{background: none; line-height:36px; height:36px;padding:0;box-shadow: 0 8px 15px rgba(0,0,0,0);border-radius:0;}
.sub_weizhi .weizhi{padding-left:20px; margin-left:10px;}
.sub_weizhi .weizhi i.ico {left:0px;top: -2px;}
.sub_weizhi .weizhi i.ico svg { width: 18px;}

#n_nav{display:none; width:100%; background: #fff; box-shadow: 0 3px 5px #ccc; padding:0 15px; 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 5px; font-size:14px; height:46px; line-height:46px;  margin-left:0; text-align:left; border-bottom: 1px solid #e1e6f0; box-sizing:border-box;}
#n_nav a:after{height:2px; bottom: -1px;}

}

/*===================子栏目导航2================*/
#n_nav2{ height:69px; border-top: 1px solid rgba(255, 255, 255, 0.1);width: 100%; position:relative; margin-top:-70px; z-index:99; text-align:center;}
#n_nav2 li{height: 69px; display:inline-block; position:relative;}
#n_nav2 li:before{ content:''; display:block; background:var(--main_color); height: 100%; width:0; transition:0.6s all; opacity:0; position:absolute; left:50%; top:0;}
#n_nav2 li:hover:before,#n_nav2 li.on:before{width:100%; opacity:1; left:0;}
#n_nav2 a{display:block; font-size:16px; padding:0 .5rem; line-height:69px; height: 69px; text-align: center; color:#fff; z-index:1; position:relative;}
#n_nav2 a img{display: inline-block; vertical-align: middle; margin-right:10px;}



/*===================内页公司介绍================*/
.page_about{padding:.8rem 0;}
.page_about .txt,.page_about .pic{width:49%;}
.page_about .txt h3{font-size:.4rem;font-weight:normal;}
.page_about .txt span{display: block;width: 20px;height: 4px;background: var(--main_color);border-radius: 10px;margin:.2rem 0;}
.page_about .txt .about_con{line-height:2;font-size:.16rem;color:#333;}

/*通栏*/
.guanggao_bg{background:url(../images/black.jpg)  no-repeat;padding:1rem 0;background-attachment: fixed;background-size:cover;}
.guanggao_bg .txt{text-align:center;color:#fff;}
.guanggao_bg .txt h3{font-size:.4rem;font-weight:normal; letter-spacing:4px;}
.guanggao_bg .txt p{font-size:.18rem;margin-top:.3rem;letter-spacing:2px;text-transform:uppercase;margin-bottom:.6rem;}
.guanggao_bg .txt a{width: 1.5rem;line-height: 46px;margin:0 auto;display: block;background:rgba(255,255,255,.9);color: #333;border-radius: 50px;text-align: center; transition:all .5s;}
.guanggao_bg .txt a:hover{background:var(--main_color);color:#fff;}



@media screen and (max-width:768px) {
.page_about{padding:30px 0;}
.page_about .txt,.page_about .pic{width:100%;}
.page_about .txt h3{font-size:20px;text-align:center;}
.page_about .txt span{margin:15px auto;}
.page_about .txt .about_con{font-size:14px;margin-bottom:30px;}
.guanggao_bg{display:none;}
.guanggao_bg .txt h3{font-size:20px;line-height:2;}
.guanggao_bg .txt p{display:none;}
.guanggao_bg .txt a{width: 150px;line-height: 42px;margin-top:20px;}

.n_bottom{display:block;}
}


/*===================内页企业文化================*/
.culture1{background:url(../images/qiyewenhua.jpg) no-repeat center;padding:.6rem 0;text-align:center;}
.culture1 h5{color:#fff;font-size:.35rem;margin:.3rem 0;letter-spacing:2px;}
.culture1 p{color:rgba(255,255,255,.8);font-size:.16rem;margin-bottom:.3rem; letter-spacing:2px;}

.culture2{margin-top:.5rem;}
.culture2 li{width:24%;background:#fff;padding:.35rem .2rem;box-sizing:border-box;text-align:center; transition:all .5s;}
.culture2 li .pic{overflow:hidden;}
.culture2 li .pic img{width:50%;display:block;}
.culture2 li .txt h3{font-size:.2rem;color:#5d5e60;font-weight: normal;;margin:.35rem 0 .15rem 0;}
.culture2 li .txt p{font-size: 12px;line-height: 1.6;color: #5d5e60;opacity: .8;text-transform: uppercase;}
.culture2 li .shuzi{width:1.2rem;background:var(--main_color);line-height:.38rem;margin:0 auto;margin-top:.3rem;border-radius:20px;color:#fff;font-size:.2rem;font-weight:bold;}
.culture2 li:hover{ transform:translate(0,10px);}
.culture2 li:hover .shuzi{background:var(--second_color);}

@media screen and (max-width:768px) {
.culture1{padding:20px 20px;border-radius:6px;}
.culture1 h5{font-size:18px;}
.culture1 p{font-size:13px;line-height:1.8;}

.culture2{margin-top:30px;}
.culture2 li{width:48%;margin-bottom:20px;border-radius:6px;padding:15px 5px;}
.culture2 li .txt h3{font-size:14px;line-height:1.6;}
.culture1 p{font-size:12px;}
.culture2 li .shuzi{width:80px;line-height:28px;font-size:16px;}
}



/*===================内页资质荣誉列表================*/
.zzry_list li{ width:23%;  margin-right:2%; margin-bottom:25px; position:relative; text-align:center; overflow:hidden; cursor:pointer;}
.zzry_list li .pic{height:360px; background:#f2f4f8;padding:.3rem 0;box-sizing:border-box;}
.zzry_list li .pic img{max-width:85%;max-height:90%;display: inline-block;opacity:1;}
.zzry_list li .pic p{margin-top:.3rem;font-size:.16rem;}
.zzry_list li .txt{ background:rgba(0,0,0,0.4); position:absolute; transform: scale(0.3); top:0; left:0; width:100%; height:100%; color:#fff; text-align:center; opacity:0; transition: 0.6s all;font-size:.16rem;}
.zzry_list li .txt p{margin-top:.3rem;}
.zzry_list li:hover .txt{ opacity:1; transform: scale(1);}


@media screen and (max-width:768px) {
.zzry_list li{width:47.5%; margin-right:15px;border-radius:5px;}
.zzry_list li:nth-child(2n){margin-right:0;}
.zzry_list li .pic{height:200px; }
.zzry_list li .pic p{font-size:14px;}
}


/*===================内页产品列表================*/

.page_pro li{width:23%;margin:0 1%;background:#fff;padding:.3rem .2rem;box-sizing:border-box;margin-bottom:.3rem;}
.page_pro li .pic{overflow:hidden;}
.page_pro li .pic img{width:100%;display:block;}
.page_pro li .txt{border-top:1px solid rgba(204,204,204,1);margin:.3rem 0 0 0;padding:.3rem 0 0 0;}
.page_pro li .txt h2{font-size:.18rem;}
.page_pro li .txt p{font-size:.14rem;line-height:1.6;color:#888;margin:.2rem 0;}
.page_pro li .link a{border:1px solid rgba(204,204,204,.8);text-align:center;padding:0 .18rem;border-radius:20px;font-size:.13rem;line-height:32px;color:#333;margin-right:.15rem; transition:all .5s;}
.page_pro li .link a i{margin-left:.1rem;color:#333;transition:all .5s;}
.page_pro li .link a:hover{background:var(--main_color);color:#fff;border:1px solid var(--main_color);}
.page_pro li .link a:hover i{color:#fff;}

@media screen and (max-width:768px) {
.page_pro li{width:100%;margin-bottom:25px;margin-right:0;margin-left:0;border-radius:6px;padding:30px 15px;}
.page_pro li .txt{padding:20px 0 0 0;}
.page_pro li .txt h2{font-size:16px;}
.page_pro li .txt p{font-size:13px;margin:10px 0 20px 0;}
.page_pro li .link a{padding:0 30px;font-size:13px;line-height:32px;}
}

/*===================产品内容页================*/
.show_pro{padding:1rem 0 0 0;}
.show_pro .pic,.show_pro .txt{width:48.5%;}
.show_pro .pic{background:#f2f2f2;padding:.3rem .3rem;box-sizing:border-box;overflow:hidden;}
.show_pro .pic img{width:100%;display:block;}
.show_pro .txt h3{font-size:.24rem;margin:.3rem 0;}
.show_pro .txt .pro_con{font-size:.16rem;line-height:1.8;margin-bottom:.2rem;color:#666;text-align:justify;}

@media screen and (max-width:768px) {
.show_pro{padding:30px 0 0 0;}
.show_pro .pic,.show_pro .txt{width:100%;}
.show_pro .pic{padding:10px 10px;margin-bottom:20px;}
.show_pro .txt h3{font-size:18px;margin:15px 0 ;}
.show_pro .txt .pro_con{font-size:14px;margin-bottom:15px;text-align:justify;}
}

/*===================内页项目案例列表================*/

.xmal_list1 li{width:31.3%;margin:0 1%;margin-bottom:.35rem;border-radius:20px;background:#fff;overflow: hidden;}
.xmal_list1 li .pic img{width:100%;display:block;}
.xmal_list1 li .txt{padding:.4rem .25rem .6rem .25rem;font-size:.22rem; transition:all .5s;box-sizing:border-box;}
.xmal_list1 li .txt span{display:block;width: 70px;height: 3px;background-color: var(--second_color);margin-bottom:.3rem;transition:all .5s}
.xmal_list1 li :hover .txt span {background: #fff;width:100%;}
.xmal_list1 li :hover .txt{background: var(--main_color);color:#fff;}

@media screen and (max-width:768px) {
.xmal_list1 li{width:100%;margin:0 0 30px 0;border-radius:5px;}
.xmal_list1 li:nth-child(2n){margin-right:0;}
.xmal_list1 li .txt{font-size:18px;padding:30px 20px ;}
.xmal_list1 li .txt span{width: 70px;height: 3px;margin-bottom:20px;}
}


/*===================内页新闻资讯列表================*/
.page_news_list li{width:23.8%;margin-right:1.5%;margin-bottom:.4rem;background:#fff;}
.page_news_list li:nth-child(4n){margin-right:0;}
.page_news_list li .pic{overflow:hidden;}
.page_news_list li .pic img{width:100%;display:block;}
.page_news_list li .txt{padding:.3rem 0; transition:all .5s; position:relative;}
.page_news_list li .txt:before {content: "";position: absolute;left: 0;bottom: 0;z-index: 1;width: 100%;height: 1px;background: #e2e0e0;}
.page_news_list li .txt:after {content: "";position: absolute;right: 0;bottom: 0;z-index: 2;width: 0;height: 1px;background:var(--main_color);transition: all .3s;}
.page_news_list li:hover .txt:after { width:100%; left:0;}
.page_news_list li .txt h5{font-size:.18rem;font-weight:normal;color:#000;}
.page_news_list li .txt p{font-size:.14rem;color:#888;margin:.2rem 0;line-height:1.6;}

.page_news_list li .txt span{color:var(--second_color);}
.page_news_list li:hover .txt h5{color:var(--main_color)}

.index_news_bg .page_news_list li .txt{padding:.3rem .2rem; }

@media screen and (max-width:768px) {
.page_news_list li{width:100%;margin:0 0 30px 0;}
.page_news_list li .txt{padding:20px 0;}
.page_news_list li .txt h5{font-size:16px;}
.page_news_list li .txt p{font-size:13px;margin:10px 0 20px 0;}

.index_news_bg .page_news_list li .txt{padding:20px 10px;}
}



/*======================文章内容页======================*/
.page_side{width:380px;}
.page_main{width:calc(100% - 410px); background:#fff; padding:.4rem .6rem; box-sizing:border-box;}

.page_side_box{border:solid 1px #e8e8e8; padding:20px 22px; background:#fff;}
.page_side_tit {font-size: .22rem; color: #111; font-weight:bold;  margin-bottom:20px;}

.nextArc{border:solid 1px #e8e8e8; border-bottom: 3px solid var(--main_color); padding:45px 22px; background:#fff;}
.nextArc h3{font-size:.22rem; color: #111; border-bottom: 1px solid #dbdbdb; display:inline-block; padding-bottom:8px; margin-bottom:8px;}
.nextArc p{font-size:15px; line-height:1.8;}

/*内容页*/
.title_txt {font-size:32px;line-height:1.8em; font-weight:bold; color:#000;}

.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;}
.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: 234px; height:80px; border: 1px solid #ddd;}
.share-qrcode{float: left;}
.share-qrcode img{display: block; width: 80px; height: 80px;}
.weixin-close{position: absolute; top: 0; right: 0; 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;  font-size:16px; line-height:2;}
#art_box p {margin-bottom:15px; }
#art_box img{ max-width:100%;}
#art_box table{ border:1px solid #eff3f8; border-collapse:collapse;   font-size:14px; line-height:24px;text-align:center;}
#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 table td:nth-child(2){/*text-align:left;*/}
#art_box a{color:#2343B2;}

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

.qrcode{text-align:center;  margin-top:50px; font-size:14px; color:#999;}
.qrcode img{width: 150px; border:solid 1px #ddd;}

.bot_info{ font-size:15px; border-top:dashed 1px #ddd; margin-top:30px;}
.bot_info p{ border-bottom:dashed 1px #ddd; line-height:2; padding:10px 0;}
.bot_info p a{margin-right:10px;}

/*相关阅读*/
.xg_tit h5{font-size:20px; margin:.5rem 0 .25rem 0; position:relative;/* padding-left:15px;*/}
/*.xg_tit h5:after {width:4px;height:18px;  content: '';position: absolute;left: 0;top: 5px;background:var(--main_color);}*/
.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:7px; height:7px; border-radius:5px; background: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) {
.page_side{ display:none;}
.page_main{width:100%; padding:0;}
.share-main{ display:none;}
.title_txt {font-size:16px;}
.qrcode,.info1,.info2,.show_news_mt .side{ display:none;}
.art_info{margin-bottom:10px; border-bottom: dotted 1px #ddd; }
.art_info em{ font-size:12px; line-height:36px; margin-right:10px;}
#art_box { font-size:14px; line-height:1.8;}

.xg_tit h5{font-size:18px;}
.xg_tit h5:after {width:4px;height:16px; top: 2px;}
.xg_art li{padding-left:15px; font-size:14px; width:100%; line-height:2.4;}
}

/*================图文列表=====================*/
.pic_art_list{}
.pic_art_list li{ margin-bottom:25px; }
.pic_art_list li:last-child{ margin-bottom:5px; }
.pic_art_list li .pic{width:37%; overflow:hidden; border-radius:3px;}
.pic_art_list li .pic img{width:100%;height:100%; object-fit: cover;  display:block;}
.pic_art_list li .txt {width:58%; position:relative;}
.pic_art_list li .txt .time {color:#999; font-size:13px; position:absolute; left:0; bottom:0;}
.pic_art_list li .txt h3{ font-size:15px; line-height:1.6; font-weight:normal; }



/*======================留言反馈======================*/
.page_liuyan{ }
.page_liuyan .pic{width:50%;}
.page_liuyan .pic img{width:100%;height:100%; object-fit: cover; }

.page_liuyan .con{ width:50%;  box-sizing:border-box; background:#fff; border:1px solid #e8e8e8;border-left:0;padding:50px .6rem 25px;}
.page_liuyan .con h3{font-size:.26rem; margin-bottom:.15rem; }
.page_liuyan .con h5{font-size:14px; line-height:1.6; font-weight:normal; margin-bottom:.25rem; color:#666;}

/*留言*/
.message_input {margin-bottom:15px;}
.message_input input::-webkit-input-placeholder,
.message_input textarea::-webkit-input-placeholder{ font-family:Microsoft Yahei;}
.message_input li{ width: 48.5%;} 
.message_input input{border: none; width: 100%;padding:16px 15px;  padding-left: 56px;  box-sizing:border-box; border-radius:50px;} 
.message_input textarea{ border: none;background:#f6f6f6; width: 100%;padding: 15px 15px; box-sizing: border-box;min-height:125px; border-radius:6px;} 
.message_input .form-group input{width:45%; }
.message_input .submit{ border:none;outline: none; border-radius:5px; font-size:15px; margin-top:15px; cursor:pointer; text-align:center; color:#fff; background:var(--main_color); font-family:"微软雅黑"; transition:0.3s all; width:2.6rem; line-height:52px;}
.message_input .submit i{margin-left:.25rem;}

.message_input .inutName {background: url(../images/inputName.png) no-repeat center left 20px #f6f6f6;}
.message_input .inutPhone {background: url(../images/inputTel.png) no-repeat center left 20px #f6f6f6;}
.message_input .inutEmail {background: url(../images/inputEamil.png) no-repeat center left 20px #f6f6f6;}
.message_input .inutAdd {background: url(../images/inputAdd.png) no-repeat center left 20px #f6f6f6;}

.liuyan_bg{background: url(../images/bg.jpg) no-repeat center center; height:279px; margin-top:-220px;}


@media screen and (max-width:768px) {
.page_liuyan{ margin-bottom:20px; background:#eee; z-index:1; position:relative;}
.page_liuyan .pic{ display:none;}
.page_liuyan .con{ width:100%; color: #333; box-sizing:border-box; padding:30px 15px;border-left:1px solid #e8e8e8;}
.page_liuyan .con h3{font-size:18px; margin-bottom:10px;}
.page_liuyan .con h5{font-size:12px; color:#666;}
.message_input input::-webkit-input-placeholder,
.message_input textarea::-webkit-input-placeholder{color: #999;}
.message_input {margin-bottom:0;}
.message_input li{ width:100%; margin-bottom:10px;} 
.message_input input{ padding:15px 15px;  border: 0px; color:#333; padding-left: 56px; } 
.message_input textarea{  border: 0px; color:#333; min-height:125px;}
.message_input .submit{width:100%; border-radius:5px; line-height:42px;}
.liuyan_bg{height:180px; margin-top:-150px;}
}

/*======================联系我们======================*/
.lianxi_box {}
.lianxi_box li{ width:31.5%;transition-duration: .5s;padding: 35px 0;text-align: center;background-size: cover !important;box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);}
.lianxi_box li .ico {width: 62px;margin: 0 auto 20px;}
.lianxi_box li .desc {padding:0 10px;}
.lianxi_box li .desc h5{font-size: 22px;line-height: 1.2;color: #000;font-weight: bold;margin-bottom: 10px;}
.lianxi_box li .desc p{font-size: 16px;line-height: 1.1;color: #666; font-family:Arial, Helvetica, sans-serif;}
.lianxi_box li.bg1{background: url(../images/ser_bg1.jpg) no-repeat center;}
.lianxi_box li.bg2{background: url(../images/ser_bg2.jpg) no-repeat center;}
.lianxi_box li.bg3{background: url(../images/ser_bg3.jpg) no-repeat center;}

.map{height:5rem;margin-top:.5rem;}
.amap-marker-label{padding:20px 10px; border-color: #ababab; border-radius: 5px; color: #888; font-size: 12px;  box-shadow: 0 6px 12px rgba(0,0,0,.2);}
.amap-marker-label h3{color: #333; font-size: 18px;}


@media screen and (max-width:768px) {
.lianxi_box li{ width:100%; padding: 25px 0; margin-bottom:15px;}
.lianxi_box li .ico { margin: 0 auto 10px;}
.lianxi_box li .ico img{width:35px;}
.lianxi_box li .desc h5{font-size:18px; margin-bottom: 10px;}
.lianxi_box li .desc p{font-size: 14px;line-height: 1.3; }
.map{display:none;}
}



/*======================返回按钮======================*/
.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);}

@media screen and (max-width:768px) {
.n_bottom{ margin-top:0;}
}






/*404*/
.page_msg {padding: 50px; background:#fff;}
.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;}



/*内页分页*/
.search-pagination{text-align:center; margin:50px 0 20px 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) {
.search-pagination{text-align:center; margin:0 0 0 0;}
.pagination li a{font-size: 13px;  border-radius:3px;min-width: 30px;height: 30px;line-height: 30px;padding:0 10px; }
.pagination li{margin-bottom:10px;}

}


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

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

}

/*======================mini搜索======================*/
.serch{height:46px; display:flex; justify-content:center;align-items:center;}
.serch #keyword {width:78%;height:36px; border-radius:5px 0 0 5px; background:url(../images/icon-sq2.png) 15px center no-repeat #f2f2f2;padding: 0 .2rem;padding-left:50px;font-size:15px; box-shadow: none;-webkit-appearance: none;border:0; box-sizing:border-box;outline:none; float:left;}
.serch .btn_submit {width: 22%;height:36px; background: #004d98; border-radius:0 5px 5px 0;  font-size:15px;color: #fff;cursor: pointer;text-transform: uppercase;border:0; outline:none;}





/*右侧浮动*/
.online_q {position: fixed;right:10px;bottom: 6%;/*transform: translateY(-50%);*/z-index: 99;transition:.5s;-webkit-transition:.5s;}
.online_q .btn2{cursor:pointer;position:relative;margin-bottom: 5px; text-align:center;transition:.3s; z-index: 0; }
.online_q .btn2 span{display:block;width: 54px;height: 54px;line-height: 54px;position:relative;z-index:999;overflow:hidden;transition:.3s;-webkit-transition:.3s;border-radius: 50%;background: #fff;box-shadow: 0 5px 15px rgba(0,0,0,0.15);}
.online_q .btn2 svg{height: 22px;width: 22px;display: inline-block;vertical-align: middle;fill: #666;}
.online_q .btn2:hover span{background: var(--main_color);}
.online_q .btn2:hover span svg{ fill:#fff;}
@media screen and (max-width:768px) {
.online_q {display:none;}
}
#gotop.hide{ height:0; overflow: hidden;}

.online_q .social-share{position:absolute;background:var(--main_color);border-radius:3px;right:100px;top: 0;text-align: center;opacity:0;transition: .6s;-webkit-transition: .6s;visibility:hidden; color: #fff;white-space: nowrap;padding: 0 15px;}
.online_q .social-share1{height:auto;padding: 0 10px;}
.online_q .social-share:before{content:"";display:block;width:0;height:0;border:10px solid transparent;border-left: 10px solid var(--main_color);position:absolute;right:-15px;top:50%;margin-top:-10px;}
.online_q .social-share img{width:80px;height:80px;margin-top:10px;margin-bottom:5px;}
.online_q .btn2:hover .social-share{opacity:1;right: 70px;visibility:visible;}
.online_q .social-share1:before{top: 24px;}
.online_q .social-share .tel{font-size:20px; line-height:56px;}  
.online_q .social-share p{font-size:14px; margin-bottom:10px;}  

/*弹窗*/
.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,.5);position: absolute;top: 0;left: 0;width: 100%;z-index: 0;}

/*留言弹窗*/
.buy_form{width:9rem; height:6.3rem; 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:2; 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{padding:.2rem;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:125px; 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:95%; height:auto; padding:25px 25px; position:relative;}
.buy_form .close{top:25px; right:25px;}
.buy_form .info{ line-height:1.8; font-size:13px; border-bottom:0; height:auto;}
.buy_form li{ margin-bottom:10px; width:100%;}
.buy_form input{padding:12px 10px;border-radius: 5px; font-size:14px;}
.buy_form textarea{height:90px; border-radius: 5px; font-size:14px;}
.buy_form .submit{font-size:16px; height:40px; line-height:40px;}
}

/*======================按钮放大======================*/
.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;margin-top:40px;}
.lookmore a{display:inline-block;border: #ccc 1px solid; border-radius:.22rem;width:1.55rem; line-height:.42rem; color: #565656; 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) .01rem solid;background: var(--main_color); transition-delay:0.36s}
@-webkit-keyframes criss-cross-left {
0% {
left: -.2rem;
}
50% {
left: 50%;
width: .2rem;
height: .2rem;
}
100% {
left: 50%;
width: 3.75rem;
height: 3.75rem;
}
}
@keyframes criss-cross-left {
0% {
left: -.2rem;
}
50% {
left: 50%;
width: .2rem;
height: .2rem;
}
100% {
left: 50%;
width: 3.75rem;
height: 3.75rem;
}
}
@-webkit-keyframes criss-cross-right {
0% {
right: -.2rem;
}
50% {
right: 50%;
width: .2rem;
height: .2rem;
}
100% {
right: 50%;
width: 3.75rem;
height:3.75rem;
}
}
@keyframes criss-cross-right {
0% {
right: -.2rem;
}
50% {
right: 50%;
width: .2rem;
height: .2rem;
}
100% {
right: 50%;
width: 3.75rem;
height: 3.75rem;
}
}
.btn-11 {
position: relative;
color: #9a7cba;
}
.btn-11:before, .btn-11:after {
position: absolute;
top: 50%;
content: '';
width: .2rem;
height: .2rem;
background: var(--main_color);
border-radius: 50%;
}
.btn-11:before {
left: -.2rem;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
/*     animation: criss-cross-left 0.8s reverse; */
}
.btn-11:after {
right: -.2rem;
-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;
  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;}
