@CHARSET "UTF-8";

/* 屏幕大于760px应用一下样式 */
@media( min-width:760px){

	/* 首页整屏滚动 */
	.slide_content{ position: relative; top: 35%; text-align: center; }
	
	html.fssopen,
	html.fssopen body {
		/* class added to HTML element when full screen slider is open to hide potential body scrollbars */
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		margin: 0;
		overflow: hidden;
	}
	
	section.dd_fullscreenslider {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 33;
		font-size: 16px;
		/* base font size */
		visibility: visible;
		overflow: hidden;
	}
	
	div.slidewrapper {
		/* wrapper DIV that surrounds the ARTICLE elements inside .dd_fullscreenslider */
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		/* to prevent flickering in iOS */
		-moz-transition: -moz-transform 0.5s;
		/* actual duration controlled by script */
		-webkit-transition: -webkit-transform 0.5s;
		transition: transform 0.5s;
	}
	
	ul.fssnav {
		/* UL list dynamically added by script for Slider navigation */
		list-style: none;
		padding: 0;
		margin: 0;
		position: fixed;
		top: 40%;
		/* vertically center menu */
		right: 20px;
		/* distance from right edge of screen */
		transform: translateY(-50%);
		/* vertically center menu */
	}
	
	ul.fssnav li {
		margin-bottom: 15px;
	}
	
	ul.fssnav li a {
		text-decoration: none;
		border: 1px solid #fff;
		/* border color of nav links */
		border-radius: 50%;
		width: 15px;
		/* dimensions of nav links */
		height: 15px;
		display: block;
		position: relative;
		text-indent: -500px;
		outline: none;
		overflow: hidden;
	}
	
	ul.fssnav li a::after {
		/* create "fill" element inside A */
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		top: 100%;
		left: 0;
		background: #3FB044;
		/* color of "fill" element */
		transition: top 0.5s;
		/* transition for "fill up" effect */
	}
	
	ul.fssnav li.selected a::after {
		top: 0;
		/* fill up selected A element from bottom to top */
	}
	
	ul.fssnav .selected a {
		text-decoration: none;
		border: 7.5px solid #3FB044;
		border-radius: 50%;
		width: 15px;
		height: 15px;
		background: #3FB044;
	}
	
	section.dd_fullscreenslider article.slide {
		/* CSS for each slide */
		width: 100%;
		height: 100%;
		display: block;
		font-family: 'Lato', sans-serif;
		/* Use google font */
		font-size: 1.2em;
		line-height: 2em;
		color: white;
		overflow: hidden;
		-webkit-box-sizing: border-box;
		/* include padding/ border as part of declared menu width */
		-moz-box-sizing: border-box;
		z-index: 1000;
		background: #fff;
		-webkit-transform: translate3d(0, 0, 0);
		/* to prevent flickering in iOS */
	}
	
	section.dd_fullscreenslider article.slide h2 {
		/* H2 Header inside each slide */
		font-size: 3em;
		margin: 0;
		line-height: 1.1em;
		letter-spacing: 3px;
	}
	
	section.dd_fullscreenslider article.slide .scrollable {
		/* Assign this class to elements within a slide that should be scrollable */
		overflow: auto;
	}
	
	_section.dd_fullscreenslider article.slide a {
		color: transparent;
	}
	
	section.dd_fullscreenslider article.slide:nth-of-type(2) {
		/* 2nd demo slide bgcolor */
		background: #fff;
	}
	
	section.dd_fullscreenslider article.slide:nth-of-type(3) {
		/* 3rd demo slide bgcolor */
		background: #fff;
	}
	
	section.dd_fullscreenslider article.slide:nth-of-type(4) {
		/* 4th demo slide bgcolor */
		background: #f4f4f4;
	}
	
	section.dd_fullscreenslider div.closex {
		/* Large x close button inside Slider */
		width: 50px;
		height: 50px;
		overflow: hidden;
		display: block;
		position: fixed;
		cursor: pointer;
		text-indent: -1000px;
		opacity: 0.8;
		z-index: 1001;
		top: 5px;
		right: 3px;
	}
	
	section.dd_fullscreenslider div.closex::before,
	section.dd_fullscreenslider div.closex::after {
		/* render large x inside close button */
		content: "";
		display: block;
		position: absolute;
		width: 100%;
		height: 6px;
		background: white;
		/* color of x button */
		top: 50%;
		margin-top: -3px;
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	section.dd_fullscreenslider div.closex::after {
		/* render large cross inside close button */
		-ms-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}

@keyframes firstPart {
	0% {
		bottom: 40px;
	}

	100% {
		bottom: 20px;
	}

}

@-webkit-keyframes firstPart

/* Safari and Chrome */
{
	0% {
		bottom: 40px;
	}

	100% {
		bottom: 20px;
	}

}
.mousetip {
	background: url(../images/download.png) no-repeat;
	width: 51px;
	height: 41px;
	position: absolute;
	bottom: 10px;
	left: 50%;
	margin-left: -25px;
	z-index: 10000!important;
	cursor: pointer;
	animation-name: firstPart;
	animation-duration: 0.8s;
	animation-timing-function: linear;
	animation-delay: 0.3s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-play-state: running;
	-moz-animation-name: firstPart;
	-moz-animation-duration: 0.8s;
	-moz-animation-timing-function: linear;
	-moz-animation-delay: 0.3s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: alternate;
	-moz-animation-play-state: running;
	-webkit-animation-name: firstPart;
	-webkit-animation-duration: 0.8s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-delay: 0.3s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-play-state: running;
	-o-animation-name: firstPart;
	-o-animation-duration: 0.8s;
	-o-animation-timing-function: linear;
	-o-animation-delay: 0.3s;
	-o-animation-iteration-count: infinite;
	-o-animation-direction: alternate;
	-o-animation-play-state: running;
}
.strength {
    bottom: 0;
    color: #ffffff;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 10;
    width: 100%;
    background-color: #3FB044;
    padding: 30px 6.5% 55px;
}
.strength .item {
    display: inline-block;
    height: 100px;
    padding-left: 1px;
    padding-right: 1px;
    vertical-align: bottom;
    width: 16%;
}
.strength .item div i {
    font-size: 54px;
    font-style: normal;
    margin-right: 6px;
    font-family: 'Microsoft YaHei';
    font-weight: 500;
    line-height: 1.1;
}
.strength .item div {
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    font-weight: bolder;
}
.strength .item div span {
    font-size: 28px;
    vertical-align: top;
    display: inline-block;
    line-height: 1;
    font-weight: lighter;
}
.strength .item > span {
    color: inherit;
    display: block;
    letter-spacing: 1px;
    margin-top: 15px;
    text-align: center;
}
.strength .item > span {
    color: inherit;
    display: block;
    letter-spacing: 1px;
    margin-top: 15px;
    text-align: center;
	font-size:16px;
}

/* home products solutions 产品与解决方案 */
.home-products-solutions{ width:100%; overflow:hidden; background:#fff; padding:50px 0; text-align:center;}
.home-products-solutions ul{ padding:0px;}
.home-products-solutions ul li{list-style-type:none; overflow:hidden; margin-bottom:20px;}

.hmCase_aBox { display: block; }
.hmCase_aBox .overflowHide { height: 215px; }
.hmCase_aBox .overflowHide:after{ content:""; background: url(../images/hmcaseBg.png) repeat-x left bottom; display: block; height: 215px; width: 100%; position: absolute; left: 0px; bottom: 0px; }
.hmCase_aBox:hover .hmCase_nm1{ bottom:0; background:rgba(0,0,0,0.75); padding-top:33px; }
.hmCase_aBox:hover .hmCase_nm1 p{opacity:1; transform:translate(0,0)}

.hmCase_aBox2 { display: block; }
.hmCase_aBox2 .overflowHide { height: 215px; }
.hmCase_aBox2 .overflowHide:after{ content:""; background: url(../images/hmcaseBg2.png) repeat-x left bottom; display: block; height: 215px; width: 100%; position: absolute; left: 0px; bottom: 0px; }
.hmCase_aBox2:hover .hmCase_nm2{ bottom:0; background:rgba(255,255,255,0.9); padding-top:33px; }
.hmCase_aBox2:hover .hmCase_nm2 p{opacity:1; transform:translate(0,0)}

.hmCase_aBox2:hover .ellipsis{ color:#E70012;}
.hmCase_nm2 { 
	width: 100%; 
	height:100%; 
	font-size: 15px; 
	_font-weight: bold; 
	color: #FFF; 
	padding: 0px 8%; 
	position: absolute; 
	z-index: 2; 
	left: 0px; 
	bottom: -173px; 
	transition:all 0.5s ease-in-out;
	display:block;
}
.hmCase_nm2 strong{ 
	display: block; 
	line-height: 62px; 
	height: 62px; 
	color:transparent; 
	text-align:center;
}
.hmCase_nm2 p { 
	font-size: 13px; 
	line-height: 23px; 
	color: #333; 
	text-align:center; 
	padding-top: 6px; 
	opacity:0; 
	transition:all 0.3s 
	ease-in-out; 
	transition-delay:0.5s; 
	transform:translate(80px,0) 
}


.hmCaseList { margin: 0px -22px 0px; }
.hmCaseList li { padding: 0px 22px; margin-bottom: 38px; }
.hmCase_nm1 { 
	width: 100%; 
	height:100%; 
	font-size: 15px; 
	font-weight: bold; 
	color: #FFF; 
	padding: 0px 8%; 
	position: absolute; 
	z-index: 2; 
	left: 0px; 
	bottom: -153px; 
	transition:all 0.5s 
	ease-in-out;
}

.hmCase_nm1 strong{ display: block;line-height: 62px; height: 62px;}
.hmCase_nm1 p { font-size: 13px; line-height: 23px; color: #cfcfcf; padding-top: 6px; opacity:0; transition:all 0.3s ease-in-out; transition-delay:0.5s; transform:translate(80px,0) }

.hmCase_more { top:30px; line-height: 34px; text-align: center; display: block; height: 36px; width: 115px; border: 1px solid #999999; text-transform: uppercase; color: #333; font-size: 16px; margin: 0px auto 0px; position: relative; overflow: hidden; }
.hmCase_more span{position:relative; z-index:2;}
.hmCase_more:after{ display:block; content:""; position:absolute; left:50%; top:0; width:0; height:100%; background:#E70012; transform:skew(45deg); -webkit-transform:skew(45deg); transition:all 0.3s ease-in-out 0s; -webkit-transition:all 0.3s ease-in-out 0s;}
.hmCase_more:hover{ color: #fff; border: 1px solid #E70012; }
.hmCase_more:hover:after{ left:-20%; width:140%;}

.overflowHide { overflow: hidden; position: relative;}
.ellipsis {overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block;}

.scaleImg .bgImg { transition: all 0.5s ease; position: absolute; height: 100%; width: 100%; left: 0; top: 0;}
.scaleImg:hover .bgImg { transform: scale(1.1);}
.bgImg { background-position: center center;  background-repeat: no-repeat; background-size: cover;}
.bgImg img { display: none!important;}
.scaleImg img { transition: all 0.5s ease;}

.scaleImg2 .bgImg2 { transition: all 0.5s ease; position: absolute; height: 100%; bottom:40px; width: 100%; left: 0; top: 0;}
.scaleImg2:hover .bgImg2 { transform: scale(1.1);}
.bgImg2 { background-position: center center;  background-repeat: no-repeat; background-size: cover;}
.bgImg2 img { display: none!important;}
.scaleImg2 img { transition: all 0.5s ease;}

/* home products prand 品牌产品 */
.home-products-brand{ width:100%; overflow:hidden; background:#f2f2f2; padding:50px 0; text-align:center;}
.home-products-brand-left-content{ color:#fff; padding:20px; font-size:16px; position:relative; left:0; top:-200px; z-index:10; width:100%; height:100%; display:block; }
.home-f1 .home-products-brand-left-content .line i:before {
    content: "";
    background: #E70012;
    height: 3px;
    width: 50px;
    position: absolute;
	left:40%;
	top:120px;
}

.home-f2 .home-products-brand-left-content .line i:before {
    content: "";
    background: #E5586F;
    height: 3px;
    width: 50px;
    position: absolute;
	left:40%;
	top:120px;
}

.home-f3 .home-products-brand-left-content .line i:before {
    content: "";
    background: #0159A1;
    height: 3px;
    width: 50px;
    position: absolute;
	left:40%;
	top:120px;
}

.home-f4 .home-products-brand-left-content .line i:before {
    content: "";
    background: #C9B338;
    height: 3px;
    width: 50px;
    position: absolute;
	left:40%;
	top:120px;
}

.home-f5 .home-products-brand-left-content .line i:before {
    content: "";
    background: #624933;
    height: 3px;
    width: 50px;
    position: absolute;
	left:40%;
	top:120px;
}

.home-products-brand-left{ float:left; width:300px; height:450px; overflow:hidden;}
.home-products-brand-left img{cursor: pointer; transition: all 0.6s;}

.home-products-brand-left img:hover{ transform: scale(1.05);}
.home-products-brand-right{ float:right; width:830px;}
.home-products-brand-right ul{ padding:0px;}
.home-products-brand-right ul li{list-style-type:none; overflow:hidden; margin-bottom:20px;}
.home-f1,.home-f2,.home-f3,.home-f4,.home-f5{ padding-bottom:20px; overflow:hidden;}

/* home-aboutus 关于我们 */
.home-aboutus {	width: 100%; padding:50px 0; overflow:hidden;}
.home-aboutus img {	max-width: 100%;}
.home-aboutus .about-info p {font-size: 16px; line-height:25px; text-align:justify;text-justify:inter-ideograph;}


/* 首页新闻 home-news */
.home-news{ width:100%; padding:50px 0; overflow:hidden; background:#f2f2f2;}
.home-news ul li{ overflow:hidden; text-align:center; height:200px;}
.home-news ul li img{ 
	width:100%;
}


.hmNews_aBox { display: block;}
.hmNews_aBox .overflowHide { height: 200px;}
.overflowHide { overflow: hidden;  position: relative;}
.scaleImg .bgImg { transition: all 0.5s ease; position: absolute; height: 100%; width: 100%; left: 0;  top: 0;}
.bgImg { background-position: center center; background-repeat: no-repeat; background-size: cover;}
.scaleImg img {
    transition: all 0.5s ease;
}
.bgImg img {
    display: none!important;
}
img {
    border: none;
}
.hmNewsTime {
    width: 63px;
    text-align: center;
    line-height: 22px;
    color: #FFF;
    height: 88px;
    font-family: Arial;
    background: rgba(230,0,18,0.67);
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 0px;
}
.hmNewsTime strong {
    line-height: 36px;
    padding-top: 17px;
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    position: relative;
}
.hmNewsTime strong:after {
    content: "";
    background: #FFF;
    height: 2px;
    width: 17px;
    position: absolute;
    left: 23px;
    bottom: -2px;
}
.hmNewsDes {
    background: rgba(0,0,0,0.3);
    height: 112px;
    padding: 13px 5% 0px;
    transition: all 0.5s ease-in-out;
}
.hmNewsDes .ellipsis {
    font-size: 16px;
    line-height: 40px;
    color: #E60012;
    height: 40px;
    font-weight: normal;
}
.transition {
    transition: all 0.5s ease;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.hmNewsDes p {
    font-size: 13px;
    line-height: 20px;
    color: #fff;
    height: 40px;
    overflow: hidden;
}
.hmNews_aBox:hover .hmNewsDes {
    background: #E60012;
}
.hmNews_aBox:hover .ellipsis{ color:#fff;}

/*屏幕大于760px应用一下样式*/
@media (min-width: 760px){

/* logo */
.navbar-brand .ispc{ display:none;}
.navbar-brand .ishome{ display:block;}	
.navbar-brand .ismobile{ display:none;}	

/* 网站头部客服挂件 */
.top-right{ position:absolute;right:3%; top:35px;}
.top-right ul li{ float:left; margin:0 8px;}

.top-weixinpic{ position:fixed; top:70px; right:70px; }
.top-weixinico:hover span{ display:block;}
.top-weixinico span{ display:none;}

.weixin .fa{ color:#fff;  }
.weixin:hover .fa{ color:#3EA745; }

.envelope .fa{ color:#fff;  }
.envelope:hover .fa{ color:#3EA745; }

.qq .fa{ color:#fff; }
.qq :hover .fa{ color:#3EA745; }


.container-fluid{ padding:0 3%;}
.navbar-brand{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-family: "Microsoft YaHei", "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	background-color: transparent;
	text-decoration: none;
	float: left;
	font-size: 18px;
	line-height: 20px;
	height:60px;
	color: #428bca;
	margin-left: 15px;
	padding:15px 0;
}
.navbar-nav{
	display:table;
	position:fixed;
	top:25px;
	right:8%;
}

.language{
	display:block;
	position:fixed;
	top:30px;
	right:3%;
}



.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
	background-color: rgba(0, 0, 0, 0.00);
	color: #3EA745!important;
}
.nav>li>a:hover, .nav>li>a:focus {text-decoration: none; background-color: #3C740A;}
.nav>li>a:hover{ color:#fff;}	
.navbar-default .navbar-nav>li>a:focus {color: #333;	background-color: rgba(0, 0, 0, 0.00)}

.nav>li>a { position: relative; display: block; padding: 10px 30px;}
.navbar-nav>li>a{ padding-top:10px; padding-bottom:10px; color:#fff;}

.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus {color: #333!important;	background-color: rgba(0, 0, 0, 0.00)}

/* 当前色 */
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus { 
	color: #3EA745!important; 
	background-color:transparent!important;
}

/* 默认色 */
.navbar-default .navbar-nav>li>a {color: #fff!important; font-size:16px;}

/* 一级菜单光标移上去的颜色 */
.navbar-default .navbar-nav>li>a:hover{color:#3EA745!important; background:transparent;}
.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus {color: #fff;	background-color: transparent;}
.nav .open>a,.nav .open>a:hover,.nav .open>a:focus {background-color: #fff;	border-color: transparent;}

a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active {border-color: #fff;}

/* 二级菜单光标移上去的颜色 */
.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus {text-decoration: none;	color: #3EA745; background-color:transparent;}
.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus {
	color: #3EA745!important; 
	text-decoration: none;
	outline: 0;
	background-color: transparent
}

.navbar { 
	position: fixed; 
	border: 0px solid transparent; 
	box-shadow: 0px 2px 4px rgba(0,0,0,0.0); 
	min-height:90px;
	}
.navbar-default {
    background-color: rgba(255, 255, 255, 0.0);
    border-color: rgba(238, 238, 238, 0.95);
}

	/* footer 底部通用 */
	.footer{ 
		width:100%; 
		background:#4d4d4d; 
		overflow:hidden; 
		position:fixed; 
		bottom:0px; 
	}
	
	.ismobile{ display:none;}

}

/*屏幕小于760px应用一下样式*/
@media (max-width: 760px){

/* logo */
.navbar-brand .ispc{ display:block;}
.navbar-brand .ishome{ display:none;}	
.navbar-brand .ismobile{ display:none;}	

.top-right{ display:none;}
.slidewrapper .slide{ padding:30px 0; }

.ispc{ display:none;}
.ismobile{ display:block;}

.strength{ display:none;}

/* footer 底部通用 */
.footer{ 
	width:100%; 
	background:#4d4d4d; 
	overflow:hidden; 
	position:none!important; 
	bottom:none; 
}


｝

/* home-products 热门产品 */
.home-products{ width:100%;	overflow:hidden;}
.home-products ul li{ overflow:hidden; text-align:center; height:200px;}
.home-products ul li img{ 
	width:100%;
}

/* 首页标题 home-title */
.home-title{ 
	text-align:center; 
	margin-bottom:50px; 
	overflow:hidden;
	line-height: 60px;
	text-align: center;
	padding-top: 30px;
	margin-bottom: 50px;
	position: relative;

 }
.home-title h1{ font-size: 22px; }
.home-title p{ font-size:16px;  }
.home-title:after{ 
	content:"0"; 
	height:5px; 
	width:36px; 
	background:green; 
	position:absolute; 
	left:50%; 
	bottom:-2px; 
	margin-left:-18px;
	z-index:2; 
}
.home-title i{
	background: #D8E8BF;
	height: 1px;
	width: 150px;
	position: absolute;
	left: 50%;
	bottom: 0px;
	margin-left: -75px;
}
.home-title i:before{
	content: "";
	background: #3eb044;
	height: 1px;
	width: 13px;
	position: absolute;
	left: -15px;
	top: 0px;

}
.home-title i:after{
	content: "";
	background: #3eb044;
	height: 1px;
	width: 13px;
	position: absolute;
	right: -15px;
	top: 0px;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	
