/* css reset */
*{
	margin:0;
	padding: 0;
	border: 0;
}
ul,ol{
	list-style: none;
}
a{
	text-decoration: none;
	color: inherit;
	border:none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color:transparent;
	outline:none;
}
img{
	display: block;
}
h1,h2,h3,h4,h5,h6{
	font-size: 100%;
	font-weight: normal;
}
.banner{
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #fff;
}
.banner .swiper-slide{
	/* height: 8.0rem; */
}
.banner .swiper-slide img{
	max-width: 16rem;
	width: 100%;
}
.banner .swiper-pagination-bullet{
	width: 0.25rem;
	height:0.25rem;
	background: #fff;
	opacity: 1;
}
.banner .swiper-pagination-bullet-active{
	background:#0065B2;
}
article,aside,details,figcaption,figure,footer,
header,hgroup,menu,main,nav,section,summary,time,
mark,audio,video,textarea {
	display: block;
}
textarea,input,button{
	-webkit-appearance: none; 
}
/*通用样式*/
.fl{
	float: left;
}
.fr{
	float: right;
}
.clear{
	clear:both;
}
.hide{
	display: none;
}
.lightgray{
	color:#666;
}
.deepgray{
	color:#333;
}

html{
	background: #efefef;
}
body{
	width: 100%;
	max-width: 16rem;
	background: #efefef;
	margin: 0 auto;
	font-family: "Microsoft Yahei",arial,"Helvetica Neue", Helvetica, STHeiTi, sans-serif;
	font-size: .6rem;
}
.wrapper{ overflow:hidden;
}
/* head */
header{
	box-sizing: border-box;
	width: 16.0rem;
	height:2.2rem;
	border: 1px solid #dcdcdc;
	border-left: none;
	border-right: none;
	background:#f7f7f7;
	padding: 0.5rem 0.75rem;
	position: fixed;
	z-index: 9999;
}
.logo{
	display: block;
	width: 5.2rem;
	height: 1.15rem;
	-webkit-background-size: cover;
	background-size: cover;
}
.logo img{ width:100%; max-width:202px;}
.icon_search{
	display: block;
	width: 1.85rem;
	height: 1.15rem;
	background:url(search.png) no-repeat center;
	-webkit-background-size: 0.6rem 0.6rem;
	background-size: 0.6rem 0.6rem;
	border-right: 1px solid #cfcfcf;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color:transparent;
}
.icon_menu{
	display: block;
	width: 0.75rem;
	height: 1.15rem;
	background:url(menu.png) no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
	margin-left: 0.625rem;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color:transparent;
}
/*侧边菜单栏*/
.bg_mask{
	width: 100%;
	height: 100%;
	position:fixed;
	top:0;
	left:0;
	background: rgba(0,0,0,.5);
	z-index: 10000;background-image: url(gb.png);
	background-repeat: no-repeat;
	background-position: 30px 30px;
}
 .index_menu{
	box-sizing: border-box;
	width: 7.5rem;
	height: 100%;
	position: fixed;
	top:0;
	right: -7.5rem;
	background:#333;
	z-index: 9999999;
	padding-left:1rem;
	padding-top: 0.85rem;
	/* display: none; */
	overflow: auto;
}
 .index_menu ul{
	margin-bottom: 2.35rem;	
}
 .index_menu li a{
	font-size: 0.6rem;
	color: #bdbebe;
	display: block;
	padding: 0.5rem;
	position: relative;
	border-bottom: 1px solid #2a2a2a;
}
 .index_menu li a:hover{
	font-size: 0.6rem;
	color: #fff; background-color:#0065B2;
	display: block;
	padding: 0.5rem;
	position: relative;
	border-bottom: 1px solid #015593;
}
 .index_menu li.sec a{
	font-size: 0.6rem;
	color: #fff; background-color:#0065B2;
	display: block;
	padding: 0.5rem;
	position: relative;
	border-bottom: 1px solid #015593;
}
 .index_menu li a:after{
	content: "";
	display: block;
	width: 0.25rem;
	height: 0.4rem;
	background:url(more.png);
	background-size: cover;
	position: absolute;
	top:0.75rem;
	right:0.9rem;
}
 .index_menu p{
	font-size: 0.5rem;
	line-height: 0.75rem;
	color:#7c7c7c;
	padding-left: 0.5rem;
	margin-bottom: 0.35rem;
}
 .index_menu p > span{ color:#fff;
	display: block;
	font-size: 0.5rem;
}
/*头部搜索栏*/
.index_search{
	width: 100%;
	height: 101%;
	position: fixed;
	top:0;
	left:0;
	z-index: 9999999;
	background: #f2f4f5;
	-webkit-transition-property:transform;
	transition-property:transform;
	-webkit-transform:translate3d(0,150%,0);
	transform: translate3d(0,150%,0);
	overflow: hidden;
}
.search_show{
	-webkit-transform:translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition-duration:.7s;
	transition-duration: .7s;
}
.search_hide{
	-webkit-transform:translate3d(0,150%,0);
	transform: translate3d(0,150%,0);
	-webkit-transition-duration:.7s;
	transition-duration: .7s;
}
.index_search .search_content{
	height: 1.25rem;
	padding:1.0rem 0.5rem 0.45rem;
	background:#424355;
}
.search_content span{
	display: block;
	width: 1.0rem;
	height: 0.85rem;
	background: url(go_back.png) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.search_content .search_box{
	width: 13.0rem;
	height: 1.2rem;
	border-bottom:1px solid #fff;
}
.search_box input{
	vertical-align: top;
	background:#424355;
	height: 0.9rem;
	font-size: 0.75rem;
	outline: none;
}
.search_box .search_key{
	text-indent: 0.5rem;
	color: #b6b7b7;
}
.search_box .search_btn{
	text-indent: -999px;
	width: 0.9rem;
	height: 0.9rem;
	background:url(icon_search.png);
	-webkit-background-size: cover;
	background-size: cover;
	float: right;
	margin-right: 0.5rem;
}
.boiler_classify{
	width: 15.0rem;
	margin:0.7rem auto;
	box-sizing: border-box;
	border: 1px solid #dedfe0;
	border-radius: 4px;
	text-align: center;
}
.boiler_classify a{
	display: block;
}
.boiler_classify span{
	font-size: 0.65rem;
	line-height: 2.0rem;
	color: #666;
}
.boiler_classify span:after{
	content: "";
	display: inline-block;
	width: 0.35rem;
	height: 0.75rem;
	background: url(icon_more.png) 0 1px no-repeat;
	-webkit-background-size: cover;
	background-size: contain;
	margin-left: 0.75rem;
	vertical-align: middle;
}
.hot_search{
	padding:0 0.5rem;
}
.hot_search span{
	display: block;
	font-size: 0.65rem;
	color: #666;
	line-height: 0.65rem;
	margin-bottom: 0.7rem;
}
.hot_search a{
	display: inline-block;
	font-size: 0.65rem;
	color: #333;
	border: 1px solid #dedfe0;
	border-radius: 4px;
	line-height: 1.65rem;
	padding: 0 0.4rem;
	margin-bottom:0.45rem;
	margin-right:0.45rem;
}
.hot_search a:hover{ background-color:#0065B2; border:#025490 solid 1px; color:#fff;}
/* 内容页*/
.content{
	width:100%;
	margin-top: 2.2rem;
}
.current_column{
	height: 1.5rem;
	background:#424355;
	font-size: 0.6rem;
	line-height: 1.5rem;
	padding-left: 0.5rem;
	color:#b6b7b7;
}
.column{
	padding: 0 0.5rem;
	background: #424355;
}
.column ul{
	overflow: hidden;
	padding-top: 0.375rem;
}
.column ul li{
	float: left;
	height: 1.25rem;
	width: 4.75rem;
	box-sizing: border-box;
	border: 1px solid #b6b7b7;
	border-radius: 0.1rem;
	color:#b6b7b7;
	margin-bottom: 0.375rem;
}
.column ul li:not(:nth-child(3n)){
	margin-right: 0.375rem;
}
.column ul li.active{
	border-color: #0065B2;
	color:#fafafa;
	background: #0065B2;
}
.column ul li a{
	display: block;
	font-size: .5rem;
	line-height: 1.2rem;
	text-align: center;
	color:inherit;
}
.column ul li:hover{
	border-color: #0065B2;
	color:#fafafa;
	background: #0065B2;
}
.main{
	padding:0.5rem 0.5rem 1.25rem;
	background: #fff;
	border-bottom:1px solid #e0e0e0;
}


/*返回顶部按钮*/
.back_top{
	width: 40px;
	height:52px;
	position: fixed;
	right: 0;
	bottom: 5.0rem;
	background: url(go_top.png) no-repeat center;
	-webkit-background-size: cover;
	background-size: cover;
	z-index:9999;
	display: none;
}


/* foot */
.foot_contact{
	width: 100%;
	height: 3.4rem;
	border-top: 1px solid #e0e0e0;
	background:#fff;
	margin-top: 0.35rem;
}
.foot_contact .call_anytime{
	width: 15.4rem;
	height: 1.05rem;
	background:#0065B2;
	border-radius: 3px;
	margin:0.625rem auto;
}
.foot_contact .call_anytime p{
	text-align: center;
	font-size: 0.55rem;
	line-height: 1.05rem;
	color: #fff;
}
.foot_contact div:last-child{
	padding: 0 0.5rem;
}
.foot_contact div:last-child span{
	font-size: 0.5rem;
	float: left;
	line-height: 0.7rem;
}
.foot_contact .weibo{
	display: block;
	width: 0.8rem;
	height: 0.65rem;
	background:url(weibo.png) no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	margin:0 0.4rem 0 0.2rem;
}
.foot_contact .wechat{
	display: block;
	width: 0.8rem;
	height: 0.65rem;
	background:url(wechat.png) no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.foot_contact .web_tab{
	font-size: 0.5rem;
	line-height: 0.7rem;
}
.foot_contact .web_tab i{
	font-size: 0.5rem;
	margin: 0 0.5rem;
}
.copyright{
	height: 3.5rem;
	border-top: 1px solid #e0e0e0; text-align:center; 
}
.copyright p{
	font-size: 0.5rem;
	line-height: 1.25rem;
	text-align: center;
}
.foot_fixed{
	width: 16rem;
	height: 2.25rem;
	position: fixed;
	bottom: 0;
	z-index: 1000;
}
.foot_fixed ul{
	width: 100%;
	height: 100%;
	background-color:#FAFAFA;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: flex;
border-top: 1px solid #cfcfcf;
}
.foot_fixed ul li{
	-webkit-box-flex:1;
	-moz-box-flex:1;
	-webkit-flex:1;
	flex: 1;
	box-sizing: border-box;
	background-repeat: no-repeat;
	-webkit-background-size: 1.45rem;
}
/*.foot_fixed ul li:not(:last-child){
	border-right:1px solid #bdbebe;
}*/
.foot_fixed ul li:first-child{
	background-image:url(home_2.png);
	background-size: 1.45rem 1.45rem;
    background-position:center 0.1rem;
}
.foot_fixed ul li:nth-child(2){
	background-image:url(products_2.png);
	background-size: 1rem;
    background-position: center 0.35rem;
}
.foot_fixed ul li:nth-child(3){
	background-image:url(projects_2.png);
	background-size: 1.25rem;
    background-position: center 0.25rem;
}
.foot_fixed ul li:nth-child(4){
	background-image:url(markting_2.png);
	    background-size: 1.25rem;
    background-position: center 0.25rem;
}
.foot_fixed ul li:last-child{
	background-image: url(phone_2.png);
	background-size: 1.05rem;
    background-position: center 0.3rem;
}
.foot_fixed a{
	display: block;
	height: 100%;
}
.foot_fixed li span{
	display: block;
	text-align: center;
	color: #333333;
	font-size: 0.45rem;
	line-height: 0.45rem;
	padding-top: 1.55rem;
}


/* 11.3  搜索页面样式 */
.keyboard{
	color:#f00;
}
.search_list li{
	border-bottom: 1px solid #d2d2d2;
	margin-bottom: 0.5rem;

}
.search_list li h3{
	font-size: 0.75rem;
	color:#333;
	padding: 0.2rem 0;
	line-height: 1.2;
}
.search_list li p{
	font-size: 0.65rem;
	color: #666;
	line-height: 1rem;
	padding-bottom: .25rem;
	text-align: justify;
}
.page{
	width: -webkit-fit-content;
	height: 1.4rem;
	margin: 0 auto;
	overflow: hidden;
	margin-bottom: 0.1rem;
}
.page:after{
	content: ".";
	display: block;
	visibility: hidden;
	height: 0;
	clear: both;
}
.page b{
	display: block;
	float: left;
	font-size: 0.6rem;
	padding: 0.25rem;
	color: #fff;
	border: 1px solid #0065B2;
	background:#0065B2;
	margin-right: 0.3rem;
}
.page a{
	display: block;
	float: left;
	font-size: 0.6rem;
	padding: 0.25rem;
	box-sizing: border-box;
	color:#8a8a8a;
	border: 1px solid;
	margin-right: 0.3rem;
	/* margin-left: .3rem; */
}
#pagelist .right{ height:50px;float:right;}
#pagelist .right A{ height:30px; line-height:30px; background-color:#444; color:#fff; font-size:13px; text-align:center; display:block; float:left; margin-left:12px; padding-left:15px; padding-right:15px;}
#pagelist .right A:hover{ height:30px; line-height:30px; background-color:#0065B2; color:#fff; font-size:13px; text-align:center; }
#pagelist .right A.sec{ height:30px; line-height:30px; background-color:#0065B2; color:#fff; font-size:13px; text-align:center; }
.phone-menu0 ul {
	margin: 0px; padding: 0px;
}

.phone-menu0 {
	background: linear-gradient(rgb(71, 71, 71) 0%, rgb(47, 47, 47) 100%); margin: 0px; padding: 0px; left: 0px; width: 100%; height: 54px; bottom: 0px; border-top-color: rgb(29, 29, 29); border-bottom-color: rgb(0, 0, 0); border-top-width: 1px; border-bottom-width: 1px; border-top-style: solid; border-bottom-style: solid;  position: fixed !important; z-index: 9999;
}
.phone-menu0 li {
	list-style: none; width: 20%; text-align: center; float: left;
}
.phone-menu0 li:hover {
	background-color: rgb(51, 51, 51);
}
.phone-menu li.active {
	background-color: rgb(51, 51, 51);
}
.phone-menu0 li a {
	color: rgb(255, 255, 255); overflow: hidden; font-size: 12px; text-decoration: none; display: block; white-space: nowrap; -ms-text-overflow: ellipsis;
}
.phone-menu0 li i {
	background: url("phone-menu0.png") no-repeat 0% 0% / 25px; margin: 6px auto 2px; width: 25px; height: 25px; float: none; display: block;
}
.phone-menu0 li i.icon1 {
	background-position: 0px 0px;
}
.phone-menu0 li i.icon2 {
	background-position: 0px -25px;
}
.phone-menu0 li i.icon3 {
	background-position: 0px -50px;
}
.phone-menu0 li i.icon4 {
	background-position: 0px -75px;
}
.phone-menu0 li i.icon5 {
	background-position: 0px -101px;
}
.ShareBoxx { display:block;

}
.ShareBoxx .ShareAni {
	transition:1s ease-in-out; -webkit-transition: all 1s ease-in-out 0s; -moz-transition: all 1s ease-in-out 0s; -o-transition: all 1s ease-in-out 0s;
}
.ShareBoxx .ShareBoxBg {
	background: url("productBg.png"); left: 0px; top: 0px; width: 100%; height: 100%; position: fixed; z-index: -1; opacity: 0;
}
.ShareBoxx .ShareBox {
	background: url("white.png"); padding: 20px; left: 0px; width: 100%; bottom: 54px; position: fixed; z-index: 9998; transform: translateY(300px); -webkit-transform: translateY(300px); -moz-transform: translateY(300px); -o-transform: translateY(300px);
}
.ac .ShareAni {
	z-index: 9997; opacity: 1;font-size: .6rem;
}
.ac .ShareBox {
	transform: translateY(0px); -webkit-transform: translateY(0px); -moz-transform: translateY(0px); -o-transform: translateY(0px);
}
.ShareBox h3 {
	padding: 0px 0px 20px; text-align: center; font-size: 18px;
}
.ShareBox li {
	width: 25%; text-align: center; color: rgb(51, 51, 51); float: left; min-height: 100px;
}
.ShareBoxx .ShareBox li a {
	background: url("share.png") no-repeat -9px 0px / 300px; margin: 0px auto 10px; width: 56px; height: 50px; padding-left: 0px; float: none; display: block;
}
.ShareBoxx .ShareBox .jiathis_style_24x24 li a span {
	display: none !important;
}
.ShareBoxx .ShareBox li a.weix {
	background-position: -157px 0px;
}
.ShareBoxx .ShareBox li a.ren {
	background-position: -231px 0px;
}
.ShareBoxx .ShareBox li a.qzong {
	background-position: -84px 0px;
}
.ShareBox .Cancellation {
	background: url("white.png"); border: 1px solid rgb(221, 221, 221); border-image: none; text-align: center; color: rgb(51, 51, 51); line-height: 40px;
}