﻿@charset "utf-8";
/* 头部  */

.topBar {
	line-height: 35px;
	height: 35px;
	color: #fff;
	background: #2f52a6;
}
.topRight a {
	color: #ffffff;
	border-right: 1px dotted #ffffff;
	padding: 0 15px;
}
.topRight .wx {
	position: relative;
}
.topRight .wx span {
	position: absolute;
	top: 30px;
	left: -20px;
	background: #ddd;
	padding: 5px;
	display: none;
	z-index: 5;
}
.topRight .wx span::before {
	position: absolute;
	content: "";
	top: -12px;
	left: 50px;
	border: 6px solid transparent;
	border-bottom-color: #ddd;
}
.topRight .wx img {
	width: 100px;
	height: 100px;
}
.topRight a i {
	/* display: inline-block; */
	/* background: url('../images/topicon.png') no-repeat; */
	width: 20px;
	height: 16px;
	margin-left: 8px;
	position: relative;
	top: 4px;
}
.topRight .wx i {
	background-position: -20px 0;
}
.topRight .last {
	padding-right: 0;
	border-right: none;
}
.topRight a:hover {
	color: #efff00;
}
.header {
	padding-top: 3px;
	overflow: hidden;
}
.headPhone {
	padding-left: 45px;
	background: url('../images/p_icon.png') no-repeat left center;
	color: #333;
	font-size: 18px;
	font-family: Arial;
	margin-top: 16px;
}
.headPhone span {
	display: block;
}
/* 主导航  */

.nav {
	height: 60px;
	line-height: 60px;
	font-size: 15px;
}
.navMain {
	width: 1200px;
}
.nav ul.dh {
	overflow: hidden;
}
.nav ul.dh li {
	float: left;
	height: 50px;
	line-height: 50px;
	width: 171px;
	text-align:  center;
}
.nav ul.dh li:hover{
    background: #2f52a6;
    transition: all 0.5s;
    /* border-radius: 50px; */
}
.nav ul.dh li a {
	color: #000000;
	font-size: 18px;
}
.nav ul.dh li:hover a{
	color: #fff;
	font-weight: bold;
}
.nav ul.dh li ul.sub {
	width: 171px;
	line-height: 60px;
	position: absolute;
	z-index: 999;
	top: 219px;
	/* left: 0; */
	display: none;
	/* float:  left; */
}
.nav ul.dh li:hover ul.sub {
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
}
.nav ul.dh li ul.sub li {
	float: left;
	height: 40px;
	width: 171px;
	background-color: #ffffff;
	line-height: 40px;
	position: relative;
}
.nav ul.dh li ul.sub li:hover {
	/* background: #4c86ec; */
}
.nav ul.dh li ul.sub li a {
	color: #000000;
	font-weight: normal;
	font-size: 15px;
	/* padding: 0 45px; */
	/* font-weight:  700; */
}
.nav ul.dh li ul.sub li:hover a{
    color: #2f52a6;
    font-weight: bold;
}
/*common*/

.mb10 {
	margin-bottom: 10px;
}
.ml10 {
	margin-left: 10px;
}
.bg {
	background: #FFF;
}
em, i {
	font-style: normal;
}
body {
	min-width: 1200px;
	width: 100%;
	overflow-x: hidden;
}
;
(function ($, window, document, undefined) {
 // Defaults  var _buffer = null,  _watch = [],  $window = $(window),  Plugin = function () {
};
 Plugin.prototype = {
 globals: {
 pluginName: "fadeThis",  bufferTime: 300,
},  defaults: {
 baseName: "slide-",  speed: 500,  easing: "swing",  offset: 0,  reverse: true,  distance: 50,  scrolledIn: null,  scrolledOut: null
},  init: function (elem, options) {
 this.addElements(elem, options);
 this._setEvent();
 this._checkVisibleElements();
},  addElements: function (elem, options) {
 var element = elem === document.body ? window : elem,  $element = element === window ? $("body") : $(element),  base = this,  classBaseName = (options && options.baseName) ? options.baseName : this.defaults.baseName;
 if (!$element.is("[class^='" + classBaseName + "']")) {
 $element.find("[class^='" + classBaseName + "']").each(function () {
 base._addElement($(this), options);
}
);
}
else {
 base._addElement($element, options);
}
 return $element;
},  _addElement: function ($elem, options) {
 var metadata = $elem.data("plugin-options"),  localOptions = $.extend( {
}, this.defaults, options, metadata),  item = {
 element: $elem,  options: localOptions,  invp: false
};
 _watch.push(item);
 this._prepareElement(item);
 return $elem;
},  _prepareElement: function (item) {
 var cssOptionsIn = {
 opacity: 0,  visibility: "visible",  position: "relative"
},  direction = null;
 if (item.element.hasClass(item.options.baseName + "right")) {
 direction = "left";
}
else if (item.element.hasClass(item.options.baseName + "left")) {
 direction = "right";
}
else if (item.element.hasClass(item.options.baseName + "top")) {
 direction = "bottom";
}
else if (item.element.hasClass(item.options.baseName + "bottom")) {
 direction = "top";
}
else {
 return false;
}
 cssOptionsIn[direction] = item.options.distance;
 item.element.css(cssOptionsIn);
},  _setEvent: function () {
 var base = this;
 $window.on("scroll", function (e) {
 if (!_buffer) {
 _buffer = setTimeout(function () {
 base._checkVisibleElements(e);
 _buffer = null;
}, base.globals.bufferTime);
}
}
);
},  _checkVisibleElements: function (e) {
 var base = this;
 $.each(_watch, function (key, item) {
 if (base._isVisible(item)) {
 if (!item.invp) {
 item.invp = true;
 base._triggerFading(item);
 if (item.options.scrolledIn) {
 item.options.scrolledIn.call(item.element, e);
}
 item.element.trigger("fadethisscrolledin", e);
}
}
else if (item.invp) {
 item.invp = false;
 if (item.options.reverse) {
 base._triggerFading(item, false);
}
 if (item.options.scrolledOut) {
 item.options.scrolledOut.call(item.element, e);
}
 item.element.trigger("fadethisscrolledout", e);
}
}
);
},  _isVisible: function (item) {
 var docViewTop = $window.scrollTop() + item.options.offset,  docViewBottom = docViewTop + $window.height() - 2 * item.options.offset,  elemTop = item.element.offset().top,  elemBottom = elemTop + item.element.height();
 return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom) && (elemBottom <= docViewBottom) && (elemTop >= docViewTop));
},  _triggerFading: function (item, appear) {
 appear = typeof appear !== "undefined" ? appear : true;
 var stateAnimIn = {
 opacity: 1
},  stateAnimOut = {
 opacity: 0,
},  direction = null;
 if (item.element.hasClass(item.options.baseName + "right")) {
 direction = "left";
}
else if (item.element.hasClass(item.options.baseName + "left")) {
 direction = "right";
}
else if (item.element.hasClass(item.options.baseName + "top")) {
 direction = "bottom";
}
else if (item.element.hasClass(item.options.baseName + "bottom")) {
 direction = "top";
}
else {
 return false;
}
 stateAnimIn[direction] = 0;
 stateAnimOut[direction] = item.options.distance;
 if (appear) {
 item.element.stop(true).animate(stateAnimIn, item.options.speed, item.options.easing);
}
else {
 item.element.stop(true).animate(stateAnimOut, item.options.speed, item.options.easing);
}
}
};
 Plugin.defaults = Plugin.prototype.defaults;
 Plugin.globals = Plugin.prototype.globals;
 window.Plugin = new Plugin();
 // Preventing against multiple instantiations for the same DOM element  $.fn[Plugin.globals.pluginName] = function (options) {
 this.each(function () {
 if (!$.data(window, "plugin_" + Plugin.globals.pluginName)) {
 $.data(window, "plugin_" + Plugin.globals.pluginName, "set");
 $.data(this, "plugin_" + Plugin.globals.pluginName, window.Plugin.init(this, options));
}
else if (!$.data(this, "plugin_" + Plugin.globals.pluginName)) {
 $.data(this, "plugin_" + Plugin.globals.pluginName, window.Plugin.addElements(this, options));
}
}
);
 // chain jQuery functions  return this;
};
}
)(jQuery, window, document);
/**/

.banner {
	height: 500px;
	width: 100%;
	position: relative;
}
.banner .bd {
	height: 500px;
	overflow: hidden;
}
.banner .bd a {
	display: block;
	background: url(../images/banner.jpg) no-repeat center top;
	height: 595px;
	overflow: hidden;
}
.banner .bantil {
	width: 200px;
	height: 4px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	z-index: 8;
	margin-left: -100px;
}
.banner .bantil li {
	width: 50px;
	height: 4px;
	float: left;
	display: inline;
	margin: 0 8px;
	background: #2555b7;
}
.banner .bantil li.cur {
	background: #ff890b;
}
.sou {
	height: 72px;
	border-bottom: 1px solid #ededed;
	overflow: hidden;
}
.sou p {
	height: 72px;
	width: 600px;
	font: 14px "Microsoft YaHei";
	line-height: 72px;
	overflow: hidden;
	color: #666;
}
.sou p a {
	display: inline-block;
	padding: 0 10px;
	color: #999;
}
.sou3 {
	margin-top: 18px;
}
.sou3 input {
	width: 240px;
	height: 36px;
	font: 14px "Microsoft YaHei";
	line-height: 36px;
	background: url(../images/sou1.gif) no-repeat left top;
	color: #c6c6c6;
	border: 0;
	overflow: hidden;
	padding-left: 20px;
}
.sou3 .ip01 {
	width: 49px;
	height: 36px;
	background: url(../images/sou2.gif) no-repeat center center;
	border: 0;
	overflow: hidden;
	cursor: pointer;
}
.tit {
	font: 30px "Microsoft YaHei";
	text-align: center;
	background: url(../images/about_title.png) no-repeat center top;
	height: 140px;
	overflow: hidden;
}
.tit a {
	display: block;
	color: #333;
	padding-top: 22px;
}
.tit b {
	color: #2555b7;
}
.tit em {
	display: block;
	font: 12px Arial;
	text-transform: uppercase;
	color: #666666;
	letter-spacing: 4px;
	padding-top: 10px;
}
.pro {
	margin-bottom: 33px;
	padding-top: 50px;
	overflow: hidden;
}
.fen {
	width: 280px;
	border: 1px solid #e0e0e0;
	border-bottom: 3px solid #2555b7;
	float: left;
}
.fen h2 {
	height: 84px;
	font: 24px "Microsoft YaHei";
	text-align: center;
	color: #fff;
	background: #2555b7;
	overflow: hidden;
	line-height: 84px;
}
.fen h2 a {
	display: block;
	color: #fff;
}
.fen h2 em {
	padding-left: 5px;
	font-size: 18px;
	margin-left: 4px;
	text-transform: uppercase;
}
.jc {/* font-weight: bold; */
}
.fen2 h3 {
	font: 16px "Microsoft YaHei";
	line-height: 55px;
	height: 50px;
	overflow: hidden;
	border-bottom: 1px solid #e9ebea;
	padding: 0 30px 0px 60px;
}
.fen2 h3 a {
	display: block;
	color: #444;
	background: url(../images/fen_jt1.gif) no-repeat right center;
}
.fen2 h3 a:hover {
	background: url(../images/fen_jt2.png) no-repeat right center;
	color: #2555b7;
}
.fen2 .nones {
	border: 0;
}
.fen2 ul {
	width: 246px;
	margin: 0 auto;
}
.fen2 li {
	font: 14px "Microsoft YaHei";
	height: 40px;
	line-height: 40px;
	color: #787878;
	float: left;
	width: 123px;
	border-bottom: 1px solid #e0e0e0;
	overflow: hidden;
}
.fen2 li a {
	color: #787878;
	display: block;
	background: url(../images/fen_jt3.gif) no-repeat left 16px;
	padding-left: 15px;
}
.pro2 {
	width: 890px;
	float: right;
}
.pro2 dl {
	height: 302px;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}
.pro2 dt img {
	display: block;
	height: 302px;
	overflow: hidden;
	width: 100%;
}
.pro2 dd {
	width: 237px;
	height: 305px;
	padding: 38px 0 0 45px;
	overflow: hidden;
	background: url(../images/pro_gbg.png) no-repeat;
	position: absolute;
	top: 0;
	right: 40px;
}
.pro2 dd h3 {
	width: 172px;
	height: 40px;
	overflow: hidden;
	font: 18px "Microsoft YaHei";
	text-align: center;
	line-height: 40px;
	color: #ff890b;
	margin-left: 20px;
}
.pro2 dd h3 a {
	color: #444444;
	font-weight: bold;
}
.pro2 dd p {
	font: 14px "Microsoft YaHei";
	line-height: 28px;
	height: 60px;
	overflow: hidden;
	color: #fff;
	margin: 30px 0 8px;
}
.pro2 dd em a {
	display: block;
	width: 160px;
	height: 52px;
	font: 18px "Microsoft YaHei";
	text-align: center;
	line-height: 52px;
	color: #fff;
	overflow: hidden;
}
.pro2 li {
	width: 276px;
	float: left;
	margin: 0px 10px;
	margin-bottom: 22px;
}
.pro2 li img {
	display: block;
	width: 275px;
	height: 214px;
	border: 1px solid #efeeee;
}
.pro2 li img:hover {
	-webkit-transform: scale(0.98, 0.98);
	-o-transform: scale(0.98, 0.98);
	transition: all 1s;
	-webkit-transition: all 1s;
}
.pro2 li em {
	display: block;
	font: 16px "Microsoft YaHei";
	height: 59px;
	line-height: 59px;
	color: #666;
	overflow: hidden;
	text-align: center;
	background: url(../images/pro_bg01.gif) no-repeat center top;
}
.pro2 li a:hover em {
	background: url(../images/pro_bg02.gif) no-repeat center top;
	color: #fff;
}
.pro2 .nones {
	margin-right: 0;
}
.ys {
	height: 1020px;
	overflow: hidden;
}
.ys .tit {
	background: url(../images/ys_hbg.png) no-repeat center top;
}
.ys .tit em {
	letter-spacing: 0;
}
.ys1 {
	height: 626px;
}
.ys01 {
	height: 626px;
	background: url(../images/ys_bg1.jpg) no-repeat center top;
}
.ys01 .content {
	position: relative;
}
.ys01 dl {
	width: 525px;
	padding: 145px 0 0 110px;
}
.ys01 dt {
	font: 30px "Microsoft YaHei";
	font-weight: bold;
	color: #2555b7;
	padding-left: 30px;
	height: 106px;
}
.ys01 dt em {
	display: block;
	font: 12px Arial;
	text-transform: uppercase;
	color: #999;
	padding: 18px 0 20px;
	letter-spacing: 3px;
}
.ys01 dd {
	padding: 0 0 0 30px;
}
.ys01 dd p {
	font: 16px "Microsoft YaHei";
	line-height: 26px;
	color: #666;
	margin: 14px 0 26px;
	width: 460px;
}
.ys01 dd span a {
	display: block;
	width: 110px;
	padding-left: 30px;
	height: 35px;
	background: url(../images/ys_btn.png) no-repeat center top;
	font: 14px "Microsoft YaHei";
	line-height: 35px;
	color: #fff;
	line-height: 35px;
	color: #fff;
	margin: 20px 0 0 -20px;
}
.ys02 {
	background: url(../images/ys_bg2.jpg) no-repeat center top;
	height: 626px;
}
.ys02 dl {
	position: absolute;
	top: 115px;
	left: 750px;
	padding: 0;
	width: 500px;
}
.ys02 dt em {
	letter-spacing: 0;
}
.ys03 {
	background: url(../images/ys_bg3.jpg) no-repeat center top;
}
.ys03 dl {
	padding: 122px 0 0 110px;
}
.ys04 {
	background: url(../images/ys_bg4.jpg) no-repeat center top;
}
.ys04 h2 {
	font: 30px "Microsoft YaHei";
	font-weight: bold;
	color: #2555b7;
	padding-left: 125px;
	height: 155px;
}
.ys04 h2 em {
	display: block;
	font: 12px Arial;
	text-transform: uppercase;
	color: #999;
	padding: 18px 0 20px;
	letter-spacing: 3px;
}
.ys04 li {
	width: 384px;
	float: left;
	margin-right: 24px;
	position: relative;
}
.ys04 li a {
	display: block;
}
.ys04 li img {
	display: block;
	height: 290px;
}
.ys04 li em {
	display: block;
	width: 78px;
	height: 89px;
	background: url(../images/ys_h.png) no-repeat center top;
	font: 18px "Microsoft YaHei";
	font-weight: bold;
	color: #fff;
	line-height: 80px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.ys04 li p {
	height: 83px;
	padding: 25px 25px 0 25px;
	background: url(../images/ys_bg03.png) no-repeat center top;
	font: 16px "Microsoft YaHei";
	text-align: center;
	line-height: 26px;
}
.ys04 li b {
	display: block;
	width: 18px;
	height: 9px;
	background: url(../images/ys_jt1.png) no-repeat center top;
	background-size: 18px 9px;
	position: absolute;
	top: 281px;
	left: 183px;
}
.ys04 li a:hover p {
	background: url(../images/ys_bg04.png) no-repeat center top;
	color: #fff;
}
.ys04 li a:hover b {
	background: url(../images/ys_jt2.png) no-repeat center top;
	background-size: 18px 9px;
}
.ys04 .nones {
	margin-right: 0;
}
.yst {
	height: 166px;
	overflow: hidden;
	margin-top: 20px;
}
.yst li {
	width: 300px;
	float: left;
	height: 166px;
	overflow: hidden;
	font: 28px "Microsoft YaHei";
	text-align: center;
}
.yst li a {
	display: block;
	color: #333;
	padding-top: 38px;
	height: 128px;
	background: url(../images/ys_01.png) no-repeat center top;
}
.yst li em {
	display: block;
	width: 42px;
	height: 40px;
	margin: 0 auto 4px;
}
.yst li i {
	display: block;
	font: 12px Arial;
	color: #999;
	text-transform: uppercase;
	padding-top: 5px;
}
.yst .li1 em {
	background: url(../images/ys11.png) no-repeat center top;
}
.yst .li2 em {
	background: url(../images/ys22.png) no-repeat center top;
}
.yst .li3 em {
	background: url(../images/ys33.png) no-repeat center top;
}
.yst .li4 em {
	background: url(../images/ys44.png) no-repeat center top;
}
.yst li a:hover, .yst .cur a {
	background: url(../images/ys_02.png) no-repeat center top;
	color: #fff;
}
.yst li a:hover em, .yst .cur em {
	background-position: 0 -40px;
}
.yst li a:hover i, .yst .cur i {
	color: #fff;
}
.guan1 {
	height: 204px;
	overflow: hidden;
	background: url(../images/guan1.jpg) no-repeat center top;
}
.guan1 p {
	width: 423px;
	height: 45px;
	overflow: hidden;
	margin: 128px 154px 0 0;
	float: right;
	font: 24px Arial;
	line-height: 45px;
	color: #fff;
	display: inline-block;
}
.guan1 p a {
	display: inline-block;
	width: 166px;
	height: 42px;
	font: 18px "Microsoft YaHei";
	text-align: center;
	line-height: 42px;
	color: #fff;
}
.guan1 p span {
	display: inline-block;
	padding-left: 55px;
}
.solve {
	margin-top: 45px;
}
.solve .solve-title {
	height: 100px;
	padding-top: 15px;
	background: url("../images/about_title.png") no-repeat center top;
	text-align: center;
	font-size: 30px;
	color: #2555b7;
	font-weight: bold;
	margin-bottom: 39px;
}
.solve-title span {
	display: block;
	font-size: 12px;
	color: #666666;
	text-transform: uppercase;
	font-family: "Arial";
	font-weight: normal;
	margin-top: 10px;
	letter-spacing: 4px;
}
.solve-title i {
	color: #333;
	font-weight: normal;
}
.solve .solve-title1 {
	height: 100px;
	padding-top: 15px;
	background: url("../images/about_title1.png") no-repeat center top;
	text-align: center;
	font-size: 30px;
	color: #f4e42f;
	font-weight: bold;
	margin-bottom: 39px;
}
.solve-title1 span {
	display: block;
	font-size: 12px;
	color: #ffffff;
	text-transform: uppercase;
	font-family: "Arial";
	font-weight: normal;
	margin-top: 10px;
	letter-spacing: 4px;
}
.solve-title1 i {
	color: #fff;
	font-weight: normal;
}
.solve-wrap {
	height: 490px;
	margin-bottom: 80px;
	position: relative;
}
.solve .solve-big {
	width: 726px;
	height: 490px;
	position: absolute;
	top: 0;
	left: 237px;
	z-index: 5;
}
.solvet {
	position: absolute;
	top: 0;
	left: 0;
	width: 1200px;
}
.solvet .li4 {
	position: absolute;
	top: 0;
	right: 0;
}
.solvet .li5 {
	position: absolute;
	top: 169px;
	right: 0;
}
.solvet .li6 {
	position: absolute;
	top: 338px;
	right: 0;
}
.solve ul li {
	width: 223px;
	height: 153px;
	margin-bottom: 16px;
	position: relative;
}
.solve ul li img {
	display: block;
	width: 223px;
	height: 153px;
}
.solve ul li span {
	background-color: rgba(37, 85, 183, 0.48);
	position: absolute;
	left: 0;
	top: 0;
	width: 223px;
	height: 153px;
	line-height: 153px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	display: none;
}
.solve ul li:hover span {
	display: block;
}
.solve-big .solve-one img {
	display: block;
	width: 726px;
	height: 490px;
}
.solve-big .solve-desc {
	background-color: rgba(27, 91, 222, 0.5);
	height: 94px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 726px;
	color: #fff;
	padding: 20px 40px 0 33px;
}
.solve-big .solve-desc p {
	font-size: 16px;
	line-height: 22px;
}
.solve-big .solve-desc p i {
	color: #fbff00;/* font-weight: bold; */
}
.solve-big .solve-two {
	position: absolute;
	left: 30px;
	bottom: 20px;
}
.solve-big .solve-two img {
	display: block;
	width: 156px;
	height: 150px;
	border: 10px solid #fff;
}
.partner .partner-title {
	height: 85px;
	padding-top: 15px;
	background: url("../images/about_title.png") no-repeat center top;
	text-align: center;
	font-size: 30px;
	color: #2555b7;
	font-weight: bold;
	margin-bottom: 39px;
}
.partner-title span {
	display: block;
	font-size: 12px;
	color: #666666;
	text-transform: uppercase;
	font-family: "Arial";
	font-weight: normal;
	margin-top: 10px;
}
.partner-title i {
	color: #333;
	font-weight: normal;
}
.partner-wrap {
	height: 438px;
	position: relative;
	margin-bottom: 60px;
}
.partner-more {
	position: absolute;
	width: 83px;
	height: 83px;
	background: #2555b7;
	border-radius: 80px;
	text-align: center;
	line-height: 83px;
	color: #fff;
	font-size: 14px;
	display: block;
	left: 50%;
	margin-left: -41px;
	top: 161px;
}
.partner dl {
	width: 584px;
	height: 192px;
	border: 1px solid #dadada;
	border-radius: 20px;
	border-radius: 100px;
	padding: 5px;
	box-sizing: border-box;
	float: left;
	margin-bottom: 20px;
}
.partner dl:nth-child(2n) {
	float: right;
}
.partner dt {
	width: 181px;
	height: 181px;
	float: left;
	margin-right: 26px;
	border-radius: 100%;
}
.partner dt img {
	display: block;
	width: 181px;
	height: 181px;
	border-radius: 100%;
}
.partner dd {
	width: 336px;
	float: left;
}
.partner dd h3 {
	font-size: 16px;
	color: #1d1d1d;
	border-bottom: 1px solid #e0e0e0;
	height: 40px;
	margin: 40px 0 20px;
}
.partner dd h3 a {
	color: #1d1d1d;
}
.partner dd p {
	font-size: 14px;
	line-height: 26px;
	color: #5a5a5a;
}
.partner dd p a {
	color: #2555b7;
	font-weight: bold;
}
.partner dl:hover {
	border: 1px solid #2555b7;
}
.partner dl:hover h3 a {
	color: #2555b7;
}
.partner dl:hover p a {
	color: #2555b7;
}
.new .news-title {
	height: 100px;
	padding-top: 15px;
	background: url("../images/about_title.png") no-repeat center top;
	text-align: center;
	font-size: 30px;
	color: #2555b7;
	font-weight: bold;
	margin-bottom: 39px;
}
.news-title span {
	letter-spacing: 4px;
	display: block;
	font-size: 12px;
	color: #666666;
	text-transform: uppercase;
	font-family: "Arial";
	font-weight: normal;
	margin-top: 10px;
}
.news-title i {
	color: #333;
	font-weight: normal;
}
.n_nav {
	height: 100px;
	margin-bottom: 0px;
	position: relative;
	overflow: hidden;
	background: url(../images/line.gif) repeat-x center 9px;
	padding-left: 373px;
	margin-top: 20px;
}
.n_nav li {
	float: left;
	height: 60px;
	font: 18px "Microsoft YaHei";
	color: #101010;
	padding: 0 40px;
	line-height: 60px;
}
.n_nav li a {
	display: block;
	color: #101010;
	height: 25px;
	padding-top: 25px;
	background: url(../images/dot1.png) no-repeat center top;
}
.n_nav .cur {
	color: #2555b7;
	font-weight: bold;
}
.news_c {
	height: 481px;
	overflow: hidden;
}
.news_c .news_big {
	width: 590px;
	height: 481px;
	overflow: hidden;
	position: relative;
}
.news_c .news_big dt {
	position: relative;
}
.news_c .news_big dt img {
	width: 590px;
	height: 481px;
}
.news_c .news_big dt em {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background: url(../images/tou.png) no-repeat;
	width: 60px;
	height: 60px;
}
.news_c .news_big dd {
	height: 125px;
	background-color: rgba(37, 85, 183, 0.86);
	position: absolute;
	left: 0;
	bottom: 0;
	color: #fff;
	padding: 20px 20px 0;
}
.news_c .news_big dd h3 {
	font-size: 16px;
	margin: 20px 0 10px;
}
.news_c .news_big dd a {
	color: #fff;
}
.news_c .news_big dd p {
	font-size: 14px;
	line-height: 24px;
}
.news_c .news-item {
	width: 590px;
	height: 481px;
}
.news_c .news-item dl {
	height: 150px;
	background: #f5f5f5;
	margin-bottom: 16px;
}
.news_c .news-item dt {
	width: 300px;
	height: 145px;
	float: right;
	position: relative;
	margin-left: -16px;
}
.news_c .news-item dt img {
	display: block;
	width: 300px;
	height: 145px;
}
.news_c .news-item dd {
	width: 520px;
	padding: 0 19px;
	height: 128px;
	float: left;
	background: #fff;
	margin: 10px 0 0 10px;
	position: relative;
	z-index: 2;
	font-size: 14px;
	color: #333333;
}
.news_c .news-item dd span {
	display: block;
	font-size: 16px;
	color: #333;
	margin: 15px 0 5px;
}
.news_c .news-item dd a {
	color: #5b5b5b;
	line-height: 22px;
}
.news_c .news-item dd a:hover {
	color: #2555b7;
}
.news_c .news-item dd i {
	display: block;
	background: url("../images/news_icon.jpg") no-repeat;
	width: 25px;
	height: 5px;
	margin-top: 10px;
}
.about .about-title {
	height: 100px;
	padding-top: 15px;
	background: url("../images/about_title.png") no-repeat center top;
	text-align: center;
	font-size: 30px;
	color: #2555b7;
	font-weight: bold;
	margin-top: 50px;
	margin-bottom: 39px;
}
.about-title span {
	letter-spacing: 4px;
	display: block;
	font-size: 12px;
	color: #666666;
	text-transform: uppercase;
	font-family: "Arial";
	font-weight: normal;
	margin-top: 10px;
}
.nat {
	overflow: hidden;
}
.nat1 {
	width: 600px;
	overflow: hidden;
	position: relative;
}
.nat1 h2 img {
	display: block;
	width: 600px;
	height: 329px;
	margin-bottom: 3px;
}
.nat1 h3 img {
	display: inline-block;
	width: 198px;
	height: 115px;
	margin-right: 3px;
}

.nat1 h3 img.img0 {
	margin-right: 0;
}
.nat1 h5 {
	height: 90px;
	width: 100px;
	overflow: hidden;
	position: absolute;
	top: 239px;
	right: 0;
}
.nat1 h5 img {
	display: inline-block;
	width: 103px;
	height: 90px;
}
.nat1 h5 a img {
	display: inline-block;
	width: 100px;
	height: 80px;
}
.nat dl {
	width: 600px;
	overflow: hidden;
}
.nat dt {
	font: 36px "Microsoft YaHei";
	font-weight: bold;
	padding-left: 70px;
	margin-top: 40px;
	height: 135px;
	color: #333;
}
.nat dt em {
	display: block;
	font: 26px Arial;
	color: #b4b4b4;
	text-transform: uppercase;
}
.nat dd {
	height: 330px;
	background: #f2f2f2;
	overflow: hidden;
	padding: 50px 70px 0 70px;
}
.nat dd em {
	display: block;
	font: 22px "Microsoft YaHei";
	color: #333;
	line-height: 40px;
	height: 40px;
	overflow: hidden;
}
.nat dd p {
	font: 15px "Microsoft YaHei";
	line-height: 30px;
	color: #555;
	margin-top: 0px;
	text-indent: 2em;
}
.pic {
	height: 280px;
	margin-top: 40px;
}
.nav2 {
	height: 60px;
	overflow: hidden;
	background: url(../images/line.gif) repeat-x center center;
	margin-bottom: 20px;
	position: relative;
}
.nav2 li {
	font: 18px "Microsoft YaHei";
	line-height: 60px;
	height: 60px;
	overflow: hidden;
	float: left;/* background:#fff url(../images/line2.gif) no-repeat right center;*/
	padding: 0 20px;
}
.nav2 li a:hover, .nav2 li .cur {
	font-weight: bold;
	color: #2555b7;
}
.nav2 .nones {
	background: #fff;
}
.nav2 .li1 {
	padding-left: 0;
}
.nav2 li a {
	display: inline-block;
	color: #333;
}
.nav2 .more2 span a {
	display: block;
	font: 16px Arial;
	text-transform: uppercase;
	background: #fff;
	padding-left: 20px;
	position: absolute;
	top: 0;
	right: 0;
	height: 60px;
	line-height: 60px;
	color: #2555b7;
	overflow: hidden;
}
.pic2 {
	position: relative;
}
.pic3 {
	width: 1200px;
	overflow: hidden;
}
.pic2 li {
	width: 240px;
	float: left;
	/* margin-right: 24px; */
	position: relative;
}
.pic2 li img {
	display: block;
	width: 220px;
	height: 288px;
	display: block;
	margin: 0px auto;
}
.pic2 li span {
	display: block;
	font: 16px "Microsoft YaHei";
	text-align: center;
	height: 45px;
	color: #666;
	line-height: 45px;
	overflow: hidden;
	border-bottom: 1px solid #e6e6e4;
}
.pic2 li a:hover span {
	background: #2555b7;
	border-bottom: 2px solid #2555b7;
	color: #fff;
}
.pic2 li a:hover img {
	display: block;
	border: 3px solid #2555b7;
	width: 240px;
	height: 288px;
}
.arr1 {
	font: 30px "宋体";
	color: #fff;
	position: absolute;
	top: 85px;
	left: -16px;
	width: 32px;
	height: 36px;
	text-align: center;
	line-height: 36px;
}
.arr2 {
	font: 30px "宋体";
	color: #fff;
	position: absolute;
	top: 85px;
	right: -16px;
	width: 32px;
	height: 36px;
	text-align: center;
	line-height: 36px;
}
.arr1 a, .arr2 a {
	background: #2555b7;
	display: block;
	color: #fff;
}
.arr1 a:hover, .arr2 a:hover {
	background: #333;
}
.link {
	height: 84px;
	font: 14px "Microsoft YaHei";
	line-height: 84px;
	overflow: hidden;
}
.link a {
	display: inline-block;
	padding: 0 20px;
	color: #555;
}
.link a:hover {
	color: #3099f3;
}
.h-proc1 {
	width: 100%;
	height: auto;
	text-align: center;
	padding: 30px 0px;
}
.h-proc1 a {
	display: inline-block;
	margin: 12px;
	width: 158px;
	height: 38px;
	background-color: #2656b7;
	font-size: 16px;
	color: #fff;
	padding-top: 2px;
	text-align: center;
	line-height: 35px;
	margin-right: 5px;
	border-spacing: 5px;
	transition: all 0.3s ease-in-out;
	border-radius: 10px;
}
.h-proc1 a:hover {
	background-color: #407cf7;
	color: #fff;
}
