@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
a {
blr:expression(this.onFocus=this.blur())
}/*去掉a标签的虚线框，避免出现奇怪的选中区域*/
:focus {
	outline: 0;
}
label {
	cursor: pointer;
}
img {
	vertical-align: middle;
	border: 0;
	image-rendering: -moz-crisp-edges; /* Firefox */
	image-rendering: -o-crisp-edges; /* Opera */
	image-rendering: -webkit-optimize-contrast; /*Webkit (non-standard naming) */
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
.map img {
	max-width: none;
}
table {
	empty-cells: show;
	border-collapse: collapse;
	border-spacing: 0;
}
h1 {
	font-size: 24px;
}
h2 {
	font-size: 20px;
}
h3 {
	font-size: 18px;
}
h4 {
	font-size: 16px;
}
h5, h6 {
	font-size: 14px;
}

abbr, acronym {
	border: 0;
	font-variant: normal
}
address, caption, cite, code, dfn, em, th, var, optgroup {
	font-style: normal;
	font-weight: normal
}
input, button, textarea, select, optgroup, option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit
}
input, button, textarea, select {
*font-size:100%
}
a, img {
	border: 0;
}
a, a:visited {
	color: #5e5e5e;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	outline: none;
}
.l {
	float: left;
}
.r {
	float: right;
}
.clear {
	display: block;
	overflow: hidden;
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-table;
}
/* Hides from IE-mac \*/
*html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}/* End hide from IE-mac */
*+html .clearfix {
	min-height: 1%;
}
body {
	font: 14px/150% Arial, Lucida, Verdana, "微软雅黑", Helvetica, sans-serif;
	color: #333;
	background: #f2f3f3;
	width: 100%;
	max-width: 640px;
	margin: auto;
	overflow-x: hidden;
}
*html, *html body /* 修正IE6振动bug */ {
	background-image: url(about:blank);
	background-attachment: fixed;
}
.inner {
	width: 96%;
	margin: auto;
}
/*-------------------------header-------------------------*/
#header {
	width: 100%;
	height: 50px;
	background:#333;
/*	background: #333 url(../images/logo.svg) no-repeat right center;
*/	position: relative;
	z-index: 10;
}
#header #logo {
	height:50px;
	width:100%;
	position:absolute;
	top:0;
	right:10px;	
	text-align:right;
}
#header #logo img {
	max-height:50px;
	image-rendering: -moz-crisp-edges; /* Firefox */
	image-rendering: -o-crisp-edges; /* Opera */
	image-rendering: -webkit-optimize-contrast; /*Webkit (non-standard naming) */
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
}
.mobile-inner-header-icon {
	color: #fff;
	height: 50px;
	font-size: 25px;
	text-align: center;
	float: left;
	width: 50px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.mobile-inner-header-icon:hover {
	background-color: rgba(255,255,255,0.2);
	cursor: pointer;
}
.mobile-inner-header-icon span {
	position: absolute;
	left: calc((100% - 30px) / 2);
	top: calc((100% - 1px) / 2);
	width: 30px;
	height: 3px;
	background-color: rgba(255,255,255,1);
}
.mobile-inner-header-icon span:nth-child(1) {
	transform: translateY(4px) rotate(0deg);
	top: calc((100% - 15px) / 2);
}
.mobile-inner-header-icon span:nth-child(2) {
	transform: translateY(-4px) rotate(0deg);
	top: calc((100% + 10px) / 2);
}
.mobile-inner-header-icon span:nth-child(3) {
	transform: translateY(-4px) rotate(0deg);
	top: calc((100% + 6px) / 2);
}
.mobile-inner-header-icon-click span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
	top: calc((100% - 1px) / 2);
}
.mobile-inner-header-icon-click span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
	top: calc((100% - 1px) / 2);
}
.mobile-inner-header-icon-click span:nth-child(3) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	display: none;
}
@keyframes clickfirst {
 0% {
 transform: translateY(4px) rotate(0deg);
}
 100% {
 transform: translateY(0) rotate(45deg);
}
}
@keyframes clicksecond {
 0% {
 transform: translateY(-4px) rotate(0deg);
}
 100% {
 transform: translateY(0) rotate(-45deg);
}
}
.mobile-inner-header-icon-out span:nth-child(1) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}
.mobile-inner-header-icon-out span:nth-child(2) {
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}
@keyframes outfirst {
 0% {
 transform: translateY(0) rotate(-45deg);
}
 100% {
 transform: translateY(-4px) rotate(0deg);
}
}
@keyframes outsecond {
 0% {
 transform: translateY(0) rotate(45deg);
}
 100% {
 transform: translateY(4px) rotate(0deg);
}
}
.mobile-inner-nav {
	background-color: rgba(0,0,0,0.9);
	width: 100%;
	position: absolute;
	top: 50px;
	left: 0px;
	padding-top: 20px;
	padding-bottom: 50px;
	display: none;
	z-index: 9;
}
.mobile-inner-nav .subnav, .mobile-inner-nav .subnav2 {
	display: none;
}
.mobile-inner-nav a {
	display: block;
	line-height: 1.2em;
	text-decoration: none;
	width: 80%;
	padding: 10px 2%;
	margin-left: 8%;
	color: #FFFFFF;
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight: 300;
}
.mobile-inner-nav a:hover {
	color: rgba(255,255,255,0.4);
	border-bottom: solid 1px rgba(255,255,255,0.2);
}
.mobile-inner-nav li {
	position: relative;
}
.mobile-inner-nav .icon {
	font-size: 16px;
	line-height: 40px;
	color: white;
	text-align: right;
	display: block;
	width: 30px;
	position: absolute;
	top: 0;
	right: 5%;
	padding-right: 5%;
}
.mobile-inner-nav .subnav a {
	padding: 10px 5%;
	width: 74%;
}
.mobile-inner-nav .subnav2 a {
	padding-left: 10%;
	width: 70%;
}
/*-------------------------footer-------------------------*/
#toTop {
	text-align: center;
	line-height: 36px;
	border-bottom: 1px #666 solid;
	color: #ccc;
}
#fotnav .subnav, #fotnav .subnav2 {
	display: none;
}
#fotnav li {
	position: relative;
}
#fotnav a {
	display: block;
	line-height: 32px;
	text-decoration: none;
	width: 90%;
	padding: 0 5%;
	color: #ccc;
	border-bottom: 1px #666 solid;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight: 300;
}
#fotnav a:hover {
	color: white;
}
#fotnav li .icon {
	font-size: 16px;
	line-height: 33px;
	color: white;
	text-align: right;
	display: block;
	width: 30px;
	position: absolute;
	top: 0;
	right: 0%;
	padding-right: 5%;
}
#fotnav .subnav a {
	padding: 0 10%;
	width: 80%;
}
#fotnav .subnav2 a {
	padding-left: 15%;
	width: 75%;
}
#footer {
	background: #333;
	color: #ccc;
}
#bot_txt {
	padding: 10px 2%;
}
#bot_txt .tel {
/*	font-size: 16px;
	line-height: 20px;
	padding-left: 30px;
	color: white;
	background: url(../images/icon.svg) no-repeat left -287px;
*/
	text-align:center;
}
#bot_txt .tel span {
	font-size: 20px;
}
#footer .ewm {
	text-align: center;
	padding: 10px 0 5px;
	border-bottom: 1px #666 solid;
}
#footer .ewm .box {
	display: inline-block;
	_display: inline;
	width: 150px;
}
#footer .ewm .box span {
	display: block;
	line-height: 1.2em;
	margin-bottom: 5px;
}
#footer .ewm .box .img img {
	width: 80px;
	height: 80px;
	border: 5px #fff solid;
}
#copyright,#bah {
	text-align:center;
}
#bah a{color:#c2cccc;}
/*-------------------------page-------------------------*/
#page {
	width: 100%;
	height: 26px;
	padding: 10px 0;
	margin: 0 0 20px;
	border-radius: 3px;
	text-align: center;
}
#page li {
	display: inline-block;
	line-height: 24px;
	font-size: 14px;
	margin: 0 2px;
}
#page li {
 *display:inline;
}
#page li a {
	display: block;
	width: 24px;
	height: 24px;
	border: 1px #999 solid;
	color: #666;
	border-radius: 3px;
}
#page li a.on {
	border-color: #00B2BC;
	background: #00B2BC;
	color: white;
}
#page li a.first, #page li a.prev, #page li a.next, #page li a.last {
	width: auto;
	line-height: 28px;
	border: 0;
	color: #333;
}
#page li a:hover {
	color: #00B2BC;
}
/*-------------------------二级栏目wrap-------------------------*/
.wrap {
	position: reative;
	height: 40px;
	width: 100%;
	overflow: hidden;
	border-bottom: 1px solid #ccc
}
.wrap .scroller li {
	float: left;
	width: auto;
	height: 40px;
	line-height: 1.2em;
	text-align: center;
	font-style: none;
	display: table;
}
#wrapper2 .scroller li:nth-child(1) {
	padding-left: 10px;
}
.wrap .scroller li a {
	padding: 0 10px;
	display: table-cell;
	vertical-align: middle;
}
.wrap .scroller li a.on {
	color: #00B2BC;
}
#wrapper1 .scroller li a {
	padding: 0 10px;
}
#wrapper1 .scroller li a.on {
	background: #00B2BC;
	color: white;
	padding: 0 20px;
}
#wrapper2 {
	margin: 0 auto 10px;
}
/*二级栏目 end*/
/*返回列表*/
.back {
	text-align: center;
	padding: 20px 0 30px;
}
.back a {
	display: block;
	height: 30px;
	line-height: 30px;
	width: 120px;
	border-radius: 5px;
	margin: auto;
	background: #00B2BC;
	color: white;
}
/*返回列表end*/
/*-------------------------内页 nybanner-------------------------*/
#banner_ny {
	height: 100px;
	width: 100%;
	position: relative;
}
#banner_ny #title {
	position: absolute;
	top: 30px;
	left: 5%;
	color: white;
	z-index: 2
}
#banner_ny #title .en {
	font-size: 16px;
	color: white;
	line-height: 1.5em;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	filter: alpha(opacity=30);
	opacity: 0.3;
}
#banner_ny .img {
	width: 100%;
	overflow: hidden;
	height: 100px;
	position: relative;
}
#banner_ny .img img {
	height: 100px;
	width:640px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -320px;
	z-index: 1;
}
/*内页 nybanner end*/
/*-------------------------首页main-------------------------*/
#main #h2 {
	text-align: center;
	padding:20px 0 10px;
	position: relative;
}
#main #h2 h2 {
	font-size: 1.6em;
}
#main #h2 h2 span.linel, #main #h2 h2 span.liner {
	display: inline-block;
	height: 3px;
	width: 60px;
	margin: 0 10px;
	vertical-align: middle;
	background: url(../images/linel.png) no-repeat top left;
}
#main #h2 h2 span {
 *display:inline;
	zoom: 1;
}
#main #h2 h2 span.liner {
	background: url(../images/liner.png) no-repeat top right;
}
#main #h2 .en {
	display: block;
	width: 100%;
	text-transform: uppercase;
	color: #999;
}
#main #h2 .text {
	font-size: 14px;
	color: #999;
	padding:0 3%;
}
.about_top img {
	max-width: 100%;
}
.about_top .text {
	padding: 10px 0;
}
.about_top .text p {
	padding:5px 3.5%;	
}
.about_bot .number {
	height: 100px;
	padding-top: 20px;
	background: url(../images/bg1.jpg) no-repeat top center;
	color: white;
}
.about_bot .number li {
	float: left;
	width: 33%;
	text-align: center;
}
.about_bot .number li h3 {
	font-size: 2em;
	font-weight: normal;
}
.about_bot .number .more {
	padding-top: 15px;
}
.about_bot .number .more a {
	display: block;
	width: 120px;
	margin: auto;
	height: 1.8em;
	line-height: 1.8em;
	background: white;
	color: #00B2BC;
	text-align: center;
	border-radius: 3px;
	text-transform: uppercase;
}
/*-------------------------index_product-------------------------*/
.index_product {
	margin: 20px 0;
}
.index_productclass {
	text-align: center;
}
.index_productclass li {
	display: inline-block;
	width: 32%;
	margin: 0 0.1% 5px;
	line-height: 1.5em;
	vertical-align: top;
}
.index_productclass li {
 *display:inline;
}
.index_productclass li .icon {
	display: block;
	width: 50px;
	height: 50px;
	margin: auto;
	background: url(../images/icon.svg) no-repeat left 7px;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
.index_productclass li:nth-child(2) .icon {
	background-position: left -55px;
}
.index_productclass li:nth-child(3) .icon {
	background-position: left -118px;
}
.index_productclass li:nth-child(4) .icon {
	background-position: left -180px;
}
.index_productclass li:nth-child(5) .icon {
	background-position: left -233px;
}
.index_productclass li a:hover {
	color: #00B2BC;
}
.index_product .more a {
	display: block;
	width: 120px;
	margin: 10px auto 0;
	height: 1.8em;
	line-height: 1.8em;
	color: #00B2BC;
	border: 1px #00B2BC solid;
	text-align: center;
	border-radius: 3px;
	text-transform: uppercase;
}
/*index_product end*/
/*-------------------------index_service-------------------------*/
.index_service {
	height: 180px;
	padding-top: 20px;
	background: url(../images/img3.jpg) no-repeat center center;
	background-size: cover;
}
.index_service .en {
	color: #02b3bb;
	padding: 0 20px;
}
.index_service h4 {
	font-size: 24px;
	line-height: 1.5em;
	color: #02b3bb;
	vertical-align: middle;
	position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
	font-weight:bold;
}
.index_service h4 span {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 1.5em;
	position: absolute;
}
.index_service h4 span {
 *display:inline;
}
.index_service h4 span.icon6 {
	top: 0px;
	left: 70px;
	background: url(../images/icon6.png) no-repeat right top;
}
.index_service h4 span.icon7 {
	top: 0px;
	left: 105px;
	background: url(../images/icon7.png) no-repeat left bottom;
}
.index_service .text {
	width: 50%;
	color: #00B2BC;
	padding: 0 20px;
}
.index_service .more a {
	display: block;
	width: 120px;
	height: 1.8em;
	line-height: 1.8em;
	margin-top: 10px;
	color: #00B2BC;
	border: 1px #00B2BC solid;
	text-align: center;
	border-radius: 3px;
	text-transform: uppercase;
}
/*-------------------------index_join-------------------------*/
.index_join {
	height: 150px;
	padding:10px 0;
	background: url(../images/img4.jpg) no-repeat center center;
	background-size: cover;
	color: white;
	text-align: center;
}
#main .index_join #h2 h2 span.linel {
	background-position: bottom left;
}
#main .index_join #h2 h2 span.liner {
	background-position: bottom right;
}
#main .index_join #h2 .en {
	color: #97e0f1;
}
#main .index_join #h2 .text {
	color: white;
	font-size: 20px;
	line-height: 1.5em;
}
.index_join .more a {
	display: block;
	width: 120px;
	height: 1.8em;
	line-height: 1.8em;
	margin: 10px auto 0;
	color: #fff;
	border: 1px #fff solid;
	text-align: center;
	border-radius: 3px;
	text-transform: uppercase;
}
/*index_join end*/
/*-------------------------index_case-------------------------*/
.index_case .more a {
	display: block;
	width: 120px;
	height: 1.8em;
	line-height: 1.8em;
	margin: 10px auto 20px;
	color: #00B2BC;
	border: 1px #00B2BC solid;
	text-align: center;
	border-radius: 3px;
	text-transform: uppercase;
}
.multipleColumn {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.multipleColumn .hd {
	overflow: hidden;
	text-align: center;
}
.multipleColumn .hd .prev, .multipleColumn .hd .next {
	display: inline-block;
	width: 30px;
	height: 26px;
	line-height: 26px;
	overflow: hidden;
	cursor: pointer;
	color: #999;
	font-family: "宋体";
	font-size: 24px;
	vertical-align: middle;
	background: none;
}
.multipleColumn .hd .prev, .multipleColumn .hd .next {
 *display:inline;
}
.multipleColumn .hd a:hover {
	color: #333;
}
.multipleColumn .hd .next {
}
.multipleColumn .hd ul {
	display: inline-block;
	width: auto;
	text-align: center;
	overflow: hidden;
	vertical-align: middle;
	zoom: 1;
}
.multipleColumn .hd ul {
 *display:inline;
}
.multipleColumn .hd ul li {
	display: inline-block;
	width: 12px;
	height: 12px;
	overflow: hidden;
	margin: 0 2px;
	text-indent: -999px;
	cursor: pointer;
	background: #00B2BC;
	border-radius: 8px;
	filter: alpha(opacity=50);
	opacity: 0.5;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
.multipleColumn .hd ul li {
 *display:inline;
}
.multipleColumn .hd ul li.on {
	width: 30px;
	filter: alpha(opacity=100);
	opacity: 1;
}
.multipleColumn .bd {
	overflow: hidden;
}
.multipleColumn .bd ul {
	overflow: hidden;
	zoom: 1;
	width: 100%;
	float: left;
	_display: inline;
	text-align: center;
}
.multipleColumn .bd ul li {
	margin: 0 5px 5px;
	display: inline-block;
	_display: inline;
	overflow: hidden;
	text-align: center;
	zoom: 1;
}
.multipleColumn .bd ul li .pic {
	text-align: center;
	border: 1px solid #ccc;
	background: white;
}
.multipleColumn .bd ul li .pic img {
	width: 146px;
	height: 50px;
	display: block;
	padding: 2px;
}
/*index_case end*/
/*-------------------------about-------------------------*/
#content {
	padding: 0 5% 20px;
}
#content img {
	max-width:100%;	
}
/*-------------------------联系我们-------------------------*/
#contact .contact {
	padding: 10px 5%;
}
#contact .contact .con {
	margin: 0 0 10px;
}
#contact .contact .con h5 {
	display: inline-block;
	padding-left: 30px;
	line-height: 25px;
	font-weight: normal;
	background: url(../images/icon.svg) no-repeat left top;
}
#contact .contact .con#contact .contact .con h5 {
 *display:inline;
}
#contact .contact .con .txt p {
	font-size: 14px;
	color: #666;
	line-height: 1.5em;
}
#contact .contact .con.dress h5 {
	background-position: left -335px;
}
#contact .contact .con.tel h5 {
	background-position: left -365px;
}
#contact .contact .con.email h5 {
	background-position: left -396px;
}
#contact #map {
	padding: 10px 5%;
	border-top: 1px #ccc solid;
}
#contact #map h5 {
	font-weight: normal;
	padding-left: 40px;
	line-height: 30px;
	background: url(../images/icon.svg) no-repeat left -437px;
}
#contact .map {
	width: 100%;
	margin: 20px auto;
	height: auto;
	overflow: hidden;
	border: 1px #ccc solid;
}
/*联系我们 end*/
/*-------------------------内容标题-------------------------*/
#mian_ny .h4 h4 {
	font-weight: normal;
	position: relative;
	padding: 10px 50px 8px 16px;
	display: inline-block;
	color: #00B2BC;
}
#mian_ny .h4 h4 span {
	display: block;
	width: 5px;
	height: 18px;
	position: absolute;
	left: 2px;
	top: 10px;
	background: #00B2BC;
}
/*内容标题end*/
/*-------------------------人才招聘-------------------------*/
#recruit .text {
	padding: 0px 3% 10px;
	margin-bottom: 10px;
	border-bottom: 1px #ccc solid;
}
#recruit .text p {
	padding:5px 0;	
}
#recruit .rec_box {
	width: 96%;
	height: 105px;
	border-radius: 10px;
	margin: 0px auto 10px;
	overflow: hidden;
}
#recruit .rec_box a {
	display: block;
	width: 96%;
	height: 85px;
	padding: 10px 2%;
	border-radius: 10px;
	background: #f7f8fa;
	position: relative;
}
#recruit .rec_box a .gt {
	position: absolute;
	top: 15px;
	right: 20px;
	color: #bfbfc1;
	font-size: 18px;
	font-family: "宋体";
}
#recruit .rec_box .date {
	width: 16%;
	height: 85px;
	border-right: 1px #ddd solid;
}
#recruit .rec_box .date span {
	display: block;
}
#recruit .rec_box .date .day {
	font-size: 18px;
}
#recruit .rec_box .date .year {
	font-size: 14px;
	color: #999;
}
#recruit .rec_box .date .zpz {
	font-size: 14px;
	color: #999;
	margin-top: 20px;
}
#recruit .rec_box .right {
	width: 80%;
}
#recruit .rec_box .right h6 {
	margin: 0;
	font-size: 16px;
	line-height: 1.5em;
	font-weight: normal;
}
#recruit .rec_box .right span {
	font-size: 14px;
	color: #999;
	display: inline-block;
	vertical-align: bottom;
	padding: 0 13px;
	border-left: 1px #ccc solid;
	line-height: 1em;
}
#recruit .rec_box .right span {
 *display:inline;
}
#recruit .rec_box .right .ask span:nth-child(1) {
	font-size: 16px;
	color: #ff6600;
	padding: 0;
	border: 0;
}
#recruit .rec_box .right .ask span:nth-child(2) {
	border: 0;
}
#recruit .rec_box .right .tag {
	padding-top: 8px;
	width: 320px;
	height: 26px;
	overflow: hidden;
}
#recruit .rec_box .right .tag span {
	height: 24px;
	line-height: 24px;
	padding: 0 10px;
	margin-right: 10px;
	border: 1px #d8dadf solid;
	border-radius: 2px;
}
/*人才招聘结束*/
/*-------------------------人才招聘详情-------------------------*/
#recruit_look .look_top {
	background: #f7f8fa;
	padding: 10px;
	margin: 0 0 10px;
}
#recruit_look .look_top h3 {
	padding-bottom: 5px;
}
#recruit_look .look_top .tag span {
	display: inline-block;
	vertical-align: bottom;
	padding: 0 10px;
	line-height: 1em;
	color: #666;
	border-left: 1px #999 solid;
}
#recruit_look .look_top .tag span {
 *display:inline;
	zoom: 1;
}
#recruit_look .look_top .tag .xz {
	font-size: 16px;
	color: #ff6600;
}
#recruit_look .look_top .tag span:nth-child(1) {
	border: 0;
	padding: 0;
}
#recruit_look .look_top .tag span:nth-child(2) {
	border: 0;
}
#recruit_look .look_top .tag2 {
	padding-top: 5px;
}
#recruit_look .look_top .tag2 span {
	display: inline-block;
	vertical-align: bottom;
	padding: 0 5px;
	height: 24px;
	line-height: 24px;
	color: #999;
	border: 1px #ccc solid;
	border-radius: 3px;
	margin: 5px 2px 2px 0;
}
#recruit_look .look_top .tag2 span {
 *display:inline;
	zoom: 1;
}
#recruit_look .look_top .date {
	color: #999;
	padding-top: 10px;
}
#recruit_look .recruit_look {
	padding: 0 3%;
}
#recruit_look .recruit_look .text {
	line-height: 2em;
}
#recruit_look .recruit_look .emial {
	display: inline-block;
	font-weight: bold;
	color: #00B2BC;
	font-size: 14px;
	border-bottom: 2px #00B2BC solid;
	background: url(../images/icon16.png) no-repeat 5px center;
	margin: 20px 0;
}
#recruit_look .recruit_look .emial {
 *display:inline;
}
/*人才招聘详情结束*/
/*-------------------------新闻-------------------------*/
#news .newslist {
	padding: 10px 3%;
}
#news .newslist .box {
	background: white;
	margin: 0px 0px 10px;
}
#news .newslist .box .img {
	width: 40%;
	float: left;
}
#news .newslist .box img {
	width: 100%;
}
#news .newslist .box .title {
	width: 54%;
	float: right;
	padding: 10px 3% 0;
}
#news .newslist .box h4 {
	font-weight: normal;
	font-size: 14px;
}
#news .newslist .box .date {
	color: #999;
}
#news_look, #video_look {
	padding: 10px 0;
}
#news_look .news_title, #video_look .video_title {
	text-align: center;
	padding-bottom: 10px;
}
#news_look .news_title h2, #video_look .video_title h2 {
	font-size: 16px;
	font-weight: normal;
	padding: 0 2%;
}
#news_look .news_title .line, #video_look .video_title .line {
	display: block;
	width: 20%;
	height: 2px;
	margin: auto;
	background: #00B2BC;
	z-index: 1;
}
#news_look .news_title .date, #video_look .video_title .date {
	display: block;
	font-size: 14px;
	color: #999;
}
#news_look #content img, #video_look .video_look img {
	max-width: 100%;
}
#video_look .video_look {
	width: 90%;
	margin: 0 auto;
}
#news_look .back a {
	display: block;
	text-align: center;
/*	color: #00B2BC;
	padding: 0 0 20px;
*/}
/*新闻 end*/
/*-------------------------详情-------------------------*/

#content .content img {
	max-width: 100%;
	height: auto;
}
#content .title {
	padding: 0 3% 10px;
	margin-bottom: 15px;
	border-bottom: 1px #ccc solid;
}
#content .title h3 {
	font-weight: normal;
}
#content .title .date {
	color: #999;
}
#content .content {
	padding: 0 3% 15px;
	text-align: justify;
	line-height: 1.8em;
	color: #333;
}
/*-------------------------项目案例-------------------------*/
#case .case {
	width: 96%;
	margin: 0 2%;
	padding: 0 0 15px;
}
#case .box {
	background: white;
	width: 46%;
	margin: 0 2% 10px;
	float: left;
}
#case .box img {
	width: 100%;
}
#case .box .title {
	padding: 5px 3%;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*项目案例 end*/
/*-------------------------合作伙伴-------------------------*/
#partner .partner {
	padding-top: 10px;
}
#partner .partner li {
	float: left;
	overflow: hidden;
	width: 46%;
	margin: 0 0 10px 3%;
	background: #f0f1f7;
}
#partner .partner li img {
	width: 100%;
	box-sizing: border-box;
	border: 1px #ccc solid;
}
/*合作伙伴 end*/
/*-------------------------解决方案-------------------------*/
#solution {
	padding: 0 5%;
}
#solution .solution_h {
	text-align: center;
	padding: 20px 0;
}
#solution .solution_h .en {
	text-transform: uppercase;
	color: #a0e5e7;
}
#solution .solution_h h4 {
	display: inline-block;
	font-size: 18px;
	padding-bottom: 5px;
	color: #00B2BC;
	border-bottom: 4px #a0e5e7 solid;
}
#solution .solution_h h4 {
 *display:inline;
	zoom: 1;
}
#solution .solution_h h4 span {
	display: inline-block;
	width: 8px;
	height: 8px;
	vertical-align: middle;
	margin: 0 10px;
	background: #a0e5e7;
}
#solution .solution_h h4 span {
 *display:inline;
	zoom: 1;
}
#solution .text {
	text-indent: 2em;
	padding-bottom: 20px;
}
#solution .solution_list {
	width: 100%;
}
#solution .solution_list .sol_box {
	width: 46%;
	float: left;
	margin: 0 0 10px 3%;
}
#solution .solution_list .sol_box a {
	display: block;
	width: 100%;
	position: relative;
}
#solution .solution_list .sol_box a img {
	width: 100%;
}
#solution .solution_list .sol_box h4 {
	display: table;
	color: white;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: normal;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
#solution .solution_list .sol_box h4 span {
	display: table-cell;
	vertical-align: middle;
}
#solution .btn a {
	display: block;
	height: 36px;
	line-height: 36px;
	border-radius: 3px;
	background: #00B2BC;
	color: white;
	text-align: center;
	margin: 20px 0;
}
/*留言*/
#solution .popup {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: url(../images/hei5.png);
	display: none;
}
#solution .message {
	background: white;
	width: 90%;
	top: 10%;
	left: 5%;
	border-radius: 5px;
	position: relative;
	text-align: center;
	padding: 10px 0;
	box-sizing: border-box;
}
#solution .message .close {
	position: absolute;
	width: 30px;
	height: 30px;
	background: #b2e8ea;
	border-radius: 18px;
	text-align: center;
	line-height: 30px;
	font-size: 30px;
	color: #00B2BC;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
#solution .message h5 {
	font-size: 18px;
	color: white;
	width: 60%;
	height: 36px;
	background: #00B2BC;
	display: inline-block;
	font-weight: normal;
	line-height: 36px;
	border-radius: 18px;
	text-align: center;
}
#solution .message h5 {
 *display:inline;
}
#solution .message .p {
	text-align: center;
	font-size: 14px;
	color: #999;
	padding: 5px 0;
}
#solution .message .tr {
	height: 30px;
	padding: 3px 0;
}
#solution .message .tr .left {
	line-height: 30px;
	text-align: left;
	width: 90%;
	margin: auto;
}
#solution .message .tr .right {
	width: 90%;
	margin: auto;
}
#solution .message .tr input {
	border: 1px #ccc solid;
	width: 85%;
	height: 28px;
	line-height: 28px;
	border-radius: 3px;
	padding: 0 5px;
	font-size: 14px;
}
#solution .message .tr.textarea {
	height: 140px;
}
#solution .message .tr.textarea textarea {
	height: 48px;
	width: 95%;
	margin: auto;
	border: 1px #ccc solid;
	border-radius: 5px;
	min-height: 98px;
	max-height: 98px;
	padding: 5px;
	font-size: 14px;
}
#solution .message .btn input {
	border: 0;
	width: 120px;
	height: 30px;
	line-height: 30px;
	background: #999;
	color: white;
	border-radius: 17px;
	display: inline-block;
	cursor: pointer;
	margin: 10px 5px 0px;
}
#solution .message .btn .submit {
	background: #00B2BC;
}
/*解决方案 end*/
/*-------------------------服务支持-------------------------*/
#download .zlxiazai li {
	position: relative;
	padding: 0 4% 0 7%;
	border-bottom: 1px #ccc dashed;
}
#download .zlxiazai.gongju li {
	padding: 0 4%;
	border: 0;
}
#download .zlxiazai li .yuan {
	display: block;
	position: absolute;
	top: 14px;
	left: 4%;
	height: 6px;
	width: 6px;
	border-radius: 5px;
	background: #00B2BC;
}
#download .zlxiazai li a {
	display: block;
	padding: 7px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
#download .zlxiazai li a img {
	width: 100%;
}
.h_bg {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
	z-index: 99;
}
.xzm {
	width: 70%;
	padding: 30px 5%;
	height: auto;
	background: white;
	border-radius: 5px;
	position: fixed;
	bottom: 30%;
	left: 10%;
	z-index: 100;
	display: none;
}
.xzm h4 {
	color: #00B2BC;
	margin-bottom: 10px;
}
.h_bg {
	display: none;
}
.xzm .xzm_inp {
	width: 94%;
	height: 40px;
	line-height: 40px;
	margin: 0 auto 10px;
	padding: 0 3%;
	border: 1px #ccc solid;
	border-radius: 3px;
}
.xzm .btn input {
	width: 47.2%;
	height: 40px;
	line-height: 40px;
	background: #ccc;
	border: none;
	border-radius: 3px;
	margin: 10px 0;
}
.xzm .btn input.submit {
	background: #2eacb5;
	color: white;
	margin: 10px 4% 0 0;
}
/*-------------------------视频-------------------------*/
#download .jiaocheng {
	padding-top: 10px;
}
#download .jiaocheng li {
	width: 94%;
	margin: 0 3% 10px;
	background: white;
}
#download .jiaocheng li a {
	display: block;
	position: relative;
}
#download .jiaocheng li .icon {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-top: -40px;
	margin-left: -25px;
	background: url(../images/icon21.png) no-repeat center center;
	z-index: 2;
}
#download .jiaocheng li .img {
	display: block;
	width: 100%;
}
#download .jiaocheng li .img img {
	width: 100%;
}
#download .jiaocheng li h5 {
	font-weight: normal;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
}
/*视频end*/
/*-------------------------下载APP service_app-------------------------*/
#service_app .service_app .img {
	width: 90%;
	margin: auto;
	text-align: center;
}
#service_app .service_app .img img {
	max-width: 80%;
}
#service_app .service_app h1 {
	font-size: 24px;
	text-align: center;
	padding: 30px 0 5px;
}
#service_app .service_app .p {
	text-align: center;
	color: #666;
	line-height: 2em;
	margin-bottom: 20px;
}
#service_app .service_app .down .down_box {
	width: 50%;
	float: left;
	text-align: center;
	padding:20px 0;
}
#service_app .service_app .down .down_box1 {
	background: url(../images/line.png) no-repeat right top;
}
#service_app .service_app .down .down_box1 .icon {
	width: 68px;
	height: 70px;
	margin: 0 auto 10px;
	background: url(../images/icon.svg) no-repeat 14px -487px;
}
#service_app .service_app .down .down_box2 .icon {
	width: 68px;
	height: 70px;
	margin: 0 auto 10px;
	background: url(../images/icon.svg) no-repeat 14px -577px;
}
#service_app .service_app .down .down_box a {
	display: block;
	width: 120px;
	height: 30px;
	border-radius: 20px;
	text-align: center;
	line-height: 30px;
	color: white;
	background: #00B2BC;
	margin: 10px auto 30px;
}
#service_app .service_app .img {
	background:white;
	padding:10px 0;	
}
#service_app .service_app .text {
	width:84%;
	margin:20px auto 30px;	
}
/*下载APend*/
/*-------------------------招商合作-------------------------*/
#join img {
	max-width: 100%;
}
#join h2 {
	font-size: 24px;
	line-height: 1.2em;
	color: #00f4ff;
	font-weight: normal;
	text-align: center;
	padding: 50px 0 30px;
}
/*join_a*/
#join .join_a {
	position: relative;
	padding: 50px 0;
	background: url(../images/img16.jpg) no-repeat top center;
	background-size: cover;
}
#join .join_a p {
	text-align: center;
	color: white;
	font-size: 1em;
	letter-spacing: 3px;
}
#join .join_a h1 {
	text-align: center;
	font-size: 32px;
	line-height: 36px;
	color: #00f4ff;
	letter-spacing: 2px;
	padding: 15px 0 30px;
}
#join .join_a ul {
	width: 100%;
	text-align: center;
}
#join .join_a ul li {
	color: white;
	display: inline-block;
	height: 36px;
	line-height: 36px;
	border: 1px #77797e dashed;
	border-radius: 18px;
	padding: 0 15px 0 35px;
	margin: 0 0 10px;
 *display:inline;
	zoom: 1;
	position: relative;
}
#join .join_a ul li span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: #00f4ff;
	position: absolute;
	top: 14px;
	left: 18px;
}
/*join_b*/
#join .join_b {
	padding-bottom: 50px;
	position: relative;
	background-image: linear-gradient(to bottom, rgba(13,39,114, 1) 0%, rgba(28,100,112, 1) 100%, #FFFFFF 100%);
	background-image: -webkit-linear-gradient(top, rgba(28,100,112,  1) 0%, rgba(13,39,114, 1) 100%, #FFFFFF 100%);
 filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#11a4d8', EndColorStr='#1052b3');
}
#join .join_b .box {
	background: url(../images/lan8.png);
	color: white;
	margin-bottom: 10px;
}
#join .join_b .box .text {
	padding: 10px;
}
#join .join_b .box .text .h3 {
	position: relative;
	border-bottom: 1px #536671 solid;
}
#join .join_b .box .text h3 {
	font-size: 18px;
	line-height: 2em;
	font-weight: normal;
}
#join .join_b .box .text .h3 .line {
	display: block;
	height: 3px;
	width: 50px;
	background: white;
	position: absolute;
	bottom: -1px;
	left: 0;
}
#join .join_b .box .text .tag {
	padding-top: 10px;
}
#join .join_b .box .text .tag span {
	display: inline-block;
	color: #00f4ff;
	padding: 0 10px;
	font-size: 14px;
	line-height: 1.2em;
}
#join .join_b .box .text .tag span {
 *display:inline;
	zoom: 1;
}
#join .join_b .box .text ul {
	padding: 10px 0;
}
#join .join_b .box .text li {
	padding: 8px 10px 0 35px;
	font-size: 14px;
	line-height: 1.2em;
	background: url(../images/icon37.png) no-repeat 10px 8px;
}
#join .join_b .box .img {
	width:100%;
}
#join .join_b .box .img img {
	width:100%;
}
/*join_c*/
#join .join_c {
	background: url(../images/img19.jpg) no-repeat top center;
	background-size: cover;
	text-align: center;
	position: relative;
}
#join .join_c .ten {
}
#join .join_c .ten ul {
	display: block;
}
#join .join_c .ten li {
	color: #00f4ff;
	width: 24%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 10px;
}
#join .join_c .ten li {
 *display:inline;
	zoom: 1;
}
#join .join_c .ten li p {
	display: block;
	font-size: 14px;
	height: 40px;
	line-height: 1.2em;
}
#join .join_c .ten li .icon {
	display: block;
	height: 45px;
	width: 45px;
	margin: auto;
	background: url(../images/icon.svg) no-repeat left top;
}
#join .join_c .ten li .icon1 {
	background-position: 5px -687px;
}
#join .join_c .ten li .icon2 {
	background-position: 5px -730px;
}
#join .join_c .ten li .icon3 {
	background-position: 5px -775px;
}
#join .join_c .ten li .icon4 {
	background-position: 2px -817px;
}
#join .join_c .ten li .icon5 {
	background-position: 5px -864px;
}
#join .join_c .ten li .icon6 {
	background-position: 3px -907px;
}
#join .join_c .ten li .icon7 {
	background-position: 4px -952px;
}
#join .join_c .ten li .icon8 {
	background-position: 6px -995px;
}
#join .join_c .ten li .icon9 {
	background-position: 5px -1040px;
}
#join .join_c .ten li .icon10 {
	background-position: 5px -1084px;
}
/*join_d*/
#join .join_d {
	background-image: linear-gradient(to bottom, rgba(13,39,114, 1) 0%, rgba(28,100,112, 1) 100%, #FFFFFF 100%);
	background-image: -webkit-linear-gradient(top, rgba(28,100,112,  1) 0%, rgba(13,39,114, 1) 100%, #FFFFFF 100%);
 filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#11a4d8', EndColorStr='#1052b3');
	padding: 0 3% 50px;
	position: relative;
}
#join .join_d h2 {
	font-size: 22px;
	padding-bottom: 20px;
}
#join .join_d h4 {
	height: 45px;
	padding-top: 30px;
	font-size: 18px;
	background: url(../images/line2.png) no-repeat top center;
	color: #00f4ff;
	text-align: center;
	font-weight: normal;
}
#join .join_d .u1, #join .join_d .u2 {
	padding: 10px 0;
	position: relative;
}
#join .join_d .u1 {
	border-top: 2px #00f4ff solid;
	border-right: 1px #00f4ff dashed;
}
#join .join_d .icon {
	display: block;
	width: 23px;
	height: 23px;
	position: absolute;
	background: url(../images/icon.svg) no-repeat left -1150px;
}
#join .join_d .icon2 {
	background-position: left -1181px;
}
#join .join_d .icon3 {
	background-position: left -1208px;
}
#join .join_d .icon4 {
	background-position: left -1236px;
}
#join .join_d .u1 .icon1 {
	top: -12px;
	left: -11px;
}
#join .join_d .u1 .icon2 {
	top: -12px;
	right: -11px;
}
#join .join_d .u2 .icon1 {
	bottom: -12px;
	right: -11px;
}
#join .join_d .u2 .icon2 {
	top: -12px;
	left: -11px;
}
#join .join_d .u2 .icon3 {
	top: -12px;
	right: -11px;
}
#join .join_d .u2 .icon4 {
	bottom: -12px;
	left: -11px;
}
#join .join_d .u2 {
	border-top: 1px #00f4ff dashed;
	border-left: 1px #00f4ff dashed;
	border-bottom: 2px #00f4ff solid;
}
#join .join_d ul li {
	float: left;
	width: 44%;
	height: auto;
	margin: 0 0 10px 3%;
	position: relative;
	color: white;
}
#join .join_d ul li img {
	width: 100%;
}
#join .join_d ul li p {
	display: block;
	position: absolute;
	top: 30%;
	left: 0;
	height: 25px;
	line-height: 40px;
	width: 100%;
	overflow: hidden;
	font-size: 3em;
	font-weight: bold;
	filter: alpha(opacity=50);
	opacity: 0.5;
	text-align: center;
}
#join .join_d ul li h5 {
	font-weight: normal;
	font-size: 14px;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 55%;
	left: 0;
}
/*.申请表*/
#join .join_e {
	background: url(../images/img21.jpg) no-repeat top center;
	padding-bottom: 30px;
	width: 100%;
	overflow: hidden;
}
#join .join_e h2 {
	color: #00f4ff;
	padding-bottom: 20px;
}
#join .join_e input {
	color: #00f4ff;
	height: 30px;
	width: 96%;
	margin-bottom: 10px;
	font-size: 14px;
	padding: 0 2%;
	border-radius: 5px;
	border: 1px #00f4ff solid;
	background: url(../images/lan05.png);
}
#join .join_e textarea {
	width: 96%;
	height: 80px;
	min-width: 96%;
	min-height: 80px;
	max-width: 96%;
	max-height: 80px;
	border: 1px #00f4ff solid;
	border-radius: 5px;
	margin-bottom: 10px;
	background: url(../images/lan05.png);
	color: #00f4ff;
	padding: 5px 2%;
	font-size: 14px;
}
#join .join_e .submit input {
	border: 0;
	border-radius: 5px;
	height: 30px;
	width: 100%;
	background-image: linear-gradient(to right, rgba(1,179,187,1) 0%, rgba(0,244,255,1) 100%, #FFFFFF 100%);
	background-image: -webkit-linear-gradient(left, rgba(0,244,255,1) 0%, rgba(1,179,187,1) 100%, #FFFFFF 100%);
 filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#00f4ff', EndColorStr='#01b3bb');
	color: white;
}
#join .join_line {
	display: block;
	width: 320px;
	height: 50px;
	background: url(../images/icon.svg) no-repeat center -1261px;
	position: absolute;
	bottom: -25px;
	left: 50%;
	margin-left: -160px;
	z-index: 2;
}
/*招商 end*/
/*广告*/
.guanggao{
	position: fixed;
    z-index: 50;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
	vertical-align:bottom;
}
.guanggao .gg_img {
    margin: auto;
    z-index: 101;
    width:100%;
    height:auto;
	position:absolute;
	bottom:0;
	left:0;
    box-sizing: border-box;
    text-align: center;
    animation: winAlertIn .4s;
}
.guanggao .gg_img img {
	max-width:100%;	
}
.guanggao .gg_img a {
	display:inline-block;
}
.guanggao .gg_img .close{
    position: absolute;
	font-size:24px;
    top: 10px;
    right:10px;
    line-height: 28px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
	background: url(../images/icon.svg) no-repeat left -1325px;
    z-index: 2;
}
