@charset "utf-8";

/* CSS Document */
html {
	font-size: 62.5%;
	/* 10÷16=62.5% */
}

* {
	word-wrap: break-word;
}

body {
	font-size: 12px;
	font-size: 1.2rem;
	/* 12÷10=1.2 */
	overflow-x: hidden;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

body,
html {
	font-family: "微软雅黑";
	min-width: 320px;
}

ul,
ul li,
dl,
dl dt,
dl dd {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.f_faminly {
	font-family: "微软雅黑";
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clearboth {
	clear: both;
}

.bigzm {
	text-transform: uppercase;
}

.b_cursor {
	border: 0px;
	cursor: pointer;
}

input {
	outline: 0;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #888888;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #888888;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #888888;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #888888;
}

.fs14 {
	font-size: 14px;
}

.fs15 {
	font-size: 15px;
}

.fs16 {
	font-size: 16px;
}

.fs17 {
	font-size: 17px;
}

.fs18 {
	font-size: 18px;
}

.fs20 {
	font-size: 20px;
}

ul li {
	list-style-type: none;
	float: left;
}

.container {
	width: 100% !important;
	max-width: 1200px;
	max-width: 1170px\9;
}

.container1 {
	width: 100%;
}


/*loading加载*/
.loading {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 10000000;
}

.loading-img {
	width: 181px;
	position: absolute;
	height: 44px;
	left: 50%;
	top: 50%;
	margin-left: -90.5px;
	margin-top: -22px;
	-webkit-animation: rotateplane 1.4s infinite ease-in-out;
	animation: rotateplane 1.4s infinite ease-in-out;
}

@-webkit-keyframes rotateplane {
	0% {
		filter: alpha(opacity=0);
		-webkit-transform: scale(0.5, 0.5);
		transform: scale(0.5, 0.5);
	}

	50% {
		opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	100% {
		opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

@keyframes rotateplane {
	0% {
		filter: alpha(opacity=0);
		-webkit-transform: scale(0.5, 0.5);
		transform: scale(0.5, 0.5);
	}

	50% {
		opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}

	100% {
		opacity: 1;
		filter: alpha(opacity=100);
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}


/*头部*/


.header_div {
	width: 100%;
	height: 80px;
	left: 0px;
	top: 0px;
	padding-left: 5%;
	position: relative;
	z-index: 10000;
	background-color: #fff;
	transition: all 1s cubic-bezier(0.445, 0.145, 0.355, 1) 0s;
	-webkit-transition: transition: all 1s cubic-bezier(0.445, 0.145, 0.355, 1) 0s;
}

.header_div .i_logo {
	width: 14%;
	padding-top: 10px;
}

.header_div .i_logo img {
	/*width:100%;*/
	 width:auto; height:61px;
}

.header_div.fixedmenu {
	position: fixed;
	-moz-box-shadow: 0px 0px 10px #c7c5bf;
	/*firefox*/
	-webkit-box-shadow: 0px 0px 10px #c7c5bf;
	/*webkit*/
	box-shadow: 0px 0px 10px #c7c5bf;
	/*opera或ie9*/
}


.nav_menu {
	width: 28%;
	height: 80px;
	margin-left: 1%;
	text-transform: uppercase;
}

.nav_menu li {
	width: 20%;
	height: 80px;
	float: left;
	position: relative;
}

.nav_menu li .a_nav {
	height: 80px;
	width: 100%;
	line-height: 80px;
	display: inline-block;
	color: #333333;
	font-size: 14px;
	text-align: center;
	position: relative;
}

.nav_menu li .a_nav:hover,
.nav_menu li .a_nav.active,
.nav_menu li .a_nav.active1 {
	color: #0d73bc;
	text-decoration: none;
}

.nav_menu li .a_nav:after {
	width: 0%;
	height: 3px;
	background-color: #0d73bc;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	-webkit-transition: all ease-out 0.2s;
	transition: all ease-out 0.2s;
}

.nav_menu li .a_nav:hover:after,
.nav_menu li .a_nav.active:after,
.nav_menu li .a_nav.active1:after {
	width: 100%;
}

.nav_menu li dl {
	width: 130%;
	position: absolute;
	z-index: 10000;
	display: none;
	left: -15%;
	top: 80px;
	background-color: #0d73bc;
}

.nav_menu li dl dd {
	width: 100%;
	height: 40px;
	line-height: 40px;
	float: left;
}

.nav_menu li dl dd a {
	width: 100%;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	color: #fff;
}

.nav_menu li dl dd a:hover {
	color: #fff;
	text-decoration: none;
	background-color: #387569;
}


.i_ss {
	width: 5%;
	height: 80px;
	padding-top: 28px;
	text-align: center;
	cursor: pointer;
	position: relative;
	z-index: 1000000000;
	background-color: #f2f2f2;
}

.i_ss img {
	width: 21px;
}

.i_ss .ss_div {
	width: 240px;
	height: 32px;
	position: absolute;
	right: 0px;
	top: 80px;
	background-color: #eee;
	display: none;
	z-index: 1000000;
}

.i_ss .ss_div .ipt1 {
	width: 200px;
	height: 32px;
	line-height: 32px;
	text-indent: 10px;
	color: #333;
	font-family: "微软雅黑";
	font-size: 14px;
	border: 0px;
	background-color: transparent;
}

.i_ss .ss_div .ipt2 {
	width: 40px;
	height: 32px;
	background: url(../images/tb_01z.png) center no-repeat;
	background-size: 20px;
	border: 0px;
	cursor: pointer;
	background-color: #0d73bc;
}


.menu {
	width: 5%;
	height: 100%;
	position: relative;
	cursor: pointer;
	text-align: center;
	background-color: #0d73bc;
}

.menu .div_t {
	width: 30px;
	position: absolute;
	left: 50%;
	margin-left: -15px;
	top: 50%;
	webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.menu .div_t span {
	display: block;
	width: 30px;
	height: 2px;
	background-color: #fff;
	-webkit-transition: top 0.2s 0.2s, background 0.2s, opacity 0s 0.2s, -webkit-transform 0.2s;
	transition: top 0.2s 0.2s, background 0.2s, opacity 0s 0.2s, -webkit-transform 0.2s;
	transition: top 0.2s 0.2s, transform 0.2s, background 0.2s, opacity 0s 0.2s;
	transition: top 0.2s 0.2s, transform 0.2s, background 0.2s, opacity 0s 0.2s, -webkit-transform 0.2s;
}

.menu .div_t span:nth-of-type(2),
.menu span.span2 {
	margin-top: 6px;
}

.menu .div_t span:nth-of-type(3),
.menu span.span3 {
	margin-top: 6px;
	-webkit-transition: bottom 0.2s 0.2s, background 0.2s, -webkit-transform 0.2s;
	transition: bottom 0.2s 0.2s, background 0.2s, -webkit-transform 0.2s;
	transition: bottom 0.2s 0.2s, transform 0.2s, background 0.2s;
	transition: bottom 0.2s 0.2s, transform 0.2s, background 0.2s, -webkit-transform 0.2s;
}

.menu.expanded .div_t span:nth-of-type(1),
.menu.expanded .div_t span.span1 {
	/* top:30px;*/
	transform: rotate(45deg);
	transition: top 0.2s, transform 0.2s 0.2s, background 0.2s;
	-webkit-transform: rotate(45deg);
	-webkit-transition: top 0.2s, -webkit-transform 0.2s 0.2s, background 0.2s;
}

.menu.expanded .div_t span:nth-of-type(2),
.menu.expanded .div_t span.span2 {
	opacity: 0;
	transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
}

.menu.expanded .div_t span:nth-of-type(3),
.menu.expanded .div_t span.span3 {
	/*top:30px;*/
	margin-top: -10px;
	transform: rotate(-45deg);
	transition: bottom 0.2s, transform 0.2s 0.2s, background 0.2s;
	-webkit-transform: rotate(-45deg);
	-webkit-transition: bottom 0.2s, -webkit-transform 0.2s 0.2s, background 0.2s;
}

.menu.expanded {
	display: block;
}

.pclm_box1 {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	position: fixed;
	left: 0px;
	top: -100%;
	z-index: 1111;
	background-color: #fff;
}

.pclm_box1_c {
	width: 100%;
	padding-top: 120px;
}

.pclm_box1_c li {
	width: 20%;
	float: left;
	padding: 0px 1%;
	min-height: 250px;
}

.pclm_box1_c li dl {
	width: 100%;
}

.pclm_box1_c li dl dt {
	width: 100%;
}

.pclm_box1_c li dl dt a {
	width: 100%;
	height: 50px;
	font-size: 20px;
	font-weight: bold;
	color: #333;
	line-height: 50px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
}

.pclm_box1_c li dl dd {
	width: 100%;
	float: left;
}

.pclm_box1_c li dl dd a {
	width: 100%;
	height: 25px;
	line-height: 25px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	color: #333;
	font-size: 14px;
}

.pclm_box1_c li dl dd a:hover,
.pclm_box1_c li dl dt a:hover {
	text-decoration: none;
	color: #0d73bc;
}

.i_banner {
	width: 100%;
}

.home-swiper {
	width: 100%;
	height: 100%;
	background: #fff;
}

.home-swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: 1;
	width: 100%;

}

.home-swiper .swiper-slide img {
	display: block;
	width: 100%;
	
}

.home-swiper1 {
	width: 100%;
	height: 100%;
	background: #fff;
	padding-bottom: 25px;
}

.home-swiper1 .swiper-slide {
	text-align: center;
	font-size: 18px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	opacity: 1;
	width: 100%;
	padding: 0px 1%;
}

.home-swiper1 .swiper-slide .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.home-swiper1 .swiper-slide .a_img img {
	width: 100%;
}

.home-swiper1 .swiper-slide .a_text {
	width: 100%;
	padding: 20px 0px;
}

.home-swiper1 .swiper-slide .a_text .s1 {
	width: 100%;
	line-height: 1.8;
	display: inline-block;
	overflow: hidden;
	font-size: 18px;
	font-weight: bold;
	color: #0d73bc;
}

.home-swiper1 .swiper-slide .a_text .s2 {
	width: 100%;
	line-height: 1.8;
	overflow: hidden;
	color: #0d73bc;
	font-size: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e1e4e6;
}

.home-swiper1 .swiper-slide .a_text .s3 {
	width: 100%;
	padding-top: 10px;
	color: #333333;
	font-size: 14px;
	line-height: 2;
}

/*首页内容部分*/
.ui_div {
	width: 100%;
}

.ui_div_center {
	width: 1340px;
	margin: 0px auto;
}

.ui_div_con {
	width: 1200px;
	margin: 0px auto;
}

.ui_box {
	width: 100%;
	padding: 0px 6%;
}

.i_banben{ height:80px; line-height:80px; padding:0px 10px; margin:0px 20px;display:inline-block; color:#333; font-size:14px;}
.i_banben a{ color:#333; padding:0px 4px; display:inline-block;}
.i_banben a:hover,.i_banben a.activebd{ color:#0d73bc;}

.i_phone{ height:80px; line-height:80px; display:inline-block; background:url(../images/bcphone.png) left center no-repeat; background-size:40px; padding-left:50px; color:#333; font-size:14px;}
.i_phone span{ color:#0d73bc; font-size:18px;}


/*手机导航*/
/* CSS Document */
.phone_nav {
	display: none;
}

.phone_nav.fixedmenu {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 100000;
	-moz-box-shadow: 0px 0px 10px #c7c5bf;
	/*firefox*/
	-webkit-box-shadow: 0px 0px 10px #c7c5bf;
	/*webkit*/
	box-shadow: 0px 0px 10px #c7c5bf;
	/*opera或ie9*/
}

.phone_logo {
	padding: 10px 0px;
}

.phone_logo .p1 img {
	/*width: 100%;*/
	 width:auto; height:35px;
}

@media screen and (max-width:1200px) {
	.phone_logo .p1 {
		display: block;
		width: 100%;
		display: inline-block;
	}

	.header_div {
		display: none;
	}

	.phone_logo {
		width: 100%;
		padding: 15px 20px;
		box-sizing: border-box;
	}

	.phone_nav {
		display: block;
		background-color: #fff;
		position: relative;
		width: 100%;
		top: 0;
		left: 0;
		display: block;
		transition-delay: 0.7s;
		-webkit-transition-delay: 0.7s;
		z-index: 100000;
	}

	/*导航按钮*/
	.phone_nav .nav_but_box {
		display: block;
		position: absolute;
		width: 30px;
		height: 30px;
		right: 10px;
		top: 10px;
		z-index: 1;
		transition: all 0.7s;
		-webkit-transition: all 0.7s;
	}

	.phone_nav .nav_but {
		display: inline-block;
		position: relative;
		width: 20px;
		height: 2px;
		z-index: 2;
		margin: 13px 0 0 5px;
		background: #0d73bc;
		-webkit-transition-property: background-color, -webkit-transform;
		transition-property: background-color, -webkit-transform;
		transition-property: background-color, transform;
		transition-property: background-color, transform, -webkit-transform;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
	}

	.phone_nav .nav_but:before,
	.nav_but:after {
		content: '';
		display: block;
		width: 20px;
		height: 2px;
		position: absolute;
		background: #0d73bc;
		transition-property: margin, -webkit-transform;
		-webkit-transition-property: margin, -webkit-transform;
		transition-property: margin, transform;
		transition-property: margin, transform, -webkit-transform;
		transition-duration: 300ms;
		-webkit-transition-duration: 300ms;
	}

	.phone_nav .nav_but:before {
		margin-top: -5px;
	}

	.phone_nav .nav_but:after {
		margin-top: 5px;
	}

	/*栏目名称*/
	.phone_nav .nav_main {
		height: 100%;
		position: fixed;
		left: 0;
		opacity: 0;
		width: 0;
		transition: all 0.4s ease 0.3s;
		-webkit-transition: all 0.4s ease 0.3s;
		background-color: #0d73bc;
		overflow: hidden;
	}

	.phone_nav .nav_main ul {
		padding: 0 20px;
		margin-top: 40px;
	}

	.phone_nav .nav_main li a {
		background-position: left;
		color: #fff;
		height: 46px;
		line-height: 46px;
		display: inline-block;
		background-size: 32px;
		background-repeat: no-repeat;
		font-weight: bold;
	}

	.phone_nav .nav_main .ss {
		border: 1px solid #fff;
		margin-top: 20px;
	}

	.phone_nav .nav_main .ss .p2 {
		float: right;
	}

	.phone_nav .nav_main .ss .p2 input {
		border: 0;
		width: 34px;
		height: 34px;
	}

	.phone_nav .nav_main .ss .p1 {
		display: block;
		margin: 0 34px 0 5px;
	}

	.phone_nav .nav_main .ss .p1 input {
		width: 100%;
		height: 34px;
		line-height: 34px;
		background: none;
		border: 0;
		font-family: "Microsoft YaHei";
		font-size: 14px;
		color: #fff;
	}

	.phone_nav .nav_main li b {
		display: inline-block;
		position: absolute;
		right: 10px;
		top: 0px;
		width: 50%;
		height: 50px;
		background: url("../images/lmfooter_bottom.png") center right no-repeat;
		z-index: 99;
	}

	.phone_nav .nav_main .ul {
		padding: 0 0 0px 40px;
		margin: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s;
		-webkit-transition: max-height 0.4s;
	}

	.phone_nav .nav_main .ul li {
		padding: 0;
		border-bottom: 0;
		transform: translateX(0px);
		-webkit-transform: translateX(0px);
	}

	.phone_nav .nav_main .ul li a {
		padding: 0;
		height: auto;
		line-height: 30px;
		font-weight: normal
	}

	.phone_nav .nav_main .b_one .ul {
		max-height: 300px;
		padding: 0 0 0px 40px;
		margin-bottom: 10px;
	}


	.phone_nav .nav_main li {
		width: 100%;
		transform: translateX(100px);
		-webkit-transform: translateX(100px);
		transition: all 0.8s ease;
		-webkit-transition: all 0.8s ease;
		border-bottom: 1px solid rgba(225, 225, 225, 0.5);
		padding: 0 20px;
		position: relative;
	}

	.phone_nav .nav_main li:nth-of-type(1) {
		transition-delay: 0.1s;
		-webkit-transition-delay: 0.1s;
	}

	.phone_nav .nav_main li:nth-of-type(2) {
		transition-delay: 0.2s;
		-webkit-transition-delay: 0.2s;
	}

	.phone_nav .nav_main li:nth-of-type(3) {
		transition-delay: 0.3s;
		-webkit-transition-delay: 0.3s;
	}

	.phone_nav .nav_main li:nth-of-type(4) {
		transition-delay: 0.4s;
		-webkit-transition-delay: 0.4s;
	}

	.phone_nav .nav_main li:nth-of-type(5) {
		transition-delay: 0.5s;
		-webkit-transition-delay: 0.5s;
	}

	.phone_nav .nav_main li:nth-of-type(6) {
		transition-delay: 0.6s;
		-webkit-transition-delay: 0.6s;
	}

	.phone_nav .nav_main li:nth-of-type(7) {
		transition-delay: 0.6s;
		-webkit-transition-delay: 0.6s;
	}

	.phone_nav .nav_main li:nth-of-type(8) {
		transition-delay: 0.6s;
		-webkit-transition-delay: 0.6s;
	}

	.phone_nav .nav_main li:nth-of-type(9) {
		transition-delay: 0.6s;
		-webkit-transition-delay: 0.6s;
	}

	.phone_nav .nav_main li:nth-of-type(10) {
		transition-delay: 0.6s;
		-webkit-transition-delay: 0.6s;
	}


	/*打开样式*/
	.phone_nav_one {
		transition-delay: 0s;
		-webkit-transition-delay: 0s;
	}

	.phone_nav_one .nav_main {
		opacity: 1;
		width: 100%;
		overflow: inherit;
	}

	.phone_nav_one .nav_but {
		background: rgba(0, 0, 0, 0);
	}

	.phone_nav_one .nav_but:before {
		margin-top: 0;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
	}

	.phone_nav_one .nav_but:after {
		margin-top: 0;
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	.phone_nav_one .nav_but_box {
		opacity: 0.8;
	}

	.phone_nav_one .nav_main li {
		width: 100%;
		transform: translateX(0);
		-webkit-transform: translateX(0);
	}
}




@media screen and (max-width:470px) {

	/*--768-0--*/
	.phone_logo {
		padding: 10px 10px
	}

	.phone_nav .nav_main ul {
		height: 410px;
	}

	.phone_nav .nav_main .b_one .ul {
		height: auto;
	}

}

@media screen and (max-width:758px) {

	/*--768-0--*/
	/*.phone_nav .nav_but_box{ top:34px; right:10px;}*/
	.phone_nav .nav_main ul {
		margin-top: 20px;
		height: 550px;
		overflow-y: auto;
		box-sizing: border-box;
	}

	.phone_nav .nav_main .b_one .ul {
		height: auto;
	}

}

/*手机导航*/
.i_wapbanben{ height:30px; line-height:30px; position:absolute; right:100px; top:50%; margin-top:-15px; padding:0px 10px; display:inline-block; color:#333; font-size:14px;}
.i_wapbanben a{ color:#333; padding:0px 4px; display:inline-block;}
.i_wapbanben a:hover,.i_wapbanben a.activebd{ color:#0d73bc;}

.i_ssbn {
	width: 50px;
	height: 100%;
	background: url(../images/tb_01.png) center no-repeat;
	background-color: #f2f2f2;
	background-size: 18px;
	position: absolute;
	top: 0px;
	right: 50px !important;
	z-index: 10000;
}

.i_ssbn span {
	width: 100%;
	height: 100%;
	display: inline-block;
}

.i_ssbn_div {
	width: 200px;
	display: none;
	background-color: #0d73bc;
	z-index: 10000;
	position: absolute;
	right: 0px;
	top: 100%;
}

.i_ssbn_div .ipt1 {
	width: 84%;
	height: 30px;
	line-height: 30px;
	text-indent: 15px;
	border: 0px;
	font-family: "微软雅黑";
	background-color: #fff;
	color: #b9b9b9;
	font-size: 0.16rem;
}

.i_ssbn_div .ipt2 {
	width: 16%;
	height: 30px;
	background: url(../images/tb_01z.png) center no-repeat;
	border: 0px;
	background-size: 15px;
}

.i_ssbn_div input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #b9b9b9;
}

.i_ssbn_div input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #b9b9b9;
}

.i_ssbn_div input:-ms-input-placeholder {
	color: #b9b9b9;
}

.i_ssbn_div input::-webkit-input-placeholder {
	color: #b9b9b9;
}

.i_bg1 {
	background-color: #f1f1f1;
}

.i_bg2 {
	background-color: #f4f4f4;
}



/*首页*/
.i_box1 {
	width: 100%;
	padding: 38px 0px 0px 0px;
	position: relative;
	z-index: 111;
}

.i_box1_t {
	width: 100%;
	padding-bottom: 50px;
}

.i_box1_tl {
	width: 36.5%;
	padding-right: 2.5%;
}

.i_box1_tl_t {
	width: 100%;
	height: 70px;
	line-height: 70px;
	border-bottom: 3px solid #efefef;
}

.i_box1_tl_t .s1 {
	height: 70px;
	position: relative;
	color: #333333;
	font-size: 24px;
}

.i_box1_tl_t .s1:after {
	width: 100%;
	height: 3px;
	background-color: #0d73bc;
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: "";
}

.i_box1_tl_c {
	width: 100%;
	padding-top: 30px;
}

.i_box1_tl_c dt {
	width: 100%;
	float: left;
	padding-bottom: 27px;
}

.i_box1_tl_c dt .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.i_box1_tl_c dt .a_img img {
	width: 100%;
}

.i_box1_tl_c dd {
	width: 100%;
	height: 36px;
	line-height: 36px;
	float: left;
	overflow: hidden;
	background: url(../images/tb_4.png) left center no-repeat;
	padding-left: 24px;
	color: #666666;
	font-size: 14px;
}

.i_box1_tl_c dd a {
	width: 80%;
	height: 36px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 16px;
}

.i_box1_tl_c dd a:hover,
.i_box1_tl_c dd:hover {
	text-decoration: none;
	color: #0d73bc;
}

.i_box1_tc {
	width: 34%;
}

.i_box1_tc_dl {
	width: 100%;
	padding-top: 30px;
}

.i_box1_tc_dl dt {
	width: 100%;
	padding-bottom: 27px;
	float: left;
	font-weight: normal;
}

.i_box1_tc_dl dt .a_img {
	width: 40%;
	display: inline-block;
	overflow: hidden;
}

.i_box1_tc_dl dt .a_img img {
	width: 100%;
}

.i_box1_tc_dl dt .a_img_r {
	width: 54%;
	padding-right: 2%;
	padding-top: 15px;
}

.i_box1_tc_dl dt .a_img_r .s1 {
	width: 100%;
	height: 70px;
	line-height: 35px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 20px;
}

.i_box1_tc_dl dt .a_img_r .s1:hover {
	text-decoration: none;
	color: #0d73bc;
}

.i_box1_tc_dl dt .a_img_r .s2 {
	width: 100%;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	overflow: hidden;
	color: #666666;
	font-size: 14px;
}

.i_box1_tc_dl dt .a_img_r .s3 {
	width: 100%;
	height: 69px;
	line-height: 23px;
	font-size: 14px;
	overflow: hidden;
	color: #999999;
}

.i_box1_tc_dl dd {
	width: 100%;
	height: 36px;
	line-height: 36px;
	float: left;
	overflow: hidden;
	background: url(../images/tb_4.png) left center no-repeat;
	padding-left: 24px;
	color: #666666;
	font-size: 14px;
}

.i_box1_tc_dl dd a {
	width: 80%;
	height: 36px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 16px;
}

.i_box1_tc_dl dd a:hover,
.i_box1_tl_c dd:hover {
	text-decoration: none;
	color: #0d73bc;
}

.i_box1_tr {
	width: 27.6%;
	/* padding-top: 23px; */
}

.i_box1_tr_ul {
	width: 100%;
}

.i_box1_tr_ul li {
	width: 50%;
	float: left;
	padding: 0px 0px 1% 1%;
}

.i_box1_tr_ul li .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.i_box1_tr_ul li .a_img img {
	width: 100%;
}

.i_box1_tr_ul li .a_img .s1 {
	width: 100%;
	height: 40px;
	line-height: 40px;
	position: absolute;
	left: 0px;
	top: 20px;
	color: #333333;
	font-size: 24px;
	padding-left: 10%;
}

.i_box1_c {
	width: 100%;
}

.i_box1_c_l {
	width: 50%;
	overflow: hidden;
}

.i_box1_c_l .a_img {
	width: 100%;
	position: relative;
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
}

.i_box1_c_l .a_img img {
	width: 100%;
}

.i_box1_c_l .a_img .tb1 {
	width: 100%;
	padding-top: 70px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	background: url(../images/tb_1z.png) top center no-repeat;
	position: absolute;
	left: 0px;
	top: 50%;
	z-index: 2;
	webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.i_box1_c_l .a_img .tb2 {
	width: 100%;
	height: 100%;
	background: url(../images/tb_08.png) repeat;
	position: absolute;
	left: 0pz;
	top: 0px;
	z-index: 1;
}

.i_box1_c_r {
	width: 44%;
	padding-top: 45px;
	/* padding-right: 2%; */
}

.i_box1_c_r_t {
	width: 100%;
	padding-bottom: 34px;
	color: #0d73bc;
	font-size: 18px;
	line-height: 1.6;
}

.i_box1_c_r_t .s1 {
	color: #0d73bc;
	font-size: 30px;
	font-weight: bold;
}

.i_box1_c_r_c {
	width: 100%;
	height: 100px;
	line-height: 25px;
	overflow: hidden;
	color: #666666;
	font-size: 14px;
}

.i_box1_c_r_b {
	width: 100%;
	margin: 20px 0px 30px 0px;
}

.i_box1_c_r_b ul {
	width: 60%;
}

.i_box1_c_r_b ul li {
	width: 33.33%;
	float: left;
	color: #666666;
	font-size: 16px;
	line-height: 1.2;
}

.i_box1_c_r_b ul li .s1 {
	color: #0d73bc;
	font-size: 60px;
	font-family: Arial, Helvetica, sans-serif;
}

.i_box1_c_r_button {
	width: 100%;
}

.i_box1_c_r_button a,
.i_box1_c_r_button a:hover {
	text-decoration: none;
	height: 38px;
	line-height: 38px;
	color: #0d73bc;
	font-size: 14px;
	display: inline-block;
}

.i_box2 {
	width: 100%;
	padding: 50px 0px 115px 0px;
}

.i_box2_l {
	width: 100%;
	padding-right:0%;
}

.i_box2_l_dl {
	width: 100%;
	padding-top: 30px;
}

.i_box2_l_dl dt {
	width: 100%;
	padding-bottom: 27px;
	float: left;
	font-weight: normal;
}

.i_box2_l_dl dt .a_img {
	width: 40%;
	display: inline-block;
	overflow: hidden;
}

.i_box2_l_dl dt .a_img img {
	width: 100%;
}

.i_box2_l_dl dt .a_img_r {
	width: 54%;
	padding-right: 2%;
	padding-top: 6px;
}

.i_box2_l_dl dt .a_img_r .s1 {
	width: 100%;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 20px;
}

.i_box2_l_dl dt .a_img_r .s1:hover {
	text-decoration: none;
	color: #0d73bc;
}

.i_box2_l_dl dt .a_img_r .s2 {
	width: 100%;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	overflow: hidden;
	color: #666666;
	font-size: 14px;
}

.i_box2_l_dl dt .a_img_r .s3 {
	width: 100%;
	height:120px;
	line-height: 23px;
	font-size: 14px;
	overflow: hidden;
	color: #999999;
}

.i_box2_l_dl dd {
	width: 100%;
	height: 36px;
	line-height: 36px;
	float: left;
	overflow: hidden;
	background: url(../images/tb_4.png) left center no-repeat;
	padding-left: 24px;
	color: #666666;
	font-size: 14px;
}

.i_box2_l_dl dd a {
	width: 80%;
	height: 36px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 16px;
}

.i_box2_l_dl dd a:hover,
.i_box2_l_dl dd:hover {
	text-decoration: none;
	color: #0d73bc;
}

.i_box2_c {
	width: 32%;
}

.i_box2_c_div {
	width: 100%;
	margin-top: 20px;
	background-color: #0d73bc;
}

.i_box2_c_div .a_img {
	width: 50%;
	display: inline-block;
	overflow: hidden;
}

.i_box2_c_div .a_img img {
	width: 100%;
}

.i_box2_c_div .a_img_r {
	width: 43%;
	padding-right: 3%;
	padding-top: 30px;
	color: #fff;
}

.i_box2_c_div .a_img_r .s1,
.i_box2_c_div .a_img_r .s1:hover {
	width: 100%;
	text-decoration: none;
	height: 36px;
	line-height: 36px;
	display: inline-block;
	overflow: hidden;
	color: #fff;
	font-size: 20px;
}

.i_box2_c_div .a_img_r .s2 {
	width: 100%;
	height: 180px;
	line-height: 30px;
	margin: 24px 0px;
	overflow: hidden;
	font-size: 16px;
}

.i_box2_c_div .a_img_r .s3 {
	height: 35px;
	line-height: 35px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}

.i_box2_r {
	width: 32%;
}

.i_box2_r_div {
	width: 100%;
	margin-top: 20px;
	background-color: #f1f1f1;
	padding: 10px 10px 5px 10px;
}

.i_box2_r_div li {
	width: 50%;
	padding: 0px 10px 5px 10px;
	float: left;
}

.i_box2_r_div li .a_img {
	width: 100%;
	display: inline-block;
	float: left;
	overflow: hidden;
	position: relative;
}

.i_box2_r_div li .a_img img {
	width: 100%;
}

.i_box2_r_div li .a_img .a_text {
	width: 100%;
	height: 33px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	line-height: 33px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	background: url(../images/tb_5.png) repeat;
	color: #fff;
	font-size: 14px;
}

.i_box3 {
	width: 100%;
	padding: 65px 0px 45px 0px;
}

.i_box3_t {
	width: 100%;
	padding-bottom: 20px;
}

.i_box3_t .s1 {
	width: 10%;
	height: 46px;
	line-height: 46px;
	color: #0d73bc;
	font-size: 30px;
	font-weight: bold;
}

.i_box3_t .s2 {
	width: 90%;
	min-height: 92px;
}

.i_box3_t .s2 a {
	margin: 8px 2px;
	float: left;
	height: 28px;
	line-height: 28px;
	padding: 0px 20px;
	-moz-border-radius: 14px;
	/* Gecko browsers */
	-webkit-border-radius: 14px;
	/* Webkit browsers */
	border-radius: 14px;
	/* W3C syntax */
	-webkit-transition: all ease-out 0.2s;
	transition: all ease-out 0.2s;
	display: inline-block;
	border: 1px solid #f1f1f1;
	color: #0d73bc;
	font-size: 14px;
}

.i_box3_t .s2 a:hover,
.i_box3_t .s2 a.activegg {
	color: #0d73bc;
	text-decoration: none;
	border: 1px solid #0d73bc;
}

.i_box3_c {
	width: 100%;
}

.i_box3_con {
	width: 100%;
	display: none;
}

.i_box3_con_t {
	width: 100%;
	padding-bottom: 55px;
}

.i_box3_con_t li {
	width: 25%;
	float: left;
	padding: 8px 1%;
}

.i_box3_con_t li .a_img {
	width: 100%;
	display: inline-block;
	float: left;
	overflow: hidden;
	-moz-border-radius: 15px;
	/* Gecko browsers */
	-webkit-border-radius: 15px;
	/* Webkit browsers */
	border-radius: 15px;
	/* W3C syntax */
}

.i_box3_con_t li .a_img img {
	width: 100%;
}

.i_box3_con_b {
	width: 100%;
	height: 34px;
	line-height: 34px;
	text-align: center;
}

.i_box3_con_b a,
.i_box3_con_b a:hover {
	text-decoration: none;
	color: #0d73bc;
	font-size: 14px;
}

.video_div {
	width: 100%;
	height: 100%;
	background-color: #000;
	position: fixed;
	z-index: 100011111111111;
	left: 0px;
	top: -100%;
}

.video_div_closebtv {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 30px;
	top: 30px;
	cursor: pointer;
	z-index: 100;
}

.video_div_center {
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
}

.controls {
	width: 500px;
	display: inline-block;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translate(-50%, 0);
	display: none;
}

.btn-group {
	display: inline-block;
}

/*.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  text-align: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.5;
  padding: 4px 15px;
  font-size: 12px;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  color: rgba(0, 0, 0, 0.65);
  background-color: #fff;
  border-color: #d9d9d9;
}*/

.btn:first-child {
	border-radius: 4px 0 0 4px;
}

.btn:last-child {
	border-radius: 0 4px 4px 0;
}

.btn.active {
	color: #fff;
	background-color: #dc7953;
	border-color: #dc7953;
}

.rotate {
	margin-left: 20px;
}

.rotate .btn {
	border: none;
	border-radius: 20px;
}

.i_section {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
}

.bg_blur {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/bg1.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position-x: center !important;
	z-index: 1;
}

.bg_blur1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/bg4.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position-x: center !important;
	z-index: 1;
}

.bg_blur2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/bg6.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position-x: center !important;
	z-index: 1;
}

.i_box4 {
	width: 100%;
	z-index: 1;
	position: relative;
	padding: 35px 0px 50px 0px;
}

.i_box4_l {
	width: 44.5%;
}

.i_box4_t {
	width: 100%;
	height: 70px;
	line-height: 70px;
	overflow: hidden;
	color: #fff;
	font-size: 24px;
}

.i_box4_lc {
	width: 100%;
	overflow: hidden;
	background: url(../images/tb_8.png) repeat;
	-moz-border-radius: 10px;
	/* Gecko browsers */
	-webkit-border-radius: 10px;
	/* Webkit browsers */
	border-radius: 10px;
	/* W3C syntax */
}

.i_box4_lc .a_img {
	width: 34%;
	display: inline-block;
	overflow: hidden;
}

.i_box4_lc .a_img img {
	width: 100%;
}

.i_box4_lc .a_img_r {
	width: 66%;
	padding: 15px 3%;
}

.i_box4_lc .a_img_rc {
	width: 100%;
/* 	height: 300px; */
	overflow: hidden;
	/*overflow-y:auto;*/
	overflow: hidden;
}

.i_box4_lc .a_img_rc::-webkit-scrollbar {
	width: 2px;
	border-radius: 1px;
	height: 1px;
	background: none;
}

.i_box4_lc .a_img_rc::-webkit-scrollbar-track {
	border-radius: 1px;
	width: 1px !important;
	background-color: #cccccc;
}

.i_box4_lc .a_img_rc::-webkit-scrollbar-thumb {
	width: 1px;
	height: 1px;
	border-radius: 1px;
	background-color: #0d73bc;
}

.i_box4_lc .a_img_rc ul {
	width: 100%;
	padding-right: 5%;
}

.i_box4_lc .a_img_rc ul li {
	width: 100%;
	padding-bottom: 15px;
	float: left;
}

.i_box4_lc .a_img_rc ul li .s1 {
	width: 100%;
	height: 35px;
	line-height: 35px;
	margin-bottom: 5px;
	overflow: hidden;
	color: #666666;
	font-size: 14px;
}

.i_box4_lc .a_img_rc ul li .s1 span {
	color: #333333;
	font-size: 18px;
	display: inline-block;
	padding-right: 25px;
}

.i_box4_lc .a_img_rc ul li .s2 {
	width: 100%;
	height: 48px;
	line-height: 24px;
	overflow: hidden;
	color: #666666;
	font-size: 14px;
}

.i_box4_lc .a_img_rb {
	width: 100%;
	padding-top: 10px;
}

.i_box4_lc .a_img_rb a,
.i_box4_lc .a_img_rb a:hover {
	padding: 0px 15px;
	height: 40px;
	display: inline-block;
	line-height: 40px;
	background-color: #0d73bc;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.i_box4_lc .a_img_rb a span {
	background: url(../images/tb_6.png) left center no-repeat;
	display: inline-block;
	line-height: 40px;
	padding-left: 30px;
}

.i_box4_r {
	width: 50%;
	padding-right: 1%;
}

.i_box4_rc_z {
	width: 100%;
	height: 384px;
	overflow: hidden;
}

.i_box4_rc {
	width: 100%;
}

.i_box4_rc li {
	width: 100%;
	/* padding:15px 0px 25px 0px;*/
	height: 128px;
	border-top: 1px solid #6a9393;
	float: left;
}

.i_box4_rc li .div_t {
	width: 100%;
	padding-bottom: 15px;
	padding-top: 15px;
}

.i_box4_rc li .div_t .s1 {
	width: 6%;
}

.i_box4_rc li .div_t .s2,
.i_box4_rc li .div_t .s2:hover {
	width: 94%;
	text-decoration: none;
	height: 26px;
	line-height: 26px;
	display: inline-block;
	overflow: hidden;
	color: #fff;
	font-size: 20px;
}

.i_box4_rc li .div_c {
	width: 100%;
}

.i_box4_rc li .div_c .s1 {
	width: 6%;
}

.i_box4_rc li .div_c .s2 {
	width: 94%;
	text-decoration: none;
	height: 46px;
	line-height: 23px;
	display: inline-block;
	overflow: hidden;
	color: #fff;
	font-size: 14px;
}


.i_footer {
	width: 100%;
	padding: 50px 0px 35px 0px;
}

.i_footer_l {
	width: 34%;
}

.i_footer_l_t {
	width: 100%;
	height: 33px;
	margin-bottom: 40px;
}

.i_footer_l_t .s1 {
	width: 16%;
	height: 33px;
	line-height: 33px;
	color: #666666;
	font-size: 16px;
	font-weight: bold;
	overflow: hidden;
}

.i_footer_l_t .s2 {
	width: 55%;
	height: 33px;
	position: relative;
}

.i_footer_l_t .s2_t {
	width: 100%;
	height: 33px;
	line-height: 33px;
	cursor: pointer;
	background: url(../images/tb_7.png) right 20px center no-repeat;
	padding-left: 20px;
	color: #fff;
	font-size: 14px;
	background-color: #0d73bc;
}

.i_footer_l_t .s2_c {
	width: 100%;
	height: 100px;
	display: none;
	overflow-y: auto;
	position: absolute;
	left: 0px;
	top: 33px;
	background-color: #0d73bc;
}

.i_footer_l_t .s2_c li {
	width: 100%;
	height: 35px;
	float: left;
}

.i_footer_l_t .s2_c li a,
.i_footer_l_t .s2_c li a:hover {
	width: 100%;
	height: 35px;
	text-decoration: none;
	line-height: 35px;
	display: inline-block;
	overflow: hidden;
	color: #fff;
	font-size: 14px;
	padding-left: 20px;
}

.i_footer_l_c {
	width: 100%;
	line-height: 1.7;
	color: #666666;
	font-size: 14px;
}

.i_footer_r {
	width: 53%;
}

.i_footer_r_t {
	width: 100%;
	padding-bottom: 10px;
	line-height: 40px;
	text-align: right;
	color: #666666;
}

.i_footer_r_t a,
.i_footer_r_t a:hover {
	color: #666666;
	padding: 0px 12px
}

.i_footer_r_c {
	width: 100%;
}

.i_footer_r_c .s2 {
	padding-right: 4%;
	color: #666666;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.6;
	text-align: right;
	padding-top: 15px;
}

.i_footer_r_c .s2 span {
	font-size: 26px;
}

.i_pfdiv {
	width: 50px;
	position: fixed;
	right: 0px;
	top: 50%;
	webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	z-index: 111;
}

.i_pfdiv li {
	width: 100%;
	padding-bottom: 2px;
	float: left;
	height: 52px;
	position: relative;
}

.i_pfdiv li .a_img {
	width: 136px;
	height: 50px;
	line-height: 50px;
	-moz-border-radius: 25px 0px 0px 25px;
	/* Gecko browsers */
	-webkit-border-radius: 25px 0px 0px 25px;
	/* Webkit browsers */
	border-radius: 25px 0px 0px 25px;
	/* W3C syntax */
	color: #fff;
	padding-left: 52px;
	font-size: 12px;
	display: inline-block;
	overflow: hidden;
	position: absolute;
	top: 0px;
	right: -85px;
	-webkit-transition: all ease-out 0.2s;
	transition: all ease-out 0.2s;
}

.i_pfdiv li .a_img:hover {
	right: 0px;
	padding-left: 42px;
	text-decoration: none;
}

.i_pfdiv li .a_img.bg1 {
	background: url(../images/tb_1.png) left 15px center no-repeat;
	background-color: #0d73bc;
}

.i_pfdiv li .a_img.bg1:hover {
	background: url(../images/tb_1.png) left 10px center no-repeat;
	background-color: #0d73bc;
}

.i_pfdiv li .a_img.bg2 {
	background: url(../images/tb_2.png) left 15px center no-repeat;
	background-color: #0d73bc;
}

.i_pfdiv li .a_img.bg2:hover {
	background: url(../images/tb_2.png) left 10px center no-repeat;
	background-color: #0d73bc;
}

.i_pfdiv li .a_img.bg3 {
	background: url(../images/tb_3.png) left 15px center no-repeat;
	background-color: #0d73bc;
}

.i_pfdiv li .a_img.bg3:hover {
	background: url(../images/tb_3.png) left 10px center no-repeat;
	background-color: #0d73bc;
}

.i_pfdiv li .a_img.bg4,
.i_pfdiv li .a_img.bg4:hover {
	right: -86px;
	padding-left: 52px;
	background: url(../images/tb_04.png) left 15px center no-repeat;
	background-color: #0d73bc;
}

.i_menu1 {
	width: 100%;
	background-color: #0d73bc;
	display: none;
	border-left: 0px;
	border-right: 0px;
	position: fixed;
	left: 0px;
	bottom: 0px;
	z-index: 10011;
}

.i_menu1 ul {
	width: 100%;
	padding-top: 5px;
}

.i_menu1 ul li {
	width: 25%;
	float: left;
	overflow: hidden;
	text-align: center;
}

.i_menu1 ul li a {
	width: 100%;
	color: #fff;
	float: left;
	height: 55px;
	padding-top: 32px;
	line-height: 1.2;
	font-size: 14px;
	display: inline-block;
	text-align: center;
}

.i_menu1 ul li a:hover,
.i_menu1 ul li a.activefm {
	color: #fff;
	text-decoration: none;
}

.i_menu1 ul li a.a1 {
	background: url(../images/tb_1.png) top 0.15rem center no-repeat;
	background-size: 26px 26px;
}

.i_menu1 ul li a.a2 {
	background: url(../images/tb_2.png) top 0.15rem center no-repeat;
	background-size: 26px 26px;
}

.i_menu1 ul li a.a3 {
	background: url(../images/tb_3.png) top 0.15rem center no-repeat;
	background-size: 26px 26px;
}

.i_menu1 ul li a.a4 {
	background: url(../images/tb_04.png) top 0.15rem center no-repeat;
	background-size: 26px 26px;
}

/*底部*/


.n_banner {
	width: 100%;
	height: 508px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.n_banner .tb1 {
	width: 38.6%;
	height: 100%;
	/*background:url(../images/tb_9.png) repeat;*/
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
}

.n_banner_t {
	width: 100%;
	position: absolute;
	;
	left: 0px;
	top: 50%;
	z-index: 11;
	webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.n_banner_tc {
	width: 48%;
	line-height: 2.2;
	color: #666;
	font-size: 16px;
	overflow: hidden;
}

.n_banner_tc .s1 {
	font-size: 30px;
	color: #0d73bc;
}

.n_banner_tc.div1 {
	color: #666;
}

.n_banner_tc.div1 .s1 {
	color: #0d73bc;
}


/*内页*/
.n_bg1 {
	background-color: #f0f3f6;
}

.n_bg2 {
	background: url(../images/bg2.jpg) center center no-repeat;
	background-size: cover;
}

.n_bg3 {
	background: url(../images/img32.jpg) bottom center no-repeat;
	background-color: #f0f3f6;
}

.n_bg4 {
	background: url(../images/bg3.jpg) center center no-repeat;
	background-size: cover;
}

.n_bg5 {
	background: url(../images/bg8.jpg) center center no-repeat;
	background-size: cover;
}

.n_bg6 {
	background: url(../images/bg7.jpg) center center no-repeat;
	background-size: cover;
	background-color: #f6efe5;
}

.n_bg7 {
	background: url(../images/bg5.jpg) center center no-repeat;
	background-size: cover;
}

.a_zxlmenu {
	width: 100%;
	position: relative;
	display: none;
	z-index: 10;
}

.a_zxlmenu_t {
	width: 100%;
	padding: 3% 0px;
	background: url(../images/zxl_jt1.png) right center no-repeat;
	font-size: 16px;
	text-align: center;
	background-color: #0d73bc;
	color: #fff;
	cursor: pointer;
	background-size: 30px;
}

.a_zxlmenu_c {
	width: 100%;
	position: absolute;
	left: 0px;
	top: 100%;
	margin: 0px;
	padding: 0px;
	background-color: #eeeeee;
	text-indent: 0px;
	display: none;
	-moz-box-shadow: 0px 0px 10px #c7c5bf;
	/*firefox*/
	-webkit-box-shadow: 0px 0px 10px #c7c5bf;
	/*webkit*/
	box-shadow: 0px 0px 10px #c7c5bf;
	/*opera或ie9*/
}

.a_zxlmenu_c li {
	width: 100%;
	float: left;
	text-align: center;
}

.a_zxlmenu_c li .aone {
	width: 100%;
	padding: 3% 0px;
	display: inline-block;
	color: #0d73bc;
	font-size: 14px;
	text-decoration: none;
	text-indent: 0px;
}

.a_zxlmenu_c li .aone:hover,
.a_zxlmenu_c li .aone.activetwo {
	color: #fff;
	text-decoration: none;
	background-color: #53b19f;
}

.a_zxlmenu_c li dl {
	width: 100%;
	border-bottom: 1px solid #ccc;
	display: none;
}

.a_zxlmenu_c li dl dd {
	width: 100%;
	float: left;
	text-align: center;
}

.a_zxlmenu_c li dl dd a,
.a_zxlmenu_c li dl dd a:hover {
	width: 100%;
	padding: 3% 0px;
	display: inline-block;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	text-indent: 0px;
}


.a_menu {
	width: 100%;
	margin: 0px;
	padding: 0px;
	height: 60px;
	overflow: hidden;
	text-align: center;
}

.a_menu .a_menu_a {
	padding: 0px;
	margin: 0px;
	padding: 0px 40px;
	height: 60px;
	margin: 0px 0px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	line-height: 60px;
	color: #333333;
	font-size: 16px;
}

.a_menu .a_menu_a:hover,
.a_menu .a_menu_a.activetm1 {
	color: #fff;
	background-color: #0d73bc;
	text-decoration: none;
}

.n_box1 {
	width: 100%;
	padding: 70px 0px;
}

.n_actiLeft {
	width: 66%;
	border-right: 1px solid #cccccc;
}

.n_actiRight {
	width: 29.2%;
}

.n_activityNewsList {
	width: 93%;
}

.n_activityNewsList li {
	width: 100%;
	padding-bottom: 20px;
	float: left;
}

.n_activityNewsList li .div {
	width: 100%;
	background-color: #f1f4f6;
	display: inline-block;
	overflow: hidden;
	color: #666666;
	font-size: 14px;
}

.n_activityNewsList li .div:hover {
	color: #666;
	text-decoration: none;
}

.n_activityNewsList li .div .a_img {
	width: 31.5%;
	display: inline-block;
	overflow: hidden;
}

.n_activityNewsList li .div .a_img img {
	width: 100%;
}

.n_activityNewsList li .div .a_img_r {
	width: 68.5%;
	padding: 0% 5%;
}

.n_activityNewsList li .div .a_img_r .s1 {
	width: 100%;
	height: 65px;
	line-height: 65px;
	overflow: hidden;
	color: #333333;
	font-size: 20px;
	font-weight: bold;
	border-bottom: 1px solid #e5e5e5;
}

.n_activityNewsList li .div :hover.a_img_r .s1 {
	color: #0d73bc;
}

.n_activityNewsList li .div .a_img_r .s2 {
	width: 100%;
	height: 50px;
	line-height: 25px;
	margin: 15px 0px;
	text-align: justify;
	overflow: hidden;
}

.n_activityNewsList li .div .a_img_r .s3 {
	width: 100%;
	height: 30px;
	line-height: 30px;
	background: url(../images/tb_11.png) right center no-repeat;
}

.n_expoPages {
	width: 100%;
	padding: 30px 0px;
	text-align: center;
}

.n_expoPages a,
.n_expoPages span {
	color: #333333;
	padding: 0px 12px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	background-color: #f0f3f6;
	font-size: 14px;
	display: inline-block;
	margin-bottom: 5px;
}

.n_expoPages a:hover,
.n_expoPages a.activepages {
	color: #fff;
	text-decoration: none;
	background-color: #0d73bc;
}


.n_actimtbd {
	width: 100%;
}

.n_actimtbd dt {
	width: 100%;
	padding-bottom: 15px;
	float: left;
	font-weight: normal;
}

.n_actimtbd dt .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.n_actimtbd dt .a_img img {
	width: 100%;
}

.n_actimtbd dd {
	width: 100%;
	height: 49px;
	overflow: hidden;
	border-bottom: 1px solid #d9d9d9;
	float: left;
	background: url(../images/tb_10.png) left 3px center no-repeat;
	padding-left: 20px;
}

.n_actimtbd dd a {
	width: 100%;
	height: 49px;
	line-height: 49px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 16px;
}

.n_actimtbd dd a:hover {
	text-decoration: none;
	color: #0d73bc;
}

.n_box2 {
	width: 100%;
	background-color: #f0f3f6;
	border-top: 5px solid #0d73bc;
	padding: 45px 5% 55px 5%;
}

.a_newsdetails {
	width: 100%;
}

.a_details_t {
	width: 100%;
	padding: 5px 0px;
	line-height: 1.7;
	text-align: center;
	color: #333;
	font-size: 24px;
}

.a_details_t1 {
	width: 100%;
	height: 45px;
	text-align: center;
	line-height: 45px;
	color: #999999;
	font-size: 14px;
	overflow: hidden;
}

.a_details_c {
	width: 100%;
	padding: 40px 0px;
	line-height: 1.8;
	color: #333333;
	font-size: 14px;
	overflow-x: hidden;
	word-wrap: break-word;
}

.a_details_c img {
	max-width: 100%;
}

.a_details_b {
	width: 100%;
	height: 50px;
	line-height: 50px;
	overflow: hidden;
}

.a_details_b a {
	color: #666666;
	font-size: 14px;
}

.a_details_b a:hover {
	color: #0d73bc;
	text-decoration: none;
}

.n_box3 {
	width: 100%;
	padding: 4% 3%;
	text-align: center;
	color: #333;
	font-size: 14px;
	line-height: 1.8;
	display: none;
}

.n_box3 .s1 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	display: inline-block;
}

.n_box3_t {
	width: 100%;
	text-align: center;
	color: #999999;
	font-size: 14px;
	line-height: 1.8;
}

.n_box3_t span {
	color: #333333;
	font-size: 30px;
	font-weight: bold;
}

.n_box3_c {
	width: 100%;
}

.n_box3_c dt {
	width: 100%;
	padding: 30px 0px 70px 0px;
	float: left;
	font-weight: normal;
}

.n_box3_c dt .a_img {
	width: 26%;
	display: inline-block;
	overflow: hidden;
}

.n_box3_c dt .a_img img {
	width: 100%;
}

.n_box3_c dt .a_img_r {
	width: 69%;
	padding-right: 4.5%;
}

.n_box3_c dt .a_img_r .s1 {
	width: 100%;
	height: 75px;
	line-height: 75px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 22px;
}

.n_box3_c dt .a_img_r .s1:hover {
	text-decoration: none;
	color: #0d73bc;
}

.n_box3_c dt .a_img_r .s2 {
	width: 100%;
	margin: 15px 0px 35px 0px;
	height: 60px;
	line-height: 30px;
	overflow: hidden;
	color: #666666;
	font-size: 16px;
}

.n_box3_c dt .a_img_r .s3,
.n_box3_c dt .a_img_r .s3:hover {
	text-decoration: none;
	width: 124px;
	height: 43px;
	line-height: 43px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	color: #fff;
	background-color: #0d73bc;
	font-size: 14px;
}

.n_box3_c dd {
	width: 100%;
	float: left;
	padding-bottom: 30px;
}

.n_box3_c dd .a_left {
	width: 10%;
	background-color: #0d73bc;
	color: #fff;
	text-align: center;
	padding: 10px 0px;
	line-height: 1.8;
	font-size: 36px;
}

.n_box3_c dd .a_left .s1 {
	font-size: 26px;
	position: relative;
	display: inline-block;
}

.n_box3_c dd .a_left .s1:after {
	width: 100%;
	height: 2px;
	background-color: #64b7a7;
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: "";
}

.n_box3_c dd .a_right {
	width: 85%;
}

.n_box3_c dd .a_right .s1 {
	width: 100%;
	height: 50px;
	line-height: 50px;
	overflow: hidden;
	display: inline-block;
	color: #333333;
	font-size: 22px;
}

.n_box3_c dd .a_right .s1:hover {
	text-decoration: none;
	color: #0d73bc;
}

.n_box3_c dd .a_right .s2 {
	width: 100%;
	height: 60px;
	line-height: 30px;
	overflow: hidden;
	color: #666666;
	font-size: 16px;
	margin-top: 10px;
}

.n_box4 {
	width: 100%;
	padding-top: 45px;
}

.n_box4 li {
	width: 25%;
	float: left;
	padding: 0px 1% 1% 1%
}

.n_box4 li .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.n_box4 li .a_img img {
	width: 100%;
}

.n_box4 li .a_text {
	width: 100%;
	height: 80px;
	line-height: 80px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	color: #333333;
	font-size: 18px;
}

.n_box4 li .a_text:hover {
	text-decoration: none;
	color: #0d73bc;
}


.n_contact_div {
	width: 100%;
	background-color: #fff;
	padding-top: 20px;
}

.n_div41 {
	width: 100%;
	padding-bottom: 45px;
}

.n_div4_l {
	width: 26%;
	padding-top: 25px;
	background: url(../images/e.jpg) left top no-repeat;
	line-height: 1.6;
	color: #333333;
	font-size: 14px;
}

.n_div4_l span {
	color: #333333;
	font-size: 48px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}

.n_div4_r {
	width: 68%;
	color: #333333;
	font-size: 14px;
	overflow: hidden;
	line-height: 1.8;
	padding-top: 10px;
}

.n_div4_c {
	width: 100%;
}

.n_div4_cl {
	width: 42%;
}

.n_div4_cr {
	width: 39%;
	background-size: 45%;
}

.n_div4_ct {
	width: 100%;
	padding-bottom: 20px;
	line-height: 1.5;
	color: #333333;
	font-size: 21px;
	font-family: Arial, Helvetica, sans-serif;
}

.n_div4_ct span {
	font-size: 26px;
	font-weight: bold;
	font-family: "微软雅黑";
}

.n_messages {
	width: 100%;
}

.n_messages table tr td {
	padding: 2% 0px;
	color: #333333;
	font-size: 16px;
}

.n_messages .ipt1 {
	width: 67%;
	height: 40px;
	border: 0px;
	line-height: 40px;
	background-color: #efefef;
	text-indent: 10px;
	color: #333;
	font-size: 14px;
	font-family: "微软雅黑";
}

.n_messages1 .ipt1 {
	width: 67%;
	height: 40px;
	border: 0px;
	line-height: 40px;
	background-color: #fff;
	text-indent: 10px;
	color: #333;
	font-size: 14px;
	font-family: "微软雅黑";
} 

.n_messages .ipt2 {
	width: 100%;
	height: 110px;
	padding: 5px 2%;
	border: 0px;
	background-color: #efefef;
	color: #333;
	font-size: 14px;
	font-family: "微软雅黑";
}

.n_messages1 .ipt2 {
	width: 100%;
	height: 110px;
	padding: 5px 2%;
	border: 0px;
	background-color: #fff;
	color: #333;
	font-size: 14px;
	font-family: "微软雅黑";
}

.n_messages .ipt3 {
	width: 99px;
	height: 30px;
	line-height: 30px;
	background-color: #0d73bc;
	border: 0px;
	color: #fff;
	font-size: 14px;
	font-family: "微软雅黑";
}

.n_messages .ipt4 {
	width: 99px;
	height: 30px;
	line-height: 30px;
	background-color: #efefef;
	border: 0px;
	color: #666666;
	font-size: 14px;
	font-family: "微软雅黑";
}

.n_messages1 .ipt4 {
	width: 99px;
	height: 30px;
	line-height: 30px;
	background-color: #fff;
	border: 0px;
	color: #666666;
	font-size: 14px;
	font-family: "微软雅黑";
}

.n_address {
	width: 100%;
	min-height: 350px;
	padding-top: 25px;
	line-height: 2.3;
	background: url(../images/e.jpg) left top no-repeat;
	color: #666666;
	font-size: 14px;
}

.n_address span {
	color: #333333;
}

.n_contanct_map {
	width: 100%;
	height: 420px;
	overflow: hidden;
}

.n_contanct_map #allmap {
	width: 100%;
	height: 420px;
}

.n_box5 {
	width: 100%;
	padding-top: 30px;
	overflow: hidden;
	line-height: 1.8;
	color: #333;
	font-size: 14px;
}

.n_box5 img {
	max-width: 100%;
	height: auto;
}

.n_box5_c {
	width: 100%;
}

.n_box5_c dd {
	width: 100%;
	padding: 50px 0px 15px 0px;
	border-bottom: 1px solid #cccccc;
}

.n_box5_c dd .div1 {
	width: 50%;
	float: left;
}

.n_box5_c dd .div1 .s1 {
	width: 100%;
	height: 43px;
	line-height: 43px;
	overflow: hidden;
	margin-bottom: 22px;
	color: #0d73bc;
	font-size: 22px;
}

.n_box5_c dd .div1 .s2 {
	width: 100%;
	height: 90px;
	line-height: 30px;
	overflow: hidden;
	color: #333333;
	font-size: 16px;
}

.n_box5_b {
	width: 100%;
}

.n_box5_b li {
	width: 25%;
	float: left;
	padding: 0px 1%;
}

.n_box5_b li .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.n_box5_b li .a_img img {
	width: 100%;
}

.n_box5_b li .a_img .tb1 {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
	background: url(../images/tb_12.png) repeat;
}

.n_box5_b li .a_img .a_text {
	width: 100%;
	height: 35px;
	line-height: 35px;
	text-align: center;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	position: absolute;
	left: 0px;
	bottom: 75px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	z-index: 2;
}

.n_box6 {
	width: 100%;
	padding: 100px 0px 70px 0px;
}

.n_box6_c {
	width: 100%;
	padding-top: 40px;
}

.n_box6_c li {
	width: 25%;
	padding: 0px 1% 2% 1%;
	float: left;
}

.n_box6_c li .div {
	width: 100%;
	display: inline-block;
	color: #333333;
	font-size: 16px;
	-moz-box-shadow: 0px 0px 10px #e4e3e1;
	/*firefox*/
	-webkit-box-shadow: 0px 0px 10px #e4e3e1;
	/*webkit*/
	box-shadow: 0px 0px 10px #e4e3e1;
	/*opera或ie9*/
}

.n_box6_c li .div:hover {
	text-decoration: none;
	color: #0d73bc;
}

.n_box6_c li .div .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.n_box6_c li .div .a_img img {
	width: 100%;
}

.n_box6_c li .div .a_text {
	width: 100%;
	height: 58px;
	line-height: 58px;
	display: inline-block;
	overflow: hidden;
	padding: 0px 10px;
	background: url(../images/tb_13.png) right 10px center no-repeat;
}

.r_center {
	width: 100%;
}

.r_center .box {
	width: 100%;
	height: 450px;
	/*  margin-top: 50px;*/
	position: relative;
	overflow: hidden;
}

.r_center ul {
	width: 30000%;
	height: 200px;
	position: absolute;
	float: none;
	top: 170px;
	left: 50px;
	z-index: 10;
	cursor: move;
}

.r_center li {
	width: 13px;
	height: 13px;
	position: absolute;
	float: none;
}

.r_center li i,
.r_center li i img {
	width: 13px;
	height: 13px;
	position: relative;
	float: left;
	cursor: pointer;
	webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.r_center li i img:hover {
	webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
}

.r_center .box .e {
	width: 1px;
	height: 1px;
	background-color: #198eed;
	position: absolute;
}

.r_center li h3 {
	margin: 0px;
	display: inline-block;
	font-size: 20px;
	color: #0d73bc;
	white-space: nowrap;
	font-weight: bold;
}

.r_center li h4 {
	width: 130px;
	line-height: 18px;
	overflow: hidden;
	font-size: 14px;
	color: #333;
}

.r_center li span {
	position: absolute;
	float: none;
	left: -8px;
	bottom: 20px;
	min-height: 90px;
	max-height: 230px;
	/*  height:160px;*/
}

.r_center li.b span {
	bottom: auto;
	top: 23px;
}

.r_center li.active h3 {
	color: #275a50;
	font-size: 20px;
}

.r_center li.active h3 img {
	width: 120px;
	height: 84px;
}

.r_center li h4 {
	width: 340px;
}

.r_center li.active h4 {
	width: 340px;
	line-height: 1.6;
}

.r_center li.active h4 img {
	margin-top: 10px;
}

.r_center .car {
	width: 50px;
	height: 50px;
	position: absolute;
	float: none;
	opacity: 0;
	margin: -25px 0 0 -25px;
	z-index: 10;
	background: url(../images/public.png) no-repeat;
	background-size: 50px;
	/*  background-position: -195px -40px;*/
}

.r_center .car.back {
	/*  background-position: -195px -78px;*/
}

.r_center canvas {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
}

.r_btm {
	width: 100%;
	text-align: center;
	font-size: 16px;
	vertical-align: middle;
	margin-top: 50px;
}

.r_btm img {
	float: none;
	margin: 0 5px;
	border: none;
}

.r_btm img:nth-child(1) {
	margin-top: -10px;
}

.n_box7 {
	width: 100%;
	padding-bottom: 70px;
}

.n_box7_t {
	width: 100%;
	height: 80px;
	line-height: 80px;
	color: #999999;
	font-size: 14px;
	padding-left: 25px;
	background: url(../images/tb_14.png) left center no-repeat;
}

.n_box7_t a {
	color: #999;
}

.n_box7_t a:hover {
	text-decoration: none;
	color: #0d73bc;
}

.n_box7_c {
	width: 100%;
	padding: 55px 4%;
	background-color: #f0f3f6;
	border-top: 5px solid #0d73bc;
}

.n_box8 {
	width: 100%;
	padding-bottom: 70px;
	line-height: 2;
	text-align: center;
	overflow: hidden;
}

.n_box8 img {
	max-width: 100%;
	height: auto;
}

.n_box8 .s1 {
	color: #333333;
	font-size: 24px;
}

.n_box8_t {
	width: 100%;
}

.n_box8_t .s1 {
	padding: 0px 40px;
	height: 45px;
	line-height: 45px;
	display: inline-block;
	color: #fff;
	font-size: 18px;
	background-color: #0d73bc;
}

.n_box8_c {
	width: 100%;
	padding: 30px 0px;
	line-height: 2;
	color: #333333;
	font-size: 16px;
	overflow: hidden;
}

.n_box8_c img {
	max-width: 100%;
	height: auto;
}

.n_box9 {
	width: 100%;
	padding-bottom: 90px;
	color: #333333;
	font-size: 16px;
	line-height: 2;
	overflow: hidden;
}

.n_box9 img {
	max-width: 100%;
	height: auto;
}

.n_box9_t {
	width: 100%;
	color: #0d73bc;
	font-size: 26px;
	font-weight: bold;
	padding-bottom: 20px;
	line-height: 1.2;
}

.n_box9_t .s1 {
	color: #e5e5e5;
	font-size: 70px;
}

.n_box9_c {
	width: 100%;
	padding: 0px 16%;
}

.n_box9_c .a_img {
	width: 100%;
	position: relative;
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
}

.n_box9_c .a_img img {
	width: 100%;
}

.n_box9_c .a_img .tb1 {
	width: 100%;
	padding-top: 70px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	background: url(../images/tb_1z.png) top center no-repeat;
	position: absolute;
	left: 0px;
	top: 50%;
	z-index: 2;
	webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}

.n_box9_c .a_img .tb2 {
	width: 100%;
	height: 100%;
	background: url(../images/tb_08.png) repeat;
	position: absolute;
	left: 0pz;
	top: 0px;
	z-index: 1;
}

.n_box10 {
	width: 100%;
	color: #333333;
	font-size: 14px;
	line-height: 2;
	overflow: hidden;
}

.n_box10 .s1 {
	width: 48%;
	float: left;
	margin: 0px 3% 10px 0px;
}

.n_box10 .s2 {
	color: #0d73bc;
	font-size: 24px;
}

.n_box10 img {
	max-width: 100%;
	height: auto;
}

.n_box10_c {
	width: 100%;
	padding-top: 30px;
}

.n_box10_c li {
	width: 50%;
	float: left;
	padding: 0px 1% 2% 1%;
}

.n_box10_c li .div {
	width: 100%;
	background-color: #f0f3f6;
	display: inline-block;
	color: #666666;
	font-size: 16px;
}

.n_box10_c li .div:hover {
	text-decoration: none;
	color: #666;
}

.n_box10_c li .div .a_img {
	width: 48%;
	display: inline-block;
	overflow: hidden;
}

.n_box10_c li .div .a_img img {
	width: 100%;
}

.n_box10_c li .div .a_img_r {
	width: 52%;
	padding: 15px 5% 0px 5%;
}

.n_box10_c li .div .a_img_r .s1 {
	width: 100%;
	height: 45px;
	line-height: 45px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 24px;
}

.n_box10_c li .div:hover .a_img_r .s1 {
	text-decoration: none;
	color: #0d73bc;
}

.n_box10_c li .div .a_img_r .s2 {
	width: 100%;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	border-bottom: 1px solid #dce2e7;
	color: #666666;
	font-size: 18px;
}

.n_box10_c li .div .a_img_r .s3 {
	width: 100%;
	height: 150px;
	line-height: 30px;
	overflow: hidden;
	color: #666666;
	font-size: 16px;
	margin-top: 30px;
}

.n_box11_box1 {
	width: 93%;
}

.n_box11 {
	width: 100%;
	padding: 0px 1%;
	height: 460px;
}

.n_box11 iframe {
	width: 100%;
	height: 100%;
}

.n_box11_c {
	width: 100%;
	padding-top: 44px;
}

.n_box11_c li {
	width: 50%;
	padding: 0px 1% 2% 1%;
	float: left;
}

.n_box11_c li .a_img {
	width: 100%;
	display: inline-block;
	float: left;
	overflow: hidden;
	position: relative;
}

.n_box11_c li .a_img img {
	width: 100%;
}

.n_box11_c li .a_img .a_text {
	width: 100%;
	height: 55px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	line-height: 55px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	background: url(../images/tb_5.png) repeat;
	color: #fff;
	font-size: 22px;
}

.n_dxmenu {
	width: 100%;
}

.n_dxmenu li {
	width: 11.11%;
	padding: 0px 1%;
	border-bottom: 1px solid #fff;
	float: left;
}

.n_dxmenu li a {
	width: 100%;
	height: 60px;
	float: left;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	line-height: 60px;
	color: #333333;
	font-size: 16px;
}

.n_dxmenu li a:hover,
.n_dxmenu li a.activetm1 {
	color: #fff;
	background-color: #0d73bc;
	text-decoration: none;
}

.n_box12 {
	width: 100%;
	padding-top: 30px;
}

.n_box12 li {
	width: 100%;
	padding-bottom: 20px;
	float: left;
}

.n_box12 li .div {
	width: 100%;
	background-color: #f0f3f6;
	display: inline-block;
	overflow: hidden;
	float: left;
	color: #666666;
	font-size: 16px;
}

.n_box12 li .div:hover {
	text-decoration: none;
	color: #666666;
}

.n_box12 li .div .a_img {
	width: 26%;
	display: inline-block;
	overflow: hidden;
}

.n_box12 li .div .a_img img {
	width: 100%;
}

.n_box12 li .div .a_img_r {
	width: 74%;
	padding: 20px 5% 0px 5%;
}

.n_box12 li .div .a_img_r .s1 {
	width: 100%;
	height: 65px;
	line-height: 65px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 22px;
}

.n_box12 li .div:hover .a_img_r .s1 {
	color: #0d73bc;
	text-decoration: none;
}

.n_box12 li .div .a_img_r .s2 {
	width: 100%;
	height: 60px;
	line-height: 30px;
	overflow: hidden;
	margin-bottom: 35px;
}

.n_box12 li .div .a_img_r .s3,
.n_box12 li .div .a_img_r .s3:hover {
	padding: 0px 30px;
	height: 45px;
	line-height: 45px;
	display: inline-block;
	color: #fff;
	font-size: 14px;
	background-color: #0d73bc;
	text-decoration: none;
}

.n_box13 {
	width: 100%;
	padding: 60px 22%;
}

.n_box13_c {
	width: 100%;
	height: 425px;
}

.n_box13_c iframe {
	width: 100%;
	height: 100%;
}

.n_box13_con {
	width: 100%;
	padding: 90px 15% 90px 11%;
}

.n_box13_con .a_img {
	width: 42%;
	display: inline-block;
	overflow: hidden;
}

.n_box13_con .a_img img {
	width: 100%;
}

.n_box13_con .a_img_r {
	width: 48%;
}

.n_box13_con .a_img_r .s1 {
	width: 100%;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	overflow: hidden;
	font-size: 24px;
	font-weight: bold;
	color: #0d73bc;
}

.n_box13_con .a_img_r .s2 {
	width: 100%;
	line-height: 42px;
	overflow: hidden;
	color: #0d73bc;
	font-size: 18px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e1e4e6;
}

.n_box13_con .a_img_r .s3 {
	width: 100%;
	padding-top: 30px;
	color: #333333;
	font-size: 16px;
	line-height: 2.5;
}

.n_box14 {
	width: 100%;
	padding: 50px 0px 100px 0px;
}

.n_box14_t {
	width: 100%;
	padding: 10px 0px;
	line-height: 1.5;
	color: #333333;
	font-size: 40px;
	letter-spacing: 2px;
	text-align: center;
}

.n_box14_t.div1 {
	color: #0d73bc;
	font-weight: bold;
}

.n_box14_c {
	width: 100%;
	padding-top: 35px;
}

.n_box14_c .a_img_l {
	width: 41%;
}

.n_box14_c .a_img_l li {
	width: 50%;
	padding-right: 1%;
	float: left;
}

.n_box14_c .a_img_l li .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	position: relative;
	-moz-border-radius: 5px;
	/* Gecko browsers */
	-webkit-border-radius: 5px;
	/* Webkit browsers */
	border-radius: 5px;
	/* W3C syntax */
}

.n_box14_c .a_img_l li .a_img img {
	width: 100%;
}

.n_box14_c .a_img_l li .a_img .a_text {
	width: 50px;
	height: 60px;
	line-height: 60px;
	background-color: #0d73bc;
	color: #fff;
	font-size: 24px;
	text-align: center;
	position: absolute;
	right: 0px;
	top: 0px;
}

.n_box14_c .a_img_r {
	width: 54%;
	padding-top: 15px;
}

.n_box14_c .a_img_r .s1 {
	width: 100%;
	height: 140px;
	line-height: 35px;
	overflow: hidden;
	color: #333333;
	font-size: 18px;
	padding-right: 11%;
}

.n_box14_c .a_img_r .s2 {
	width: 100%;
	padding-top: 6px;
}

.n_box14_c .a_img_r .s2 li {
	width: 20%;
	padding-right: 1%;
	float: left;
}

.n_box14_c .a_img_r .s2 li .a1 {
	width: 100%;
	height: 54px;
	-moz-border-radius: 27px;
	/* Gecko browsers */
	-webkit-border-radius: 27px;
	/* Webkit browsers */
	border-radius: 27px;
	/* W3C syntax */
	line-height: 54px;
	background-color: #0d73bc;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	color: #fff;
	font-size: 20px;
}

.n_box15 {
	width: 100%;
	background-color: #f0f3f6;
}

.n_box15 .a_img {
	width: 50%;
	display: inline-block;
	overflow: hidden;
}

.n_box15 .a_img img {
	width: 100%;
}

.n_box15 .a_img_r {
	width: 50%;
	padding: 0px 6.5%;
}

.n_box15 .a_img_r .s1 {
	width: 100%;
	height: 85px;
	line-height: 85px;
	color: #333333;
	font-size: 24px;
	overflow: hidden;
	text-align: center;
}

.n_box15 .a_img_r .s1 .a1 {
	font-size: 36px;
	font-weight: bold;
	padding-left: 20px;
	display: inline-block;
}

.n_box15 .a_img_r .s2 {
	width: 100%;
	padding-bottom: 30px;
	text-align: center;
}

.n_box15 .a_img_r .s2 .a1 {
	padding: 0px 43px;
	display: inline-block;
	height: 44px;
	-moz-border-radius: 22px;
	/* Gecko browsers */
	-webkit-border-radius: 22px;
	/* Webkit browsers */
	border-radius: 22px;
	/* W3C syntax */
	line-height: 44px;
	background-color: #0d73bc;
	font-size: 20px;
	color: #fff;
}

.n_box15 .a_img_r .s3 {
	width: 100%;
	line-height: 30px;
	text-align: center;
	color: #333333;
	font-size: 16px;
}

.n_box15 .a_img_r .s4 {
	width: 100%;
	padding: 0px 16%;
}

.n_box15 .a_img_r .s4 li {
	width: 50%;
	float: left;
	padding: 0px 7%;
}

.n_box15 .a_img_r .s4 li .a_text {
	width: 100%;
	height: 70px;
	line-height: 70px;
	text-align: center;
	overflow: hidden;
	color: #0d73bc;
	font-size: 24px;
	font-weight: bold;
}

.n_box15 .a_img_r .s4 li .a_img {
	width: 100%;
	text-align: center;
}

.n_box15 .a_img_r .s4 li .a_img img {
	max-width: 100%;
	height: auto;
	-moz-border-radius: 100%;
	/* Gecko browsers */
	-webkit-border-radius: 100%;
	/* Webkit browsers */
	border-radius: 100%;
	/* W3C syntax */
}

.n_box15 .a_img_r .s5 {
	width: 100%;
	padding-top: 40px;
	line-height: 30px;
	text-align: center;
	color: #333333;
	font-size: 16px;
}

.n_box15_c {
	width: 100%;
	padding: 80px 0px 95px 0px;
}

.n_box15_c_t {
	width: 100%;
	padding: 30px 0px 60px 0px;
	line-height: 2;
	text-align: center;
	color: #333333;
	font-size: 20px;
}

.n_box15_c_ul {
	width: 100%;
}

.n_box15_c_ul li {
	width: 16.66%;
	float: left;
	padding: 0px 1%;
}

.n_box15_c_ul li .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	-moz-border-radius: 15px;
	/* Gecko browsers */
	-webkit-border-radius: 15px;
	/* Webkit browsers */
	border-radius: 15px;
	/* W3C syntax */
}

.n_box15_c_ul li .a_img img {
	width: 100%;
}

.n_box15_c_ul li .a_text {
	width: 100%;
	height: 70px;
	line-height: 70px;
	text-align: center;
	color: #333333;
	font-size: 24px;
}

.i_box16 {
	width: 100%;
	z-index: 1;
	position: relative;
	padding: 80px 0px 85px 0px;
}

.i_box16_t {
	width: 100%;
	padding: 15px 0px 65px 0px;
	line-height: 2;
	text-align: center;
	color: #fff;
	font-size: 20px;
}

.i_box16_c {
	width: 100%;
}

.i_box16_c li {
	width: 50%;
	float: left;
	padding-right: 6%;
	padding-bottom: 20px;
}

.i_box16_c li .div {
	width: 100%;
	background-color: #fff;
	padding: 15px;
}

.i_box16_c li .div .s1 {
	width: 10%;
	height: 56px;
	background-color: #0d73bc;
	color: #fff;
	font-size: 28px;
	text-align: center;
	line-height: 56px;
}

.i_box16_c li .div .s2 {
	width: 85%;
	height: 56px;
	line-height: 28px;
	overflow: hidden;
	color: #333333;
	font-size: 16px;
}

.i_box17 {
	width: 100%;
	padding: 75px 0px 60px 0px;
}

.i_box17_c {
	width: 100%;
	padding-top: 65px;
}

.i_box17_c li {
	width: 25%;
	float: left;
	padding: 0px 2%;
}

.i_box17_c li:nth-of-type(1) {
	margin-left: 14%;
}

.i_box17_c li .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	text-align: center;
}

.i_box17_c li .a_img img {
	max-width: 100%;
	height: auto;
}

.i_box17_c li .a_text {
	width: 100%;
	height: 120px;
	line-height: 30px;
	text-align: center;
	overflow: hidden;
	margin-top: 15px;
	color: #333333;
	font-size: 18px;
}

.i_box18 {
	width: 100%;
	padding: 65px 0px 100px 0px;
}

.i_box18_l {
	width: 28%;
}

.i_box18_l_t {
	width: 100%;
	padding: 10px 0px;
	line-height: 1.5;
	color: #333333;
	font-size: 30px;
}

.i_box18_l_t1 {
	width: 100%;
	height: 38px;
	line-height: 38px;
	overflow: hidden;
	color: #333333;
	font-size: 18px;
	overflow: hidden;
}

.i_box18_l_c {
	width: 100%;
	padding-top: 25px;
}

.i_box18_l_c li {
	width: 100%;
	height: 55px;
	line-height: 55px;
	overflow: hidden;
	padding-left: 20px;
	background: url(../images/tb_4.png) left center no-repeat;
	color: #333333;
	font-size: 16px;
}

.i_box18_r {
	width: 65%;
}

.i_box18_rc {
	width: 100%;
}

.i_box18_rc li {
	width: 21%;
	float: left;
	margin: 0px 2%;
}

.i_box18_rc li:nth-of-type(1) {
	margin-left: 0px;
}

.i_box18_rc li .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.i_box18_rc li .a_img img {
	width: 100%;
}

.i_box18_rc li .a_text {
	width: 100%;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	overflow: hidden;
	text-align: center;
	color: #333333;
	font-size: 18px;
}


.n_box16 {
	width: 100%;
	padding: 0px 3%;
}

.n_box16_l {
	width: 6%;
	padding-top: 130px;
	position: relative;
}

.small_img_list {
	width: 64px;
	height: 304px;
	padding: 25px 15px 0 0;
	float: left;
}

.small_img_list ul {
	width: 64px;
	float: left;
}

.small_img_list ul li {
	width: 64px;
	padding-bottom: 12px;
	float: left;
}

.cloud_zoom_gallery {
	width: 62px;
	height: 62px;
	display: inline-block;
	border: 1px solid #dadada;
}

.small_img_list ul li a img {
	width: 62px;
	height: 62px;
}

.small_img_select {
	width: 62px;
	height: 62px;
	display: inline-block;
	border: 1px solid #0d73bc;
}

/*.cloud_zoom{width:387px; height:387px; float:left;border:1px solid #CCCCCC;}
.cloud_zoom img{width:387px; height:387px;border:1px solid #CCCCCC;}*/
.controls1 {
	width: 64px;
	position: relative;
	float: left;
	z-index: 1;
}

.controls1 .prev {
	width: 64px;
	height: 18px;
	background: url(../images/pic_86.jpg) no-repeat;
	position: absolute;
	left: 0px;
	top: -325px;
}

.controls1 .next {
	width: 64px;
	height: 18px;
	background: url(../images/pic_87.jpg) no-repeat;
	position: absolute;
	top: 365px;
	left: 0px;
	top: 5px;
}

.controls1 .prev:hover,
.controls1 .next:hover {
	text-decoration: none;
}

.controls1 a:hover {
	text-decoration: none;
}

/*.cloud_zoom_wrap{width:387px; height:387px; float:left;  }
.cloud_zoom_big{width:387px; height:387px;}*/



.n_box16_r {
	width: 89%;
}

.n_box16_ron {
	width: 100%;
	display: none;
}

.n_box16_ron .a_img {
	width: 53%;
	display: inline-block;
	overflow: hidden;
}

.n_box16_ron .a_img img {
	width: 100%;
}

.n_box16_ron .a_img_r {
	width: 40%;
	padding-top: 160px;
}

.n_box16_ron .a_img_r .s1 {
	width: 100%;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	overflow: hidden;
	font-size: 24px;
	font-weight: bold;
	color: #0d73bc;
}

.n_box16_ron .a_img_r .s2 {
	width: 100%;
	line-height: 42px;
	overflow: hidden;
	color: #0d73bc;
	font-size: 18px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e1e4e6;
}

.n_box16_ron .a_img_r .s3 {
	width: 100%;
	padding-top: 30px;
	color: #333333;
	font-size: 16px;
	line-height: 2.5;
}


.n_box16_t {
	width: 100%;
	padding: 140px 0px 50px 0px;
}

.n_box16_tl {
	width: 45%;
	color: #fff;
}

.n_box16_tl .s1 {
	width: 100%;
	padding: 15px 0px;
	line-height: 1.5;
	font-size: 57px;
}

.n_box16_tl .s2 {
	width: 100%;
	padding-bottom: 20px;
	line-height: 1.8;
	font-size: 30px;
}

.n_box16_tl .s3 {
	width: 100%;
	font-size: 18px;
	line-height: 1.8;
}

.n_box16_tr {
	width: 50%;
	padding: 140px 2% 0px 0px;
	display: inline-block;
	overflow: hidden;
}

.n_box16_tr img {
	width: 100%;
}

.n_box17 {
	width: 100%;
	padding: 45px 0px 60px 0px;
}

.n_box17_l {
	width: 34%;
}

.n_box17_l .s1 {
	width: 100%;
	color: #333333;
	font-size: 44px;
	padding: 5px 0px;
	line-height: 1.4;
}

.n_box17_l .s2 {
	width: 100%;
	padding: 13px 0px;
	line-height: 1.8;
	color: #666666;
	font-size: 20px;
	margin-bottom: 45px;
}

.n_box17_l .s3 {
	width: 100%;
	overflow: hidden;
}

.n_box17_l .s3 img {
	max-width: 100%;
	height: auto;
}

.n_box17_r {
	width: 58%;
}

.n_box17_r .s1 {
	width: 100%;
	padding-left: 3%;
	padding-bottom: 35px;
	color: #333333;
	font-size: 16px;
	line-height: 2;
}

.n_box17_r .s2 {
	width: 100%;
}

.n_box17_r .s2 li {
	width: 25%;
	float: left;
	padding: 0px 5%;
}

.n_box17_r .s2 li .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.n_box17_r .s2 li .a_img img {
	width: 100%;
	-moz-border-radius: 100%;
	/* Gecko browsers */
	-webkit-border-radius: 100%;
	/* Webkit browsers */
	border-radius: 100%;
	/* W3C syntax */
}

.n_box17_r .s2 li .a_text {
	width: 100%;
	height: 70px;
	line-height: 70px;
	overflow: hidden;
	color: #695657;
	font-size: 24px;
	text-align: center;
}

.n_box17_t {
	width: 100%;
	padding: 85px 0px 120px 0px;
}

.n_box17_tl {
	width: 41%;
	color: #333333;
	font-size: 20px;
	line-height: 2;
	text-align: right;
}

.n_box17_tl .s1 {
	font-size: 30px;
}

.n_box17_tl .s2 {
	font-size: 24px;
}

.n_box17_tl img {
	max-width: 100%;
	height: auto;
}

.n_box17_tr {
	width: 100%;
}

.n_box17_tr li {
	width: 25%;
	float: left;
	padding: 0px 5%;
}

.n_box17_tr li .s1 {
	width: 100%;
	text-align: center;
	padding-bottom: 28px;
}

.n_box17_tr li .s1 .a1 {
	width: 85px;
	height: 85px;
	display: inline-block;
	-moz-border-radius: 100%;
	/* Gecko browsers */
	-webkit-border-radius: 100%;
	/* Webkit browsers */
	border-radius: 100%;
	/* W3C syntax */
	border: 1px solid #fff;
	line-height: 85px;
	text-align: center;
	color: #fff;
	font-size: 35px;
}

.n_box17_tr li .s2 {
	width: 100%;
	color: #fff;
	font-size: 16px;
	height: 125px;
	line-height: 25px;
	overflow: hidden;
}


.n_box18 {
	width: 100%;
	padding: 60px 0px 65px 0px;
}

.n_box18_t {
	width: 50%;
}

.n_box18_t .s1 {
	width: 100%;
	padding: 10px 0px;
	line-height: 1.4;
	color: #333333;
	font-size: 44px;
}

.n_box18_t .s2 {
	width: 100%;
	padding: 15px 0px 50px 0px;
	color: #333333;
	font-size: 16px;
	line-height: 2;
	overflow: hidden;
}

.n_box18_t .s2 img {
	max-width: 100%;
	height: auto;
}

.n_box18_t .s3 {
	width: 100%;
	font-size: 30px;
	color: #333333;
	line-height: 1.7;
	text-align: center;
}

.n_box18_t .s3 .a1 {
	color: #0d73bc;
	font-weight: bold;
}

.n_box18_c {
	width: 100%;
	padding: 40px 0px 50px 0px;
}

.n_box18_c_ul {
	width: 100%;
	padding: 28px 0px 75px 0px;
}

.n_box18_c_ul li {
	width: 25%;
	float: left;
	padding: 0px 1%;
}

.n_box18_c_ul li .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.n_box18_c_ul li .a_img img {
	width: 100%;
	-moz-border-radius: 8px;
	/* Gecko browsers */
	-webkit-border-radius: 8px;
	/* Webkit browsers */
	border-radius: 8px;
	/* W3C syntax */
}

.n_box18_c_ul li .a_text {
	width: 100%;
	height: 60px;
	line-height: 60px;
	overflow: hidden;
	color: #333333;
	font-size: 24px;
	text-align: center;
}

.n_box19 {
	width: 100%
}

.n_box19 .a_img {
	width: 26%;
	display: inline-block;
	overflow: hidden;
}

.n_box19 .a_img img {
	width: 100%;
}

.n_box19 .a_img_r {
	width: 69%;
	background-color: #f0f3f6;
	padding: 35px 8% 45px 8%;
}

.n_box19 .a_img_r_t {
	width: 100%;
}

.n_box19 .a_img_r_t .s1 {
	width: 21.5%;
	display: inline-block;
	overflow: hidden;
}

.n_box19 .a_img_r_t .s1 img {
	max-width: 100%;
	height: auto;
}

.n_box19 .a_img_r_t .s2 {
	width: 74.5%;
	color: #333333;
	line-height: 1.8;
	font-size: 16px;
}

.n_box19 .a_img_r_t1 {
	width: 100%;
	padding: 23px 0px 43px 0px;
	line-height: 2.2;
	color: #666666;
	font-size: 18px;
	letter-spacing: 20px;
}

.n_box19 .a_img_r_c {
	width: 100%;
}

.n_box19 .a_img_r_c li {
	width: 50%;
	float: left;
	padding-right: 3%;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	color: #333333;
	font-size: 16px;
}

.n_box20 {
	width: 100%;
	padding: 0px 3% 20px 3%;
	display: none;
}


.n_box25 {
	width: 100%;
}

.n_box25_left {
	width: 13.5%;
	padding: 6px 0.7% 21px 0.7%;
	background-color: #0d73bc;
}

.n_box25_left_t {
	width: 100%;
	height: 60px;
	line-height: 60px;
	color: #fff;
	font-size: 24px;
	overflow: hidden;
}

.n_box25_left_c {
	width: 100%;
	border-top: 1px solid #fff;
}

.n_box25_left_c li {
	width: 100%;
	height: 40px;
	float: left;
	border-bottom: 1px solid #fff;
}

.n_box25_left_c li a {
	width: 100%;
	height: 39px;
	padding-left: 28px;
	line-height: 39px;
	background: url(../images/tb_0331.png) left 17px center no-repeat;
	background-color: #eee;
	color: #333;
	font-size: 15px;
	display: inline-block;
	overflow: hidden;
	float: left;
}

.n_box25_left_c li a:hover,
.n_box25_left_c li a.activeleftmenu {
	background: url(../images/tb_0341.png) left 17px center no-repeat;
	background-color:#fff;
	color: #0d73bc;
}

.n_box25_right {
	width: 84%;
}

.n_box25_right_t {
	width: 100%;
	height: 108px;
	background: url(../images/bg8.jpg) center center no-repeat;
	background-size: cover;
	padding: 20px 0px 0px 32px;
}

.n_box25_right_t .s1 {
	height: 90px;
	line-height: 90px;
	color: #0d73bc;
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	border-bottom: 2px solid #bd3537;
}

.n_box25_right_c {
	width: 100%;
	padding: 45px 32px 40px 32px;
	background-color: #fff;
}



.a_product_t1 {
	width: 100%;
	height: 60px;
	line-height: 60px;
	overflow: hidden;
}

.a_product_t1 .s1 {
	color: #c1c1c1;
	font-size: 14px;
}

.a_product_t1 .s2 a {
	margin-left: 20px;
	float: left;
	height: 60px;
	line-height: 60px;
	color: #c1c1c1;
	font-size: 14px;
}

.a_product_t1 .s2 a:hover,
.a_product_t1 .s2 a.activefl {
	color: #bd3537;
	text-decoration: none;
}

.a_product_t1 .s2 a span {
	padding-left: 20px;
	display: inline-block;
}

.a_product_t1 .s2 a span.bg1 {
	background: url(../images/pro_tb1.png) left center no-repeat;
}

.a_product_t1 .s2 a:hover span.bg1,
.a_product_t1 .s2 a.activefl span.bg1 {
	background: url(../images/pro_tb1s.png) left center no-repeat;
}

.a_product_t1 .s2 a span.bg2 {
	background: url(../images/pro_tb2.png) left center no-repeat;
}

.a_product_t1 .s2 a:hover span.bg2,
.a_product_t1 .s2 a.activefl span.bg2 {
	background: url(../images/pro_tb2s.png) left center no-repeat;
}

.a_product_c {
	width: 100%;
}

.a_product_conz {
	width: 100%;
	/* display: none; */
}

.a_product_con {
	width: 100%;
}

.a_product_con li {
	width: 33.33%;
	padding: 0px 1% 2% 1%;
	float: left;
}

.a_product_con li .div {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	border: 1px solid #e2e2e2;
	color: #666666;
	font-size: 14px;
}

.a_product_con li .div:hover {
	text-decoration: none;
	color: #666666;
}

.a_product_con li .div .a_img {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.a_product_con li .div .a_img .img1 {
	width: 100%;
}

.a_product_con li .div .a_img .tb1 {
	width: 15%;
	position: absolute;
	left: 20px;
	top: 0px;
}

.a_product_con li .div .a_img .tb1 .img2 {
	width: 100%;
}

.a_product_con li .div .a_div {
	width: 100%;
	padding: 12px 8% 20px 8%;
	background-color: #f6f6f6;
	border-top: 1px solid #e2e2e2;
}

.a_product_con li .div .a_div .s1 {
	width: 100%;
	height: 37px;
	line-height: 37px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 18px;
}

.a_product_con li .div .a_div .s2 {
	width: 100%;
	height: 48px;
	line-height: 24px;
	overflow: hidden;
}

.a_product_con li .div:hover .a_div .s1 {
	color: #fff;
}

.a_product_con li .div:hover .a_div {
	background-color: #0d73bc;
	color: #fff;
}

.a_product_con1 {
	width: 100%;
}

.a_product_con1 li {
	width: 100%;
	padding: 0px 2%;
	float: left;
	border-bottom: 1px solid #e2e2e2;
	background-color: #fff;
}

.a_product_con1 li .a_img {
	width: 27%;
	display: inline-block;
	overflow: hidden;
}

.a_product_con1 li .a_img img {
	width: 100%;
}

.a_product_con1 li .a_img_r {
	width: 70%;
	padding-top: 30px;
}

.a_product_con1 li .a_img_r .s1 {
	width: 100%;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	overflow: hidden;
	color: #333333;
	font-size: 18px;
}

.a_product_con1 li .a_img_r .s1:hover {
	text-decoration: none;
	color: #bd3537;
}

.a_product_con1 li .a_img_r .s2 {
	width: 100%;
	height: 72px;
	line-height: 24px;
	overflow: hidden;
	margin-bottom: 15px;
	color: #666666;
	font-size: 14px;
}

.a_product_con1 li .a_img_r .s3 {
	height: 38px;
	padding: 0px 25px;
	display: inline-block;
	overflow: hidden;
	background-color: #bd3537;
	color: #fff;
}

.a_product_con1 li .a_img_r .s3:hover {
	text-decoration: none;
	color: #fff;
}

.a_product_con1 li .a_img_r .s3 span {
	background: url(../images/pro_tb3.png) left center no-repeat;
	height: 38px;
	line-height: 38px;
	padding-left: 33px;
	display: inline-block;
	font-size: 14px;
}

.Rotation img {
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}

.Rotation:hover img {
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
}

.arrowGo {
	animation: arrowGo 2.5s infinite;
	-webkit-animation: arrowGo 2.5s infinite;
}

@-webkit-keyframes arrowGo {
	0% {
		-webkit-transform: translate(0, 30%);
	}

	50% {
		-webkit-transform: translate(0, 0%);
	}

	100% {
		-webkit-transform: translate(0, 30%);
	}
}

@keyframes arrowGo {
	0% {
		transform: translate(0, 30%);
	}

	50% {
		transform: translate(0, 0%);
	}

	100% {
		transform: translate(0, 30%);
	}
}

.Amplification img {

	transition: 400ms;
	filter: Alpha(Opacity=100);
	opacity: 1;
}

.Amplification:hover img {
	filter: Alpha(Opacity=100);
	opacity: 1;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
}



.Amplification1 .img1 {

	transition: 400ms;
	filter: Alpha(Opacity=100);
	opacity: 1;
}

.Amplification1:hover .img1 {
	filter: Alpha(Opacity=100);
	opacity: 1;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
}




@-webkit-keyframes hvr-bob {
	0% {
		transform: scale(1.1);
		-webkit-transform: scale(1.1);
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

@keyframes hvr-bob {
	0% {
		transform: scale(1.1);
		-webkit-transform: scale(1.1);
	}

	100% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

@-webkit-keyframes float1 {
	0% {
		-webkit-transform: translateY(-1em);
		transform: translateY(-1em);

	}

	50% {
		-webkit-transform: translateY(0);
		transform: translateY(0);

	}

	100% {
		-webkit-transform: translateY(-1em);
		transform: translateY(-1em);

	}
}

@keyframes float1 {
	0% {
		-webkit-transform: translateY(-1em);
		transform: translateY(-1em);

	}

	50% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		-webkit-transform: translateY(-1em);
		transform: translateY(-1em);

	}
}
