/* fonts set */
@font-face {
    font-family: 'impactregular';
    src: url('../fonts/impact-webfont.eot');
    src: url('../fonts/impact-webfont.eot?#iefix') format('embedded-opentype'),
	url('../fonts/impact-webfont.woff2') format('woff2'),
	url('../fonts/impact-webfont.woff') format('woff'),
	url('../fonts/impact-webfont.ttf') format('truetype'),
	url('../fonts/impact-webfont.svg#impactregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* end */
html{
	height: 100%;
}
body{
	height: 100%;
}
body{
	font-family: arial,;
	color: #333333;
	font-size: 14px;
	line-height: 1.5;
}
ul,ol,li,dl,dt,dd {
	margin: 0;
	padding: 0;
	list-style: none;
}
a {
	color: #333;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	text-decoration: none;
}
a:hover {
	color: #CC0000;
	text-decoration: none;
}
a:focus,
a:active {
	outline: none;
	text-decoration: none;
}
/*img {
	display: block;
	max-width: 100%;
	height: auto;
}*/
section{
	padding: 20px 0;
}
@media (min-width: 768px) {
	body > section {
  		/*padding: 40px 0;*/
	}
}

/** css code start **/

/******************
 * 导航   *
 *****************/
.header{
	background-color: #FFFFFF;
}
.header.fixed{
	position: fixed;
	z-index: 1000;
	width: 100%;
	top: 0px;
	left: 0px;
	right: 0px;
}
.navbar-nav{
	margin: 0px -15px;
}
/* first level menu */
.navbar.navbar-default {
	border-radius: 5px;
	margin: 10px;
	background-color: #FFFFFF;
	border-color: #f1f1f1;
}
.navbar.navbar-default .navbar-nav{
	background-color: #fafafa;
}

/* first level menu items */
.navbar-default .navbar-nav > li > a {
	color: #666666;
	text-transform: none;
	font-size: 14px;
	/*font-weight: bold;*/
	padding: 8px 20px;
	z-index: 102;
	border: 1px solid transparent;
	bottom: -1px;
	/*-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;*/
}
.navbar-default .navbar-nav > li > a:hover {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.navbar-brand{
	padding-left: 10px;
	padding-right: 10px;
}
/* first level active menu items on hover/focus */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus {
	color: #005C9D;
	background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:hover {
	background-color: transparent;
	color: #FFFFFF;
}

/* first level active menu items when opened */
.main-navigation .navbar-nav > .open > a,
.main-navigation .navbar-nav > .open > a:hover,
.main-navigation .navbar-nav > .open > a:focus {
	color: #005C9D;
	background-color: transparent;
	border: 1px solid transparent;
	border-bottom: 1px solid transparent;
}

/* first level active menu items when clicked */
.main-navigation .navbar-nav > .open > a:active,
.main-navigation .navbar-nav > .open.active > a:active {
	background-color: #ffffff;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: transparent;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.main-navigation .navbar-nav > .open > a:active + ul,
.main-navigation .navbar-nav > .open.active > a:active + ul {
	display: none;
}

/* second level menu */
.dropdown-menu {
	min-width: 180px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	padding: 0;
	margin: 0;
	background-color: #fafafa;
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f1f1;
	z-index: 101;
}

/* second level menu items */
.dropdown-menu > li > a {
	padding: 8px 20px;
	font-size: 14px;
	color: #666666;
	border-bottom: 1px solid #f1f1f1;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}

/* second level menu items on focus/hover and when opened */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.dropdown-menu .menu > .active > a,
.dropdown-menu .menu > .active > a:hover,
.dropdown-menu .menu > .active > a:focus {
	background-color: #ffffff;
	color: #005C9D;
	border-color: #f1f1f1;
}

/* third level menu */
.dropdown-menu .dropdown-menu {
	top: -1px;
	left: 100% !important;
	padding-top: 0;
	margin-left: 1px;
	border-left: none;
	-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
	border-top: 1px solid #f1f1f1;
}

/* dropdown animations */
.animated.main-navigation .open .dropdown-menu,
.open .dropdown-animation {
	-webkit-animation-duration: 0.2s;
	animation-duration: 0.2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUpSmall;
	animation-name: fadeInUpSmall;
}
.open .dropdown-animation {
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
}
.animated.main-navigation .dropdown-menu .open .dropdown-menu {
	-webkit-animation-name: fadeInLeftSmall;
	animation-name: fadeInLeftSmall;
}
/**** animations **/
@-webkit-keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}
/**** fadeInDownSmall *****/
@-webkit-keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*** fadeInLeftSmall ***/
@-webkit-keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

/* mobile menu toggle button */
.navbar-default .navbar-toggle {
	border-color: #CC0000;
}
/* mobile menu toggle button on hover/focus */
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
	background-color: #FFFFFF;
	border-color: #CC0000;
}
.navbar-default .navbar-toggle .icon-bar {
	background-color: #CC0000;
}
.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
	background-color: #CC0000;
}
.main-navigation .navbar-brand{
	padding-top: 5px;
	padding-bottom: 5px;
}
.main-navigation .navbar-brand img{
	height: 40px;
}
.main-navigation .navbar-brand span{
	display: none;
}

.head-rt-top a{
		display: inline-block;
		height: 20px;
		padding-left: 30px;
		background-repeat: no-repeat;
		background-position: left center;
	}
.head-rt-top a.en{
		background-image: url(../images/en.png);
	}
.head-rt-top a.cn{
		background-image: url(../images/cn.png);
	}
.head-rt-top a.jp{
		background-image: url(../images/jp.png);
	}
.head-rt-top a.ko{
		background-image: url(../images/ko.png);
	}

.offsethh{
	margin-top: 74px;
}
.navbar-toggle{
	padding: 9px 5px;
}
/* Small devices (tablets, 768px and up) */
@media screen and (max-width: 768px){

.main-leftnavigation{
		height: 12px;
		display: none;
	}
}

@media (min-width:768px) {
	.navbar-nav{
		margin: 0px;
	}
	.offsethh{
		margin-top: 120px;
	}
	.navbar.navbar-default{
		margin: 0px;
		background-color: transparent;
		border-color: #000000;
		border-radius: 0px;
		border: none;
	}
	.navbar.navbar-default .navbar-nav{
		background-color: transparent !important;
		border-left: 1px solid #dad7df;
	}
	.main-navigation .navbar-nav > .open > a,
	.main-navigation .navbar-nav > .open > a:hover,
	.main-navigation .navbar-nav > .open > a:focus{
		color: #005C9D;
		background-color: transparent;
	}
	.navbar-default .navbar-nav > li {
		border-left: 1px solid #FFFFFF;
		border-right: 1px solid #DAD7DF;
	}
	.navbar-default .navbar-nav > li:last-child::after{
		width: 1px;
		height: 42px;
		background-color: #fff;
		position: absolute;
		top: 0px;
		right: -2px;
	}
	.navbar-default .navbar-nav > li > a:focus{
		color: #005C9D;
		background-color: transparent;
	}
	.main-navigation .navbar-nav.navbar-right:last-child {
		margin-right: 0;
	}
	/* first level menu */
	.nav-bgcolor{
		background-color: #f0f0f0;
		border-bottom:1px white dotted;
		margin-bottom:1px;
	}
	.navbar-collapse {
		padding-right: 0px;
		padding-left: 0px;
	}
	.main-navigation .navbar-right .dropdown-menu {
		right: auto;
		left: 0;
	}
	.main-navigation .navbar-right > li:last-child > .dropdown-menu {
		right: 0;
		left: auto;
	}
	.navbar-nav li.dropdown a:hover{
		background: none;
	}
	.main-navigation .navbar-nav {
		float: none !important;
	}
	.navbar-default .navbar-nav > li:before,
	.navbar-default .navbar-nav > li:after
	{
		display: table;
  		content: " ";
	}
	.navbar-default .navbar-nav > li:after{
		clear: both;
	}
	/*.navbar-default .navbar-nav > li + li::before{
		width: 2px;
		height: 20px;
		background: #787878;
		position: absolute;
		top: 10px;
	}*/
	.navbar-default .navbar-nav > li > a{
		padding: 0 13px;
		font-size: 14px;
		line-height: 40px;
		color: #000;
	}
	.navbar-default .navbar-nav > li > a::after{
		position: absolute;
		height: 2px;
		background-color: transparent;
		display: table;
		content: " ";
		clear: both;
		bottom: 6px;
		left: 50%;
		width: 0;
		background-color: #005C9D;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	.navbar-default .navbar-nav > li > a:hover{
		color: #005C9D;
	}
	.navbar-default .navbar-nav > li:hover > a::after {
		background-color: #005C9D;
		width: 54%;
		left: 23%;
	}

	/* logo top */
	.main-navigation .navbar-header{
		float: none !important;
	}
	.main-navigation .navbar-header .logo{
		float: left;
		margin-top: 15px;
		margin-bottom: 10px;
	}
	.navbar > .container .navbar-brand{
		margin-left: 0px;
	}
	.main-navigation .navbar-brand{
		padding-top: 4px;
		padding-bottom: 4px;
		padding-left: 0px;
		height: 60px;
		position: relative;
	}
	.main-navigation .navbar-brand img{
		height: 52px;
		float: left;
	}
	
	.main-navigation .head-right{
		float: right;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.main-navigation .head-rt-top{
		width: 90%;
		height: 20px;
		line-height: 20px;
		font-size: 14px;
	}
	
	
	/* logo top end */
}

/* Medium desktop devices */
@media (min-width:992px) {
	/*.main-navigation .navbar-brand{
		height: 52px;
	}
	.main-navigation .navbar-brand img{
		height: 52px;
	}
	.main-navigation .navbar-brand span{
		line-height: 52px;
		font-size: 28px;
	}*/
	/* second level menu items */
	.navbar-default .navbar-nav > li > a{
		padding: 0 23px;
		font-size: 15px;
		/*line-height: 40px;*/
	}
}

/* Large devices (Large desktops 1200px and up) */
@media (min-width:1200px) {
	/* first level menu item */
	.main-navigation .navbar-nav > li >a {
		padding: 0 35px;
	}
}

/* Small devices (tablets, phones less than 767px) */
@media (max-width:767px) {
	/* Mobile menu
	------------------------------ */
	/* active items */
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
		color: #005C9D;
		background-color: transparent;
	}
	
	/* first level items */
	.navbar-default .navbar-nav > li > a {
		border-bottom: 1px solid #f1f1f1;
	}
	.navbar-default .navbar-nav > li:last-child > a {
		border-bottom: 1px solid transparent;
	}
	
	/* first level items when opened */
	.main-navigation .navbar-nav > .open > a,
	.main-navigation .navbar-nav > .open > a:hover,
	.main-navigation .navbar-nav > .open > a:focus {
		border-color: transparent;
		-moz-box-shadow: none;
		-o-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	
	/* first level items hover and focus states */
	.navbar-default .navbar-nav > li > a:hover,
	.navbar-default .navbar-nav > li > a:focus,
	.navbar-default .navbar-nav > .active > a:hover,
	.navbar-default .navbar-nav > .active > a:focus {
		color: #005C9D;
		background-color: #fff;
	}
	
	/* second level menu */
	.navbar-default .navbar-nav .open .dropdown-menu {
		background-color: #ffffff;
	}
	
	/* second level items */
	.navbar-default .navbar-nav .open .dropdown-menu > li > a,
	.navbar-default .navbar-nav .open .dropdown-menu .dropdown-header {
		padding: 12px 15px 12px 40px;
		color: #666666;
		border-color: #fafafa;
	}
	
	/* second level items on hover/focus */
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
	.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
		color: #005C9D;
	}
	
	/* third level items */
	.navbar-nav .open .dropdown-menu .dropdown-menu > li > a {
		padding-left: 60px;
	}
	
	/* four level items */
	.navbar-nav .open .dropdown-menu .dropdown-menu .dropdown-menu > li > a {
		padding-left: 80px;
	}
	
	/* Arrows for parent menu items */
	.dropdown>a:before {
		right: 32px;
	}
	.dropdown .dropdown>a:before {
		right: 30px;
	}
}

/******************
 * 幻灯样式   *
 *****************/
.section-banner{
	padding: 0;
	position: relative;
}

/**
 * 搜索
 */
.top-form{
	/*float: right;*/
	margin-top: 10px;
	/*padding-top: 20px;*/
}
.top-form .form-group{
	margin-bottom: 0;
	float: left;
}
.top-form .form-control {
	height: 30px;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 12px;
	line-height: 2;
	border: 1px solid #d5d5d5;
	color: #b6b6b6;
	border-radius: 0;
	padding-right: 10px;
	padding-left: 10px;
	min-width: 150px;
	box-shadow: none;
}
.top-form .btn-default{
	float: left;
	border: none;
	background-color: #005C9D;
	color: #FFFFFF;
	border-radius: 0;
	padding: 5px 10px;
}

.top-form .form-control-feedback{
	height: 30px;
	width: 30px;
	line-height: 30px;
	left: 0px;
	right: auto;
	color: #B6B6B6;
}
/* 搜索end */

/* index new product */
.section-product{
	background-color: #FFFFFF;
}
.new-pro-title{
	font-family: 'impactregular';
	text-align: center;
	color: #005C9D;
	font-weight: bold;
	text-transform: none
}
.new-pro-title h2 {
	display: inline-block;
	position: relative;
	margin-top: 0;
	margin-bottom: 0;
	padding: 10px;
	font-size: 18px;
}

/* owl */
.case-wrap{
	margin-top: 10px;
	background-color: #F0F0F0;
	padding: 15px;
	border-radius: 5px;
}
.case-pic{
	width: 100%;
	overflow: hidden;
}
.case-pic img{
	display: block;
	max-width: 100%;
	height: auto;
	transition:all 0.4s ease-in 0s; -webkit-transition:all 0.4s ease-in 0s; -moz-transition:all 0.4s ease-in 0s; -o-transition:all 0.4s ease-in 0s;}

.case-pic:hover img{
	display: block;
	max-width: 100%;
	height: auto;
	transform:scale(1.1); -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1);-ms-transform:scale(1.1);}

.case-title{
	color: #005C9D;
	font-size: 18px;
	/*font-weight: bold;*/
	margin-top: 20px;
	transition: all ease-in-out 400ms;
	text-align: center;
	margin-bottom: 20px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.case-wrap a{
	display: block;
}
.case-wrap:hover .case-title{
	color: #CC0000;
}

.owl-theme .owl-controls .owl-nav div{
	width: 26px;
	height: 27px;
	padding: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	text-indent: -9999em;
	margin: 10px;
}
.owl-theme .owl-controls .owl-nav div.owl-prev{
	background-image: url(../images/prev.png);
}
.owl-theme .owl-controls .owl-nav div.owl-next{
	background-image: url(../images/next.png);
}
/* owl end */
/* end */

/* about-index */
.section-about{
	background-image: url(../images/topbj.png); repeat-x center bottom;
	background-color: #F0F0F0;
	position: relative;
}

.section-project{
	/*background-image: url(../images/project_back.jpg); repeat-x center top;*/
	background-color: #005C9D;
	position: relative;
}
.about-project{
	font-family: 'impactregular';
	text-align: center;
	font-size: 20px;
	color: #FFF;
	text-transform: none
}

.about-head{
	font-family: 'impactregular';
	text-align: center;
	font-size: 20px;
	color: #005C9D;
	text-transform: none
}
.about-small{
	text-align: center;
	color: #005C9D;
	font-size: 12px;
}
.about-wrap{
	/*background-color: #E8E6E6;*/
	padding:15px;
	margin-top: 30px;
	border-radius:50px;
}
.about-wrap a{
	display: block;
}
.about-pic{
	width: 100%;
	}
.about-pic img{
	display: block;
	max-width: 100%;
	height: auto;
	border-radius:50px;
	}
.about-pic:hover img{
	display: block;
	max-width: 100%;
	height: auto;}

.homeproject-pic{
	width: 100%;
	}
.homeproject-pic img{
	display: block;
	max-width: 100%;
	height: auto;
	border-radius:15px;
	padding-left:5px;
	}

.homeproject-title{	
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	margin-top: 5px;
	margin-right: 5px;
	margin-left: 5px;
	padding:0 5px;
	border-bottom: 1px dashed #E6E5E5;
}

.homeproject-title-new{	
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	margin-top: 20px;
	margin-right: 20px;
	margin-left:20px;
	padding:0 5px;
	border-bottom: 1px dashed #E6E5E5;
}
.homeproject-title-new1{
	margin-bottom: 20px;
	margin-top: 20px;
	margin-right: 20px;
	margin-left:20px;
	padding:0 5px;
}
.homeexample-title{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 5px;
	margin-right: 5px;
	padding:0 5px;
	border-bottom: 1px dashed #E6E5E5;
	}

.homeexample-title1{
	padding:0 5px;
	}

.homeexample-title2{
	float:right;
	font-weight: bold;
	margin-right: 20px;
	}

.homeproject_Lbox{max-width: 100%;height: auto;border:1px dotted #005C9D;border-radius:10px;}

.homeproject-title1{
	padding:0 5px;
}
.homeproject-title2{
	padding:0 5px;
}
.homeproject-list{
	background-color: #FFFFFF;
	margin-top: -15px;
}
.homeproject-list ul li{
	height: auto;
	overflow: hidden;
	padding:5px 0;
}


.example-pic img{
	display: block;
	max-width: 100%;
	height: auto;
	}
.project-wrap{
	background-color: #FFFFFF;
	padding: 15px;
	margin-top: 30px;
}
.project-wrap a{
	display: block;
}
.about-pic{
	width: 100%;
}
.project-pic img{
	display: block;
	max-width: 100%;
	height: auto;
	transition:all 0.4s ease-in 0s; -webkit-transition:all 0.4s ease-in 0s; -moz-transition:all 0.4s ease-in 0s; -o-transition:all 0.4s ease-in 0s;}

.project-pic:hover img{
	display: block;
	max-width: 100%;
	height: auto;
	transform:scale(1.1); -webkit-transform:scale(1.1); -moz-transform:scale(1.1); -o-transform:scale(1.1);-ms-transform:scale(1.1);}

.about-title{
	color: #000000;
	font-size: 16px;
	margin-top: 10px;
}
.about-brief{
	font-size: 14px;
	margin-top: 10px;
	margin-bottom: 10px;
	color: #555555;
}

.grid {
	position: relative;
	margin: 0 auto;
	padding: 0;
	max-width: 100%;
	list-style: none;
	text-align: center;
}
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0;
	max-width: 100%;
	width: 100%;
	background: #333;
	text-align: center;
	cursor: pointer;
}
.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1;
}
.grid figure figcaption {
	padding: 2em;
	color: #fff;
	text-transform: none
	font-size: 1.25em; 
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}
.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}
.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: normal;
}
.grid figure h2,
.grid figure p {
	margin: 0;
}
.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}
/*---------------*/
/***** Chico *****/
/*---------------*/
figure.effect-chico img {
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
figure.effect-chico:hover img {
	opacity: 0.2;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-chico figcaption {
	padding: 5px;
}
figure.effect-chico h2 {
	padding-top: 25%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,-20px,0);
	transform: translate3d(0,-20px,0);
	font-size: 12px;
	opacity: 0;
}
figure.effect-chico p {
	padding: 10px 15px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
	font-size: 12px;
}
figure.effect-chico figcaption::before,
figure.effect-chico figcaption::after {
	position: absolute;
	top: 15px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
figure.effect-chico figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}
figure.effect-chico figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}
figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-chico:hover h2,
figure.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
/* end */

/* index support */
.support-wrap{
	background-color: #FFFFFF;
	padding: 15px;
	margin-top: 30px;
}
.spt-pic{
	width: 100%;
}
.spt-pic img{
	display: block;
	max-width: 100%;
}
/* end */

/* index contact */
.section-contact{
	background-color: #FFFFFF;
}
.contact-head{
	color: #005C9D;
	font-size: 24px;
	font-family: impactregular;
	margin-bottom: 15px;
}
.cnt-pic{
	width: 100%;
}
.cnt-pic img{
	display: block;
	max-width: 100%;
	height: auto;
}

.cnt-pic1{
	width: 100%;
}
.cnt-pic1 img{
	display: block;
	max-width: 100%;
	height: auto;
	border-radius:8px;
}

.cnt-brief{
	font-size: 14px;
	line-height: 20px;
	margin-top: 15px;
	margin-bottom: 15px;
	font-family:"Microsoft YaHei",微软雅黑,"Microsoft JhengHei",华文细黑,STHeiti,MingLiu!important;
}

.about-title1{
	font-size: 14px;
	line-height: 20px;
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: center;
}

.index-form{
	margin-top: 15px;
}
.index-form .form-control{
	border-color: #9D9D9D;
	color: #9D9D9D;
	box-shadow: none;
	background-color: transparent;
}
.index-form .btn-primary{
	background-color: #868686;
	border: none;
	padding-left: 35px;
	padding-right: 35px;
	float: left;
	font-size: 14px;
	color: #FFFFFF;
	text-transform: none
	display: inline-block;
}
/* end */

/* 滚到顶 */
.scrollToTop {
	color: #fff;
	position: fixed;
	bottom: 5px;
	right: 5px;
	width: 40px;
	height: 40px;
	text-align: center;
	cursor: pointer;
	background-color: #005C9D;
	z-index: 1005;
	display: none;
	border-radius:5px;
}
.scrollToTop i {
	line-height: 40px;
	font-size: 16px;
}
.scrollToTop:hover{
	opacity:0.7;
}
/* end */

/* footer */
.foot-bgcolor{
	background:url(../images/copyright_back.jpg) repeat-x center top;
	background-color: #F8F8F8;
	padding-top: 10px;
	font-family:microsoft yahei,Arial, Helvetica, sans-serif;
}
.copyright{
	line-height: 25px;
	font-size: 13px;
	color: #7D7E7F;
	margin: 0 0 15px 0;
	text-align: center;
}

.copyright a{
	color:#7D7E7F;
	padding:0 10px;
	border-right: 1px solid #7D7E7F;
}

.copyright a:hover{
	color: #9EA0A3;
	border-right: 1px solid #7D7E7F;
}
.foot-item{
	width: 100%;
}
.foot-title{
	color: #FFFFFF;
	font-size: 16px;
	text-transform: none
	margin-bottom: 10px;
	position: relative;
}
.foot-list{
	margin: 0;
	padding: 0;
	list-style: none;
}
.foot-list li{
	font-size: 14px;
	line-height: 2;
}
.foot-list li a{
	color: #FFFFFF;
}
.foot-list li a:hover{
	color: #ddd;
}
.ft-isco{
	padding: 20px 0;
	text-align: center;
}
.ft-isco a{
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background-color: #FFFFFF;
	color: #008402;
	border-radius: 20px;
	font-size: 20px;
	margin: 0 5px;
}
.ft-isco a:hover{
	color: #FFFFFF;
	background-color: #008402;
}

.ft-isco-arrow_down{
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background-color: #EDEBEB;
	color: #005C9D;
	border-radius: 20px;
	font-size: 40px;
	margin: 0 5px;
}

.ft-isco-arrow-iron{
	font-family: 'impactregular';
	text-align: center;
	font-size: 20px;
	color: #005C9D;
	text-transform: none
}
/* end */

/* index news */
.news-small{
	text-align: center;
	color: #959595;
	font-size: 14px;
}

#newsTabs.tabs{
	/*margin-top: 30px;*/
}
.new-ding{
	padding-right: 0px;
}
.new-ding a{
	display: block;
}
.news-ding-pic{
	width: 100%;
	min-height:228px;
}
.news-ding-pic img{
	display: block;
	max-width: 100%;
	height: auto;
}
.ding-title{
	margin-top: 10px;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 16px;
}
.ding-title span{
	display: inline-block;
	float: right;
	padding-left: 20px;
	color: #9D9D9D;
	font-size: 12px;
}
.ding-brief{
	margin: 5px 0;
	line-height: 1.8;
	color: #666666;
}
.index-newslist{
	
}
.index-newslist ul li{
	/*
	margin-bottom: 30px;
	background-color: #9c9c9c;
	height: 90px;
	padding-right: 20px;

	*/
	margin-bottom:3px;
	position: relative;
	padding-left: 40px;
}
.riqi{
	text-align: center;
	width: 30px;
	line-height: 30px;
	background-color: #ccc;
	color: #FFFFFF;
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 16px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
/*
.riqi::after{
	position: absolute;
	width: 0;
	height: 0;
	border-width: 12px;
	border-color: transparent transparent transparent transparent;
	border-style: solid;
	top: 50%;
	margin-top: -12px;
	right: -24px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}*/
.index-newslist ul li:hover .riqi{
	background-color: #005C9D;
}
/*
.index-newslist ul li:hover .riqi::after{
	border-left-color: #008402;
}
*/
.nw-right{
	height: 30px;
	overflow: hidden;
}
.nw-title{
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 14px;
	position: relative;
}
.nw-title span{
	display: inline-block;
	color: #999;
	font-size: 12px;
	padding-left: 10px;
	float: right;
}
.nw-brief{
	height: 44px;
	overflow: hidden;
	color: #FFFFFF;
	line-height: 22px;
	font-size: 12px;
}
/* end */

/* inner banner */
.inner-banner{
	width: 100%;
}
.inner-banner img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.section-inner{
	background-color: #FFFFFF;
}
/* end */

/* 侧边导航 */
.min-nav{
	position: relative;
	background-color: #ff0000;
}
.mobile-head{
	color: #fff;
	font-size: 16px;
	float: left;
	text-transform: none
	padding-top: 13px;
	padding-left: 15px;
	word-spacing: 3px;
}
.min-tabs{
	background-color: #FFFFFF;
	padding: 0;
	position: relative;
	margin-top: 0px;
}
.min-tabs ul li{
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #DDDDDD;
	position: relative;
	height: auto !important;
}
.min-tabs ul li a{
	display: block;
	background-color: #d4d3d3;
	font-size: 15px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 0 15px;
	color: #000;
	text-transform: none
	position: relative;
}
.min-tabs ul li a:hover{
	color: #FF0000;
	/*background-color: #323638;*/
}
.min-tabs ul li a i{
	padding-right: 10px;
	font-size: 16px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.min-tabs ul li a:hover i{
	padding-right: 15px;
}
.min-tabs ul li a.active{
	color: #FF0000;
	/*background-color: #323638;*/
}

.min-tabs > ul > li.dropdown > a::after{
	content: "\f196";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	right: 9px;
	top: 13px;
}
.min-tabs > ul > li.dropdown.open > a::after{
	content: "\f147";
}
.min-tabs .dropdown-menu{
	width: 100% !important;
	position: relative;
}
.min-tabs ul li a:focus{
	/*background-color: #323638;*/
}
.min-tabs > ul > li.dropdown.open > a{
	/*background-color: #323638;*/
}
.min-tabs > ul > li >ul > li{
	border-top: none;
	border-bottom: none;
}
.min-tabs > ul > li > ul > li a{
	background-color: #f5f5f5;
	color: #333;
	text-transform: none;
	line-height:30px;
	height:30px;
}
.min-tabs > ul > li > ul > li a:hover{
	background-color: #fafafa;
	color: #CC0000;
}
.min-nav .icon-bar{
	border-color: #FFFFFF;
	background-color: #FFFFFF;
}
/* end */

/* 右边主体 */
.main-top{
	color: #fff;
	padding-top: 10px;
	padding-left: 0;
	background: url(../images/product-b-t.png) repeat-x;
	margin-top: 10px;
}
.main-top span{
	display: inline-block;
	float: left;
	color: #FF0000;
	text-transform: none
	font-size: 14px;
	font-weight: bold;
	padding-left: 15px;
}

.main-content{
	padding: 20px;
	background-color: #FFFFFF;
	margin-top: 0;
	/*box-shadow: 0 0 2px rgba(0,0,0,0.2);*/
	border: 1px solid #EEEEEE;
}
.content-body{
	color: #444444;
	font-size: 14px;
	line-height: 2;
}
.content-body img{
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.contact-form{
	margin-top: 25px;
}
.contact-form .btn-primary{
	font-size: 14px;
	background-color: #FF0000;
	padding-left: 30px;
	padding-right: 30px;
	border: none;
}
/*新闻列表*/
.news-list{
	background-color: #FFFFFF;
	margin-top: -15px;
}
.news-list ul li{
	height: auto;
	overflow: hidden;
	border-bottom: 1px dashed #DDDDDD;
	padding: 15px 0;
}
.news-list ul li a{
	display: block;
}
.news-list dl{
	overflow:hidden;
}
.news-list dl dd{
	line-height:35px;
	border-bottom:1px dashed #ddd;
	background:url(../images/ico.png) left center no-repeat;
	padding-left:10px;
}
.news-list dl dd span{
	float:right;
	color:#999;
}
.news-title{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 5px;
}
.new-brief{
	color: #888888;
	font-size: 14px;
}
.news-pic{
	width: 100%;
}
.news-pic img{
	display: block;
	max-width: 100%;
}
/* end */

/* 新闻正文 */
.rel-title{
	text-align: center;
	font-size: 20px;
	margin-bottom: 10px;
}
.rel-date{
	text-align: center;
	color: #adadad;
	border-top: 1px dashed #ADADAD;
	padding: 10px 0;
	margin-bottom: 15px;
}
/* end */

/*---------------*/
/**** product ****/
/*---------------*/
.pro-item{
	margin-bottom: 30px;
}
.pro-item a{
	display: block;
	border: 1px solid #D9D9D9;
}
.pro-item a:hover{
	border-color: #CC0000;
}
.pro-item a:hover .pro-title,
.pro-item a:hover .pro-title i{
	border-color: #CC0000;
}
.pro-pic{
	
}
.pro-pic img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}
.pro-title{
	font-size: 14px;
	line-height: 40px;
	margin-top: 10px;
	border-top: 1px solid #D9D9D9;
	padding-left: 15px;
	padding-right: 60px;
	height: 40px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.pro-title i{
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	text-align: center;
	float: right;
	height: 40px;
	line-height: 40px;
	border-left: 1px solid #D9D9D9;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.pro-info{
	font-size: 12px;
	color: #888888;
	margin-bottom: 20px;
	margin-top: 10px;
}
.pro-in-title{
	color: #C9302C;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	margin-top: 15px;
}
.pro-in-info{
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
	color: #666666;
}

/** tabs codes 
 * ==================================
 * **/
.tabs-wrap{
	margin-top: 20px;
}
.tabs-wrap .accordion-handle.active{
	background-color: #CC0000;
}
.tabs-wrap .tabs-container{
	margin-top: 5;
}
.tabs-wrap .tab-content{
	color: #666666;
	line-height: 2;
	font-size: 14px;
}
.tabs-wrap .tab-content img{
	display: block;
	max-width: 100%;
	height: auto;
}
.tabs-wrap .tabs-list li a i{
	padding-left: 10px;
	color: #f26522;
}
/** tabs codes end
 * ==================================
 * **/

.quo-head{
	color: #000000;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	margin-bottom: 15px;
}
.fm-wap label{
	font-size: 14px;
	color: #888;
}
.fm-wap .btn-primary{
	padding-left: 40px;
	padding-right: 40px;
	margin-top: 10px;
	background-color: #FF0000;
	border: none;
	text-transform: none
	-webkit-transition: all ease-in-out 300ms;
	   -moz-transition: all ease-in-out 300ms;
		-ms-transition: all ease-in-out 300ms;
			transition: all ease-in-out 300ms;
}
.fm-wap .btn-primary:hover{
	background-color: #e90202;	
}
.shijian{
	margin-top: 6px;
	color: #CC0000;
}

@media (min-width: 768px) {
	.quo-head{
		font-size: 28px;
	}
	/* index about */
	.about-head{
		font-size: 28px;
	}
	.about-project{
		font-size: 28px;
	}
	.about-small{
		font-size: 22px;
	}
	.about-title{
		font-size: 16px;
	}
	/* end */
	/* index contact */
	.contact-head{
		font-size: 28px;
	}
	/**/
	
	
	/** slide-bar for min-nav **/
	.mobile-head{
		padding-left: 15px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.min-tabs.collapse{
		display: block !important;
	}
	/** slide-bar for min-nav end **/
	
	/* tabs code */
	.tabs-wrap .tabs-list li{
		margin-right: 2px;
		padding: 0;
		list-style: none;
		margin-left: 0;
		float: left;
	}
	.tabs-wrap .tabs-list li a:hover{
		background-color: #C9302C;
		color: #FFFFFF;
	}
	.tabs-wrap .tabs-list li.active a{
		background-color: #C9302C;
	}
	.tabs-wrap .tabs-list li a:hover i{
		color: #FFFFFF;
	}
	/* tabs code end */
	
	/* index new product */
	.new-pro-title h2{
		font-size: 28px;
		padding: 15px 30px;
	}
	/* end */
	
	/** index news **/
	#newsTabs .tabs-list{
		border-bottom: 2px solid #b3b3b3;
		padding-bottom: 20px;
	}
	#newsTabs .tabs-list li{
		float: left;
		position: relative;
	}
	#newsTabs .tabs-list li.active::before{
		position: absolute;
		width: 0;
		height: 0;
		border-width: 12px;
		border-color: #005C9D transparent transparent transparent;
		border-style: solid;
		left: 50%;
		margin-left: -12px;
		bottom: -24px;
	}
	#newsTabs .tabs-list li.active::after{
		position: absolute;
		left: 50%;
		margin-left: -5px;
		bottom: -28px;
		width: 10px;
		height: 10px;
		background-color: #005C9D;
		border: 2px solid #FFFFFF;
	}
	#newsTabs .tabs-list li a{
		padding: 0 10px;
		color: #000000;
		background-color: transparent;
		font-size: 12px;
	}
	#newsTabs .tabs-list li.active a{
		color: #FFFFFF;
		background-color: #005C9D;
	}
	#newsTabs .tab-content{
		margin: 15px 0;
	}
	/* end */
	
	/* 侧边导航 */
	.min-tabs.collapse{
		display: block !important;
		height: auto !important;
	}
	.mobile-head{
		padding-left: 15px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.main-top{
		padding-top: 10px;
		padding-bottom: 10px;
		margin-top: 0px;
	}
	/* end */
	
	/* news list */
	.news-title{
		margin-top: 0px;
	}
	/* end */
	
	.pro-in-title{
		margin-top: 0px;
	}
}
@media (min-width: 992px) {
	/* index support */
	.spt-row.row{
		margin-left: -20px;
		margin-right: -20px;
	}
	.spt-row .col-md-4{
		padding-left: 20px;
		padding-right: 20px;
	}
	/* end */
	
	/* index contact */
	.index-cnt{
		font-size: 18px;
	}
	/* end */
	
	/* 路径导航 */
	.innerpath.breadcrumb{
		float: right;
		margin-bottom: 0px;
		background-color: transparent;
		padding: 0;
		margin-right: 15px;
		color:#333;
	}
	.innerpath.breadcrumb li{
		font-size: 14px;
	}
	/* end */
	/* index news */
	#newsTabs .tabs-list li a{
		padding: 0 20px;
		font-size: 14px;
	}
	/* end */
}
@media (min-width: 1200px) {
	/* index about */
	.about-title{
		font-size: 18px;
	}
	/* end */
	/* index support */
	.spt-row.row{
		margin-left: -40px;
		margin-right: -40px;
	}
	.spt-row .col-md-4{
		padding-left: 40px;
		padding-right: 40px;
	}
	/* end */
	/** index news **/
	.new-ding{
		padding-right: 60px;
	}
	/* end */
}

/** 分页 **/
.ft-nav .pagination{
	margin-bottom: 20px;
}
.pagination > a, .pagination > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #CC0000;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination .current{
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #CC0000;
    border-color: #CC0000;
}

.btn-primary{
	background-color:#C9302C;
	border-color:#C9302C;
}
.btn-primary:hover{
	background-color:#C9302C;
	border-color:#C9302C;	
}


.side {
	position:fixed;
	width:45px;
	height:325px;
	right:0;
	top:200px;
	z-index:9999;
}
.side ul li {
	width:45px;
	height:45px;
	line-height:45px;
	float:left;
	position:relative;
	border-bottom:1px solid #999;
}
.side ul li .sidebox {
	position:absolute;
	width:45px;
	height:45px;
	line-height:45px;
	top:0;
	right:0;
	transition:all 0.3s;
	background:#005C9D;
	color:#fff;
	font:14px/54px "微软雅黑";
	overflow:hidden;
}
.side ul li .sidetop {
	width:45px;
	height:45px;
	line-height:45px;
	display:inline-block;
	background:#005C9D;
	transition:all 0.3s;
}
.side ul li .sidetop:hover {
	background:#005C9D;
}
.side ul li img {
	float:left;
}

/*----顶部微调-----*/
@media only screen and (max-width : 414px){
	.navbar-brand{
		width:70%;
		float:left;
		overflow:hidden;
	}
	.main-leftnavigation{
		height: 12px;
	}
	.main-navigation .navbar-brand img{
		max-width:100%;
		height:auto;
		display:block;
		margin-top:10px;
	}

	.navbar-toggle{
		
	}
}


/*---------下载样式-------------*/
dl.downlist{
	width:auto;

}
dl.downlist dd{
	line-height:40px;
	padding-left:25px;
	border-bottom:1px dotted #d8d8d8;
	background:url(../images/jiantou.png) 10px center no-repeat;
}
dl.downlist dd a{
	color:#333;
	font-size:14px;
}
dl.downlist dd:hover a{
	color:#C9302C
}
.link strong{
	color:#fff;
}
.link a{
	color:#fff;
	padding:0 10px;
}