.home_div3 ol li .text_con {
	background: #13359e;
}


/*
    ----------------------------------- 
            方法变量    
                     
    Create Time : 2014-07-22
    Update Time : 2015-08-03
    Author      : Trueland Development Department
    -----------------------------------
*/


/*
    ---------------------- 
            普通方法 
    ---------------------- 

    1 .opc()              // 透明度     - 传整数 50 代表 0.5   
    2 .pos(r)             // 定位方式 - 必须传参，r 代表relative || a 代表absolute ||  f 代表 fixed
    3 .font()             // 字体大小 - 默认12px 
    4 .align()            // 文本对齐 - 默认 center
    5 .lineH()            // 行高设置 - 默认 20px
   11 .arrow(r)           // 三角箭头 - 必须传参    l:向左箭头 | r:向右箭头 | t:向上箭头 | b:向下箭头
   12 .float()            // 快速浮动 - 默认为 left ||  left: 向左浮动   | right:向右浮动
   13 .fontC(d)           // 字大小写 - 比传参数 d 为 大写 s 为首字母大写
   14 .fontB()            // 字体粗细 - 默认加粗  fontB(100) 传100 就是 变细

   ----------------------
   CSS3 方法 
   ---------------------- 

   01 .borderR()          // 圆角设置 - 默认为 5px
   02 .linearG(red,blue)  // 线性渐变 - 两个颜色值 是开始到结束  目前支持 *上下* 渐变
   03 .bgFull             // 背景充满 - 背景等比例拉伸 使用 ：bgFull;
   04 .css3Tansition()    // 过度属性 - 默认两个值 前者是过渡动画时间 后者是过渡动画效果 使用 : .css3tansition(.4s,ease)
   

   //滤镜

   05 .filterBlur()       // 滤镜模糊 - 使用 ：.filterBlur(2px); 默认 5px
   06 .filterGrayscale()  // 滤镜灰度 - 使用 ：.filterGrayscale(100%); 默认100% ★注意参数 是 0%~100$; 100%代表全灰
   07 .filterSepia()      // 滤镜褐色 - 使用 ： .filterSepia(1); 默认1 ★注意参数 (同上)
   08 .filterBrightness() // 滤镜亮度 - 使用 ： .filterBrightness(10); 默认5 ★注意参数 10代表100% 5代表50%
   09 .filterHue()        // 滤镜色相 - 使用 ： .filterHue(180deg); 默认180deg ★注意参数 0deg~360deg
   10 .filterInvert()     // 滤镜反色 - 使用 ： .filterInvert(1); 默认1 ★注意参数 0.1~1 1代表100%
   11 .filterSaturate()   // 滤镜饱和 - 使用 ： .filterSaturate(5); 默认5 ★注意参数 5 代表 50%
   12 .filterContrast()   // 滤镜对比 - 使用 ： .filterContrast(1.5); 默认1.5 ★注意参数 1.5代表 15%
    
   ----------------------
        普通嵌套 
   ---------------------- 

   01 .vcenter            // 垂直水平居中
   02 .tHide              // 文本超出隐藏省略
   03 .blockFull          // 块状元素 宽高100%
   04 .block              // 块状元素 没有设置宽高
   05 .centerBlock        // 左右居中
   05 .clearfix           // 清除浮动

    -----------------------------------
*/

.bgFull {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-ms-behavior: url(../images/cover.htc);
	behavior: url(css/cover.htc);
}

.vcenter {
	display: block;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.tHide {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.blockFull {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.block {
	display: block;
	position: relative;
}

.centerBlock {
	margin-left: auto;
	margin-right: auto;
}

.clearfix {
	clear: both;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-loading .slick-list {
	background: #ffffff url("../images/ajax-loader.gif") center center no-repeat;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-prev,
.slick-next {
	z-index: 20;
	position: absolute;
	display: block;
	height: 71px;
	width: 41px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 50%;
	margin-top: -30px;
	padding: 0;
	border: none;
	outline: none;
	background: url(../images/hy-news-banner1.png)no-repeat;
}

[dir="rtl"] .slick-prev {
	left: auto;
	right: 30px;
}

.slick-next {
	right: 0px;
	background: url(../images/hy-news-banner2.png) no-repeat;
}

[dir="rtl"] .slick-next {
	left: 30px;
	right: auto;
}

.slick-dots {
	position: absolute;
	bottom: 20px;
	height: auto;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	width: 100%;
	line-height: 0;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	border: 0;
	display: block;
	height: 10px;
	width: 10px;
	padding: 0;
	margin: 0;
	outline: none;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: #cccccc;
	border-radius: 0px;
}

.slick-dots li.slick-active button {
	background: #333333;
}


/*
	jQuery.mmenu CSS
*/


/*
	jQuery.mmenu oncanvas CSS
*/

.mm-hidden {
	display: none !important;
}

.mm-wrapper {
	overflow-x: hidden;
	position: relative;
}

.mm-menu,
.mm-menu>.mm-panel {
	margin: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
}

.mm-menu {
	box-sizing: border-box;
	background: inherit;
	display: block;
	overflow: hidden;
	padding: 0;
}

.mm-panel {
	-webkit-transition: -webkit-transform 0.4s ease;
	-moz-transition: -moz-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	-o-transition: -o-transform 0.4s ease;
	transition: transform 0.4s ease;
	-webkit-transform: translate3d(100%, 0, 0);
	-moz-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	-o-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.mm-panel.mm-opened {
	-webkit-transform: translate3d(0%, 0, 0);
	-moz-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.mm-panel.mm-subopened {
	-webkit-transform: translate3d(-30%, 0, 0);
	-moz-transform: translate3d(-30%, 0, 0);
	-ms-transform: translate3d(-30%, 0, 0);
	-o-transform: translate3d(-30%, 0, 0);
	transform: translate3d(-30%, 0, 0);
}

.mm-panel.mm-highest {
	z-index: 1;
}

.mm-menu>.mm-panel {
	background: inherit;
	border-color: inherit;
	-webkit-overflow-scrolling: touch;
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	padding: 0 20px;
}

.mm-menu>.mm-panel.mm-hasnavbar {
	padding-top: 40px;
}

.mm-menu>.mm-panel:before,
.mm-menu>.mm-panel:after {
	content: '';
	display: block;
	height: 20px;
}

.mm-vertical .mm-panel {
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	transform: none !important;
}

.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
	display: none;
	padding: 10px 0 10px 10px;
}

.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after {
	border-color: transparent;
}

.mm-vertical li.mm-opened>.mm-panel,
li.mm-vertical.mm-opened>.mm-panel {
	display: block;
}

.mm-vertical .mm-listview>li>.mm-next,
.mm-listview>li.mm-vertical>.mm-next {
	height: 40px;
	bottom: auto;
}

.mm-vertical .mm-listview>li>.mm-next:after,
.mm-listview>li.mm-vertical>.mm-next:after {
	top: 16px;
	bottom: auto;
}

.mm-vertical .mm-listview>li.mm-opened>.mm-next:after,
.mm-listview>li.mm-vertical.mm-opened>.mm-next:after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mm-navbar {
	border-bottom: 1px solid;
	border-color: inherit;
	text-align: center;
	line-height: 20px;
	height: 40px;
	padding: 0 40px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.mm-navbar>* {
	display: block;
	padding: 10px 0;
}

.mm-navbar a,
.mm-navbar a:hover {
	text-decoration: none;
}

.mm-navbar .mm-title {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.mm-navbar .mm-btn {
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	z-index: 1;
}

.mm-navbar .mm-btn:first-child {
	padding-left: 20px;
	left: 0;
}

.mm-navbar .mm-btn:last-child {
	text-align: right;
	padding-right: 20px;
	right: 0;
}

.mm-panel .mm-navbar {
	display: none;
}

.mm-panel.mm-hasnavbar .mm-navbar {
	display: block;
}

.mm-listview,
.mm-listview>li {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0;
}

.mm-listview {
	font: inherit;
	font-size: 14px;
	line-height: 20px;
}

.mm-listview a,
.mm-listview a:hover {
	text-decoration: none;
}

.mm-listview>li {
	position: relative;
}

.mm-listview>li,
.mm-listview>li:after,
.mm-listview>li .mm-next,
.mm-listview>li .mm-next:before {
	border-color: inherit;
}

.mm-listview>li>a,
.mm-listview>li>span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: inherit;
	display: block;
	padding: 10px 10px 10px 20px;
	margin: 0;
}

.mm-listview>li>a.mm-arrow,
.mm-listview>li>span.mm-arrow {
	padding-right: 50px;
}

.mm-listview>li:not(.mm-divider):after {
	content: '';
	border-bottom-width: 1px;
	border-bottom-style: solid;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.mm-listview>li:not(.mm-divider):after {
	left: 20px;
}

.mm-listview .mm-next {
	background: rgba(3, 2, 1, 0);
	width: 50px;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
}

.mm-listview .mm-next:before {
	content: '';
	border-left-width: 1px;
	border-left-style: solid;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

.mm-listview .mm-next+a,
.mm-listview .mm-next+span {
	margin-right: 50px;
}

.mm-listview .mm-next.mm-fullsubopen {
	width: 100%;
}

.mm-listview .mm-next.mm-fullsubopen:before {
	border-left: none;
}

.mm-listview .mm-next.mm-fullsubopen+a,
.mm-listview .mm-next.mm-fullsubopen+span {
	padding-right: 50px;
	margin-right: 0;
}

.mm-menu>.mm-panel>.mm-listview {
	margin: 20px -20px;
}

.mm-menu>.mm-panel>.mm-listview:first-child,
.mm-menu>.mm-panel>.mm-navbar+.mm-listview {
	margin-top: -20px;
}

.mm-listview .mm-inset {
	list-style: inside disc;
	padding: 0 10px 15px 40px;
	margin: 0;
}

.mm-listview .mm-inset>li {
	padding: 5px 0;
}

.mm-listview .mm-divider {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: 10px;
	text-transform: uppercase;
	text-indent: 20px;
	line-height: 25px;
}

.mm-listview .mm-spacer {
	padding-top: 40px;
}

.mm-listview .mm-spacer>.mm-next {
	top: 40px;
}

.mm-listview .mm-spacer.mm-divider {
	padding-top: 25px;
}

.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
	content: '';
	border: 2px solid transparent;
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.mm-prev:before {
	border-right: none;
	border-bottom: none;
	left: 20px;
}

.mm-next:after,
.mm-arrow:after {
	border-top: none;
	border-left: none;
	right: 20px;
}

.mm-menu {
	background: #f3f3f3;
	border-color: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.7);
}

.mm-menu .mm-navbar>*,
.mm-menu .mm-navbar a {
	color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-navbar .mm-btn:before,
.mm-menu .mm-navbar .mm-btn:after {
	border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-listview {
	border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-listview>li .mm-next:after,
.mm-menu .mm-listview>li .mm-arrow:after {
	border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu .mm-listview>li.mm-selected>span {
	background: rgba(255, 255, 255, 0.5);
}

.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next,
.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel {
	background: rgba(0, 0, 0, 0.05);
}

.mm-menu .mm-divider {
	background: rgba(0, 0, 0, 0.05);
}


/*
	jQuery.mmenu offcanvas addon CSS
*/

.mm-page {
	box-sizing: border-box;
	position: relative;
}

.mm-slideout {
	-webkit-transition: -webkit-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	transition: transform 0.4s ease;
}

html.mm-opened {
	overflow: hidden;
	position: relative;
}

html.mm-opened body {
	overflow: hidden;
}

html.mm-background .mm-page {
	background: inherit;
}

#mm-blocker {
	background: rgba(3, 2, 1, 0);
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
}

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
	display: block;
}

.mm-menu.mm-offcanvas {
	display: none;
	position: fixed;
}

.mm-menu.mm-current {
	display: block;
}

.mm-menu {
	width: 80%;
	min-width: 140px;
	max-width: 440px;
}

html.mm-opening .mm-slideout {
	-webkit-transform: translate(80%, 0);
	-moz-transform: translate(80%, 0);
	-ms-transform: translate(80%, 0);
	-o-transform: translate(80%, 0);
	transform: translate(80%, 0);
}

@media all and (max-width: 175px) {
	html.mm-opening .mm-slideout {
		-webkit-transform: translate(140px, 0);
		-moz-transform: translate(140px, 0);
		-ms-transform: translate(140px, 0);
		-o-transform: translate(140px, 0);
		transform: translate(140px, 0);
	}
}

@media all and (min-width: 550px) {
	html.mm-opening .mm-slideout {
		-webkit-transform: translate(440px, 0);
		-moz-transform: translate(440px, 0);
		-ms-transform: translate(440px, 0);
		-o-transform: translate(440px, 0);
		transform: translate(440px, 0);
	}
}


/*
	jQuery.mmenu autoHeight addon CSS
*/

.mm-menu.mm-top.mm-autoheight,
.mm-menu.mm-bottom.mm-autoheight {
	max-height: 80%;
}

.mm-menu.mm-top.mm-autoheight.mm-fullscreen,
.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
	max-height: 100%;
}

.mm-menu.mm-measureheight>.mm-panel {
	bottom: auto !important;
	height: auto !important;
}


/*
	jQuery.mmenu counters addon CSS
*/

em.mm-counter {
	font: inherit;
	font-size: 14px;
	font-style: normal;
	text-indent: 0;
	line-height: 20px;
	display: block;
	margin-top: -10px;
	position: absolute;
	right: 45px;
	top: 50%;
}

em.mm-counter+a.mm-next {
	width: 90px;
}

em.mm-counter+a.mm-next+a,
em.mm-counter+a.mm-next+span {
	margin-right: 90px;
}

em.mm-counter+a.mm-fullsubopen {
	padding-left: 0;
}

.mm-vertical>.mm-counter {
	top: 12px;
	margin-top: 0;
}

.mm-vertical.mm-spacer>.mm-counter {
	margin-top: 40px;
}

.mm-nosubresults>.mm-counter {
	display: none;
}

.mm-menu em.mm-counter {
	color: rgba(0, 0, 0, 0.3);
}


/*
	jQuery.mmenu dividers addon CSS
*/

.mm-divider>span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding: 0;
	line-height: 25px;
}

.mm-divider.mm-opened a.mm-next:after {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.mm-collapsed:not(.mm-uncollapsed) {
	display: none;
}

.mm-fixeddivider {
	background: inherit;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mm-fixeddivider:after {
	content: none !important;
	display: none !important;
}

.mm-hasdividers .mm-fixeddivider {
	display: block;
}

.mm-menu .mm-fixeddivider span {
	background: rgba(0, 0, 0, 0.05);
}


/*
	jQuery.mmenu dragOpen addon CSS
*/

html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	-ms-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
}


/*
	jQuery.mmenu iconpanels addon CSS
*/

.mm-iconpanel .mm-panel {
	-webkit-transition-property: -webkit-transform, left, right;
	-moz-transition-property: -moz-transform, left, right;
	-ms-transition-property: -ms-transform, left, right;
	-o-transition-property: -o-transform, left, right;
	transition-property: transform, left, right;
}

.mm-iconpanel .mm-panel.mm-opened {
	border-left: 1px solid;
	border-color: inherit;
}

.mm-iconpanel .mm-panel.mm-subopened {
	overflow-y: hidden;
	left: -40px;
	right: 40px;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mm-iconpanel .mm-panel.mm-iconpanel-0 {
	left: 0px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-1 {
	left: 40px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-2 {
	left: 80px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-3 {
	left: 120px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-4 {
	left: 160px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-5 {
	left: 200px;
}

.mm-iconpanel .mm-panel.mm-iconpanel-6 {
	left: 240px;
}

.mm-subblocker {
	background: inherit;
	opacity: 0;
	display: block;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	-ms-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}

.mm-subopened .mm-subblocker {
	opacity: 0.6;
	position: absolute;
	top: 0;
	right: 0;
	bottom: -100000px;
	left: 0;
	z-index: 3;
}


/*
	jQuery.mmenu navbars addon CSS
*/

.mm-menu>.mm-navbar {
	background: inherit;
	padding: 0;
	z-index: 3;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mm-navbar-bottom {
	border-top-width: 1px;
	border-top-style: solid;
	border-bottom: none;
	top: auto;
	bottom: 0;
}

.mm-navbar-top~.mm-navbar-top {
	border-bottom: none;
}

.mm-navbar-bottom~.mm-navbar-bottom {
	border-top: none;
}

.mm-navbar.mm-hasbtns {
	padding: 0 40px;
}

.mm-close:after {
	content: 'x';
}

.mm-navbar[class*="mm-navbar-content-"]>* {
	box-sizing: border-box;
	display: block;
	float: left;
}

.mm-navbar>.mm-breadcrumbs {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	text-align: left;
	padding: 0 0 0 17px;
}

.mm-navbar>.mm-breadcrumbs>* {
	display: inline-block;
	padding: 10px 3px;
}

.mm-navbar>.mm-breadcrumbs>a {
	text-decoration: underline;
}

.mm-navbar.mm-hasbtns .mm-breadcrumbs {
	margin-left: -40px;
}

.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden)+.mm-breadcrumbs {
	margin-left: 0;
	padding-left: 0;
}

.mm-navbar-top-1 {
	top: 0px;
}

.mm-hasnavbar-top-1 .mm-panel {
	top: 40px;
}

.mm-hasnavbar-top-1 .mm-indexer {
	top: 50px;
}

.mm-hasnavbar-top-1 .mm-fixeddivider {
	top: 40px;
}

.mm-navbar-top-2 {
	top: 40px;
}

.mm-hasnavbar-top-2 .mm-panel {
	top: 80px;
}

.mm-hasnavbar-top-2 .mm-indexer {
	top: 90px;
}

.mm-hasnavbar-top-2 .mm-fixeddivider {
	top: 80px;
}

.mm-navbar-top-3 {
	top: 80px;
}

.mm-hasnavbar-top-3 .mm-panel {
	top: 120px;
}

.mm-hasnavbar-top-3 .mm-indexer {
	top: 130px;
}

.mm-hasnavbar-top-3 .mm-fixeddivider {
	top: 120px;
}

.mm-navbar-top-4 {
	top: 120px;
}

.mm-hasnavbar-top-4 .mm-panel {
	top: 160px;
}

.mm-hasnavbar-top-4 .mm-indexer {
	top: 170px;
}

.mm-hasnavbar-top-4 .mm-fixeddivider {
	top: 160px;
}

.mm-navbar-bottom-1 {
	bottom: 0px;
}

.mm-hasnavbar-bottom-1 .mm-panel {
	bottom: 40px;
}

.mm-hasnavbar-bottom-1 .mm-indexer {
	bottom: 50px;
}

.mm-navbar-bottom-2 {
	bottom: 40px;
}

.mm-hasnavbar-bottom-2 .mm-panel {
	bottom: 80px;
}

.mm-hasnavbar-bottom-2 .mm-indexer {
	bottom: 90px;
}

.mm-navbar-bottom-3 {
	bottom: 80px;
}

.mm-hasnavbar-bottom-3 .mm-panel {
	bottom: 120px;
}

.mm-hasnavbar-bottom-3 .mm-indexer {
	bottom: 130px;
}

.mm-navbar-bottom-4 {
	bottom: 120px;
}

.mm-hasnavbar-bottom-4 .mm-panel {
	bottom: 160px;
}

.mm-hasnavbar-bottom-4 .mm-indexer {
	bottom: 170px;
}

.mm-navbar-size-2 {
	height: 80px;
}

.mm-navbar-size-3 {
	height: 120px;
}

.mm-navbar-size-4 {
	height: 160px;
}

.mm-navbar-content-2>* {
	width: 50%;
}

.mm-navbar-content-3>* {
	width: 33.33%;
}

.mm-navbar-content-4>* {
	width: 25%;
}

.mm-navbar-content-5>* {
	width: 20%;
}

.mm-navbar-content-6>* {
	width: 16.67%;
}


/*
	jQuery.mmenu searchfield addon CSS
*/

.mm-search,
.mm-search input {
	box-sizing: border-box;
}

.mm-search {
	height: 40px;
	padding: 7px 10px 0 10px;
}

.mm-search input {
	border: none;
	border-radius: 26px;
	font: inherit;
	font-size: 14px;
	line-height: 26px;
	outline: none;
	display: block;
	width: 100%;
	height: 26px;
	margin: 0;
	padding: 0 10px;
}

.mm-search input::-ms-clear {
	display: none;
}

.mm-panel>.mm-search {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.mm-panel.mm-hassearch {
	padding-top: 40px;
}

.mm-panel.mm-hassearch.mm-hasnavbar {
	padding-top: 80px;
}

.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
	top: 40px;
}

.mm-noresultsmsg {
	text-align: center;
	font-size: 21px;
	display: none;
	padding: 40px 0;
}

.mm-noresults .mm-noresultsmsg {
	display: block;
}

.mm-noresults .mm-indexer {
	display: none !important;
}

li.mm-nosubresults>a.mm-next {
	display: none;
}

li.mm-nosubresults>a.mm-next+a,
li.mm-nosubresults>a.mm-next+span {
	padding-right: 10px;
}

.mm-menu .mm-search input {
	background: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.7);
}

.mm-menu .mm-noresultsmsg {
	color: rgba(0, 0, 0, 0.3);
}


/*
	jQuery.mmenu sectionIndexer addon CSS
*/

.mm-indexer {
	background: inherit;
	text-align: center;
	font-size: 12px;
	box-sizing: border-box;
	width: 20px;
	position: absolute;
	top: 10px;
	bottom: 10px;
	right: -100px;
	z-index: 3;
	-webkit-transition: right 0.4s ease;
	-moz-transition: right 0.4s ease;
	-ms-transition: right 0.4s ease;
	-o-transition: right 0.4s ease;
	transition: right 0.4s ease;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mm-indexer a {
	text-decoration: none;
	display: block;
	height: 3.85%;
}

.mm-indexer~.mm-panel.mm-hasindexer {
	padding-right: 40px;
}

.mm-hasindexer .mm-indexer {
	right: 0;
}

.mm-hasindexer .mm-fixeddivider {
	right: 20px;
}

.mm-menu .mm-indexer a {
	color: rgba(0, 0, 0, 0.3);
}


/*
	jQuery.mmenu toggles addon CSS
*/

input.mm-toggle,
input.mm-check {
	position: absolute;
	left: -10000px;
}

label.mm-toggle,
label.mm-check {
	margin: 0;
	position: absolute;
	top: 50%;
	z-index: 2;
}

label.mm-toggle:before,
label.mm-check:before {
	content: '';
	display: block;
}

label.mm-toggle {
	border-radius: 30px;
	width: 50px;
	height: 30px;
	margin-top: -15px;
}

label.mm-toggle:before {
	border-radius: 30px;
	width: 28px;
	height: 28px;
	margin: 1px;
}

input.mm-toggle:checked~label.mm-toggle:before {
	float: right;
}

label.mm-check {
	width: 30px;
	height: 30px;
	margin-top: -15px;
}

label.mm-check:before {
	border-left: 3px solid;
	border-bottom: 3px solid;
	width: 40%;
	height: 20%;
	margin: 25% 0 0 20%;
	opacity: 0.1;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

input.mm-check:checked~label.mm-check:before {
	opacity: 1;
}

li.mm-vertical label.mm-toggle,
li.mm-vertical label.mm-check {
	bottom: auto;
	margin-top: 0;
}

li.mm-vertical label.mm-toggle {
	top: 5px;
}

li.mm-vertical label.mm-check {
	top: 5px;
}

label.mm-toggle,
label.mm-check {
	right: 20px;
}

label.mm-toggle+a,
label.mm-toggle+span {
	padding-right: 80px;
}

label.mm-check+a,
label.mm-check+span {
	padding-right: 60px;
}

a.mm-next+label.mm-toggle,
a.mm-next+label.mm-check {
	right: 60px;
}

a.mm-next+label.mm-toggle+a,
a.mm-next+label.mm-toggle+span,
a.mm-next+label.mm-check+a,
a.mm-next+label.mm-check+span {
	margin-right: 50px;
}

a.mm-next+label.mm-toggle+a,
a.mm-next+label.mm-toggle+span {
	padding-right: 70px;
}

a.mm-next+label.mm-check+a,
a.mm-next+label.mm-check+span {
	padding-right: 50px;
}

em.mm-counter+a.mm-next+label.mm-toggle,
em.mm-counter+a.mm-next+label.mm-check {
	right: 100px;
}

em.mm-counter+a.mm-next+label.mm-toggle+a,
em.mm-counter+a.mm-next+label.mm-toggle+span,
em.mm-counter+a.mm-next+label.mm-check+a,
em.mm-counter+a.mm-next+label.mm-check+span {
	margin-right: 90px;
}

.mm-menu label.mm-toggle {
	background: rgba(0, 0, 0, 0.1);
}

.mm-menu label.mm-toggle:before {
	background: #f3f3f3;
}

.mm-menu input.mm-toggle:checked~label.mm-toggle {
	background: #4bd963;
}

.mm-menu label.mm-check:before {
	border-color: rgba(0, 0, 0, 0.7);
}


/*
	jQuery.mmenu borderstyle extension CSS
*/

.mm-menu.mm-border-none .mm-listview>li:after,
.mm-listview.mm-border-none>li:after {
	content: none;
}

.mm-menu.mm-border-full .mm-listview>li:after,
.mm-listview.mm-border-full>li:after {
	left: 0 !important;
}


/*
	jQuery.mmenu effects extension CSS
*/

html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
	-webkit-transition: -webkit-transform 0.4s ease;
	-moz-transition: -moz-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	-o-transition: -o-transform 0.4s ease;
	transition: transform 0.4s ease;
}

html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-effect-zoom-menu {
	-webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	-moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	-ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	-o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-effect-zoom-menu {
	-webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0%, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0%, 0, 0);
	-o-transform: scale(1, 1) translate3d(0%, 0, 0);
	transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
	-webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
	-moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
	-ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
	-o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
	transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
	-webkit-transform-origin: right center;
	-moz-transform-origin: right center;
	-ms-transform-origin: right center;
	-o-transform-origin: right center;
	transform-origin: right center;
}

html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-effect-zoom-menu {
	-webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0%, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0%, 0, 0);
	-o-transform: scale(1, 1) translate3d(0%, 0, 0);
	transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-slide-menu .mm-menu.mm-effect-slide-menu {
	-webkit-transition: -webkit-transform 0.4s ease;
	-moz-transition: -moz-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	-o-transition: -o-transform 0.4s ease;
	transition: transform 0.4s ease;
}

html.mm-effect-slide-menu.mm-opened .mm-menu.mm-effect-slide-menu {
	-webkit-transform: translate3d(-30%, 0, 0);
	-moz-transform: translate3d(-30%, 0, 0);
	-ms-transform: translate3d(-30%, 0, 0);
	-o-transform: translate3d(-30%, 0, 0);
	transform: translate3d(-30%, 0, 0);
}

html.mm-effect-slide-menu.mm-opening .mm-menu.mm-effect-slide-menu {
	-webkit-transform: translate3d(0%, 0, 0);
	-moz-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-effect-slide-menu {
	-webkit-transform: translate3d(30%, 0, 0);
	-moz-transform: translate3d(30%, 0, 0);
	-ms-transform: translate3d(30%, 0, 0);
	-o-transform: translate3d(30%, 0, 0);
	transform: translate3d(30%, 0, 0);
}

html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-effect-slide-menu {
	-webkit-transform: translate3d(0%, 0, 0);
	-moz-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

html.mm-effect-fade-menu .mm-menu.mm-effect-fade-menu {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	-ms-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}

html.mm-effect-fade-menu.mm-opening .mm-menu.mm-effect-fade-menu {
	opacity: 1;
}

.mm-menu.mm-effect-zoom-panels .mm-panel {
	-webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
	-moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
	-ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
	-o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
	transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
}

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
	-webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0%, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0%, 0, 0);
	-o-transform: scale(1, 1) translate3d(0%, 0, 0);
	transform: scale(1, 1) translate3d(0%, 0, 0);
}

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
	-webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	-moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	-ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	-o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}

.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	-o-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li {
	-webkit-transition: -webkit-transform 0.4s ease;
	-moz-transition: -moz-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	-o-transition: -o-transform 0.4s ease;
	transition: transform 0.4s ease;
	-webkit-transform: translate3d(100%, 0, 0);
	-moz-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	-o-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(1) {
	-webkit-transition-delay: 100ms;
	-moz-transition-delay: 100ms;
	-ms-transition-delay: 100ms;
	-o-transition-delay: 100ms;
	transition-delay: 100ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(2) {
	-webkit-transition-delay: 200ms;
	-moz-transition-delay: 200ms;
	-ms-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	transition-delay: 200ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(3) {
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(4) {
	-webkit-transition-delay: 400ms;
	-moz-transition-delay: 400ms;
	-ms-transition-delay: 400ms;
	-o-transition-delay: 400ms;
	transition-delay: 400ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(5) {
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(6) {
	-webkit-transition-delay: 600ms;
	-moz-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	transition-delay: 600ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(7) {
	-webkit-transition-delay: 700ms;
	-moz-transition-delay: 700ms;
	-ms-transition-delay: 700ms;
	-o-transition-delay: 700ms;
	transition-delay: 700ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(8) {
	-webkit-transition-delay: 800ms;
	-moz-transition-delay: 800ms;
	-ms-transition-delay: 800ms;
	-o-transition-delay: 800ms;
	transition-delay: 800ms;
}

html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(9) {
	-webkit-transition-delay: 900ms;
	-moz-transition-delay: 900ms;
	-ms-transition-delay: 900ms;
	-o-transition-delay: 900ms;
	transition-delay: 900ms;
}

html.mm-effect-slide-listitems.mm-opening .mm-menu.mm-effect-slide-listitems .mm-panel.mm-opened .mm-listview>li {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}


/*
	jQuery.mmenu fullscreen extension CSS
*/

.mm-menu.mm-fullscreen {
	width: 100%;
	min-width: 140px;
	max-width: 10000px;
}

html.mm-opening.mm-fullscreen .mm-slideout {
	-webkit-transform: translate(100%, 0);
	-moz-transform: translate(100%, 0);
	-ms-transform: translate(100%, 0);
	-o-transform: translate(100%, 0);
	transform: translate(100%, 0);
}

@media all and (max-width: 140px) {
	html.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate(140px, 0);
		-moz-transform: translate(140px, 0);
		-ms-transform: translate(140px, 0);
		-o-transform: translate(140px, 0);
		transform: translate(140px, 0);
	}
}

@media all and (min-width: 10000px) {
	html.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate(10000px, 0);
		-moz-transform: translate(10000px, 0);
		-ms-transform: translate(10000px, 0);
		-o-transform: translate(10000px, 0);
		transform: translate(10000px, 0);
	}
}

html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
	-webkit-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	-ms-transform: translate(-100%, 0);
	-o-transform: translate(-100%, 0);
	transform: translate(-100%, 0);
}

@media all and (max-width: 140px) {
	html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate(-140px, 0);
		-moz-transform: translate(-140px, 0);
		-ms-transform: translate(-140px, 0);
		-o-transform: translate(-140px, 0);
		transform: translate(-140px, 0);
	}
}

@media all and (min-width: 10000px) {
	html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate(-10000px, 0);
		-moz-transform: translate(-10000px, 0);
		-ms-transform: translate(-10000px, 0);
		-o-transform: translate(-10000px, 0);
		transform: translate(-10000px, 0);
	}
}

.mm-menu.mm-fullscreen.mm-top,
.mm-menu.mm-fullscreen.mm-bottom {
	height: 100%;
	min-height: 140px;
	max-height: 10000px;
}

html.mm-opened.mm-fullscreen .mm-page {
	box-shadow: none !important;
}


/*
	jQuery.mmenu multiline extension CSS
*/

.mm-menu.mm-multiline .mm-listview>li>a,
.mm-menu.mm-multiline .mm-listview>li>span,
.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>a,
.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>span {
	text-overflow: clip;
	white-space: normal;
}


/*
	jQuery.mmenu pageshadow extension CSS
*/

.mm-menu.mm-pageshadow:after {
	content: "";
	display: block;
	width: 20px;
	height: 120%;
	position: absolute;
	left: 100%;
	top: -10%;
	z-index: 99;
}

.mm-menu.mm-pageshadow.mm-right:after {
	left: auto;
	right: 100%;
}

.mm-menu.mm-pageshadow.mm-next:after,
.mm-menu.mm-pageshadow.mm-front:after {
	content: none;
	display: none;
}

.mm-menu.mm-pageshadow:after {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


/*
	jQuery.mmenu position extension CSS
*/

.mm-menu.mm-top,
.mm-menu.mm-bottom {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
}

.mm-menu.mm-right {
	left: auto;
	right: 0;
}

.mm-menu.mm-bottom {
	top: auto;
	bottom: 0;
}

html.mm-right.mm-opening .mm-slideout {
	-webkit-transform: translate(-80%, 0);
	-moz-transform: translate(-80%, 0);
	-ms-transform: translate(-80%, 0);
	-o-transform: translate(-80%, 0);
	transform: translate(-80%, 0);
}

@media all and (max-width: 175px) {
	html.mm-right.mm-opening .mm-slideout {
		-webkit-transform: translate(-140px, 0);
		-moz-transform: translate(-140px, 0);
		-ms-transform: translate(-140px, 0);
		-o-transform: translate(-140px, 0);
		transform: translate(-140px, 0);
	}
}

@media all and (min-width: 550px) {
	html.mm-right.mm-opening .mm-slideout {
		-webkit-transform: translate(-440px, 0);
		-moz-transform: translate(-440px, 0);
		-ms-transform: translate(-440px, 0);
		-o-transform: translate(-440px, 0);
		transform: translate(-440px, 0);
	}
}


/*
	jQuery.mmenu z-position extension CSS
*/

html.mm-front .mm-slideout {
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	transform: none !important;
	z-index: 0 !important;
}

.mm-menu.mm-front {
	z-index: 1;
}

.mm-menu.mm-front,
.mm-menu.mm-next {
	-webkit-transition: -webkit-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
	transition: transform 0.4s ease;
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	-o-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
	-webkit-transform: translate3d(100%, 0, 0);
	-moz-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	-o-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}

.mm-menu.mm-top {
	-webkit-transform: translate3d(0, -100%, 0);
	-moz-transform: translate3d(0, -100%, 0);
	-ms-transform: translate3d(0, -100%, 0);
	-o-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
}

.mm-menu.mm-bottom {
	-webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mm-menu.mm-top,
.mm-menu.mm-bottom {
	height: 80%;
	min-height: 140px;
	max-height: 880px;
}


/*
	jQuery.mmenu themes extension CSS
*/

.mm-menu.mm-theme-dark {
	background: #333333;
	border-color: rgba(0, 0, 0, 0.15);
	color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-navbar>*,
.mm-menu.mm-theme-dark .mm-navbar a {
	color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
	border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview {
	border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-listview>li .mm-next:after,
.mm-menu.mm-theme-dark .mm-listview>li .mm-arrow:after {
	border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>span {
	background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>.mm-panel {
	background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark .mm-divider {
	background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark label.mm-check:before {
	border-color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark em.mm-counter {
	color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-fixeddivider span {
	background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-pageshadow.mm-theme-dark:after {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mm-menu.mm-theme-dark .mm-search input {
	background: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-noresultsmsg {
	color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-indexer a {
	color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark label.mm-toggle {
	background: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark label.mm-toggle:before {
	background: #333333;
}

.mm-menu.mm-theme-dark input.mm-toggle:checked~label.mm-toggle {
	background: #4bd963;
}

.mm-menu.mm-theme-white {
	background: white;
	border-color: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-navbar>*,
.mm-menu.mm-theme-white .mm-navbar a {
	color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
	border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview {
	border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-listview>li .mm-next:after,
.mm-menu.mm-theme-white .mm-listview>li .mm-arrow:after {
	border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview>li.mm-selected>span {
	background: rgba(0, 0, 0, 0.05);
}

.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>.mm-panel {
	background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white .mm-divider {
	background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white label.mm-check:before {
	border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white em.mm-counter {
	color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-fixeddivider span {
	background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-pageshadow.mm-theme-white:after {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mm-menu.mm-theme-white .mm-search input {
	background: rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-noresultsmsg {
	color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-indexer a {
	color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white label.mm-toggle {
	background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white label.mm-toggle:before {
	background: white;
}

.mm-menu.mm-theme-white input.mm-toggle:checked~label.mm-toggle {
	background: #4bd963;
}

.mm-menu.mm-theme-black {
	background: black;
	border-color: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-navbar>*,
.mm-menu.mm-theme-black .mm-navbar a {
	color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
	border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview {
	border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-listview>li .mm-next:after,
.mm-menu.mm-theme-black .mm-listview>li .mm-arrow:after {
	border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview>li.mm-selected>span {
	background: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>.mm-panel {
	background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-divider {
	background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black label.mm-check:before {
	border-color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black em.mm-counter {
	color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-fixeddivider span {
	background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-pageshadow.mm-theme-black:after {
	content: none;
	display: none;
}

.mm-menu.mm-theme-black .mm-search input {
	background: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-noresultsmsg {
	color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-indexer a {
	color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black label.mm-toggle {
	background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black label.mm-toggle:before {
	background: black;
}

.mm-menu.mm-theme-black input.mm-toggle:checked~label.mm-toggle {
	background: #4bd963;
}


/*
	jQuery.mmenu tileview extension CSS
*/

.mm-menu.mm-tileview .mm-listview:after,
.mm-menu .mm-tileview.mm-listview:after {
	content: '';
	display: block;
	clear: both;
}

.mm-menu.mm-tileview .mm-listview>li,
.mm-menu .mm-tileview.mm-listview>li {
	width: 50%;
	height: 0;
	padding: 50% 0 0 0;
	float: left;
	position: relative;
}

.mm-menu.mm-tileview .mm-listview>li:after,
.mm-menu .mm-tileview.mm-listview>li:after {
	left: 0;
	top: 0;
	border-right-width: 1px;
	border-right-style: solid;
	z-index: -1;
}

.mm-menu.mm-tileview .mm-listview>li.mm-tile-xs,
.mm-menu .mm-tileview.mm-listview>li.mm-tile-xs {
	width: 12.5%;
	padding-top: 12.5%;
}

.mm-menu.mm-tileview .mm-listview>li.mm-tile-s,
.mm-menu .mm-tileview.mm-listview>li.mm-tile-s {
	width: 25%;
	padding-top: 25%;
}

.mm-menu.mm-tileview .mm-listview>li.mm-tile-l,
.mm-menu .mm-tileview.mm-listview>li.mm-tile-l {
	width: 75%;
	padding-top: 75%;
}

.mm-menu.mm-tileview .mm-listview>li.mm-tile-xl,
.mm-menu .mm-tileview.mm-listview>li.mm-tile-xl {
	width: 100%;
	padding-top: 100%;
}

.mm-menu.mm-tileview .mm-listview>li>a,
.mm-menu.mm-tileview .mm-listview>li>span,
.mm-menu .mm-tileview.mm-listview>li>a,
.mm-menu .mm-tileview.mm-listview>li>span {
	line-height: 1px;
	text-align: center;
	padding: 50% 10px 0 10px;
	margin: 0;
	position: absolute;
	top: 0;
	right: 1px;
	bottom: 1px;
	left: 0;
}

.mm-menu.mm-tileview .mm-listview>li>.mm-next,
.mm-menu .mm-tileview.mm-listview>li>.mm-next {
	width: auto;
}

.mm-menu.mm-tileview .mm-listview>li>.mm-next:before,
.mm-menu.mm-tileview .mm-listview>li>.mm-next:after,
.mm-menu .mm-tileview.mm-listview>li>.mm-next:before,
.mm-menu .mm-tileview.mm-listview>li>.mm-next:after {
	content: none;
	display: none;
}

.mm-menu.mm-tileview .mm-panel {
	padding-left: 0;
	padding-right: 0;
}

.mm-menu.mm-tileview .mm-panel:after {
	content: none;
	display: none;
}

.mm-menu.mm-tileview .mm-listview {
	margin: 0;
}

body {
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 992px) {
	.container {
		width: 100%;
	}
}

@media (min-width: 1054px) {
	.container {
		width: 1024px;
	}
}

@media (min-width: 1260px) {
	.container {
		width: 1230px;
	}
}

img {
	display: block;
	max-width: 100%;
}

.guide_con {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.banner_con {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.banner_con .ydbanner {
	width: 100%;
}

.banner_con .ydbanner img {
	width: 100%;
	font-size: 0;
}

.banner_con .ydbanner .slick-dots {
	bottom: 19%;
}

.banner_con .ydbanner .slick-dots li button {
	width: 20px;
	height: 20px;
	border: 1px solid #1f9bde;
	background: none;
}

@media (max-width: 767px) {
	.banner_con .ydbanner .slick-dots li button {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 480px) {
	.banner_con .ydbanner .slick-dots li button {
		width: 8px;
		height: 8px;
	}
}

@media (max-width: 360px) {
	.banner_con .ydbanner .slick-dots li button {
		width: 5px;
		height: 5px;
	}
}

.banner_con .ydbanner .slick-dots li.slick-active button {
	background: #1f9bde;
}

.guide_bottom {
	line-height: 0;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 9;
	font-size: 0;
}

@media (max-width: 767px) {
	.guide_con {
		position: relative;
	}
	.banner_con {
		position: relative;
	}
	.guide_bottom {
		position: absolute;
	}
}

.video_box {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
}

.video_box .box {
	max-width: 1200px;
	width: 100%;
	height: 676px;
	position: relative;
	margin-left: 50%;
	transform: translateX(-50%);
	top: 50%;
	margin-top: -338px;
}

.video_box .box .guanbi {
	position: absolute;
	right: 0;
	top: -27px;
	width: 50px;
	height: 50px;
}

.header {
	z-index: 9;
	padding: 38px 3.90625% 0;
	width: 100%;
	position: absolute;
	left: 0;
	top: 17px;
}

.header .logo {
	display: table;
	width: 174px;
	height: 60px;
	float: left;
}

.header .nav {
	width: 942px;
	position: absolute;
	left: 50%;
	top: 38px;
	margin-left: -471px;
}

.header .nav ul li {
	line-height: 60px;
	float: left;
	margin: 0 30px;
}

#oli .nav_box {
	width: 50%;
}

#oli .nav_box a {
	padding: 0 3%;
}

#oli2 .nav_box {
	width: 16%;
}

#oli2 .nav_box a {
	padding: 0 6%;
}

#oli3 .nav_box {
	width: 30%;
	margin-right: 26.5%;
}

#oli3 .nav_box a {
	padding: 0 3%;
}

@media only screen and (max-width:1440px) {
	#oli3 .nav_box {
		width: 35%;
		margin-right: 25%;
	}
	#oli2 .nav_box {
		width: 19%;
	}
}

@media only screen and (max-width:1200px) {
	#oli2 .nav_box {
		margin-right: 36%;
	}
}

@media only screen and (max-width:1150px) {
	#oli3 .nav_box a {
		padding: 0 3%;
	}
	#oli3 .nav_box {
		width: 35%;
		margin-right: 21%;
	}
}

.header .nav ul li a {
	display: block;
	color: #ffffff;
	font-size: 16px;
}

.header .nav ul li.cur,
.header .nav ul li:hover .jiao {
	display: block;
}


/*.header .nav ul > li { position: relative;}*/

.header .nav ul>li .navbox {
	display: none;
	z-index: 10;
	position: absolute;
	left: -63%;
	top: 60px;
	background: #443f37;
	padding: 15px;
}

.header .nav ul>li .navbox a {
	display: block;
	color: #fff;
	font-size: 13px;
	padding: 0 2%;
	line-height: 35px;
	float: left;
	height: 100%;
}

.header .nav ul>li .navbox a:hover {
	color: #e9e5de;
}

.header .nav ul>li .navbox {
	padding: 0px;
	height: 35px;
	background: rgba(255, 255, 255, 0.298039);
}

.header .nav ul li:hover .header .nav ul>li .navbox {
	display: block;
}

.header .nav ul li a {
	position: relative;
}

@media only screen and (max-width:1200px) {
	.header .nav ul>li .navbox a {
		padding: 0 1%;
	}
	.header .nav ul>li .navbox {
		left: -65%;
	}
}

.header .nav ul li .jiao {
	border: 10px solid rgba(0, 0, 0, 0);
	border-bottom: 10px solid rgba(255, 255, 255, .3);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}

.nav_box {
	width: 41%;
	height: 100%;
	margin: auto;
}

.header .search_btn {
	float: right;
	width: 182px;
	height: 34px;
	background: rgba(255, 255, 255, 0.35);
	border-radius: 50px;
	margin-top: 13px;
}

.header .search_btn input {
	float: left;
	width: 146px;
	height: 34px;
	background: none;
	border: none;
	color: #fff;
	border-radius: 50px 0 0 50px;
	padding: 0 12px;
}

.header .search_btn .btn {
	background: url(../images/search_btn.png) no-repeat center center;
	width: 19px;
	height: 19px;
	border: none;
	float: left;
	margin-top: 7px;
}

.header .navbtn {
	position: absolute;
	right: 15px;
	top: 50%;
	width: 4%;
	margin-top: -2%;
	overflow: hidden;
	z-index: 999;
	line-height: 0;
	display: none;
}

@media (max-width: 1440px) {
	.header .nav {
		width: 714px;
		margin-left: -357px;
	}
	.header .nav ul li {
		margin: 0 15px;
	}
}

@media (max-width: 1152px) {
	.header .nav {
		width: 616px;
		margin-left: -308px;
	}
	.header .nav ul li {
		margin: 0 10px;
	}
}

@media (max-width: 1024px) {
	.header {
		padding: 38px 15px 0;
	}
	.header .nav {
		left: auto;
		right: 0;
		margin-left: 0;
		margin-right: 15px;
		width: 606px;
	}
	.header .nav ul li:last-child {
		margin-right: 0;
	}
	.header .search_btn {
		display: none;
	}
}

@media (max-width: 991px) {
	.header {
		padding-top: 0;
		margin-top: -10px;
	}
	.header .logo {
		width: 18%;
		height: auto;
	}
	.header .nav {
		display: none;
	}
	.header .navbtn {
		display: block;
	}
}

@media (max-width: 414px) {
	.header .logo {
		width: 22%;
	}
	.header .navbtn {
		width: 6%;
		margin-top: -3%;
	}
}

.footer {
	background: #111214;
}

.footer .footer_nav {
	padding-top: 110px;
	padding-bottom: 30px;
	background: #181a1c;
}

.footer .footer_nav ul li {
	float: left;
}

.footer .footer_nav ul li a {
	color: #fff;
	font-size: 16px;
	transition: all 0.5s;
}

.footer .footer_nav ul li a:hover {
	color: rgba(255, 255, 255, .8)
}

.footer .footer_nav ul span {
	padding: 0 12px;
	float: left;
	color: #fff;
}

.footer .footer_nav ul li span {
	display: block;
	color: #bbbbbb;
	font-size: 15px;
	font-weight: bold;
}

.footer .footer_nav ul li span a {
	color: inherit;
}

.footer .footer_nav ul li span a:hover {
	color: #fff;
}

.footer .footer_nav ul li span i {
	display: none;
	float: right;
	font-style: normal;
	font-size: 1.6rem;
	font-weight: normal;
	color: #777;
}

.footer .footer_nav ul li .n_box {
	margin-top: 10px;
}

.footer .footer_nav ul li .n_box a {
	display: block;
	color: #afafaf;
	font-size: 13px;
	line-height: 22px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.footer .footer_nav ul li .n_box a:hover {
	color: #fff;
}

.footer .banquan {
	text-align: center;
	padding: 22px 0;
	color: #969696;
	font-size: 12px;
}

@media (max-width: 767px) {
	.footer .footer_nav ul li {
		width: 100%;
		border-bottom: 1px solid #353535;
		line-height: 4em;
		font-size: 13px;
	}
	.footer .footer_nav ul li span {
		cursor: pointer;
	}
	.footer .footer_nav ul li span i {
		display: inline-block;
	}
	.footer .footer_nav ul li .n_box {
		display: none;
	}
	.footer .footer_nav ul li .n_box a {
		line-height: 2em;
	}
	.footer .footer_nav li.on {
		padding-bottom: 15px;
	}
	.footer .footer_nav li.on span i {
		transform: rotate(-45deg);
	}
	.footer .footer_nav li.on .n_box {
		margin-top: 0;
	}
}

.banner_btn {
	position: relative;
}

.banner_btn .num {
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: #fff;
	z-index: 9;
}

.banner_btn .video_more {
	position: absolute;
	right: 0;
	bottom: 0;
	margin-right: 3.90625%;
	margin-bottom: 3%;
	color: #fff;
	font-family: arial;
	text-transform: uppercase;
	font-size: 16px;
	z-index: 9;
	padding-left: 35px;
	font-weight: bold;
}

.banner_btn .video_more:before {
	content: "";
	position: absolute;
	left: 0;
	top: -4px;
	width: 25px;
	height: 25px;
	background: url(../images/video_img.png) no-repeat left center;
}

@media (max-width: 1024px) {
	.banner_btn .video_more {
		margin-right: 15px;
	}
}

@media (max-width: 991px) {
	.banner_btn .video_more {
		display: none;
	}
}

.banner {
	position: relative;
	z-index: 8;
	width: 100%;
	/* height: 680px;*/
}

.banner img {
	width: 100%;
}

.banner .text {
	position: relative;
	width: 100%;
}

.banner .text .img_bg {
	background: url(../images/banner_bg.png) no-repeat left center;
	position: absolute;
	left: 0;
	top: 0;
	width: 45.5%;
	height: 100%;
	background-size: cover;
}

.banner .text .img_bg .t {
	width: 57.89%;
	float: right;
	margin-right: 7.2%;
	margin-top: 42%;
}

.banner .slick-dots {
	width: 55px;
	bottom: auto;
	top: 50%;
	left: auto;
	right: 0;
	margin-right: 3.90625%;
	transform: translateY(-50%);
}

.banner .slick-dots li {
	float: right;
	margin: 6px 0;
}

.banner .slick-dots li button {
	float: right;
	width: 28px;
	height: 3px;
	background: #fff;
}

.banner .slick-dots li.slick-active button {
	width: 55px;
}

@media (max-width: 1024px) {
	.banner .slick-dots {
		margin-right: 15px;
	}
}

@media (max-width: 991px) {
	.banner .slick-dots {
		width: 100%;
		bottom: 20px;
		top: auto;
		left: 0;
		right: auto;
		margin-right: 0;
		transform: none;
	}
	.banner .slick-dots li {
		float: none;
	}
	.banner .slick-dots li button {
		width: 10px;
		height: 10px;
		margin: 0 5px;
		background: none;
		border: 1px solid #fff;
		border-radius: 50%;
	}
	.banner .slick-dots li.slick-active button {
		background: #fff;
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 480px) {
	.banner .slick-dots {
		bottom: 10px;
	}
	.banner .slick-dots li button {
		width: 6px;
		height: 6px;
	}
	.banner .slick-dots li.slick-active button {
		width: 6px;
		height: 6px;
	}
}

.home_tit {
	width: 346px;
	height: 126px;
	border: 8px solid #efefef;
	margin-left: 35px;
	padding-top: 16px;
}

.home_tit .y {
	margin-left: -43px;
	color: #888888;
	font-size: 18px;
	text-transform: uppercase;
}

.home_tit .t {
	margin-top: 8px;
	margin-left: -43px;
	color: #555555;
	font-size: 20px;
}

.home_tit .t span {
	display: inline-block;
	margin-right: 6px;
	color: #222222;
	font-size: 45px;
	font-family: arial;
	text-transform: uppercase;
}

@media (max-width: 1152px) {
	.home_tit {
		width: 300px;
		height: 110px;
		border: 5px solid #efefef;
	}
	.home_tit .y {
		margin-left: -43px;
		font-size: 16px;
	}
	.home_tit .t {
		margin-top: 8px;
		margin-left: -43px;
		font-size: 18px;
	}
	.home_tit .t span {
		font-size: 30px;
	}
}

@media (max-width: 768px) {
	.home_tit {
		width: 225px;
		height: 92px;
		border: 3px solid #efefef;
		margin-left: 20px;
	}
	.home_tit .y {
		margin-left: -23px;
		font-size: 15px;
	}
	.home_tit .t {
		margin-top: 8px;
		margin-left: -23px;
		font-size: 14px;
	}
	.home_tit .t span {
		font-size: 22px;
	}
}

.home_div {
	background: url(../images/home_bg.jpg) no-repeat center top;
	padding: 114px 0 80px;
}

.home_div .home_csae_img {
	width: 47.5%;
	float: right;
}

.home_div .home_csae_img .slick-prev,
.home_div .home_csae_img .slick-next {
	width: 68px;
	height: 52px;
	border: none;
	top: auto;
	bottom: 0;
	margin-top: 0;
}

.home_div .home_csae_img .slick-prev {
	background: url(../images/prev.jpg) no-repeat center center;
	left: auto;
	right: 68px;
}

.home_div .home_csae_img .slick-next {
	background: url(../images/next.jpg) no-repeat center center;
	right: 0;
}

.home_div .home_cast_text {
	float: left;
	width: 41.5%;
}

.home_div .home_cast_text .con_list {
	margin-top: 47px;
}

.home_div .home_cast_text .con_list a {
	display: block;
	float: left;
	border: 1px solid #eeeeee;
	height: 38px;
	line-height: 36px;
	color: #666666;
	font-size: 14px;
	min-width: 96px;
	text-align: center;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	margin: 2px 3px 2px 0;
}

.home_div .home_cast_text .con_list a:hover,
.home_div .home_cast_text .con_list a.cur {
	background: #081f63;
	color: #fff;
}

.home_div .home_cast_text .bottom_t {
	margin-top: 26px;
}

.home_div .home_cast_text .bottom_t h3 {
	font-weight: normal;
	color: #222222;
	font-size: 30px;
	padding-bottom: 5%;
	position: relative;
}

.home_div .home_cast_text .bottom_t h3:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 15%;
	height: 2px;
	background: #081f63;
}

.home_div .home_cast_text .bottom_t .t {
	margin-top: 32px;
	color: #666666;
	font-size: 15px;
	line-height: 25px;
	height: 150px;
	overflow: hidden;
}

.home_div .home_cast_text .bottom_t .more {
	display: inline-block;
	color: #081f63;
	font-size: 13px;
	font-family: arial;
	line-height: 34px;
	padding-right: 35px;
	background: url(../images/more_icon.png) no-repeat right center;
}

@media (max-width: 1152px) {
	.home_div {
		padding: 60px 0;
	}
	.home_div .home_cast_text {
		width: 48.5%;
	}
	.home_div .home_cast_text .con_list {
		margin-top: 5%;
	}
	.home_div .home_cast_text .bottom_t {
		margin-top: 4%;
	}
	.home_div .home_cast_text .bottom_t h3 {
		font-size: 24px;
		padding-bottom: 3%;
	}
	.home_div .home_cast_text .bottom_t .t {
		margin-top: 10px;
		line-height: 24px;
		height: 72px;
		overflow: hidden;
	}
	.home_div .home_cast_text .bottom_t .more {
		margin-top: 6%;
	}
}

@media (max-width: 1024px) {
	.home_div .home_cast_text .bottom_t .more {
		margin-top: 4%;
	}
}

@media (max-width: 768px) {
	.home_div .home_cast_text {
		width: 100%;
	}
	.home_div .home_cast_text .bottom_t h3 {
		font-size: 18px;
	}
	.home_div .home_cast_text .bottom_t .t {
		font-size: 14px;
	}
	.home_div .home_csae_img {
		margin-top: 5%;
		width: 100%;
	}
	.home_div .home_csae_img img {
		width: 100%;
	}
	.home_div .home_csae_img .slick-prev,
	.home_div .home_csae_img .slick-next {
		width: 50px;
		height: 38px;
	}
	.home_div .home_csae_img .slick-prev {
		background-size: 100% 100%;
		left: auto;
		right: 50px;
	}
	.home_div .home_csae_img .slick-next {
		background-size: 100% 100%;
	}
}

@media (max-width: 414px) {
	.home_div .home_cast_text .con_list a {
		width: 32%;
		min-width: 0;
		margin: 1% 2% 1% 0;
	}
	.home_div .home_cast_text .con_list a:nth-child(3n) {
		margin-right: 0;
	}
}

.home_div2 {
	position: relative;
	padding-top: 38%;
}

.home_div2 .home_solution_bg .img {
	line-height: 0;
	font-size: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../images/home_img2.jpg) no-repeat center center;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/home_img2.jpg', sizingMethod='scale');
}

.home_div2 .home_solution_bg .icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 44.59375%;
	height: 100%;
	background: #081f63e6;
}

.home_div2 .home_solution_con {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	margin-top: 5.4%;
}

.home_div2 .home_solution_con .home_text_con {
	float: right;
	background: #ffffff url(../images/home_bg_g1.jpg) no-repeat right top;
	width: 61.17%;
	padding: 6% 6% 2%;
}

.home_div2 .home_solution_con .home_text_con ol li {
	float: left;
	width: 50%;
	padding-right: 5%;
	margin-bottom: 7%;
}

.home_div2 .home_solution_con .home_text_con ol li .img {
	width: 56px;
	height: 59px;
}

.home_div2 .home_solution_con .home_text_con ol li .bt {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	margin-top: 10px;
	color: #333333;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	padding-bottom: 15px;
}

.home_div2 .home_solution_con .home_text_con ol li .bt span {
	text-transform: uppercase;
	font-size: 15px;
	font-family: arial;
	display: inline-block;
	margin-left: 5px;
}

.home_div2 .home_solution_con .home_text_con ol li .bt:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 22px;
	height: 1px;
	background: #081f63;
}

.home_div2 .home_solution_con .home_text_con ol li .t {
	margin-top: 10px;
	color: #666666;
	font-size: 14px;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
}

.home_div2 .home_solution_con .home_text_con .slick-dots {
	width: 12px;
	bottom: auto;
	top: 50%;
	right: 0;
	margin-right: 3.90625%;
	transform: translateY(-50%);
}

.home_div2 .home_solution_con .home_text_con .slick-dots li {
	margin: 5px 0;
}

.home_div2 .home_solution_con .home_text_con .slick-dots li button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #999999;
	border: 3px solid #fff;
}

.home_div2 .home_solution_con .home_text_con .slick-dots li.slick-active button {
	border: 3px solid #999999;
	background: #fff;
}

.home_div2 .home_solution_con .home_text_tit {
	float: left;
	width: 32.33%;
}

.home_div2 .home_solution_con .home_text_tit .home_tit {
	border: 8px solid rgba(255, 255, 255, 0.1);
}

.home_div2 .home_solution_con .home_text_tit .home_tit .y {
	margin-left: -43px;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
}

.home_div2 .home_solution_con .home_text_tit .home_tit .t {
	color: #fff;
}

.home_div2 .home_solution_con .home_text_tit .home_tit .t span {
	color: #fff;
}

.home_div2 .home_solution_con .home_text_tit .bottom_t {
	margin-top: 15%;
}

.home_div2 .home_solution_con .home_text_tit .bottom_t h3 {
	color: #ffffff;
	font-size: 30px;
	font-weight: normal;
	padding-bottom: 7%;
	position: relative;
}

.home_div2 .home_solution_con .home_text_tit .bottom_t h3:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 15%;
	height: 2px;
	background: rgba(255, 255, 255, .2);
}

.home_div2 .home_solution_con .home_text_tit .bottom_t .t {
	margin-top: 32px;
	color: #fefefe;
	font-size: 16px;
	line-height: 25px;
	height: 100px;
	overflow: hidden;
}

.home_div2 .home_solution_con .home_text_tit .bottom_t .more {
	margin-top: 15%;
	display: inline-block;
	color: #fff;
	font-size: 13px;
	font-family: arial;
	background: url(../images/more_icon2.png) no-repeat right center;
	padding-right: 35px;
	height: 36px;
	line-height: 34px;
}

@media (max-width: 1600px) {
	.home_div2 {
		padding-top: 43%;
	}
}

@media (max-width: 1440px) {
	.home_div2 {
		padding-top: 46%;
	}
}

@media (max-width: 1366px) {
	.home_div2 {
		padding-top: 47.5%;
	}
}

@media (max-width: 1280px) {
	.home_div2 {
		padding-top: 50%;
	}
}

@media (max-width: 1152px) {
	.home_div2 {
		padding-top: 52%;
	}
	.home_div2 .home_solution_con .home_text_tit .home_tit {
		border-width: 5px;
	}
	.home_div2 .home_solution_con .home_text_tit .bottom_t h3 {
		font-size: 24px;
		padding-bottom: 5%;
	}
}

@media (max-width: 1024px) {
	.home_div2 {
		padding-top: 56%;
	}
}

@media (max-width: 991px) {
	.home_div2 {
		padding-top: 58%;
	}
	.home_div2 .home_solution_con .home_text_con ol li .bt {
		font-size: 15px;
	}
	.home_div2 .home_solution_con .home_text_con ol li .bt span {
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	.home_div2 {
		padding: 1% 0 6%;
		background: #081f63;
	}
	.home_div2 .home_solution_bg {
		display: none;
	}
	.home_div2 .home_solution_con {
		position: relative;
	}
	.home_div2 .home_solution_con .home_text_tit {
		width: 100%;
	}
	.home_div2 .home_solution_con .home_text_tit .home_tit {
		border-width: 3px;
	}
	.home_div2 .home_solution_con .home_text_tit .home_tit .y {
		margin-left: -23px;
		font-size: 15px;
	}
	.home_div2 .home_solution_con .home_text_tit .home_tit .t {
		margin-top: 8px;
		margin-left: -23px;
		font-size: 14px;
	}
	.home_div2 .home_solution_con .home_text_tit .home_tit .t span {
		font-size: 22px;
	}
	.home_div2 .home_solution_con .home_text_tit .bottom_t {
		margin-top: 4%;
	}
	.home_div2 .home_solution_con .home_text_tit .bottom_t h3 {
		font-size: 18px;
		padding-bottom: 3%;
	}
	.home_div2 .home_solution_con .home_text_tit .bottom_t .t {
		margin-top: 10px;
		font-size: 14px;
		height: auto;
	}
	.home_div2 .home_solution_con .home_text_tit .bottom_t .more {
		margin-top: 4%;
	}
	.home_div2 .home_solution_con .home_text_con {
		width: 100%;
		margin-top: 4%;
	}
}

.home_div3 {
	background: #fafafa url(../images/home_bg2.jpg) no-repeat center center;
	padding: 60px 0;
}

.home_div3 ol {
	margin-top: 45px;
}

.home_div3 ol li {
	position: relative;
	float: left;
	/*width: 24.479%;
  margin-right: 0.6946666%;*/
	width: 25%;
}

.home_div3 ol li:last-child {
	margin-right: 0;
}

.home_div3 ol li .text_con {
	padding-top: 101.5%;
	overflow: hidden;
	position: relative;
	margin: 0 0.3473333%;
}

.home_div3 ol li .text_con .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.home_div3 ol li .text_con .t_con {
	z-index: 2;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	text-align: center;
	padding-top: 40px;
}

.home_div3 ol li .text_con .t_con .en {
	color: #8f9ecd;
	font-size: 30px;
	font-family: arial;
	text-transform: uppercase;
	font-weight: lighter;
}

.home_div3 ol li .text_con .t_con h3 {
	margin-top: 328px;
	color: #ffffff;
	font-size: 23px;
	font-weight: inherit;
}

@media (max-width: 1600px) {
	.home_div3 ol li .text_con .t_con {
		padding-top: 12%;
	}
	.home_div3 ol li .text_con .t_con h3 {
		margin-top: 245px;
		font-size: 18px;
	}
	.home_div3 ol li .text_con .t_con .en {
		font-size: 25px;
	}
}

@media (max-width: 1440px) {
	.home_div3 ol li .text_con .t_con .en {
		font-size: 20px;
	}
	.home_div3 ol li .text_con .t_con h3 {
		margin-top: 236px;
		font-size: 17px;
	}
}

@media (max-width: 991px) {
	.home_div3 {
		padding: 6% 15px;
	}
	.home_div3 .container {
		padding: 0;
	}
	.home_div3 ol {
		margin-top: 5%;
	}
	.home_div3 ol li .text_con .t_con .en {
		font-size: 15px;
	}
	.home_div3 ol li .text_con .t_con h3 {
		margin-top: 150px;
		font-size: 10px;
	}
}

@media (max-width: 768px) {
	.home_div3 ol li {
		margin-top: 2%;
		margin-right: 0;
		width: 49%;
	}
	/*.home_div3 ol li:nth-child(2n) {
    float: right;
  }
  .home_div3 ol li:nth-child(1),
  .home_div3 ol li:nth-child(2) {
    margin-top: 0;
  }*/
}

@media (max-width: 414px) {
	.home_div3 ol li .text_con .t_con .en {
		font-size: 12px;
	}
	.home_div3 ol li .text_con .t_con h3 {
		margin-top: 120px;
		font-size: 10px;
	}
}

@media (max-width: 360px) {
	.home_div3 ol li {
		margin-right: 0;
		width: 100%;
	}
	.home_div3 ol li:nth-child(2) {
		margin-top: 2%;
	}
	.home_div3 ol li .text_con .t_con .en {
		font-size: 15px;
	}
	.home_div3 ol li .text_con .t_con h3 {
		margin-top: 88px;
		font-size: 8px;
		height: 16px;
		overflow: hidden;
	}
}

.home_div4 {
	padding: 60px 0;
}

.home_div4 ol {
	margin-top: 40px;
}

.home_div4 ol li {
	float: left;
	width: 24.6%;
	margin-right: 0.53333%;
	position: relative;
	padding-top: 31.7%;
	background-size: 100% 100%;
}

.home_div4 ol li:last-child {
	margin-right: 0;
}

.home_div4 ol li .text_con {
	background: url(../images/home_zyfw_bg.jpg) no-repeat center center;
	padding: 20% 10% 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.home_div4 ol li .text_con .yw {
	color: #aab0b5;
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	font-family: arial;
}

.home_div4 ol li .text_con .img {
	margin-top: 15%;
	width: 30%;
}

.home_div4 ol li .text_con .img span {
	display: block;
}

.home_div4 ol li .text_con .img em {
	display: none;
}

.home_div4 ol li .text_con .bt {
	margin-top: 10%;
	color: #bf9e5b;
	font-size: 28px;
	font-weight: bold;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.home_div4 ol li .text_con .t {
	margin-top: 6%;
	color: #989fa4;
	font-size: 16px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.home_div4 ol li:hover .text_con {
	height: 105%;
	margin-top: -3%;
	padding-top: 25%;
	background: url(../images/home_zyfw_bg2.jpg) no-repeat center center;
}

.home_div4 ol li:hover .text_con .yw,
.home_div4 ol li:hover .text_con .bt,
.home_div4 ol li:hover .text_con .t {
	color: #fff;
}

.home_div4 ol li:hover .text_con .img span {
	display: none;
}

.home_div4 ol li:hover .text_con .img em {
	display: block;
}

@media (max-width: 1152px) {
	.home_div4 ol li .text_con .yw {
		font-size: 14px;
	}
	.home_div4 ol li .text_con .bt {
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	.home_div4 ol li .text_con .yw {
		font-size: 13px;
	}
	.home_div4 ol li .text_con .bt {
		font-size: 17px;
	}
	.home_div4 ol li .text_con .t {
		font-size: 13px;
	}
}

@media (max-width: 991px) {
	.home_div4 ol {
		margin-top: 4.5%;
	}
}

@media (max-width: 768px) {
	.home_div4 ol li {
		margin-right: 0;
		margin-top: 2%;
		padding-top: 55.7%;
		width: 49%;
	}
	.home_div4 ol li:nth-child(2n) {
		float: right;
	}
	.home_div4 ol li:nth-child(1),
	.home_div4 ol li:nth-child(2) {
		margin-top: 0;
	}
	.home_div4 ol li .text_con {
		background: url(../images/home_zyfw_bg.jpg) no-repeat center center;
		background-size: cover;
		background-size: 100% 100%;
	}
	.home_div4 ol li .text_con .yw {
		font-size: 16px;
	}
	.home_div4 ol li .text_con .img {
		margin-top: 10%;
	}
	.home_div4 ol li .text_con .bt {
		margin-top: 10%;
		font-size: 20px;
	}
	.home_div4 ol li .text_con .t {
		font-size: 14px;
	}
	.home_div4 ol li:hover .text_con {
		height: 100%;
		margin-top: 0;
		padding-top: 20%;
		background: url(../images/home_zyfw_bg.jpg) no-repeat center center;
		background-size: cover;
		background-size: 100% 100%;
	}
	.home_div4 ol li:hover .text_con .yw {
		color: #aab0b5;
	}
	.home_div4 ol li:hover .text_con .bt {
		color: #bf9e5b;
	}
	.home_div4 ol li:hover .text_con .t {
		color: #989fa4;
	}
	.home_div4 ol li:hover .text_con .img span {
		display: block;
	}
	.home_div4 ol li:hover .text_con .img em {
		display: none;
	}
}

@media (max-width: 480px) {
	.home_div4 ol li .text_con {
		padding-top: 13%;
	}
	.home_div4 ol li .text_con .yw {
		font-size: 12px;
		line-height: 18px;
	}
	.home_div4 ol li .text_con .img {
		margin-top: 8%;
	}
	.home_div4 ol li .text_con .bt {
		margin-top: 8%;
		font-size: 18px;
	}
	.home_div4 ol li .text_con .t {
		font-size: 14px;
	}
	.home_div4 ol li:hover .text_con {
		padding-top: 13%;
	}
}

@media (max-width: 414px) {
	.home_div4 ol li {
		padding-top: 55%;
	}
	.home_div4 ol li .text_con .yw {
		font-size: 10px;
		line-height: 18px;
	}
}

@media (max-width: 375px) {
	.home_div4 ol li {
		padding-top: 56%;
	}
	.home_div4 ol li .text_con .yw {
		font-size: 8px;
		line-height: 14px;
	}
	.home_div4 ol li .text_con .bt {
		font-size: 15px;
	}
	.home_div4 ol li .text_con .t {
		font-size: 12px;
	}
}

@media (max-width: 360px) {
	.home_div4 ol li {
		width: 100%;
		padding-top: 94%;
	}
	.home_div4 ol li:nth-child(2) {
		margin-top: 2%;
	}
	.home_div4 ol li .text_con .yw {
		font-size: 14px;
		line-height: 18px;
	}
	.home_div4 ol li .text_con .bt {
		font-size: 18px;
	}
	.home_div4 ol li .text_con .t {
		font-size: 14px;
	}
}

.home_div5 {
	padding: 65px 0 70px;
	position: relative;
}

.home_div5 .bg {
	position: absolute;
	right: 0;
	bottom: 89px;
	width: 29.479%;
	z-index: -1;
}

.home_div5 .left {
	float: left;
	width: 36.67%;
}

.home_div5 .left .text_c {
	margin-top: 13%;
}

.home_div5 .left .text_c .data {
	color: #888888;
	font-size: 14px;
	font-weight: bold;
}

.home_div5 .left .text_c .data span {
	display: inline-block;
	float: left;
	margin-right: 16px;
	margin-right: 4%;
}

.home_div5 .left .text_c .bt {
	margin-top: 8px;
	display: inline-block;
	color: #333333;
	font-size: 23px;
	font-weight: bold;
	line-height: 30px;
	height: 60px;
	overflow: hidden;
}

.home_div5 .left .text_c .more {
	margin-top: 16px;
	display: inline-block;
	color: #888888;
	background: url(../images/more_icon3.png) no-repeat right center;
	padding-right: 35px;
	height: 36px;
	text-align: center;
	line-height: 34px;
}

.home_div5 .left .text_c .img {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
}

.home_div5 .left .text_c .img .icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 36%;
	padding-top: 8%;
	background: #fff;
}

@media (max-width: 1052px) {
	.home_div5 .left .text_c .img {
		margin-top: 18px;
	}
}

.home_div5 .right {
	float: right;
	width: 60.83%;
}

.home_div5 .right ol {
	margin-top: -3.8%;
}

.home_div5 .right ol li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #d9d9d9;
	padding: 3.9% 8%;
}

.home_div5 .right ol li a {
	display: block;
	width: 100%;
	height: 100%;
}

.home_div5 .right ol li .data {
	color: #888888;
	font-size: 14px;
	font-weight: bold;
}

.home_div5 .right ol li .data span {
	display: inline-block;
	float: left;
	margin-right: 16px;
	margin-right: 4%;
}

.home_div5 .right ol li .bt {
	margin-top: 8px;
	color: #333333;
	font-size: 18px;
	font-weight: bold;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.home_div5 .right ol li .more {
	margin-top: 16px;
	display: inline-block;
	color: #888888;
	background: url(../images/more_icon3.png) no-repeat right center;
	padding-right: 35px;
	height: 36px;
	text-align: center;
	line-height: 34px;
}

.home_div5 .right ol li:last-child {
	border-bottom: none;
}

.home_div5 .right ol li:hover {
	background: url(../images/home_news_bg.jpg) no-repeat center center;
	background-size: 100% 100%;
	background: cover;
}

.home_div5 .right ol li:hover .data,
.home_div5 .right ol li:hover .bt,
.home_div5 .right ol li:hover .more {
	color: #fff;
}

@media (max-width: 1152px) {
	.home_div5 {
		padding-bottom: 60px;
	}
	.home_div5 .bg {
		bottom: 60px;
	}
	.home_div5 .left .text_c {
		margin-top: 15%;
	}
	.home_div5 .left .text_c .bt {
		font-size: 18px;
	}
	.home_div5 .right ol li .bt {
		font-size: 16px;
	}
}

@media (max-width: 1024px) {
	.home_div5 .left .text_c {
		margin-top: 16%;
	}
	.home_div5 .left .text_c .bt {
		font-size: 16px;
	}
	.home_div5 .left .text_c .img .icon {
		width: 45%;
	}
	.home_div5 .right ol li .bt {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.home_div5 .left {
		width: 100%;
	}
	.home_div5 .left .text_c {
		margin-top: 20px;
	}
	.home_div5 .left .text_c .bt {
		height: auto;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		display: block;
	}
	.home_div5 .left .text_c .more {
		margin-top: 15px;
	}
	.home_div5 .left .text_c .img {
		margin-top: 20px;
	}
	.home_div5 .left .text_c .img .icon {
		display: none;
	}
	.home_div5 .right {
		width: 100%;
		margin-top: 5%;
	}
	.home_div5 .right ol li {
		padding: 3.9% 0;
	}
	.home_div5 .right ol li:hover {
		background: none;
	}
	.home_div5 .right ol li:hover .data {
		color: #888888;
	}
	.home_div5 .right ol li:hover .bt {
		color: #333333;
	}
	.home_div5 .right ol li:hover .more {
		color: #007cbc;
	}
}

@media (max-width: 991px) {
	.home_div,
	.home_div4,
	.home_div5 {
		padding: 6% 0;
	}
}

.nybanner {
	position: relative;
	width: 100%;
}

.nybanner .j-down {
	position: absolute;
	left: 18.75%;
	bottom: 27%;
	width: 10.729%;
}


/*.about_banner {
  line-height: 0;
}*/

.case_banner {
	line-height: 0;
}

.menu {
	overflow: hidden;
	background: #f4f4f4;
}

.menu>ul li {
	width: 20%;
	float: left;
	text-align: center;
	height: 58px;
	line-height: 58px;
	font-size: 16px;
	/*border-right: 1px solid #e6e6e6;*/
}

.menu ul li a {
	cursor: auto;
}

.menu ul li.cur a {
	cursor: pointer;
}

.menu ul li:last-child {
	border-right: none;
}

.menu ul li a {
	display: block;
	width: 100%;
	color: #686868;
}

.menu ul li.cur:hover {
	background: #081f63;
}

.menu ul li.cur {
	background: #081f63;
}

.menu ul li.cur a:hover {
	color: #fff;
}

.menu ul li.cur a {
	color: #fff;
}

@media (max-width: 768px) {
	.menu ul li {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.menu ul li {
		font-size: 14px;
		line-height: 42px;
	}
}

@media (max-width: 320px) {
	.menu ul li {
		font-size: 12px;
		line-height: 36px;
		height: 36px;
	}
}

.jjfa_menu ul li {
	width: 16.6%;
}

@media (max-width: 991px) {
	.jjfa_menu ul li {
		width: 20%;
		border-bottom: 1px solid #e6e6e6;
	}
	.jjfa_menu ul li:last-child {
		border-right: 1px solid #e6e6e6;
	}
}

@media (max-width: 414px) {
	.jjfa_menu ul li {
		width: 33.33333333%;
	}
	.jjfa_menu ul li:last-child {
		border-right: none;
	}
}

.about_div {
	margin: 82px 0 110px;
}

.about_div .left {
	width: 56.42%;
	float: left;
}

.about_div .left .yw {
	color: #f3f2f2;
	font-size: 43px;
	font-family: arial;
	text-transform: uppercase;
	font-weight: bold;
}

.about_div .left .yw span {
	display: inline-block;
	margin-top: -2%;
	font-size: 112px;
}

.about_div .left .bt {
	margin-top: -1.7%;
	color: #081f63;
	font-size: 30px;
}

.about_div .left .text {
	margin-top: 5%;
	background: #f9f9f9;
	color: #777777;
	font-size: 15px;
	line-height: 25px;
	padding: 5%;
}

.about_div .left .text p {
	line-height: 2;
	margin-bottom: 2em;
}

.about_div .right {
	margin-top: 5%;
	float: right;
	width: 43.58%;
}

@media (max-width: 1152px) {
	.about_div {
		margin: 60px 0;
	}
	.about_div .left .yw {
		font-size: 36px;
	}
	.about_div .left .yw span {
		font-size: 72px;
	}
	.about_div .left .bt {
		font-size: 24px;
	}
	.about_div .left .text {
		margin-top: 3%;
		padding: 3%;
	}
}

@media (max-width: 991px) {
	.about_div {
		margin: 6% 0;
	}
}

@media (max-width: 768px) {
	.about_div .left {
		width: 100%;
	}
	.about_div .left .yw {
		font-size: 36px;
	}
	.about_div .left .yw span {
		font-size: 72px;
		margin-top: 0;
	}
	.about_div .left .bt {
		margin-top: 0;
		font-size: 18px;
	}
	.about_div .left .text {
		font-size: 14px;
		line-height: 24px;
	}
	.about_div .right {
		margin-top: 4%;
		width: 100%;
	}
}

@media (max-width: 414px) {
	.about_div .left .text {
		margin-top: 1%;
		background: none;
		padding: 0;
	}
}

@media (max-width: 360px) {
	.about_div .left .yw {
		font-size: 20px;
	}
	.about_div .left .yw span {
		font-size: 50px;
		margin-top: 0;
	}
}

.hdbm_div {
	margin: 80px 0 75px;
}

.hdbm_div .hdbm_img {
	width: 47.67%;
	float: left;
}

.hdbm_div .hdbm_img .slick-prev,
.hdbm_div .hdbm_img .slick-next {
	width: 68px;
	height: 52px;
	border: none;
	top: auto;
	bottom: 0;
	margin-top: 0;
}

.hdbm_div .hdbm_img .slick-prev {
	background: url(../images/prev.jpg) no-repeat center center;
	left: auto;
	right: 68px;
}

.hdbm_div .hdbm_img .slick-next {
	background: url(../images/next.jpg) no-repeat center center;
	right: 0;
}

.hdbm_div .text_con {
	padding-top: 3%;
	float: right;
	width: 45%;
}

.hdbm_div .text_con .bt {
	color: #081f63;
	font-size: 22px;
}

.hdbm_div .text_con .t {
	margin-top: 3%;
	color: #818181;
	line-height: 26px;
}

.hdbm_div .text_con .bm_btn {
	margin-top: 8%;
	background: #081f63;
	width: 170px;
	height: 52px;
	text-align: center;
	display: block;
	line-height: 52px;
	color: #fff;
	font-size: 20px;
}

@media (max-width: 1152px) {
	.hdbm_div {
		margin: 60px 0;
	}
	.hdbm_div .text_con {
		padding-top: 0;
	}
	.hdbm_div .text_con .t {
		line-height: 23px;
	}
}

@media (max-width: 991px) {
	.hdbm_div {
		margin: 6% 0;
	}
	.hdbm_div .text_con {
		width: 49%;
	}
	.hdbm_div .text_con .bm_btn {
		width: 140px;
		height: 42px;
		line-height: 42px;
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.hdbm_div .text_con {
		width: 100%;
		margin-bottom: 4%;
	}
	.hdbm_div .text_con .bt {
		font-size: 18px;
	}
	.hdbm_div .text_con .t {
		margin-top: 10px;
	}
	.hdbm_div .text_con .bm_btn {
		margin-top: 20px;
	}
	.hdbm_div .hdbm_img {
		width: 100%;
	}
	.hdbm_div .hdbm_img img {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hdbm_div .hdbm_img .slick-prev,
	.hdbm_div .hdbm_img .slick-next {
		width: 40px;
		height: 31px;
	}
	.hdbm_div .hdbm_img .slick-prev {
		right: 40px;
		background-size: 100% 100%;
	}
	.hdbm_div .hdbm_img .slick-next {
		background-size: 100% 100%;
	}
}

@media (max-width: 360px) {
	.hdbm_div .text_con .bt {
		font-size: 16px;
	}
	.hdbm_div .text_con .t {
		margin-top: 5px;
	}
}

.hdbm_div2 {
	background: #f9f9f9;
	padding: 80px 0;
}

.hdbm_div2 .bt {
	text-align: center;
	color: #081f63;
	font-size: 24px;
}

.hdbm_div2 ol {
	margin-top: 25px;
}

.hdbm_div2 ol li {
	width: 33%;
	margin-right: 0.5%;
	margin-bottom: 0.5%;
	float: left;
}

.hdbm_div2 ol li input {
	-webkit-appearance: none;
	color: #666666;
	font-size: 15px;
	padding: 0 10px;
	width: 100%;
	height: 54px;
	line-height: 52px;
	border: 1px solid #e2e2e2;
}

.hdbm_div2 ol li .btn {
	margin-top: 30px;
	background: #081f63;
	font-size: 22px;
	color: #fff;
	height: 56px;
	border: none;
	line-height: 56px;
	width: 120px;
}

.hdbm_div2 ol li:nth-child(3n) {
	margin-right: 0;
}

@media (max-width: 1152px) {
	.hdbm_div2 {
		padding: 60px 0;
	}
}

@media (max-width: 991px) {
	.hdbm_div2 {
		padding: 6% 0;
	}
	.hdbm_div2 ol {
		margin-top: 3%;
	}
	.hdbm_div2 ol li .btn {
		margin-top: 3%;
	}
}

@media (max-width: 768px) {
	.hdbm_div2 .bt {
		font-size: 18px;
	}
	.hdbm_div2 ol li input {
		height: 42px;
		line-height: 40px;
		font-size: 14px;
	}
	.hdbm_div2 ol li .btn {
		font-size: 20px;
		height: 44px;
		line-height: 44px;
	}
}

@media (max-width: 640px) {
	.hdbm_div2 ol li {
		width: 49%;
		margin-bottom: 2%;
		margin-right: 0;
	}
	.hdbm_div2 ol li:nth-child(2n) {
		float: right;
	}
	.hdbm_div2 ol li .btn {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.hdbm_div2 ol li {
		width: 100%;
	}
	.hdbm_div2 ol li .btn {
		width: 100%;
		font-size: 16px;
	}
}

@media (max-width: 360px) {
	.hdbm_div2 .bt {
		font-size: 16px;
	}
	.hdbm_div2 ol li input {
		height: 36px;
		line-height: 34px;
	}
	.hdbm_div2 ol li .btn {
		width: 100%;
		font-size: 16px;
		height: 36px;
		line-height: 36px;
	}
}

.contact_div {
	margin: 80px 0;
}

.contact_div .left {
	float: left;
	width: 47.17%;
}

.contact_div .right {
	width: 44.58%;
	float: right;
}

.contact_div .right .bt {
	color: #081f63;
	font-size: 25px;
	font-weight: bold;
	border-bottom: 1px solid #d7d7d7;
	padding-bottom: 13px;
}

.contact_div .right .bt span {
	margin-top: 8px;
	display: block;
	font-weight: normal;
	color: #666666;
	font-size: 16px;
	text-transform: uppercase;
	font-family: arial;
}

.contact_div .right .t {
	margin-top: 15px;
	color: #444444;
	font-size: 16px;
	line-height: 28px;
}

.contact_div .right .ewm {
	margin-top: 25px;
	position: relative;
}

.contact_div .right .ewm span {
	display: inline-block;
	float: left;
	text-align: center;
	margin-right: 42px;
	color: #383838;
	font-size: 16px;
}

@media (max-width: 1152px) {
	.contact_div {
		margin: 60px 0;
	}
}

@media (max-width: 1024px) {
	.contact_div .left {
		width: 50%;
	}
	.contact_div .right .bt {
		font-size: 22px;
	}
	.contact_div .right .ewm {
		margin-top: 15px;
	}
	.contact_div .right .ewm span {
		font-size: 13px;
	}
	.contact_div .right .ewm span img {
		width: 62px;
		height: 62px;
	}
}

@media (max-width: 991px) {
	.contact_div {
		margin: 6% 0;
	}
}

@media (max-width: 768px) {
	.contact_div .left {
		display: none;
	}
	.contact_div .right {
		width: 100%;
	}
	.contact_div .right .bt {
		font-size: 18px;
	}
	.contact_div .right .bt span {
		font-size: 13px;
		margin-top: 3px;
	}
	.contact_div .right .t {
		margin-top: 10px;
		font-size: 14px;
		line-height: 24px;
	}
}

@media (max-width: 360px) {
	.contact_div .right .bt {
		font-size: 16px;
	}
	.contact_div .right .bt span {
		font-size: 11px;
	}
	.contact_div .right .t span {
		display: block;
	}
}

.map_list {
	background: #f7f7f7;
	padding: 70px 0;
}

.map_list ol li {
	float: left;
	width: 25%;
	text-align: center;
	border-right: 1px solid #dedede;
}

.map_list ol li:last-child {
	border-right: 0;
}

.map_list ol li .en {
	color: #b3b3b3;
	font-size: 28px;
	text-transform: uppercase;
}

.map_list ol li h3 {
	color: #081f63;
	font-size: 27px;
	font-weight: normal;
}

.map_list ol li .t {
	margin-top: 10px;
	color: #666666;
	font-size: 14px;
	line-height: 24px;
}

@media (max-width: 991px) {
	.map_list {
		padding: 6% 0;
	}
}

@media (max-width: 768px) {
	.map_list ol li {
		width: 50%;
		padding: 6% 0;
		border-top: 1px solid #dedede;
	}
	.map_list ol li:nth-child(1),
	.map_list ol li:nth-child(2) {
		border-top: none;
	}
	.map_list ol li:nth-child(2n) {
		border-right: none;
	}
}

@media (max-width: 640px) {
	.map_list ol li .en {
		font-size: 15px;
	}
	.map_list ol li h3 {
		font-size: 18px;
	}
	.map_list ol li .t {
		margin-top: 5px;
		font-size: 10px;
		line-height: 18px;
	}
}

.ck_map {
	position: absolute;
	right: 0;
	bottom: 0;
	color: #081f63;
	font-size: 16px;
}

@media (max-width: 768px) {
	.ck_map {
		font-size: 14px;
	}
}

.ck_map:hover {
	text-decoration: underline;
	color: #081f63;
}

.contact_map {
	position: relative;
	width: 100%;
	height: 400px;
}

@media (max-width: 480px) {
	.contact_map {
		height: 300px;
	}
}

.join_div {
	margin: 100px 0 90px;
}

.join_div .left {
	float: right;
	width: 48%;
	padding-top: 2%;
}

.join_div .left .yw {
	color: #f0f0f0;
	font-size: 85px;
	font-family: arial;
	text-transform: uppercase;
}

.join_div .left .bt {
	color: #081f63;
	font-size: 28px;
}

.join_div .left .t {
	margin-top: 20px;
	color: #525252;
	font-size: 15px;
	line-height: 28px;
}

.join_div .right {
	float: left;
	width: 41.33%;
	position: relative;
}

.join_div .right .icon {
	position: absolute;
	right: 0;
	top: 0;
	margin-top: -6%;
	margin-right: -7%;
	width: 28.43%;
}

.join_div .right .bg {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 94.96%;
	z-index: -1;
}

.join_div .right .tupian {
	margin-top: 5%;
	display: block;
	width: 94.96%;
}

@media (max-width: 1152px) {
	.join_div {
		margin: 60px 0;
	}
	.join_div .left .yw {
		font-size: 60px;
	}
	.join_div .left .bt {
		font-size: 24px;
	}
	.join_div .left .t {
		margin-top: 10px;
	}
}

@media (max-width: 991px) {
	.join_div {
		margin: 6% 0;
	}
}

@media (max-width: 768px) {
	.join_div .left {
		width: 100%;
	}
	.join_div .left .yw {
		font-size: 60px;
	}
	.join_div .left .bt {
		font-size: 18px;
	}
	.join_div .left .t {
		margin-top: 10px;
		font-size: 14px;
		line-height: 24px;
	}
	.join_div .right {
		margin-top: 4%;
		width: 100%;
	}
	.join_div .right .tupian {
		margin-top: 0;
		width: 100%;
	}
	.join_div .right .icon {
		display: none;
	}
	.join_div .right .bg {
		display: none;
	}
}

@media (max-width: 480px) {
	.join_div .left .yw {
		font-size: 35px;
	}
}

.join_bt {
	text-align: center;
	color: #081f63;
	font-size: 28px;
}

@media (max-width: 1152px) {
	.join_bt {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.join_bt {
		font-size: 18px;
	}
}

.join_name {
	text-align: center;
	color: #555555;
	margin-top: 10px;
}

@media (max-width: 768px) {
	.join_name {
		font-size: 13px;
		margin-top: 5px;
	}
}

@media (max-width: 480px) {
	.join_name {
		font-size: 12px;
		margin-top: 5px;
	}
}

.join_div2 {
	background: #f7f7f7 url(../images/join_bg2.jpg) no-repeat center bottom;
	height: 462px;
	padding-top: 65px;
}

.join_div2 ol {
	margin-top: 66px;
}

.join_div2 ol li {
	width: 20%;
	float: left;
	text-align: center;
	margin: 32px 0;
}

.join_div2 ol li span {
	width: 35%;
	display: block;
	margin: 0 auto;
}

.join_div2 ol li p {
	margin-top: 5px;
	color: #333;
	font-size: 15px;
}

@media (max-width: 1152px) {
	.join_div2 {
		height: auto;
		padding: 60px 0;
	}
}

@media (max-width: 991px) {
	.join_div2 {
		padding: 6% 0 5%;
	}
	.join_div2 ol {
		margin-top: 2%;
	}
	.join_div2 ol li {
		margin: 3% 0;
	}
}

@media (max-width: 768px) {
	.join_div2 ol li {
		width: 20%;
	}
}

@media (max-width: 640px) {
	.join_div2 ol li {
		width: 25%;
	}
}

@media (max-width: 480px) {
	.join_div2 ol li p {
		font-size: 14px;
	}
}

@media (max-width: 414px) {
	.join_div2 ol li p {
		padding: 0 3px;
		font-size: 13px;
	}
}

.join_div3 {
	padding: 60px 0 90px;
}

.join_div3 ol {
	margin-top: 35px;
}

.join_div3 ol li {
	float: left;
	width: 20%;
	line-height: 0;
}

.join_div3 ol li img {
	width: 100%;
}

.join_div3 .joinbox_img {
	margin-top: 35px;
}


/*.join_div3 .joinbox_img{
  float: left;
  width: 20%;
  line-height: 0;
}*/

.join_div3 .joinbox_img img {
	width: 100%;
}

@media (max-width: 1152px) {
	.join_div3 {
		padding: 60px 0 80px;
	}
}

@media (max-width: 1024px) {
	.join_div3 {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 991px) {
	.join_div3 {
		padding: 6% 15px 8%;
	}
	.join_div3 ol {
		margin-top: 4%;
	}
	.join_div3 .joinbox_img {
		margin-top: 4%;
	}
}

@media (max-width: 768px) {
	.join_div3 ol li {
		width: 33.33333333%;
	}
}

.join_div4 {
	margin-bottom: 90px;
}

.join_div4 .left {
	width: 62%;
	float: left;
	padding: 6% 3%;
	background: #f9f9f9;
}

.join_div4 .left .yw {
	color: #e9e9e8;
	font-size: 51px;
	font-family: arial;
	font-weight: bold;
	text-transform: uppercase;
}

.join_div4 .left .bt {
	margin-top: 3%;
	font-size: 28px;
	color: #081f63;
}

.join_div4 .left .t {
	margin-top: 10px;
	font-size: 15px;
	line-height: 26px;
	color: #737373;
}

.join_div4 .right {
	margin-top: -20px;
	float: right;
	width: 38%;
}

.join_div4 .right .slick-prev,
.join_div4 .right .slick-next {
	width: 68px;
	height: 52px;
	border: none;
	top: auto;
	bottom: -52px;
	margin-top: 0;
}

.join_div4 .right .slick-prev {
	background: url(../images/prev.jpg) no-repeat center center;
	left: auto;
	right: 68px;
}

.join_div4 .right .slick-next {
	background: url(../images/next.jpg) no-repeat center center;
	right: 0;
}

@media (max-width: 1152px) {
	.join_div4 {
		margin-bottom: 60px;
	}
	.join_div4 .left {
		padding: 4% 3%;
	}
	.join_div4 .left .yw {
		font-size: 40px;
	}
	.join_div4 .left .bt {
		font-size: 24px;
	}
}

@media (max-width: 991px) {
	.join_div4 {
		margin-bottom: 6%;
	}
}

@media (max-width: 768px) {
	.join_div4 .left {
		padding-left: 15px;
		padding-right: 15px;
		width: 100%;
	}
	.join_div4 .left .yw {
		font-size: 22px;
	}
	.join_div4 .left .bt {
		font-size: 18px;
	}
	.join_div4 .left .t {
		font-size: 14px;
		line-height: 24px;
	}
	.join_div4 .right {
		width: 100%;
		margin-top: 4%;
	}
	.join_div4 .right img {
		width: 100%;
	}
	.join_div4 .right .slick-prev,
	.join_div4 .right .slick-next {
		bottom: 0;
	}
}

@media (max-width: 640px) {
	.join_div4 .right .slick-prev,
	.join_div4 .right .slick-next {
		width: 50px;
		height: 38px;
	}
	.join_div4 .right .slick-prev {
		background-size: 100% 100%;
		right: 50px;
	}
	.join_div4 .right .slick-next {
		background-size: 100% 100%;
	}
}

.news_show {
	padding-top: 35px;
	padding-bottom: 80px;
}

.news_show .news_title {
	border-bottom: 1px solid #dbdbdb;
	line-height: 30px;
	padding-bottom: 15px;
}

.news_show .news_title .top {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.news_show .news_title .top {
		padding: 0 15px;
	}
}

.news_show .news_title h1 {
	max-width: 80%;
	float: left;
	color: #081f63;
	font-size: 21px;
	font-weight: normal;
}

.news_show .news_title .data {
	float: right;
	width: auto;
	color: #666666;
	font-size: 17px;
}

.news_show .shou_box {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.news_show .shou_box {
		padding: 0 15px;
	}
}

.news_show .show_con {
	padding: 30px 0 50px;
	color: #878787;
	font-size: 16px;
	line-height: 25px;
}

.news_show .show_con .t .s {
	float: left;
	margin-right: 40px;
}

@media (max-width: 991px) {
	.news_show {
		padding: 3% 0 6%;
	}
	.news_show .news_title {
		padding-bottom: 1.6%;
	}
	.news_show .news_title h1 {
		font-size: 18px;
	}
	.news_show .news_title .data {
		font-size: 15px;
	}
	.news_show .show_con {
		padding: 3% 0 5%;
		font-size: 14px;
		line-height: 24px;
	}
}

@media (max-width: 640px) {
	.news_show {
		padding-top: 6%;
		padding-bottom: 8%;
	}
	.news_show .news_title {
		line-height: normal;
	}
	.news_show .news_title h1 {
		font-size: 18px;
		max-width: 100%;
		line-height: 24px;
	}
	.news_show .news_title .data {
		margin-top: 2%;
		float: left;
		width: 100%;
		display: block;
		font-size: 15px;
	}
	.news_show .show_con .t .s {
		width: 100%;
		margin-right: 0;
		margin-bottom: 3%;
	}
}

@media (max-width: 414px) {
	.news_show .news_title h1 {
		font-size: 15px;
	}
	.news_show .news_title .data {
		font-size: 13px;
	}
}

.return {
	border-top: 1px solid #dfdfdf;
	padding-top: 20px;
}

.return .fanhui {
	display: inline-block;
	float: left;
	width: 102px;
	height: 40px;
	border: 1px solid #dcdcdc;
	text-align: center;
	line-height: 38px;
	color: #545454;
	font-size: 16px;
}

.return div {
	float: right;
	width: auto;
	line-height: 40px;
}

.return div a {
	max-width: 60%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: block;
	float: left;
	color: #333333;
	font-size: 14px;
	margin-left: 30px;
}

@media (max-width: 640px) {
	.return .fanhui {
		display: block;
		float: none;
		margin: 0 auto;
	}
	.return>div {
		display: none;
	}
}

.case_div {
	margin: 80px 0 0;
}

.case_div .case_box {
	position: relative;
}

.case_div .case_title {
	padding-top: 2%;
	float: right;
	width: 58.17%;
}

.case_div .case_title .title {
	margin-left: 45px;
}

.case_div .case_title .bt {
	color: #081f63;
	font-size: 26px;
}

.case_div .case_title .yw {
	color: #e5e5e5;
	font-size: 18px;
	font-family: arial;
	text-transform: uppercase;
}

.case_div .case_title .name {
	margin-top: 13px;
	color: #666666;
	font-size: 15px;
	line-height: 24px;
}

.case_div .case_title ol {
	margin-top: 50px;
}

.case_div .case_title ol li {
	margin-left: 1.5%;
	width: 48.5%;
	float: left;
	position: relative;
}

.case_div .case_title ol li .img {
	display: block;
	line-height: 0;
	font-size: 0;
}

.case_div .case_title ol li .icon_dz {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	padding: 4% 30px;
}

.case_div .case_title ol li .icon_dz .dz {
	color: #ffffff;
	font-size: 17px;
}

.case_div .case_title ol li .icon_dz .t {
	margin-top: 3px;
	color: #ffffff;
	font-size: 14px;
}

.case_div .caseimg {
	float: left;
	width: 41.58%;
	position: relative;
}

.case_div .caseimg .img {
	display: block;
	line-height: 0;
	font-size: 0;
}

.case_div .caseimg .icon_dz {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	padding: 2% 30px;
}

.case_div .caseimg .icon_dz .dz {
	color: #ffffff;
	font-size: 24px;
}

.case_div .caseimg .icon_dz .t {
	margin-top: 3px;
	color: #ffffff;
	font-size: 14px;
}

@media (max-width: 1152px) {
	.case_div .case_title {
		padding-top: 0;
	}
	.case_div .case_title .title {
		margin-left: 1.5%;
	}
	.case_div .case_title .title .bt {
		font-size: 24px;
	}
	.case_div .case_title ol {
		margin-top: 43px;
	}
}

@media (max-width: 991px) {
	.case_div {
		margin-top: 6%;
	}
	.case_div .case_title ol {
		margin-top: 14px;
	}
}

@media (max-width: 768px) {
	.case_div .case_title {
		width: 100%;
	}
	.case_div .case_title .title {
		margin-left: 0;
	}
	.case_div .case_title .title .bt,
	.case_div .case_title .title .yw {
		text-align: center;
	}
	.case_div .case_title .title .bt {
		font-size: 18px;
	}
	.case_div .case_title .title .yw {
		font-size: 13px;
	}
	.case_div .case_title .title .name {
		font-size: 13px;
	}
	.case_div .case_title ol li {
		margin-left: 0;
		float: left;
	}
	.case_div .case_title ol li:nth-child(2n) {
		float: right;
	}
	.case_div .case_title ol li img {
		width: 100%;
	}
	.case_div .caseimg {
		margin-top: 15px;
		width: 100%;
	}
	.case_div .caseimg img {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.case_div .case_title ol li .icon_dz {
		padding: 4% 15px;
	}
	.case_div .case_title ol li .icon_dz .dz {
		font-size: 15px;
	}
	.case_div .case_title ol li .icon_dz .t {
		font-size: 12px;
	}
	.case_div .caseimg .icon_dz {
		padding: 4% 15px;
	}
	.case_div .caseimg .icon_dz .dz {
		font-size: 15px;
	}
	.case_div .caseimg .icon_dz .t {
		font-size: 12px;
	}
}

@media (max-width: 360px) {
	.case_div .case_title ol li {
		width: 100%;
		margin-top: 15px;
	}
}

.case_div2 {
	margin-top: 80px;
}

.case_div2 .case_title {
	text-align: center;
}

.case_div2 .case_title .bt {
	color: #081f63;
	font-size: 26px;
}

.case_div2 .case_title .yw {
	color: #e5e5e5;
	font-size: 18px;
	font-family: arial;
	text-transform: uppercase;
}

.case_div2 .case_title .case_menu {
	margin-top: 20px;
}

.case_div2 .case_title .case_menu a {
	border-radius: 3px;
	display: inline-block;
	color: #555555;
	font-size: 17px;
	padding: 0 15px;
	line-height: 35px;
}

.case_div2 .case_title .case_menu a:hover,
.case_div2 .case_title .case_menu a.cur {
	background: #081f63;
	color: #fff;
}

@media (max-width: 1152px) {
	.case_div2 .case_title .bt {
		font-size: 24px;
	}
}

@media (max-width: 991px) {
	.case_div2 {
		margin-top: 6%;
	}
}

@media (max-width: 768px) {
	.case_div2 .case_title .bt {
		font-size: 18px;
	}
	.case_div2 .case_title .yw {
		font-size: 13px;
	}
	.case_div2 .case_title .case_menu a {
		font-size: 14px;
		float: left;
		margin: 3px;
	}
}

@media (max-width: 414px) {
	.case_div2 .case_title .case_menu a {
		font-size: 14px;
		float: left;
		margin: 3px 3px 3px 0;
		padding: 0 10px;
	}
}

.case_icon {
	margin-top: 40px;
	background: url(../images/case_bg.jpg) no-repeat center top;
	min-height: 359px;
	padding-top: 60px;
}

.case_icon .case-top .left {
	width: 61.8%;
	float: left;
}

.case_icon .case-top .left .bt {
	color: #fff;
	font-size: 24px;
}

.case_icon .case-top .left .name {
	padding: 8px 0 0;
	color: #9adbfc;
	font-size: 14px;
	line-height: 24px;
}

.case_icon .case-top .more {
	margin-top: 26px;
	float: right;
	width: 208px;
	height: 62px;
	display: block;
	border: 1px solid #ffffff;
	text-align: center;
	line-height: 60px;
	color: #fff;
	font-size: 18px;
}

.case_icon .case_con {
	margin-top: 55px;
}

.case_icon .case_con .left {
	float: left;
	width: 54.9%;
	position: relative;
	font-size: 0;
}

.case_icon .case_con .left p {
	position: absolute;
	top: 25px;
	left: 20px;
	width: auto;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.case_icon .case_con .right {
	float: right;
	width: 43.7%;
}

.case_icon .case_con .right .ol-img li {
	font-size: 0;
	width: 48.7%;
	float: left;
	position: relative;
	margin-left: 2.6%;
}

.case_icon .case_con .right .ol-img li:first-child {
	margin-left: 0;
}

.case_icon .case_con .right .ol-img li p {
	position: absolute;
	top: 25px;
	left: 20px;
	width: auto;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.case_icon .case_con .right .cmore {
	display: block;
	margin-top: 3%;
}

.case_icon .case_con .right .ol-bottom {
	margin-top: 2.7%;
	position: relative;
	font-size: 0;
}

.case_icon .case_con .right .ol-bottom p {
	position: absolute;
	top: 25px;
	left: 20px;
	width: auto;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.case_icon .case_con .right .div-case {
	margin-top: 14px;
	min-height: 225px;
	background: #f4f4f4;
}

.case_icon .case_con .right .div-case ol {
	padding: 25px 10px 0 50px;
}

.case_icon .case_con .right .div-case ol li {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	float: left;
	width: 33.33333333%;
	color: #666666;
	font-size: 14px;
	line-height: 30px;
}

.case_icon .case_con .right .div-case .slick-dots li button {
	border: 1px solid #c4c4c4;
	background: none;
}

.case_icon .case_con .right .div-case .slick-dots .slick-active button {
	background: #081f63;
	border: 1px solid #081f63;
}

@media (max-width: 991px) {
	.case_icon {
		margin-top: 4%;
		padding-top: 5%;
	}
	.case_icon .case-top .more {
		margin-top: 50px;
	}
	.case_icon .case_con {
		margin-top: 5%;
	}
	.case_icon .case_con .right .div-case {
		min-height: 0;
	}
	.case_icon .case_con .right .div-case ol {
		padding: 3.2% 6% 8%;
	}
	.case_icon .case_con .right .div-case ol li {
		line-height: 26px;
	}
	.case_icon .case_con .right .div-case .slick-dots {
		bottom: 10px;
	}
}

@media (max-width: 768px) {
	.case_icon .case-top .left {
		width: 69.8%;
	}
	.case_icon .case-top .left .bt {
		font-size: 18px;
	}
	.case_icon .case-top .left .name {
		font-size: 13px;
		margin-top: 5px;
		padding: 0;
	}
	.case_icon .case-top .more {
		margin-top: 38px;
		width: 150px;
		height: 45px;
		line-height: 43px;
		font-size: 15px;
	}
	.case_icon .case_con .left {
		width: 100%;
	}
	.case_icon .case_con .left img {
		width: 100%;
	}
	.case_icon .case_con .right {
		margin-top: 15px;
		width: 100%;
	}
	.case_icon .case_con .right ol li img {
		width: 100%;
	}
	.case_icon .case_con .right .ol-bottom {
		margin-top: 15px;
		width: 100%;
	}
	.case_icon .case_con .right .ol-bottom img {
		width: 100%;
	}
	.case_icon .case_con .right .div-case ol {
		padding: 3.2% 6% 6%;
	}
	.case_icon .case_con .right .div-case ol li {
		line-height: 26px;
	}
	.case_icon .case_con .right .div-case .slick-dots {
		bottom: 10px;
	}
}

@media (max-width: 480px) {
	.case_icon .case-top .left {
		float: none;
		width: 100%;
		text-align: center;
	}
	.case_icon .case-top .more {
		float: none;
		margin: 38px auto 0;
		width: 150px;
		height: 45px;
		line-height: 43px;
		font-size: 15px;
	}
}

@media (max-width: 414px) {
	.case_icon .case_con .left p {
		left: 15px;
		top: 15px;
	}
	.case_icon .case_con .right .ol-img li p,
	.case_icon .case_con .right .ol-bottom p {
		left: 15px;
		top: 15px;
	}
	.case_icon .case_con .right .div-case ol {
		padding: 3.2% 6% 8%;
	}
}

@media (max-width: 360px) {
	.case_icon .case_con .right .ol-img li {
		width: 100%;
		margin-left: 0;
		margin-bottom: 15px;
	}
	.case_icon .case_con .right .ol-img li:last-child {
		margin-bottom: 0;
	}
	.case_icon .case_con .right .div-case ol li {
		width: 50%;
	}
}

.case_div3 {
	margin-top: 70px;
	margin-bottom: 90px;
}

.case_div3 .case_title .bt {
	color: #081f63;
	font-size: 26px;
	text-align: center;
}

.case_div3 .case_title .name {
	margin-top: 8px;
	color: #666666;
	font-size: 15px;
	line-height: 24px;
	text-align: center;
}

.case_div3 .case-logo {
	margin-top: 30px;
}

.case_div3 .case-logo ol li {
	font-size: 0;
	float: left;
	width: 14.28571429%;
	text-align: center;
}

.case_div3 .case-logo .slick-dots {
	bottom: -30px;
}

.case_div3 .case-logo .slick-dots li button {
	border: 1px solid #c4c4c4;
	background: none;
}

.case_div3 .case-logo .slick-dots .slick-active button {
	background: #081f63;
	border: 1px solid #081f63;
}

@media (max-width: 991px) {
	.case_div3 {
		margin-top: 6%;
		margin-bottom: 9%;
	}
}

@media (max-width: 768px) {
	.case_div3 .case_title .bt {
		font-size: 18px;
	}
	.case_div3 .case_title .name {
		font-size: 13px;
	}
}

@media (max-width: 640px) {
	.case_div3 .case-logo ol li {
		width: 33.33333333%;
	}
}

@media (max-width: 480px) {
	.case_div3 {
		margin-bottom: 13%;
	}
}

@media (max-width: 360px) {
	.case_div3 .case-logo .slick-dots {
		bottom: -10px;
	}
}

.dljm_div {
	background: url(../images/dljm_bg.jpg) no-repeat center bottom;
	padding: 60px 0 75px;
}

.dljm_div h1 {
	text-align: center;
	color: #081f63;
	font-weight: normal;
	font-size: 26px;
}

.dljm_div ol {
	margin-top: 32px;
	margin-bottom: 10px;
}

.dljm_div ol li {
	margin: 1% 5% 1% 0;
	float: left;
	width: 30%;
}

.dljm_div ol li input {
	font-family: "微软雅黑";
	padding: 0 10px;
	width: 100%;
	height: 40px;
	background: #fcfcfc;
	border: 1px solid #dedede;
	color: #666;
	font-size: 14px;
	-webkit-appearance: none;
}

.dljm_div ol li textarea {
	-webkit-appearance: none;
	color: #666;
	font-size: 14px;
	width: 100%;
	height: 157px;
	padding: 10px;
	font-family: "微软雅黑";
	background: #fcfcfc;
	border: 1px solid #dedede;
}

.dljm_div ol li:nth-child(3n) {
	margin-right: 0;
}

.dljm_div .dljm_name {
	text-align: center;
	color: #a8a8a8;
}

.dljm_div .dljm_btn {
	margin: 2% auto 1.5%;
	text-align: center;
}

.dljm_div .dljm_btn input {
	-webkit-appearance: none;
	width: 170px;
	height: 48px;
	border: none;
	background: #081f63;
	color: #fff;
	font-size: 20px;
	font-family: "微软雅黑";
}

.dljm_div .dljm_btn input.cz {
	background: #474747;
}

@media (max-width: 1152px) {
	.dljm_div h1 {
		font-size: 24px;
	}
}

@media (max-width: 991px) {
	.dljm_div {
		padding: 6% 0;
	}
	.dljm_div ol {
		margin-top: 2%;
	}
}

@media (max-width: 768px) {
	.dljm_div h1 {
		font-size: 18px;
	}
	.dljm_div ol li {
		width: 32%;
		margin-right: 2%;
	}
}

@media (max-width: 640px) {
	.dljm_div ol li {
		width: 100%;
		margin-right: 0;
	}
	.dljm_div .dljm_btn input {
		width: 140px;
		height: 40px;
		font-size: 16px;
	}
	.dljm_div .dljm_btn input.cz {
		background: #474747;
	}
}

@media (max-width: 480px) {
	.dljm_div .dljm_name {
		text-align: left;
	}
	.dljm_div .dljm_btn {
		float: left;
		width: 100%;
		margin: 4% 0;
	}
	.dljm_div .dljm_btn input {
		float: left;
		width: 49%;
		height: 40px;
		font-size: 16px;
	}
	.dljm_div .dljm_btn input.cz {
		background: #474747;
	}
	.dljm_div .dljm_btn .cz {
		float: right;
	}
}

.service_menu ul li {
	width: 33.33333333%;
}

.service_div {
	padding: 75px 0 90px;
}

.service_div h1 {
	text-align: center;
	font-weight: normal;
	color: #081f63;
	font-size: 18px;
}

.service_div .leixing {
	text-align: center;
	margin-top: 20px;
}

.service_div .leixing span {
	display: inline-block;
	color: #686868;
	line-height: 24px;
}

.service_div .leixing span a {
	display: inline-block;
	color: #686868;
	background: url(../images/service_icon1.jpg) no-repeat left center;
	padding-left: 30px;
	margin: 0 20px;
}

.service_div .leixing span a.cur {
	background: url(../images/service_icon2.jpg) no-repeat left center;
}

.service_div .service_con {
	margin-top: 30px;
}

.service_div .service_con .left {
	width: 47%;
	float: left;
}

.service_div .service_con .left ol li {
	float: left;
	width: 100%;
	margin: 4px 0;
}

.service_div .service_con .left ol li input {
	-webkit-appearance: none;
	width: 100%;
	height: 54px;
	border: 1px solid #dcdcdc;
	float: left;
	padding: 0 10px;
	font-family: "微软雅黑";
	font-size: 14px;
	border-radius: 0;
	color: #000;
}

.service_div .service_con .left ol li:first-child input {
	width: 49.2%;
	float: left;
}

.service_div .service_con .left ol li:first-child input:last-child {
	float: right;
}

.service_div .service_con .left ol li .service_btn {
	width: 100%;
	height: 54px;
	background: #fff;
	position: relative;
}

.service_div .service_con .left ol li .service_btn .ch {
	border: 1px solid #dcdcdc;
	display: block;
	width: 100%;
	height: 54px;
	line-height: 52px;
	padding: 0 10px;
	color: #9f9e9e;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.service_div .service_con .left ol li .service_btn .ch:before {
	content: "";
	position: absolute;
	right: 22px;
	top: 22px;
	width: 19px;
	height: 10px;
	background: url(../images/service_icon3.jpg) no-repeat center center;
}

.service_div .service_con .left ol li .service_btn .ch_con {
	display: none;
	border: 1px solid #dcdcdc;
	z-index: 999;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background: #FFFFFF;
	padding: 10px;
}

.service_div .service_con .left ol li .service_btn .ch_con a {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: #777;
	font-size: 14px;
	display: block;
	line-height: 26px;
}

.service_div .service_con .left ol li .service_btn .ch_con a:hover {
	color: #103219;
}

.service_div .service_con .right {
	width: 47%;
}

.service_div .service_con .right ol li {
	float: left;
	width: 100%;
}

.service_div .service_con .right ol li textarea {
	border-radius: 0;
	-webkit-appearance: none;
	width: 100%;
	height: 296px;
	border: 1px solid #dcdcdc;
	padding: 10px;
	font-family: "微软雅黑";
	font-size: 14px;
	color: #000;
}

.service_div .service_con .right ol li .miaoshu {
	height: 111px;
}

.service_div .service_con .right ol li input {
	-webkit-appearance: none;
	margin-top: 16px;
	width: 100%;
	height: 57px;
	background: #081f63;
	color: #fff;
	font-family: "微软雅黑";
	border: none;
	font-size: 20px;
}

@media (max-width: 991px) {
	.service_div {
		padding: 6% 0 8%;
	}
}

@media (max-width: 640px) {
	.service_div .leixing span a {
		margin: 0 5px;
	}
	.service_div .service_con .left {
		width: 100%;
	}
	.service_div .service_con .right {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.service_div .leixing span {
		float: left;
	}
	.service_div .leixing span a {
		float: left;
		margin-right: 10px;
		margin-left: 0;
	}
	.service_div .leixing span:first-child {
		margin-bottom: 10px;
	}
	.service_div .service_con .right ol li textarea {
		height: 220px;
	}
}

@media (max-width: 414px) {
	.service_div .leixing span a {
		margin-bottom: 10px;
	}
	.service_div .service_con {
		margin-top: 20px;
	}
	.service_div .service_con .left ol li:first-child input {
		width: 100%;
	}
	.service_div .service_con .left ol li:first-child input:first-child {
		margin-bottom: 8px;
	}
}

.service_shfw {
	padding: 70px 0 30px;
}

.service_shfw ol {
	margin-top: 23px;
}

.service_shfw ol li {
	float: left;
	width: 50%;
	min-height: 300px;
	background: url(../images/service_icon6.jpg) no-repeat center center;
	padding: 40px 65px 0;
}

.service_shfw ol li h3 {
	margin-top: 25px;
	font-weight: normal;
	font-size: 23px;
	color: #333333;
	padding-bottom: 20px;
	position: relative;
}

.service_shfw ol li h3:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 58px;
	height: 2px;
	background: #d0d0d0;
}

.service_shfw ol li .t {
	margin-top: 25px;
	color: #666666;
	font-size: 16px;
	line-height: 24px;
	height: 48px;
	overflow: hidden;
}

.service_shfw ol li:last-child {
	background: url(../images/service_icon7.jpg) no-repeat center center;
}

.service_shfw ol li:first-child {
	text-align: right;
}

.service_shfw ol li:first-child h3 {
	color: #fff;
}

.service_shfw ol li:first-child h3:before {
	left: auto;
	right: 0;
	background: #fff;
}

.service_shfw ol li:first-child .t {
	color: #fff;
}

@media (max-width: 991px) {
	.service_shfw {
		padding: 6% 0 3%;
	}
}

@media (max-width: 768px) {
	.service_shfw ol li {
		text-align: center;
		padding: 7% 15px;
	}
	.service_shfw ol li h3 {
		margin-top: 15px;
		font-size: 15px;
	}
	.service_shfw ol li h3:before {
		left: 50%;
		margin-left: -29px;
	}
	.service_shfw ol li .t {
		font-size: 13px;
		height: auto;
		overflow: auto;
	}
	.service_shfw ol li:first-child {
		text-align: center;
	}
	.service_shfw ol li:first-child h3 {
		color: #fff;
	}
	.service_shfw ol li:first-child h3:before {
		left: 50%;
		right: auto;
		background: #fff;
	}
	.service_shfw ol li:first-child .t {
		color: #fff;
	}
}

@media (max-width: 320px) {
	.service_shfw ol li {
		width: 100%;
		padding-top: 18%;
	}
}

.service_tit {
	text-align: center;
	font-weight: normal;
	color: #081f63;
	font-size: 26px;
}

@media (max-width: 1152px) {
	.service_tit {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.service_tit {
		font-size: 18px;
	}
}

.service_yw {
	margin-top: 5px;
	text-align: center;
	text-transform: uppercase;
	color: #d6d6d6;
	font-size: 18px;
	font-family: arial;
}

@media (max-width: 768px) {
	.service_yw {
		font-size: 13px;
	}
}

.service_t {
	text-align: center;
	color: #666666;
	font-size: 15px;
	margin-top: 5px;
}

@media (max-width: 768px) {
	.service_t {
		font-size: 13px;
	}
}

.service_shfw2 {
	background: url(../images/service_bg.jpg) no-repeat center top;
	padding: 36px 0 0;
}

.service_shfw2 ol {
	margin-top: 30px;
}

.service_shfw2 ol li {
	width: 20%;
	height: 259px;
	float: left;
	position: relative;
}

.service_shfw2 ol li .text {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	text-align: center;
	height: 259px;
	padding: 50px 15px 0;
}

.service_shfw2 ol li .text h3 {
	color: #e5c688;
	font-size: 100px;
	font-family: arial;
	font-weight: normal;
}

.service_shfw2 ol li .text .t {
	color: #666666;
	font-size: 16px;
}

.service_shfw2 ol li .t1 {
	background: url(../images/service_pic1.jpg) no-repeat center bottom;
}

.service_shfw2 ol li .t2 {
	background: url(../images/service_pic2.jpg) no-repeat center bottom;
}

.service_shfw2 ol li .t3 {
	background: url(../images/service_pic3.jpg) no-repeat center bottom;
}

.service_shfw2 ol li .t4 {
	background: url(../images/service_pic4.jpg) no-repeat center bottom;
}

.service_shfw2 ol li .t5 {
	background: url(../images/service_pic5.jpg) no-repeat center bottom;
}

.service_shfw2 ol li:hover .text {
	margin-top: -10px;
	height: 279px;
	background: url(../images/service_pic6.jpg) no-repeat center center !important;
	background-size: 100% 100%;
}

.service_shfw2 ol li:hover .text h3,
.service_shfw2 ol li:hover .text .t {
	color: #fff;
}

@media (max-width: 1152px) {
	.service_shfw2 ol li .text h3 {
		font-size: 80px;
	}
}

@media (max-width: 991px) {
	.service_shfw2 {
		padding-top: 4%;
	}
}

@media (max-width: 768px) {
	.service_shfw2 ol li {
		width: 33.33333333%;
		height: 259px;
		float: left;
		position: relative;
	}
	.service_shfw2 ol li .text {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		text-align: center;
		height: 259px;
		padding: 50px 15px 0;
	}
	.service_shfw2 ol li .text h3 {
		color: #e5c688;
		font-size: 100px;
		font-family: arial;
		font-weight: normal;
	}
	.service_shfw2 ol li .text .t {
		color: #666666;
		font-size: 16px;
	}
	.service_shfw2 ol li .t1,
	.service_shfw2 ol li .t2,
	.service_shfw2 ol li .t3,
	.service_shfw2 ol li .t4,
	.service_shfw2 ol li .t5 {
		background-size: 100% 100%;
	}
	.service_shfw2 ol li:hover .text {
		margin-top: 0;
		height: 259px;
	}
	.service_shfw2 ol li:hover .text h3 {
		color: #e5c688;
	}
	.service_shfw2 ol li:hover .text .t {
		color: #666666;
	}
	.service_shfw2 ol li:hover .t1 {
		background: url(../images/service_pic1.jpg) no-repeat center bottom;
	}
	.service_shfw2 ol li:hover .t2 {
		background: url(../images/service_pic2.jpg) no-repeat center bottom;
	}
	.service_shfw2 ol li:hover .t3 {
		background: url(../images/service_pic3.jpg) no-repeat center bottom;
	}
	.service_shfw2 ol li:hover .t4 {
		background: url(../images/service_pic4.jpg) no-repeat center bottom;
	}
	.service_shfw2 ol li:hover .t5 {
		background: url(../images/service_pic5.jpg) no-repeat center bottom;
	}
	.service_shfw2 ol li:hover .t1,
	.service_shfw2 ol li:hover .t2,
	.service_shfw2 ol li:hover .t3,
	.service_shfw2 ol li:hover .t4,
	.service_shfw2 ol li:hover .t5 {
		background-size: 100% 100%;
	}
}

@media (max-width: 480px) {
	.service_shfw2 ol li {
		width: 50%;
	}
}

@media (max-width: 414px) {
	.service_shfw2 ol li {
		width: 50%;
		height: 200px;
	}
	.service_shfw2 ol li .text {
		height: 200px;
	}
	.service_shfw2 ol li .text h3 {
		font-size: 55px;
	}
	.service_shfw2 ol li .text .t {
		font-size: 14px;
	}
	.service_shfw2 ol li:hover .text {
		height: 200px;
	}
}

.service_shfw3 {
	margin: 50px 0;
}

.service_shfw3 ol {
	margin-top: 30px;
}

.service_shfw3 ol li {
	float: left;
	width: 23%;
	margin-right: 2%;
	margin-bottom: 2%;
	border: 1px solid #e2e0e0;
}

.service_shfw3 ol li:nth-child(4n) {
	margin-right: 0;
}

.service_shfw3 ol li a {
	display: inline-block;
}

.service_shfw3 ol li .img {
	width: 100%;
	position: relative;
	font-size: 0;
}

.service_shfw3 ol li .img span {
	position: absolute;
	left: 0;
	bottom: 0;
	background: #081f63;
	color: #fff;
	font-size: 16px;
	line-height: 34px;
	padding: 0 20px;
}

.service_shfw3 ol li .text {
	margin-top: 20px;
	color: #666666;
	font-size: 15px;
	line-height: 24px;
	height: 4em;
}

@media (max-width: 991px) {
	.service_shfw3 {
		margin: 5% 0;
	}
}

@media (max-width: 640px) {
	.service_shfw3 ol li {
		float: left;
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.service_shfw3 ol li img {
		width: 100%;
	}
	.service_shfw3 ol li .text {
		margin-top: 10px;
	}
}

.service_down {
	padding: 70px 0 0;
}

.service_down h1 {
	text-align: center;
	font-weight: normal;
	color: #444444;
	font-size: 25px;
}

.service_down dl {
	margin-top: 35px;
}

.service_down dl dt {
	margin-top: 2%;
	width: 66.8%;
	float: right;
	background: url(../images/down_bg_g1.jpg) no-repeat left top;
	padding: 1% 0 0 8%;
}

.service_down dl dt .en {
	color: #f7f7f7;
	font-size: 72px;
	font-weight: bold;
	text-transform: uppercase;
}

.service_down dl dt .en span {
	font-weight: 200;
}

.service_down dl dt h3 {
	font-weight: normal;
	color: #444444;
	font-size: 24px;
}

.service_down dl dt .t {
	margin-top: 10px;
	color: #777777;
	font-size: 15px;
	line-height: 24px;
	padding-right: 18%;
	height: 72px;
	/*overflow: hidden;*/
}

.service_down dl dt .down {
	line-height: 0;
	margin-top: 6%;
	display: block;
	width: 23%;
}

.service_down dl dd {
	margin-left: 5.2%;
	float: left;
	width: 28%;
	line-height: 0;
	border: 1px solid #dcdcdc;
}

@media (max-width: 1152px) {
	.service_down h1 {
		font-size: 24px;
	}
	.service_down dl dt {
		width: 71%;
		min-height: 292px;
		background-size: cover;
		background-size: 100% 100%;
		padding: 1% 3% 0 3%;
	}
	.service_down dl dt .en {
		font-size: 50px;
	}
	.service_down dl dt .t {
		padding-right: 0;
	}
	.service_down dl dd {
		margin-left: 0;
	}
}

@media (max-width: 991px) {
	.service_down {
		padding: 6% 0 0;
	}
	.service_down dl {
		margin-top: 3.5%;
	}
}

@media (max-width: 768px) {
	.service_down dl dt {
		width: 100%;
		background: none;
		padding: 0;
		margin-top: 0;
		min-height: 0;
	}
	.service_down dl dt .en {
		font-size: 30px;
	}
	.service_down dl dt h3 {
		font-size: 18px;
	}
	.service_down dl dt .t {
		height: auto;
		font-size: 14px;
	}
	.service_down dl dt .down {
		margin-top: 20px;
		width: 18%;
	}
	.service_down dl dd {
		width: 100%;
		margin-top: 4%;
	}
}

@media (max-width: 480px) {
	.service_down dl dt .down {
		width: 30%;
	}
}

.service_down2 {
	background: url(../images/down_bg_g2.jpg) no-repeat center top;
	margin: 80px 0 40px;
}

.service_down2 dl dt {
	width: 57%;
	float: left;
	padding-top: 6%;
}

.service_down2 dl dt .en {
	color: rgba(255, 255, 255, 0.09);
	font-size: 60px;
	font-family: arial;
	font-weight: bold;
	text-transform: uppercase;
}

.service_down2 dl dt .en span {
	font-weight: normal;
}

.service_down2 dl dt h3 {
	margin-top: 2%;
	font-weight: normal;
	color: #fff;
	font-size: 24px;
}

.service_down2 dl dt ol {
	margin-top: 3%;
}

.service_down2 dl dt ol li {
	margin: 10px 0;
	float: left;
	width: 20%;
	cursor: pointer;
}

.service_down2 dl dt ol li em {
	display: block;
	float: left;
	width: 19px;
	line-height: 0;
	margin-right: 5px;
}

.service_down2 dl dt ol li span {
	display: block;
	float: left;
	color: #fff;
	font-size: 14px;
}

.service_down2 dl dt ol li:hover span,
.service_down2 dl dt ol li.cur span {
	text-decoration: underline;
}

.service_down2 dl dd {
	float: right;
	width: 43%;
	position: relative;
}

.service_down2 dl dd span {
	margin-top: -8.5%;
	display: block;
	float: left;
	line-height: 0;
	border: 6px solid #fff;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	width: 82%;
}

.service_down2 dl dd .down {
	line-height: 0;
	position: absolute;
	right: 0;
	bottom: 18%;
	display: block;
	width: 23%;
}

@media (max-width: 1152px) {
	.service_down2 dl dt {
		width: 57%;
		float: left;
		padding-top: 6%;
	}
	.service_down2 dl dt .en {
		font-size: 40px;
	}
	.service_down2 dl dt ol {
		margin-top: 3%;
	}
	.service_down2 dl dt ol li {
		width: 25%;
	}
	.service_down2 dl dd span {
		margin-top: 0;
	}
}

@media (max-width: 991px) {
	.service_down2 {
		margin: 6% 0 0;
	}
}

@media (max-width: 768px) {
	.service_down2 {
		background: #0f81bb;
		padding: 6% 0;
	}
	.service_down2 dl dt {
		width: 100%;
		padding-top: 0;
	}
	.service_down2 dl dt .en {
		font-size: 30px;
	}
	.service_down2 dl dt h3 {
		margin-top: 0;
		font-size: 18px;
	}
	.service_down2 dl dt ol {
		margin-top: 3%;
	}
	.service_down2 dl dd {
		width: 100%;
		margin-top: 4%;
	}
	.service_down2 dl dd span {
		margin-top: 0;
		border: 2px solid #fff;
		width: 100%;
	}
	.service_down2 dl dd .down {
		float: left;
		margin-top: 20px;
		width: 18%;
		position: relative;
		display: block;
	}
}

@media (max-width: 480px) {
	.service_down2 dl dd .down {
		width: 30%;
	}
}

@media (max-width: 414px) {
	.service_down2 dl dt ol li {
		width: 33.33333333%;
	}
}

@media (max-width: 360px) {
	.service_down2 dl dt ol li {
		width: 50%;
	}
}

.service_down3 {
	padding: 62px 0 40px;
}

.service_down3 .top_title h3 {
	float: left;
	width: auto;
	color: #333333;
	font-size: 30px;
	font-weight: normal;
}

.service_down3 .top_title .leixing_btn {
	float: right;
	width: auto;
}

.service_down3 .top_title .leixing_btn .service_btn {
	margin-right: 4px;
	float: left;
	width: 196px;
	height: 46px;
	background: #fff;
	position: relative;
}

.service_down3 .top_title .leixing_btn .service_btn .ch {
	border: 1px solid #dcdcdc;
	display: block;
	width: 100%;
	height: 46px;
	line-height: 44px;
	padding: 0 10px;
	color: #9f9e9e;
	font-size: 14px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.service_down3 .top_title .leixing_btn .service_btn .ch:before {
	content: "";
	position: absolute;
	right: 20px;
	top: 20px;
	width: 19px;
	height: 10px;
	background: url(../images/service_icon3.jpg) no-repeat center center;
}

.service_down3 .top_title .leixing_btn .service_btn .ch_con {
	display: none;
	border: 1px solid #dcdcdc;
	z-index: 999;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background: #FFFFFF;
	padding: 10px;
}

.service_down3 .top_title .leixing_btn .service_btn .ch_con a {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: #777;
	font-size: 14px;
	display: block;
	line-height: 26px;
}

.service_down3 .top_title .leixing_btn .service_btn .ch_con a:hover {
	color: #103219;
}

.service_down3 .top_title .leixing_btn .btn {
	-webkit-appearance: none;
	width: 117px;
	height: 46px;
	background: #bf9e5b;
	border: none;
	float: right;
	color: #fff;
	font-size: 18px;
	font-family: "微软雅黑";
}

.service_down3 .tables_btn {
	margin-top: 35px;
}

.service_down3 .tables_btn table {
	border: 1px solid #dedede;
	margin-bottom: 10px;
}

.service_down3 .tables_btn table tr {
	border: 1px solid #dedede;
}

.service_down3 .tables_btn table tr th {
	color: #555555;
	font-size: 16px;
	background: #fafafa;
	padding: 20px;
	font-weight: normal;
}

.service_down3 .tables_btn table tr th a {
	color: #081f63;
}

.service_down3 .tables_btn table tr td {
	color: #666666;
	font-size: 14px;
	padding: 15px 20px;
}

.service_down3 .tables_btn table tr td span {
	cursor: pointer;
	background: url(../images/down_icon4.jpg) no-repeat center center;
	width: 21px;
	height: 21px;
	display: inline-block;
}

.service_down3 .tables_btn table tr td span.cur {
	background: url(../images/down_icon5.jpg) no-repeat center center;
}

@media (max-width: 1152px) {
	.service_down3 .top_title h3 {
		font-size: 24px;
		line-height: 46px;
	}
}

@media (max-width: 991px) {
	.service_down3 {
		padding: 6% 0 5%;
	}
}

@media (max-width: 768px) {
	.service_down3 .top_title h3 {
		width: 100%;
		font-size: 18px;
	}
	.service_down3 .top_title .leixing_btn {
		margin-top: 5px;
		float: left;
		width: 100%;
	}
	.service_down3 .tables_btn table tr th {
		font-size: 14px;
		padding: 15px 10px;
	}
	.service_down3 .tables_btn table tr td {
		font-size: 13px;
		padding: 10px;
	}
}

@media (max-width: 640px) {
	.service_down3 .top_title .leixing_btn .service_btn {
		width: 100%;
		margin-right: 0;
		margin-bottom: 5px;
	}
	.service_down3 .top_title .leixing_btn .btn {
		float: left;
	}
}

@media (max-width: 414px) {
	.service_down3 .tables_btn table tr th {
		font-size: 14px;
		padding: 15px 5px;
	}
	.service_down3 .tables_btn table tr td {
		font-size: 13px;
		padding: 10px 5px;
	}
}

.jjfa_div1 {
	background: url(../images/jjfa_bg_g1.jpg) no-repeat center bottom #ffffff;
	padding-top: 100px;
}

.jjfa_div1 .text {
	float: right;
	width: 37.5%;
	padding-top: 7.5%;
}

.jjfa_div1 .text h3 {
	color: #081f63;
	font-size: 35px;
	font-weight: normal;
}

.jjfa_div1 .text .en {
	color: #888888;
	font-size: 14px;
	font-family: arial;
	text-transform: uppercase;
	margin-top: 5px;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 16px;
}

.jjfa_div1 .text .t {
	margin-top: 16px;
	color: #666666;
	font-size: 15px;
	line-height: 24px;
}

.jjfa_div1 .img {
	float: left;
	width: 59%;
	line-height: 0;
	margin-bottom: -3.5%;
}

.jjfa_div2 {
	background: url(../images/jjfa_bg_g2.jpg) no-repeat center top;
	padding-top: 138px;
}

.jjfa_div2 .text {
	float: left;
	width: 40%;
	padding-top: 6%;
}

.jjfa_div2 .text h3 {
	color: #fff;
	font-size: 35px;
	font-weight: normal;
}

.jjfa_div2 .text .en {
	color: #fff;
	font-size: 14px;
	font-family: arial;
	text-transform: uppercase;
	margin-top: 5px;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 16px;
}

.jjfa_div2 .text .t {
	margin-top: 16px;
	color: #fff;
	font-size: 15px;
	line-height: 24px;
}

.jjfa_div2 .img {
	float: right;
	width: 57.41666%;
	line-height: 0;
}

.jjfa_div5 {
	padding: 70px 0;
}

.jjfa_div5 .text {
	float: right;
	width: 37.5%;
	padding-top: 7.5%;
}

.jjfa_div5 .text h3 {
	color: #081f63;
	font-size: 35px;
	font-weight: normal;
}

.jjfa_div5 .text .en {
	color: #888888;
	font-size: 14px;
	font-family: arial;
	text-transform: uppercase;
	margin-top: 5px;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 16px;
}

.jjfa_div5 .text .t {
	margin-top: 16px;
	color: #666666;
	font-size: 15px;
	line-height: 24px;
}

.jjfa_div5 .img {
	float: left;
	width: 38%;
	line-height: 0;
	margin-left: 6.4%;
}

.jjfa_div6 {
	background: #f5f5f5;
	padding-bottom: 105px;
}

.jjfa_div6 .text {
	float: left;
	width: 47%;
	padding-top: 10%;
}

.jjfa_div6 .text h3 {
	color: #081f63;
	font-size: 35px;
	font-weight: normal;
}

.jjfa_div6 .text .en {
	color: #888888;
	font-size: 14px;
	font-family: arial;
	text-transform: uppercase;
	margin-top: 5px;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 16px;
}

.jjfa_div6 .text .t {
	margin-top: 16px;
	color: #666666;
	font-size: 15px;
	line-height: 24px;
}

.jjfa_div6 .img {
	float: right;
	width: 42%;
	line-height: 0;
	margin-top: -7.2%;
}

.jjfa_div7 {
	padding: 70px 0;
}

.jjfa_div7 .text_box {
	position: relative;
}

.jjfa_div7 .text_box .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 46%;
	font-size: 0;
	margin-top: -11%;
}

.jjfa_div7 .text_box .text {
	width: 97%;
	background: #f5f5f5;
	border: 1px solid #dcdcdc;
	float: right;
	padding: 5% 5% 10% 47%;
}

.jjfa_div7 .text_box .text h3 {
	color: #081f63;
	font-size: 35px;
	font-weight: normal;
}

.jjfa_div7 .text_box .text .en {
	color: #888888;
	font-size: 14px;
	font-family: arial;
	text-transform: uppercase;
	margin-top: 5px;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 16px;
}

.jjfa_div7 .text_box .text .t {
	margin-top: 16px;
	color: #666666;
	font-size: 15px;
	line-height: 24px;
}

.jjfa_div8 {
	background: url(../images/jjfa_bg_g3.jpg) no-repeat center top;
	background-size: cover;
	background-size: 100% 100%;
	padding: 76px 0 90px;
}

.jjfa_div8 .text_box {
	max-width: 740px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.jjfa_div8 .text_box .text h3 {
	color: #fff;
	font-size: 35px;
	font-weight: normal;
}

.jjfa_div8 .text_box .text .en {
	color: #fff;
	font-size: 14px;
	font-family: arial;
	text-transform: uppercase;
	margin-top: 5px;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 16px;
}

.jjfa_div8 .text_box .text .t {
	margin-top: 16px;
	color: #fff;
	font-size: 15px;
	line-height: 24px;
}

.jjfa_div8 .text_box .img {
	max-width: 269px;
	font-size: 0;
	margin: 50px auto 0;
}

@media (max-width: 991px) {
	.jjfa_div1 .text h3,
	.jjfa_div2 .text h3,
	.jjfa_div5 .text h3,
	.jjfa_div6 .text h3 {
		font-size: 24px;
	}
	.jjfa_div1 .text .t,
	.jjfa_div2 .text .t,
	.jjfa_div5 .text .t,
	.jjfa_div6 .text .t {
		font-size: 14px;
	}
	.jjfa_div7 .text_box .text h3,
	.jjfa_div8 .text_box .text h3 {
		font-size: 24px;
	}
	.jjfa_div7 .text_box .text .t,
	.jjfa_div8 .text_box .text .t {
		font-size: 14px;
	}
	.jjfa_div1 {
		padding-top: 6%;
	}
	.jjfa_div1 .text {
		padding-top: 7%;
	}
	.jjfa_div2 {
		padding-top: 6%;
	}
	.jjfa_div2 .text {
		padding-top: 5%;
	}
	.jjfa_div5 {
		padding: 6% 0;
	}
	.jjfa_div5 .text {
		width: 49%;
		padding-top: 5%;
	}
	.jjfa_div6 {
		padding-bottom: 8%;
	}
	.jjfa_div6 .text {
		width: 49%;
		padding-top: 8%;
	}
	.jjfa_div7 {
		padding: 6% 0;
	}
	.jjfa_div7 .text_box .text {
		padding-right: 3%;
	}
	.jjfa_div7 .text_box .img {
		left: 15px;
	}
	.jjfa_div8 {
		padding: 6% 0;
	}
	.jjfa_div8 .text_box .img {
		margin-top: 6%;
	}
}

@media (max-width: 768px) {
	.jjfa_div1 .text,
	.jjfa_div2 .text,
	.jjfa_div5 .text,
	.jjfa_div6 .text {
		width: 100%;
		float: none;
		padding-top: 0;
	}
	.jjfa_div1 .img,
	.jjfa_div2 .img,
	.jjfa_div5 .img,
	.jjfa_div6 .img {
		margin-top: 4%;
		width: 100%;
		float: none;
		text-align: center;
		margin-bottom: 0;
	}
	.jjfa_div1 {
		padding-bottom: 6%;
	}
	.jjfa_div2 {
		background-size: cover;
		background-size: 100% 100%;
	}
	.jjfa_div5 .img {
		margin-left: 0;
	}
	.jjfa_div6 {
		padding: 6% 0 7%;
	}
	.jjfa_div6 .img {
		margin-left: 0;
	}
	.jjfa_div7 {
		padding: 6% 0 7%;
	}
	.jjfa_div7 .text_box .text {
		padding: 0;
		float: left;
		width: 100%;
		background: none;
		border: none;
	}
	.jjfa_div7 .text_box .img {
		float: left;
		position: relative;
		left: 0;
		margin-top: 4%;
		width: 100%;
		text-align: center;
	}
	.jjfa_div8 .text_box {
		text-align: left;
	}
}

@media (max-width: 640px) {
	.jjfa_div1 .text h3,
	.jjfa_div2 .text h3,
	.jjfa_div5 .text h3,
	.jjfa_div6 .text h3 {
		font-size: 18px;
	}
	.jjfa_div7 .text_box .text h3,
	.jjfa_div8 .text_box .text h3 {
		font-size: 18px;
	}
}

.jjfa_div3 {
	margin-top: 60px;
}

.jjfa_div3 h2,
.jjfa_div3 .yw {
	text-align: center;
}

.jjfa_div3 h2 {
	font-weight: normal;
	color: #081f63;
	font-size: 26px;
}

.jjfa_div3 .yw {
	color: #E5E5E5;
	font-size: 18px;
	font-family: arial;
	text-transform: uppercase;
	margin-top: 3px;
}

.jjfa_div3 ol {
	margin-top: 25px;
}

.jjfa_div3 ol li {
	float: left;
	width: 16.39%;
	border: 1px solid #eaeaea;
	margin-right: 0.3333%;
	height: 300px;
}

.jjfa_div3 ol li:last-child {
	margin-right: 0;
}

.jjfa_div3 ol li .top {
	text-align: center;
	background: #f9f9f9;
	padding: 35px 10px 25px;
}

.jjfa_div3 ol li .top .img {
	font-size: 0;
}

.jjfa_div3 ol li .top .bt {
	color: #727272;
	font-size: 16px;
	margin-top: 10px;
}

.jjfa_div3 ol li .text {
	text-align: center;
	padding: 30px 0;
}

.jjfa_div3 ol li .text a {
	color: #646464;
	font-size: 14px;
	line-height: 30px;
	display: block;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	padding: 0 10px;
}

.jjfa_div3 ol li .text a:hover {
	color: #081f63;
}

@media (max-width: 1152px) {
	.jjfa_div3 h2 {
		font-size: 24px;
	}
	.jjfa_div3 .yw {
		font-size: 18px;
	}
}

@media (max-width: 991px) {
	.jjfa_div3 {
		margin-top: 6%;
	}
}

@media (max-width: 640px) {
	.jjfa_div3 h2 {
		font-size: 18px;
	}
	.jjfa_div3 .yw {
		font-size: 13px;
	}
	.jjfa_div3 ol li {
		width: 49%;
		margin-bottom: 2%;
		margin-right: 2%;
	}
	.jjfa_div3 ol li:nth-child(2n) {
		margin-right: 0;
	}
}

@media (max-width: 360px) {
	.jjfa_div3 ol li {
		width: 100%;
		margin-bottom: 2%;
		margin-right: 0;
	}
	.jjfa_div3 ol li:nth-child(2n) {
		margin-right: 0;
	}
}

.jjfa_div4 {
	margin-top: 50px;
	margin-bottom: 60px;
}

.jjfa_div4 .yw,
.jjfa_div4 h2 {
	text-align: center;
}

.jjfa_div4 h2 {
	font-weight: normal;
	color: #081f63;
	font-size: 26px;
	margin-top: 3px;
}

.jjfa_div4 .yw {
	color: #E5E5E5;
	font-size: 18px;
	font-family: arial;
	text-transform: uppercase;
}

.jjfa_div4 ol {
	margin-top: 30px;
	margin-bottom: 55px;
}

.jjfa_div4 ol li {
	width: 16.66666667%;
	float: left;
	position: relative;
	font-size: 0;
}

.jjfa_div4 ol li img {
	width: 100%;
}

.jjfa_div4 ol li span {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	color: #ffffff;
	font-size: 14px;
	line-height: 40px;
	padding: 0 20px;
}

.jjfa_div4 .more {
	width: 178px;
	height: 40px;
	border: 1px solid #b6b6b6;
	display: block;
	margin: 0 auto;
	text-align: center;
	line-height: 38px;
	font-family: arial;
	text-transform: uppercase;
	font-size: 17px;
	color: #454343;
}

@media (max-width: 1152px) {
	.jjfa_div4 h2 {
		font-size: 24px;
	}
	.jjfa_div4 .yw {
		font-size: 18px;
	}
}

@media (max-width: 991px) {
	.jjfa_div4 {
		margin: 6% 15px;
	}
	.jjfa_div4 ol {
		margin: 4% 0;
	}
	.jjfa_div4 ol li {
		width: 32%;
		margin-bottom: 2%;
		margin-right: 2%;
	}
	.jjfa_div4 ol li:nth-child(3n) {
		margin-right: 0;
	}
}

@media (max-width: 640px) {
	.jjfa_div4 h2 {
		font-size: 18px;
	}
	.jjfa_div4 .yw {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.jjfa_div4 ol li {
		width: 49%;
		margin-bottom: 2%;
		margin-right: 2%;
	}
	.jjfa_div4 ol li:nth-child(3n) {
		margin-right: 2%;
	}
	.jjfa_div4 ol li:nth-child(2n) {
		margin-right: 0;
	}
}

@media (max-width: 360px) {
	.jjfa_div4 ol li {
		width: 100%;
		margin-bottom: 2%;
		margin-right: 0;
	}
	.jjfa_div4 ol li:nth-child(3n) {
		margin-right: 0;
	}
	.jjfa_div4 ol li:nth-child(2n) {
		margin-right: 0;
	}
}

.news_div {
	padding: 70px 0 50px;
}

.news_div h1 {
	text-align: center;
	font-weight: normal;
	color: #081f63;
	font-size: 26px;
}

.news_div .news_menu {
	width: 100%;

	margin-top: 30px;
	text-align: center
}

.news_div .news_menu a {
	display: inline-block;
	color: #666666;
	font-size: 16px;
	line-height: 36px;
	border-radius: 3px;
	padding: 0 26px;
}

.news_div .news_menu a:hover,
.news_div .news_menu a.cur {
	background: #081f63;
	color: #fff;
}

.news_div .news_con {
	margin-top: 40px;
}

.news_div .news_con ol li {
	float: left;
	width: 19.2%;
}

.news_div .news_con ol li:last-child {
	margin-right: 0;
}

.news_div .news_con ol li img {
	width: 100%;
}

.news_div .news_con ol li .img {
	font-size: 0;
}

.news_div .news_con ol li .text {
	background: #f2f2f2;
	padding: 25px 28px;
}

.news_div .news_con ol li .text .data {
	color: #888888;
	font-size: 13px;
	font-family: arial;
	font-weight: bold;
}

.news_div .news_con ol li .text .data span {
	display: inline-block;
	margin-left: 15px;
}

.news_div .news_con ol li .text .bt {
	margin-top: 5px;
	color: #444444;
	font-size: 16px;
	font-weight: bold;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.news_div .news_con ol li .text .more {
	margin-top: 10px;
	width: 117px;
	height: 30px;
	border: 1px solid #b5b5b5;
	text-align: center;
	line-height: 28px;
	color: #4291c6;
	font-size: 13px;
}

.news_div .news_con ol li:hover .text {
	background: #0a3f67;
}

.news_div .news_con ol li:hover .text .data,
.news_div .news_con ol li:hover .text .bt,
.news_div .news_con ol li:hover .text .more {
	color: #fff;
}

.news_div .news_con ol li:hover .text .more {
	border-color: #fff;
}

.news_div .news_data {
	position: relative;
	width: 71%;
	margin: 30px auto 0;
}

.news_div .news_data .nian-s,
.news_div .news_data .nian-x {
	position: absolute;
	top: 0;
	display: inline-block;
	color: #666666;
	font-size: 17px;
	font-weight: bold;
	line-height: 30px;
}

.news_div .news_data .nian-s:hover,
.news_div .news_data .nian-x:hover {
	color: #081f63;
}

.news_div .news_data .nian-s {
	left: 0;
}

.news_div .news_data .nian-x {
	right: 0;
}

.news_div .news_data .jiantou-s,
.news_div .news_data .jiantou-x {
	position: absolute;
	top: 0;
	margin-top: 9px;
	line-height: 15px;
	display: inline-block;
	width: 30px;
	height: 15px;
}

.news_div .news_data .jiantou-s {
	left: 5%;
	background: url(../images/bews_icon.png) no-repeat left center;
}

.news_div .news_data .jiantou-x {
	right: 5%;
	background: url(../images/bews_icon2.png) no-repeat left center;
}

.news_div .news_data .ol-list-data {
	position: relative;
	width: 86%;
	margin: 0 auto;
}

.news_div .news_data .ol-list-data:before {
	content: "";
	position: absolute;
	left: 0;
	top: 15px;
	width: 100%;
	height: 2px;
	background: #d7d7d7;
}

.news_div .news_data .ol-list-data .text {
	cursor: pointer;
	float: left;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 2;
}

.news_div .news_data .ol-list-data .text .icon {
	display: block;
	width: 24px;
	height: 24px;
	margin: 4px auto 0;
	background: url(../images/bews_icon3.png) no-repeat center center;
}

.news_div .news_data .ol-list-data .text span {
	text-align: center;
	display: block;
	color: #999999;
	font-size: 15px;
	font-weight: bold;
	font-family: arial;
	margin-top: 6px;
}

.news_div .news_data .ol-list-data .text:hover .icon,
.news_div .news_data .ol-list-data .text.cur .icon {
	background: url(../images/bews_icon4.png) no-repeat center center;
}

@media (max-width: 1366px) {
	.news_div .news_data {
		width: 80%;
	}
	.news_div .news_data .jiantou-s {
		left: 6%;
	}
	.news_div .news_data .jiantou-x {
		right: 6%;
	}
}

@media (max-width: 1152px) {
	.news_div h1 {
		font-size: 24px;
	}
	.news_div .news_data {
		width: 82%;
	}
}

@media (max-width: 1024px) {
	.news_div .news_data {
		width: 83%;
	}
}

@media (max-width: 991px) {
	.news_div {
		padding: 6% 0;
	}
	.news_div .news_menu {
		margin-top: 20px;
	}
	.news_div .news_con {
		margin: 30px 15px 0;
	}
	.news_div .news_data {
		width: 83%;
	}
	.news_div .news_data .jiantou-s {
		left: 7%;
	}
	.news_div .news_data .jiantou-x {
		right: 7%;
	}
	.news_div .news_data .ol-list-data .slick-prev,
	.news_div .news_data .ol-list-data .slick-next {
		width: 30px;
		height: 15px;
		border: none;
		top: 9px;
		margin-top: 0;
	}
	.news_div .news_data .ol-list-data .slick-prev {
		background: url(../images/prev.jpg) no-repeat center center;
		left: 0;
	}
	.news_div .news_data .ol-list-data .slick-next {
		background: url(../images/next.jpg) no-repeat center center;
		right: 0;
	}
}

@media (max-width: 768px) {
	.news_div h1 {
		font-size: 18px;
	}
	.news_div .news_menu a {
		font-size: 15px;
	}
	.news_div .news_con ol li {
		width: 49%;
		margin-bottom: 2%;
		margin-right: 0;
	}
	.news_div .news_con ol li:nth-child(2n) {
		float: right;
	}
	.news_div .news_data {
		width: 100%;
	}
	.news_div .news_data .nian-s {
		left: 15px;
	}
	.news_div .news_data .nian-x {
		right: 15px;
	}
	.news_div .news_data .jiantou-s,
	.news_div .news_data .jiantou-x {
		display: none;
	}
	.news_div .news_data .ol-list-data {
		width: 72%;
	}
	.news_div .news_data .ol-list-data .slick-prev {
		left: -30px;
	}
	.news_div .news_data .ol-list-data .slick-next {
		right: -30px;
	}
}

@media (max-width: 640px) {
	.news_div .news_con ol li .text {
		padding: 20px 15px;
	}
	.news_div .news_con ol li .text .bt {
		font-size: 15px;
	}
	.news_div .news_data .ol-list-data {
		width: 63%;
	}
	.news_div .news_data .ol-list-data .slick-prev {
		left: -30px;
	}
	.news_div .news_data .ol-list-data .slick-next {
		right: -30px;
	}
}

@media (max-width: 480px) {
	.news_div .news_data .ol-list-data {
		width: 50%;
	}
	.news_div .news_data .ol-list-data .slick-prev {
		left: -30px;
	}
	.news_div .news_data .ol-list-data .slick-next {
		right: -30px;
	}
}

@media (max-width: 414px) {
	.news_div .news_menu a {
		padding: 0 15px;
		font-size: 16px;
		line-height: 34px;
	}
}

@media (max-width: 360px) {
	.news_div {
		padding-bottom: 10%;
	}
	.news_div .news_menu a {
		padding: 0 10px;
	}
	.news_div .news_con ol li {
		width: 100%;
	}
	.news_div .news_data .nian-s,
	.news_div .news_data .nian-x {
		font-size: 13px;
	}
	.news_div .news_data .ol-list-data {
		width: 50%;
	}
	.news_div .news_data .ol-list-data .text span {
		font-size: 12px;
	}
}

@media (max-width: 320px) {
	.news_div .news_menu a {
		padding: 0 10px;
		font-size: 14px;
		line-height: 28px;
	}
	.news_div .news_data .ol-list-data {
		width: 40%;
	}
	.news_div .news_data .ol-list-data .text span {
		font-size: 12px;
	}
}

.hxys_div {
	padding: 56px 0 75px;
}

.hxys_div .container {
	position: relative;
}

.hxys_div .container .left {
	width: 82.25%;
	position: absolute;
	right: 0;
	top: 0;
	padding-top: 4%;
}

.hxys_div .container .left .tit {
	padding-left: 22%;
	color: #d4d4d4;
	font-size: 53px;
	font-family: arial;
	text-transform: uppercase;
}

.hxys_div .container .left .tit span {
	font-weight: bold;
	display: inline-block;
	margin-left: 2%;
}

.hxys_div .container .left .text {
	margin-top: 3%;
	padding: 5% 10% 6% 22%;
	background: #f9f9f9;
	min-height: 278.55px;
}

.hxys_div .container .left .text h3 {
	color: #2c6eb8;
	font-size: 40px;
	font-weight: normal;
	padding-bottom: 3%;
	position: relative;
}

.hxys_div .container .left .text h3:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #2c6eb8;
}

.hxys_div .container .left .text .t {
	margin-top: 3%;
	color: #6d6d6d;
	line-height: 24px;
	font-size: 14px;
}

.hxys_div .container .right {
	float: left;
	width: 30%;
	position: relative;
}

.hxys_div .container .right .bg {
	display: block;
	width: 76.37%;
	font-size: 0;
	margin-top: 5%;
}

.hxys_div .container .right .img {
	position: absolute;
	right: 0;
	top: 0;
	width: 94.5%;
}

@media (max-width: 991px) {
	.hxys_div {
		padding: 6% 0;
	}
	.hxys_div .container .left .tit {
		font-size: 30px;
	}
	.hxys_div .container .left .text {
		background: none;
		min-height: 0;
		padding-top: 0;
	}
	.hxys_div .container .left .text h3 {
		font-size: 24px;
	}
}

@media (max-width: 640px) {
	.hxys_div .container .left {
		width: 100%;
		position: relative;
		padding-top: 0;
	}
	.hxys_div .container .left .tit {
		font-size: 20px;
		padding: 0;
	}
	.hxys_div .container .left .text {
		margin-top: 8px;
		background: none;
		min-height: 0;
		padding: 0;
	}
	.hxys_div .container .left .text h3 {
		font-size: 18px;
		padding-bottom: 15px;
	}
	.hxys_div .container .left .text .t {
		margin-top: 10px;
	}
	.hxys_div .container .right {
		margin-top: 20px;
		width: 100%;
	}
	.hxys_div .container .right .bg {
		display: none;
	}
	.hxys_div .container .right .img {
		position: relative;
		width: 100%;
	}
}

.hxys_div2 {
	background: url(../images/hxys_bg2.jpg) no-repeat center top;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/home_bg.jpg', sizingMethod='scale');
	min-height: 538px;
}

.hxys_div2 .text_con {
	width: 58%;
	padding-top: 11%;
}

.hxys_div2 .text_con .tit {
	color: #4a6994;
	font-size: 53px;
	font-family: arial;
	text-transform: uppercase;
}

.hxys_div2 .text_con .tit span {
	font-weight: bold;
	display: inline-block;
	margin-left: 2%;
}

.hxys_div2 .text_con .text {
	margin-top: 1%;
}

.hxys_div2 .text_con .text h3 {
	color: #ffffff;
	font-size: 40px;
	font-weight: normal;
	padding-bottom: 3%;
	position: relative;
}

.hxys_div2 .text_con .text h3:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #ffffff;
}

.hxys_div2 .text_con .text .t {
	margin-top: 3%;
	color: #ffffff;
	line-height: 24px;
	font-size: 14px;
}

@media (max-width: 991px) {
	.hxys_div2 .text_con .tit {
		font-size: 30px;
	}
	.hxys_div2 .text_con .text h3 {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.hxys_div2 {
		min-height: 0;
	}
	.hxys_div2 .text_con {
		padding: 12% 0;
	}
}

@media (max-width: 640px) {
	.hxys_div2 .text_con .tit {
		font-size: 20px;
	}
	.hxys_div2 .text_con .text {
		margin-top: 8px;
	}
	.hxys_div2 .text_con .text h3 {
		font-size: 18px;
		padding-bottom: 15px;
	}
	.hxys_div2 .text_con .text .t {
		margin-top: 10px;
	}
}

@media (max-width: 414px) {
	.hxys_div2 .text_con {
		width: 100%;
		padding: 15% 0;
	}
}

.hxys_div3 {
	padding-bottom: 80px;
}

.hxys_div3 .container {
	position: relative;
}

.hxys_div3 .container .left {
	width: 72.5%;
	position: relative;
	float: left;
	left: 0;
	top: 0;
	padding-top: 2%;
}

.hxys_div3 .container .left .tit {
	margin-top: 3%;
	padding-left: 10%;
	color: #d4d4d4;
	font-size: 47px;
	font-family: arial;
	text-transform: uppercase;
}

.hxys_div3 .container .left .tit span {
	font-weight: bold;
	display: inline-block;
	margin-left: 0;
	margin-right: 2%;
}

.hxys_div3 .container .left .text {
	margin-top: 0;
	padding: 5% 10% 6% 10%;
	background: #f9f9f9;
}

.hxys_div3 .container .left .text h3 {
	color: #2c6eb8;
	font-size: 40px;
	font-weight: normal;
	padding-bottom: 3%;
	position: relative;
}

.hxys_div3 .container .left .text h3:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #2c6eb8;
}

.hxys_div3 .container .left .text .t {
	margin-top: 3%;
	color: #6d6d6d;
	line-height: 24px;
	font-size: 14px;
}

.hxys_div3 .container .right {
	float: right;
	width: 27.5%;
	position: relative;
}

.hxys_div3 .container .right .bg {
	float: right;
	display: block;
	width: 84.24%;
	font-size: 0;
	margin-top: 3%;
}

.hxys_div3 .container .right .img {
	position: absolute;
	left: 0;
	top: 0;
	width: 95.15%;
}

@media (max-width: 991px) {
	.hxys_div3 {
		padding-bottom: 8%;
	}
	.hxys_div3 .container .left {
		padding-top: 5%;
	}
	.hxys_div3 .container .left .tit {
		font-size: 30px;
		padding-left: 15px;
	}
	.hxys_div3 .container .left .text {
		background: none;
		min-height: 0;
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 15px;
	}
	.hxys_div3 .container .left .text h3 {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.hxys_div3 .container .left {
		padding-top: 2%;
	}
}

@media (max-width: 640px) {
	.hxys_div3 .container .left {
		width: 100%;
		position: relative;
		padding-top: 0;
	}
	.hxys_div3 .container .left .tit {
		font-size: 20px;
		padding: 0;
		margin-top: 8px;
	}
	.hxys_div3 .container .left .text {
		background: none;
		min-height: 0;
		padding: 0;
	}
	.hxys_div3 .container .left .text h3 {
		font-size: 18px;
		padding-bottom: 15px;
	}
	.hxys_div3 .container .left .text .t {
		margin-top: 10px;
	}
	.hxys_div3 .container .right {
		margin-top: 20px;
		width: 100%;
	}
	.hxys_div3 .container .right .bg {
		display: none;
	}
	.hxys_div3 .container .right .img {
		position: relative;
		width: 100%;
	}
}

.hxys_div4 {
	background: url(../images/hxys_bg3.jpg) no-repeat center top;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/home_bg.jpg', sizingMethod='scale');
	min-height: 537px;
}

.hxys_div4 .container {
	position: relative;
	min-height: 537px;
}

.hxys_div4 .container .img {
	position: absolute;
	left: 15px;
	bottom: 0;
	font-size: 0;
	width: 32%;
}

.hxys_div4 .container .text {
	float: right;
	width: 44%;
	padding-top: 10%;
}

.hxys_div4 .container .text h3 {
	color: #fff;
	font-size: 40px;
	font-weight: normal;
	padding-bottom: 3%;
	position: relative;
}

.hxys_div4 .container .text h3:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background: #fff;
}

.hxys_div4 .container .text .t {
	margin-top: 3%;
	color: #fff;
	line-height: 24px;
	font-size: 14px;
}

.hxys_div4 .container .text .tit {
	margin-top: 3%;
	color: #55769a;
	font-size: 34px;
	font-family: arial;
	text-transform: uppercase;
}

.hxys_div4 .container .text .tit span {
	font-weight: bold;
	display: inline-block;
	margin-left: 2%;
}

@media (max-width: 991px) {
	.hxys_div4 .container .text {
		padding-top: 15%;
		width: 50%;
	}
	.hxys_div4 .container .text h3 {
		font-size: 24px;
	}
	.hxys_div4 .container .text .tit {
		font-size: 30px;
	}
}

@media (max-width: 768px) {
	.hxys_div4 {
		min-height: 0;
		padding: 6% 0;
	}
	.hxys_div4 .container {
		min-height: 0;
	}
	.hxys_div4 .container .img {
		position: relative;
		left: 0;
	}
	.hxys_div4 .container .text {
		width: 60%;
		padding-top: 8%;
	}
}

@media (max-width: 640px) {
	.hxys_div4 .container .img {
		margin-top: 20px;
		width: 100%;
		float: left;
	}
	.hxys_div4 .container .text {
		width: 100%;
		padding-top: 0;
	}
	.hxys_div4 .container .text h3 {
		font-size: 18px;
		padding-bottom: 15px;
	}
	.hxys_div4 .container .text .t {
		margin-top: 10px;
	}
	.hxys_div4 .container .text .tit {
		font-size: 20px;
	}
}

.pro_menu ul li {
	/*width: 14.285%;*/
	/*width: 50%;*/
	width: auto;
	flex: 1;
}


/*修改样式*/

.pro_menu ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.pro_menu ul:before,
.pro_menu ul:after {
	content: none;
}

.pro_xgcp {
	padding: 80px 0;
}

.pro_xgcp h1 {
	text-align: center;
	font-weight: normal;
	color: #117cc6;
	font-size: 28px;
}

.pro_xgcp ol {
	margin-top: 36px;
}

.pro_xgcp ol li {
	width: 24%;
	float: left;
	margin-right: 1%;
	box-sizing: border-box;
}

.pro_xgcp ol li:last-child {
	margin-right: 0;
}

.pro_xgcp ol li .img {
	line-height: 0;
}

.pro_xgcp ol li .img img {
	display: block;
	width: 100%;
	border: 1px solid #d2d2d2;
}

.pro_xgcp ol li .text {
	padding-top: 5px;
}

.pro_xgcp ol li .text a {
	display: block;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	color: #333333;
	font-size: 16px;
	margin: 8px 0;
}

.pro_xgcp ol li .text a:hover {
	color: #117cc6;
}

.pro_xgcp ol li .text a:first-child {
	color: #117cc6 !important;
}

@media (max-width: 991px) {
	.pro_xgcp {
		padding: 6% 0;
	}
	.pro_xgcp h1 {
		font-size: 18px;
	}
	.pro_xgcp ol {
		margin-top: 4%;
	}
	.pro_xgcp ol li .text a {
		font-size: 14px;
	}
}

@media (max-width: 640px) {
	.pro_xgcp ol li {
		margin-top: 15px;
		margin-right: 0;
		width: 49%;
	}
	.pro_xgcp ol li:nth-child(2n) {
		float: right;
	}
	.pro_xgcp ol li .text {
		padding-top: 0;
		min-height: 160px;
		max-height: 200px;
	}
	.pro_xgcp ol li:nth-child(1),
	.pro_xgcp ol li:nth-child(2) {
		margin-top: 0;
	}
}

@media (max-width: 360px) {
	.pro_xgcp ol li {
		width: 100%;
	}
	.pro_xgcp ol li:nth-child(2) {
		margin-top: 15px;
	}
}

.pro_div {
	position: relative;
	padding-top: 142px;
}

.pro_div .text {
	float: left;
	margin-left: 18.6458%;
	margin-top: 9%;
	width: 36.5625%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/pro_bg1.png) no-repeat left top;
	min-height: 248px;
	padding-left: 30px;
	padding-top: 70px;
}

.pro_div .text .en {
	color: #e6e6e6;
	font-size: 36px;
	font-family: arial;
	font-weight: bold;
	text-transform: uppercase;
}

.pro_div .text h3 {
	color: #117cc6;
	font-size: 40px;
}

.pro_div .text .t {
	margin-top: 8px;
	color: #666666;
	font-size: 16px;
	line-height: 24px;
}

.pro_div .img {
	float: right;
	width: 47.96875%;
	line-height: 0;
	margin-right: 8.4895%;
}

.pro_div2 {
	background: #f2f2f2;
	padding-top: 136px;
	position: relative;
}

.pro_div2 .img {
	float: left;
	width: 44.9479%;
	margin-left: 4.53125%;
	line-height: 0;
}

.pro_div2 .text {
	margin-top: 2%;
	float: right;
	width: 47%;
	background: url(../images/pro_bg1.png) no-repeat left top;
	min-height: 248px;
	padding-left: 30px;
	padding-top: 70px;
}

.pro_div2 .text .en {
	color: #e6e6e6;
	font-size: 36px;
	font-family: arial;
	font-weight: bold;
	text-transform: uppercase;
}

.pro_div2 .text h3 {
	color: #117cc6;
	font-size: 40px;
}

.pro_div2 .text .t {
	margin-top: 8px;
	color: #666666;
	font-size: 16px;
	line-height: 24px;
}

.pro_div3 {
	position: relative;
	padding-top: 92px;
	background: #fcfcfc;
}

.pro_div3 .text {
	float: left;
	margin-left: 18.6458%;
	margin-top: 6%;
	width: 36.5625%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/pro_bg1.png) no-repeat left top;
	min-height: 248px;
	padding-left: 30px;
	padding-top: 70px;
}

.pro_div3 .text .en {
	color: #e6e6e6;
	font-size: 36px;
	font-family: arial;
	font-weight: bold;
	text-transform: uppercase;
}

.pro_div3 .text h3 {
	color: #117cc6;
	font-size: 40px;
}

.pro_div3 .text .t {
	margin-top: 8px;
	color: #666666;
	font-size: 16px;
	line-height: 24px;
}

.pro_div3 .img {
	float: right;
	width: 45.98958%;
	line-height: 0;
	margin-right: 4.58%;
}

@media (max-width: 1600px) {
	.pro_div .text,
	.pro_div3 .text {
		margin-left: 4.53125%;
		width: 50%;
	}
}

@media (max-width: 991px) {
	.pro_div,
	.pro_div2,
	.pro_div3 {
		padding: 6% 15px 0;
	}
	.pro_div .text,
	.pro_div2 .text,
	.pro_div3 .text {
		text-align: center;
		float: left;
		margin-left: 0;
		margin-top: 0;
		width: 100%;
		position: relative;
		background: none;
		min-height: 0;
		padding-left: 0;
		padding-top: 0;
	}
	.pro_div .text .en,
	.pro_div2 .text .en,
	.pro_div3 .text .en {
		font-size: 26px;
	}
	.pro_div .text h3,
	.pro_div2 .text h3,
	.pro_div3 .text h3 {
		font-size: 24px;
	}
	.pro_div .text .t,
	.pro_div2 .text .t,
	.pro_div3 .text .t {
		font-size: 14px;
	}
	.pro_div .img,
	.pro_div2 .img,
	.pro_div3 .img {
		text-align: center;
		margin-top: 4%;
		float: right;
		width: 100%;
		line-height: 0;
		margin-right: 0;
		margin-left: 0;
	}
}

@media (max-width: 640px) {
	.pro_div .text .en,
	.pro_div2 .text .en,
	.pro_div3 .text .en {
		font-size: 20px;
	}
	.pro_div .text h3,
	.pro_div2 .text h3,
	.pro_div3 .text h3 {
		font-size: 18px;
	}
	.pro_div .text .t,
	.pro_div2 .text .t,
	.pro_div3 .text .t {
		margin-top: 3px;
	}
}

.pro_div4 {
	text-align: center;
	padding: 90px 0;
}

.pro_div4 .text .en {
	color: #dbdbdb;
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: arial;
}

.pro_div4 .text h3 {
	color: #117cc6;
	font-size: 40px;
}

.pro_div4 .img {
	line-height: 0;
}

.pro_div4 .img p {
	margin-top: 35px;
}

.pro_div5 {
	background: url(../images/pro_bg2.jpg) no-repeat center bottom #303235;
	padding-top: 219px;
}

.pro_div5 .container {
	position: relative;
}

.pro_div5 .text {
	position: absolute;
	left: 0;
	top: 0;
	margin-top: -8%;
	width: 70%;
	background: url(../images/pro_bg3.png) no-repeat left top;
	min-height: 254px;
	padding: 32px 0 0 40px;
}

.pro_div5 .text .en {
	color: #c9c9cb;
	font-size: 36px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: arial;
}

.pro_div5 .text h3 {
	color: #117cc6;
	font-size: 40px;
}

.pro_div5 .text .t {
	margin-top: 6px;
	width: 60%;
	font-size: 16px;
	line-height: 24px;
	color: #e1e1e1;
}

.pro_div5 .img {
	float: right;
	width: 51%;
	line-height: 0;
}

@media (max-width: 1152px) {
	.pro_div5 .text .t {
		width: 70%;
	}
}

@media (max-width: 991px) {
	.pro_div5 {
		padding: 6% 0 0;
		background-size: cover;
		background-size: 100% 100%;
	}
	.pro_div5 .text {
		position: relative;
		width: 100%;
		min-height: 0;
		margin-top: 0;
		padding-top: 0;
		padding-left: 0;
		background: none;
		text-align: center;
	}
	.pro_div5 .text .en {
		font-size: 26px;
	}
	.pro_div5 .text h3 {
		font-size: 24px;
	}
	.pro_div5 .text .t {
		width: 100%;
		font-size: 14px;
	}
	.pro_div5 .img {
		margin-top: 4%;
		text-align: center;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.pro_div5 .text .en {
		font-size: 13px;
	}
	.pro_div5 .text h3 {
		font-size: 18px;
	}
	.pro_div5 .text .t {
		margin-top: 3px;
	}
}

.pro_div6 {
	text-align: center;
	padding: 90px 0;
	background: #f7f7f7;
}

.pro_div6 .text .en {
	color: #dbdbdb;
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: arial;
}

.pro_div6 .text h3 {
	color: #117cc6;
	font-size: 40px;
}

.pro_div6 .text .t {
	color: #717171;
	font-size: 16px;
	line-height: 24px;
	margin-top: 5px;
}

.pro_div6 .img {
	line-height: 0;
	margin-top: 35px;
}

@media (max-width: 991px) {
	.pro_div4,
	.pro_div6 {
		padding: 6% 0;
	}
	.pro_div4 .text .en,
	.pro_div6 .text .en {
		font-size: 26px;
	}
	.pro_div4 .text h3,
	.pro_div6 .text h3 {
		font-size: 24px;
	}
	.pro_div4 .text .t,
	.pro_div6 .text .t {
		font-size: 14px;
	}
	.pro_div4 .img,
	.pro_div6 .img {
		margin-top: 4%;
	}
	.pro_div4 .img p,
	.pro_div6 .img p {
		margin-top: 4%;
	}
}

@media (max-width: 640px) {
	.pro_div4 .text .en,
	.pro_div6 .text .en {
		font-size: 13px;
	}
	.pro_div4 .text h3,
	.pro_div6 .text h3 {
		font-size: 18px;
	}
	.pro_div4 .text .t,
	.pro_div6 .text .t {
		margin-top: 3px;
	}
}

.pro_div7 {
	background: #fff;
}

.pro_div9 {
	background: #efefef;
}

.pro_div8 {
	background: #144067;
	padding: 164px 0 45px;
}

.pro_div8 .text {
	margin-top: -4%;
}

.pro_div8 .text .en {
	color: #63768c;
}

.pro_div8 .text h3 {
	color: #fff;
}

@media (max-width: 1152px) {
	.pro_div8 .text {
		width: 79%;
	}
}

@media (max-width: 991px) {
	.pro_div8 {
		padding: 6% 0;
	}
	.pro_div8 .text {
		margin-top: 0;
		width: 100%;
	}
}

.pro_div10 ol {
	margin-top: 60px;
}

.pro_div10 ol li {
	float: left;
	width: 12%;
	margin-right: 5.6%;
}

.pro_div10 ol li:last-child {
	margin-right: 0;
}

.pro_div10 ol li .img {
	margin-top: 0;
	width: 100%;
	line-height: 0;
}

.pro_div10 ol li .img img {
	border: 1px solid #dfdfdf;
	width: 100%;
}

.pro_div10 ol li .t {
	margin-top: 10px;
	color: #5b5b5b;
	font-size: 15px;
}

.pro_div11 {
	position: relative;
}

.pro_div11 .img {
	width: 100%;
	line-height: 0;
}

.pro_div11 .text {
	position: absolute;
	right: 18.75%;
	top: 0;
	margin-top: 6%;
	width: 574px;
	height: 342px;
	background: url(../images/pro_bg5.png) no-repeat center center;
	text-align: right;
	padding: 75px 30px 0 0;
}

.pro_div11 .text .en {
	color: #a1c1e2;
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: arial;
}

.pro_div11 .text h3 {
	color: #fff;
	font-size: 40px;
}

.pro_div11 .text .t {
	color: #fff;
	font-size: 15px;
	line-height: 24px;
	margin-top: 8px;
}

@media (max-width: 1152px) {
	.pro_div11 .text {
		right: 6.77%;
	}
}

.pro_div12 {
	background: url(../images/pro_bg6.jpg) no-repeat center top;
	background-size: cover;
	background-size: 100% 100%;
	padding: 97px 0 104px;
}

.pro_div12 .text {
	margin-top: 60px;
	width: 508px;
	float: left;
	background: url(../images/pro_bg7.png) no-repeat left top;
	min-height: 316px;
	padding: 42px 0 0 50px;
}

.pro_div12 .text .en {
	color: #cbcbcb;
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: arial;
}

.pro_div12 .text h3 {
	color: #357ebf;
	font-size: 40px;
}

.pro_div12 .text .t {
	color: #666666;
	font-size: 16px;
	line-height: 24px;
	margin-top: 8px;
}

.pro_div12 .img {
	float: right;
	line-height: 0;
	width: 36.5%;
}

@media (max-width: 991px) {
	.pro_div10 ol {
		margin-top: 4%;
	}
	.pro_div10 ol li {
		width: 15%;
		margin-right: 2%;
	}
	.pro_div10 ol li .t {
		font-size: 14px;
	}
	.pro_div11 .text .en,
	.pro_div12 .text .en {
		font-size: 26px;
	}
	.pro_div11 .text h3,
	.pro_div12 .text h3 {
		font-size: 24px;
	}
	.pro_div11 .text .t,
	.pro_div12 .text .t {
		font-size: 14px;
	}
	.pro_div11 .text {
		right: 15px;
		width: auto;
		height: auto;
		background: rgba(17, 123, 197, 0.7);
		padding: 5% 15px;
	}
	.pro_div12 {
		padding: 6% 0;
	}
	.pro_div12 .text {
		text-align: center;
		margin-top: 0;
		width: 100%;
		float: left;
		background: none;
		min-height: 0;
		padding: 0;
	}
	.pro_div12 .img {
		margin-top: 4%;
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 640px) {
	.pro_div11 .text {
		text-align: center;
		margin-top: 0;
		position: relative;
		left: 0;
		right: 0;
		padding: 6% 15px 4%;
		background: #117bc5;
	}
	.pro_div11 .text .en,
	.pro_div12 .text .en {
		font-size: 13px;
	}
	.pro_div11 .text h3,
	.pro_div12 .text h3 {
		font-size: 18px;
	}
	.pro_div11 .text .t,
	.pro_div12 .text .t {
		margin-top: 3px;
	}
}

@media (max-width: 480px) {
	.pro_div10 ol li {
		width: 32%;
		margin-top: 15px;
		margin-right: 2%;
	}
	.pro_div10 ol li:nth-child(3n) {
		margin-right: 0;
	}
	.pro_div10 ol li:nth-child(1),
	.pro_div10 ol li:nth-child(2),
	.pro_div10 ol li:nth-child(3) {
		margin-top: 0;
	}
	.pro_div10 ol li .t {
		font-size: 13px;
	}
}

@media (max-width: 375px) {
	.pro_div10 ol li .t {
		font-size: 12px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
}

.proshow_top {
	background: url(../images/pro_show_bg.jpg) no-repeat center top;
	background-size: cover;
	background-size: 100% 100%;
	position: relative;
	padding-top: 36.8%;
}

.proshow_top .m_btn {
	position: absolute;
	right: 42px;
	bottom: 0;
	width: 134px;
	height: 42px;
}

.proshow_top .proshow_con {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	margin-top: 13%;
}

.proshow_top .proshow_con .img {
	float: left;
	width: 459px;
	line-height: 0;
}

.proshow_top .proshow_con .text {
	float: right;
	width: 489px;
}

.proshow_top .proshow_con .text h1 {
	color: #ffffff;
	font-size: 28px;
	font-weight: normal;
	border-bottom: 1px solid #78a9c1;
	padding-bottom: 20px;
}

.proshow_top .proshow_con .text .t {
	margin-top: 10px;
	color: #ffffff;
	font-size: 15px;
	line-height: 36px;
}

.proshow_top .proshow_con .text .t p {
	background: url(../images/pro_show_icon.png) no-repeat left 16px;
	padding-left: 13px;
}

.proshow_top .proshow_con .text .bottom {
	margin-top: 8%;
	color: #fcfcfc;
	font-size: 16px;
}

.proshow_top .proshow_con .text .bottom span {
	color: #cba965;
	font-size: 29px;
	position: relative;
	top: 3px;
}

@media (max-width: 1280px) {
	.proshow_top {
		padding-top: 45%;
	}
	.proshow_top .proshow_con {
		margin-top: 16%;
	}
}

@media (max-width: 991px) {
	.proshow_top {
		padding-top: 60%;
	}
	.proshow_top .m_btn {
		right: 15px;
		width: 134px;
		height: 42px;
	}
	.proshow_top .proshow_con .img {
		width: 45%;
	}
	.proshow_top .proshow_con .text {
		width: 50%;
	}
	.proshow_top .proshow_con .text h1 {
		font-size: 24px;
		padding-bottom: 15px;
	}
	.proshow_top .proshow_con .text .t {
		line-height: 24px;
		font-size: 14px;
	}
	.proshow_top .proshow_con .text .t p {
		background-position-y: 10px;
	}
}

@media (max-width: 640px) {
	.proshow_top {
		padding-top: 0;
	}
	.proshow_top .m_btn {
		width: 18%;
		line-height: 0;
		height: auto;
	}
	.proshow_top .proshow_con {
		position: relative;
		margin-top: 0;
		padding: 15% 0 15%;
	}
	.proshow_top .proshow_con .img {
		width: 100%;
		text-align: center;
	}
	.proshow_top .proshow_con .text {
		margin-top: 15px;
		width: 100%;
	}
	.proshow_top .proshow_con .text h1 {
		font-size: 18px;
		padding-bottom: 15px;
	}
	.proshow_top .proshow_con .text .bottom {
		margin-top: 4%;
		font-size: 14px;
	}
	.proshow_top .proshow_con .text .bottom span {
		font-size: 22px;
	}
}

.tab_top {
	background: #f5f5f5;
}

.tab_top ol li {
	float: left;
	line-height: 55px;
	color: #666666;
	font-size: 18px;
	cursor: pointer;
	border-bottom: 2px solid #f5f5f5;
	padding: 0 30px;
}

.tab_top ol li.cur,
.tab_top ol li:hover {
	border-bottom: 2px solid #081f63;
	color: #081f63;
}

@media (max-width: 640px) {
	.tab_top ol li {
		line-height: 42px;
		font-size: 14px;
		padding: 0 0;
		margin-right: 15px;
	}
}

.tab_con {
	padding: 60px 0;
}

.tab_con .tab_div {
	display: none;
}

.tab_con .tab_div:first-child {
	display: block;
}

.tab_con .tables {
	margin-top: 15px;
}

.tab_con .tables table {
	width: 100%;
	border: 1px solid #d5d5d5;
}

.tab_con .tables table tr th {
	border: 1px solid #d5d5d5;
	background: #efefef;
	text-align: left;
	color: #555555;
	font-size: 17px;
	padding: 10px 35px;
}

.tab_con .tables table tr th span {
	font-weight: normal;
	color: #656565;
	font-size: 18px;
	font-family: arial;
	display: inline-block;
	margin-left: 5px;
}

.tab_con .tables table tr td {
	border: 1px solid #d5d5d5;
	padding: 10px 35px;
	color: #686868;
	text-align: center;
	font-size: 14px;
}

.tab_con .tables table tr td:nth-child(2n-1) {
	/*background: #f9f9f9;*/
	width: 198px;
	text-align: left;
}

.tab_con .tables:first-child {
	margin-top: 0;
}

@media (max-width: 991px) {
	.tab_con {
		padding: 6% 0;
	}
}

@media (max-width: 640px) {
	.tab_con .tables table tr th {
		padding: 10px 15px;
		font-size: 15px;
	}
	.tab_con .tables table tr th span {
		font-size: 15px;
	}
	.tab_con .tables table tr td {
		padding: 10px 15px;
	}
}

.inputerror {
	border: 1px solid #f00 !important;
	background-color: #ffe6e6 !important;
}

@-webkit-keyframes inputerrors {
	0% {
		background-color: #fff;
	}
	100% {
		background-color: #ffe6e6;
	}
}

.inputerror {
	animation: inputerrors 0.5s 3 ease;
}

@media only screen and (max-width:1440px) {
	.banner .text .img_bg .t {
		margin-top: 42%;
	}
}

.cont_box {
	height: 344px;
	border-bottom: 1px solid #fff;
	background: #f7f7f7;
}

.c_box {
	width: 75%;
	height: 100%;
	margin: auto;
}

.c_boxs {
	height: 203px;
	width: 25%;
	border-right: 1px solid #dedede;
	margin-top: 71px;
	text-align: center;
	float: left;
	padding: 0 2%;
}

.c_box:first {
	padding-left: 0px;
}

.c_box:last-child {
	padding-left: 0px;
}

.cbox_p1 {
	color: #666;
	font-size: 28px;
	line-height: 30px;
}

.cbox_p2 {
	color: #081f63;
	font-size: 27px;
	margin-bottom: 10px;
}

.cbox_p3 {
	color: #666;
	font-size: 14px;
	line-height: 22px;
}

.proshow_top .proshow_con .text .bottom {
	display: none;
}

.c_boxs .cbox_p3:nth-child(6) {
	display: none;
}

.c_boxs .cbox_p3:nth-child(7) {
	display: none;
}

.cmore {
	position: relative;
}

.jkgd {
	position: absolute;
	right: 10%;
	bottom: 45%;
}

.nybanner .j-down2 {
	position: absolute;
	left: 30.75%;
	bottom: 27%;
	width: 10.729%;
}

.yellowhover {
	position: absolute;
	top: 0;
	z-index: 11;
	display: none;
}

.text_con:hover .yellowhover {
	display: block;
}

.zuixinwz {
	position: relative;
}

.zuixinwz p {
	color: #FFFFFF;
	position: absolute;
}

.helupingt {
	font-size: 30px;
	padding-top: 19.3%;
	padding-left: 9%;
}

.yellowkuai {
	width: 54px;
	height: 4px;
	background: #d0b785;
	position: absolute;
	margin-left: 9%;
	margin-top: 32.3%;
}

.text_2 {
	position: absolute;
	padding: 44.7% 15% 0 9%;
	font-size: 18px;
	position: absolute;
}

.readmore {
	margin-left: 9%;
	padding-top: 85.5%;
	position: absolute;
}

.zuixinwz p img {
	float: right;
	margin-top: 6px;
}

@media only screen and (min-width: 1000px) and (max-width: 1400px) {
	.helupingt {
		font-size: 26px;
		padding-top: 9.3%;
		padding-left: 9%;
	}
	.text_2 {
		position: absolute;
		padding: 30.7% 15% 0 9%;
		font-size: 15px;
		position: absolute;
	}
	.zuixinwz p img {
		float: right;
		margin-top: 5px;
	}
	.yellowkuai {
		width: 54px;
		height: 4px;
		background: #d0b785;
		position: absolute;
		margin-left: 9%;
		margin-top: 24.3%;
	}
}

@media only screen and (min-width: 769px) and (max-width: 999px) {
	.helupingt {
		font-size: 18px;
		padding-top: 3.3%;
		padding-left: 9%;
	}
	.yellowkuai {
		width: 36px;
		height: 4px;
		background: #d0b785;
		position: absolute;
		margin-left: 9%;
		margin-top: 17.3%;
	}
	.text_2 {
		position: absolute;
		padding: 23.7% 15% 0 9%;
		font-size: 12px;
		position: absolute;
	}
	.readmore {
		margin-left: 9%;
		padding-top: 85.5%;
		position: absolute;
	}
}

@media only screen and (min-width: 531px) and (max-width: 768px) {
	.helupingt {
		font-size: 26px;
		padding-top: 9.3%;
		padding-left: 9%;
	}
	.text_2 {
		position: absolute;
		padding: 30.7% 15% 0 9%;
		font-size: 15px;
		position: absolute;
	}
	.zuixinwz p img {
		float: right;
		margin-top: 5px;
	}
	.yellowkuai {
		width: 54px;
		height: 4px;
		background: #d0b785;
		position: absolute;
		margin-left: 9%;
		margin-top: 24.3%;
	}
}

@media only screen and (min-width: 361px) and (max-width: 530px) {
	.helupingt {
		font-size: 16px;
		padding-top: 1.3%;
		padding-left: 9%;
	}
	.yellowkuai {
		width: 36px;
		height: 4px;
		background: #d0b785;
		position: absolute;
		margin-left: 9%;
		margin-top: 15.3%;
	}
	.text_2 {
		position: absolute;
		padding: 17.7% 15% 0 9%;
		font-size: 12px;
		position: absolute;
	}
	.readmore {
		margin-left: 9%;
		padding-top: 89.5%;
		position: absolute;
		font-size: 12px;
	}
}

.float {
	float: left;
}

.cpzxbg {
	float: left;
	z-index: 1;
}

.cpwupin {
	position: absolute;
	width: 28.8% !important;
	padding-top: 15.3%;
	left: 18.5%;
}

.helumiaosu {
	width: 47%;
	position: absolute;
	right: 0;
	padding-top: 10%;
}

.heluname {
	color: #3d6a9b;
	font-size: 61.55px;
	text-transform: uppercase;
}

.helumin {
	color: #ffffff;
	font-size: 47.36px;
	margin-top: 30px;
}

.heluall {
	margin-top: 60px;
	padding-right: 44%;
	color: #a4bdd7;
	font-size: 14px;
	line-height: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
	.heluall {
		margin-top: 60px;
		padding-right: 25%;
		color: #a4bdd7;
		font-size: 14px;
		line-height: 20px;
	}
}

@media only screen and (min-width: 1000px) and (max-width: 1600px) {
	.heluname {
		color: #3d6a9b;
		font-size: 30px;
		text-transform: uppercase;
	}
	.helumin {
		color: #ffffff;
		font-size: 26px;
		margin-top: 20px;
	}
	.heluall {
		margin-top: 22px;
		padding-right: 36%;
		color: #a4bdd7;
		font-size: 14px;
		line-height: 20px;
	}
}

@media only screen and (min-width:808px) and (max-width: 999px) {
	.helumiaosu {
		width: 47%;
		position: absolute;
		z-index: 10;
		right: 0;
		padding-top: 12.3%;
	}
	.heluname {
		color: #3d6a9b;
		font-size: 25.55px;
		text-transform: uppercase;
	}
	.helumin {
		color: #ffffff;
		font-size: 26.36px;
		margin-top: 15px;
	}
	.heluall {
		margin-top: 21px;
		padding-right: 21%;
		color: #a4bdd7;
		font-size: 14px;
		line-height: 20px;
	}
}

@media only screen and (min-width: 540px) and (max-width:1024px) {
	.helumiaosu {
		width: 47%;
		position: absolute;
		right: 0;
		padding-top: 9.3%;
	}
	.heluname {
		color: #3d6a9b;
		font-size: 20px;
		text-transform: uppercase;
	}
	.helumin {
		color: #ffffff;
		font-size: 19px;
		margin-top: 26px;
	}
	.heluall {
		margin-top: 14px;
		padding-right: 9%;
		color: #a4bdd7;
		font-size: 12px;
		line-height: 20px;
	}
}

@media only screen and (min-width: 320px) and (max-width:780px) {
	.heluall {
		display: none;
	}
	.helumiaosu {
		top: 14%;
	}
}

@media only screen and (min-width: 440px) and (max-width: 539px) {
	.helumiaosu {
		width: 54%;
		position: absolute;
		right: 0;
		padding-top: 9.3%;
	}
	.heluname {
		color: #3d6a9b;
		font-size: 12px;
		text-transform: uppercase;
	}
	.helumin {
		color: #ffffff;
		font-size: 12px;
		margin-top: 16px;
	}
	.heluall {
		margin-top: 6px;
		padding-right: 4%;
		color: #a4bdd7;
		font-size: 12px;
		line-height: 18px;
	}
	.cpwupin {
		position: absolute;
		width: 28.8% !important;
		padding-top: 9%;
		left: 9.5%;
	}
}

@media only screen and (min-width: 320px) and (max-width: 439px) {
	.helumiaosu {
		width: 68%;
		position: absolute;
		right: 0;
		padding-top: 13.3%;
	}
	.heluname {
		color: #3d6a9b;
		font-size: 12px;
		text-transform: uppercase;
	}
	.helumin {
		color: #ffffff;
		font-size: 12px;
		margin-top: 0px;
	}
	.heluall {
		margin-top: 6px;
		padding-right: 4%;
		color: #a4bdd7;
		font-size: 12px;
		line-height: 14px;
	}
	.cpwupin {
		position: absolute;
		width: 28.8% !important;
		padding-top: 15.3%;
		left: 1.5%;
	}
}

.tables_btn>div {
	position: relative;
}

.fanye {
	position: relative;
}

.fanye>ul {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.fanye ul li {
	padding: 0px 5px;
	float: left;
}

.w561169 {
	width: 30%;
	height: 169px;
	background: #fff;
	position: absolute;
	z-index: 11;
	margin-top: 18%;
	left: 18%;
	padding-top: 46px;
	padding-left: 48px
}

.wdown {
	color: #666666;
	font-size: 18px;
	height: 70px;
	display: none;
}

.wdown span {
	margin-left: 40px;
}

.wdown a {
	color: #008dd6;
	text-decoration: underline;
	margin-left: 130px;
}

.oflix {
	width: 100%;
	height: 1900px;
	position: fixed;
	background: rgba(0, 0, 0, .7);
	top: 0;
}

.oflix_box {
	width: 560px;
	height: 170px;
	background: #fff;
	box-sizing: border-box;
	padding: 45px 100px 0 46px;
	position: fixed;
	top: 29%;
	left: 22%;
}

.oflix_close {
	font-size: 35px;
	position: absolute;
	top: 0px;
	right: 15px;
	color: #666;
}

.oflix_p {
	font-size: 18px;
	color: #666;
}

.oflix_p span:first-child {
	margin-right: 40px;
}

.oflix_p a {
	float: right;
	color: #008dd6;
}

.oflix_p1 {
	margin-bottom: 35px;
}

.oflix {
	display: none;
}

@media only screen and (max-width:550px) {
	.helumiaosu {
		width: 47%;
	}
}

@media only screen and (max-width:450px) {
	.helumiaosu {
		display: block;
		height: 80%;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.img img {
	display: inline-block;
}

.search_div {
	padding: 48px 0 75px;
}

.search_div .search_con {
	width: 520px;
	height: 62px;
	background: #f6f6f6;
	border: 1px solid #e4e4e4;
	border-radius: 3px;
}

.search_div .search_con .btn {
	background: url(../images/search_icon.png) no-repeat center center;
	float: left;
	width: 52px;
	height: 60px;
	outline: none;
	border: none;
}

.search_div .search_con .ip_text {
	border: none;
	height: 60px;
	float: right;
	width: 466px;
	background: none;
	outline: none;
	border: none;
}

.search_div .search_tit {
	margin-top: 35px;
	border-bottom: 1px solid #dbdbdb;
}

.search_div .search_tit ul li {
	margin-right: 28px;
	float: left;
	color: #2e353d;
	font-size: 14px;
	cursor: pointer;
}

.search_div .search_tit ul li span {
	padding-bottom: 12px;
	display: inline-block;
	position: relative;
	bottom: -1px;
}

.search_div .search_tit ul li.cur span {
	border-bottom: 1px solid #464b51;
}

.search_div .search_box {
	margin-top: 30px;
}

.search_div .search_box ol {
	padding-bottom: 30px;
}

.search_div .search_box ol li {
	float: left;
	width: 25%;
	box-sizing: border-box;
	border: 1px solid #eaeaea;
	position: relative;
}

.search_div .search_box ol li .img {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.search_div .search_box ol li .img img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	-webkit-transition: all 1s;
	-ms-transition: all 1s;
}

.search_div .search_box ol li .img img:hover {
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
}

.search_div .search_box ol li .img i {
	display: block;
	padding-bottom: 98.65%;
}

.search_div .search_box ol li .t {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -1px;
	border: 1px solid #c0c0c0;
	padding: 0 5px;
	color: #666666;
}

.search_div .search_box ol li .icon {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(226, 208, 152, 0.74);
}

.search_div .search_box ol li .icon img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.search_div .search_box ol li:hover .icon {
	display: block;
}

.search_box:last-child .img img {
	position: absolute;
	left: 0px;
	top: 0px;
	margin: 0 auto !important;
}

.search_div .search_box:last-child ol li .t {
	width: 100%;
	bottom: 33px;
}

@media only screen and (max-width: 940px) {
	.search_div .search_box ol li .t {
		width: 100%;
	}
	.search_div .search_box:last-child ol li .t {
		width: 100%;
		top: 90%;
	}
	.search_div .search_box:first-child ol li .t {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.zf_hy {
	width: 740px;
	margin: auto;
	position: relative;
	text-align: center;
}

.zf_hy>img {
	width: 100%;
}

.zf_d1 {
	width: 140px;
	height: 44px;
	text-align: center;
	background: url(../images/inwd.png) no-repeat center center;
	position: absolute;
	background-size: 80%;
	left: 84%;
	top: 60%;
	color: #fff;
	font-size: 18px;
	line-height: 40px;
	cursor: pointer;
}

.zf_d2 {
	width: 140px;
	height: 44px;
	text-indent: -24px;
	background: url(../images/rwfwf.png) no-repeat center center;
	position: absolute;
	left: 63%;
	top: 55%;
	color: #fff;
	font-size: 18px;
	line-height: 40px;
	background-size: 80%;
	cursor: pointer;
}

.zf_hh {
	width: 100%;
	text-align: center;
	font-size: 25px;
	color: #067ebc;
	margin: 50px 0px;
}

.zf_hh>div {
	font-size: 16px;
	color: #666666;
}

.zf_fwe {
	display: none;
}

@media only screen and (max-width:740px) {
	.zf_yc {
		display: none;
	}
	.zf_fwe {
		display: block;
	}
	.zf_hy {
		width: 100%;
	}
}

.top_top {
	position: fixed;
	right: 0;
	top: 400px;
}

.c_box {
	width: 1426px;
	transition: all .8s;
	position: absolute;
	left: -0%;
}

.c_boxs {
	width: 20%;
}

.cont_box {
	position: relative;
}

.cont_boxes {
	width: 75%;
	margin: auto;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.cont_btnl,
.cont_btnr {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.cont_btnl {
	left: 5%;
}

.cont_btnr {
	right: 5%;
}

.ck_map {
	display: none;
}

.show_con img {
	margin: auto
}

.cont_box .swiper-button-prev {
	margin-left: 5%;
}

.cont_box .swiper-button-next {
	margin-right: 5%;
}

.animate .home_cast_text,
.animate .home_csae_img,
.animate .home_tit,
.animate li,
.animate .home_text_tit,
.animate .home_text_con,
.animate .left,
.animate .right,
.anima {
	transition: all .8s;
	opacity: 0;
	-webkit-transform: translateY(100px);
	-moz-transform: translateY(100px);
	-ms-transform: translateY(100px);
	-o-transform: translateY(100px);
	transform: translateY(100px);
}

.animate .animated,
.animated {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.left_animate,
.right_animate {
	transition: all .8s;
	opacity: 0;
	-webkit-transform: translateX(-60%);
	-moz-transform: translateX(-60%);
	-ms-transform: translateX(-60%);
	-o-transform: translateX(-60%);
	transform: translateX(-60%);
}

.right_animate {
	opacity: .4;
	-webkit-transform: translateX(30%);
	-moz-transform: translateX(30);
	;
	-ms-transform: translateX(30);
	;
	-o-transform: translateX(30);
	;
	transform: translateX(30);
	;
}

.banner_animate {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	;
	-ms-transform: translateX(0);
	;
	-o-transform: translateX(0);
	;
	transform: translateX(0);
	;
}

.home_csae_img .slick-track,
.img,
.left,
.right li {
	overflow: hidden;
}

.home_csae_img img,
.readmore,
.home_text_con li,
.more,
.text_c img,
.img img,
.left img,
.right li img {
	-webkit-transition: all .8s;
	-moz-transition: all .8s;
	-ms-transition: all .8s;
	-o-transition: all .8s;
	transition: all .8s;
}

.home_csae_img img:hover {
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-ms-transform: scale(1.08);
	-o-transform: scale(1.08);
	transform: scale(1.08);
}

.readmore:hover,
.more:hover {
	-webkit-transform: translateX(30%);
	-moz-transform: translateX(30%);
	-ms-transform: translateX(30%);
	-o-transform: translateX(30%);
	transform: translateX(30%);
}

.home_text_con li:hover {
	-webkit-transform: translateY(-10%);
	-moz-transform: translateY(-10%);
	-ms-transform: translateY(-10%);
	-o-transform: translateY(-10%);
	transform: translateY(-10%);
}

.text_c img {
	z-index: -1;
}

.img:hover img,
.left img:hover,
.right li img:hover {
	-webkit-transform: scale(1.04);
	-moz-transform: scale(1.04);
	-ms-transform: scale(1.04);
	-o-transform: scale(1.04);
	transform: scale(1.04);
}

.case-logo .img:hover img {
	-webkit-transform: scale(1.14);
	-moz-transform: scale(1.14);
	-ms-transform: scale(1.14);
	-o-transform: scale(1.14);
	transform: scale(1.14);
}

@media only screen and (max-width:1024px) {
	.news_data {
		display: none;
	}
}

.home_text_con {
	overflow: hidden;
}

.video_img .img_b {
	width: 255px;
	height: auto;
	font-size: 0;
	position: absolute;
	top: 42%;
	left: 50%;
	margin-left: -127.5px;
	margin-top: -127.5px;
}

.video_img .video_con {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px 0;
	background: rgba(0, 0, 0, 0.5);
}

.video_img .video_con .video_div {
	max-width: 1420px;
	width: 100%;
	margin: 0 auto;
}

.video_img .video_con .video_div .jdt span {
	color: #ffffff;
	font-size: 13px;
}

.video_img .video_con .video_div .jdt .xian {
	width: 90%;
	margin: 0 auto;
	position: relative;
	top: 9px;
	height: 1px;
	background: #84827c;
}

.video_img .video_con .video_div .jdt .xian .vjp-seek-bar {
	width: 100%;
	height: 100%;
	padding: 5px 0;
	position: absolute;
	left: 0;
	top: -5px;
}

.video_img .video_con .video_div .jdt .xian i {
	position: absolute;
	left: 0;
	top: 5px;
	width: 50%;
	background: #fff;
	height: 1px;
}

.video_img .video_con .video_div .jdt .xian i:before {
	content: "";
	position: absolute;
	right: 0;
	top: -5px;
	width: 11px;
	height: 11px;
	background: url(../images/dian.png) no-repeat center center;
}

.video_img .video_con .video_div .video_btn {
	margin-top: 10px;
	height: 19px;
	position: relative;
}

.video_img .video_con .video_div .video_btn .sy {
	position: absolute;
	left: 0;
	top: 1.5px;
	width: 16px;
	height: 14px;
}

.video_img .video_con .video_div .video_btn .qp {
	position: absolute;
	right: 0;
	top: 0;
	width: 19px;
	height: 19px;
}

.video_img .video_con .video_div .video_btn .bf {
	height: 16px;
	line-height: 16px;
	font-style: 0;
	max-width: 88px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.video_img .video_con .video_div .video_btn .bf .f-l,
.video_img .video_con .video_div .video_btn .bf .f-r {
	display: block;
	margin-top: 1.5px;
}

@media (max-width: 992px) {
	.video_img {
		margin: 15px 15px 0;
	}
}

@media (max-width: 640px) {
	.video_img span {
		width: 13%;
		margin-left: -6.5%;
		margin-top: -6.5%;
	}
}


/*.video_img {
    position: relative;
    margin-top: 4px;
    font-size: 0;
    padding: 0 0 5.3%;
}*/

a.video_morex {
	position: absolute;
	right: 0;
	bottom: 0;
	margin-right: 3.90625%;
	margin-bottom: 3%;
	color: #000;
	font-family: arial;
	text-transform: uppercase;
	font-size: 16px;
	z-index: 9;
	padding-left: 35px;
	font-weight: bold;
}

a.video_morex:before {
	content: "";
	position: absolute;
	left: 0;
	top: -4px;
	width: 25px;
	height: 25px;
	background: url(../images/video_img1.png) no-repeat left center;
}

a.video_more1 {
	position: absolute;
	left: 20%;
	bottom: 0;
	margin-right: 3.90625%;
	margin-bottom: 3%;
	color: #000000;
	font-family: arial;
	text-transform: uppercase;
	font-size: 16px;
	z-index: 9;
	padding-left: 35px;
	font-weight: bold;
}


/*视频*/

#playboxbg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 88888;
	width: 100%;
	height: 100%;
	background-color: #000;
}

#play_video_container {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99999;
	width: 90.63%;
	min-width: 800px;
	height: 480px;
	border: 2px solid #94BDDD;
	background-color: #000;
	top: 0;
	left: 0;
	max-width: 640px;
}

#play_video_container a.close_video {
	width: 24px;
	height: 24px;
	display: block;
	position: absolute;
	right: -26px;
	top: -2px;
	background: url(../images/close.jpg) no-repeat 0 0;
	background-size: 100%;
	line-height: 20em;
	overflow: hidden;
}

.footer-navv,
.banquan-left {
	float: left;
}

.footer-navv p {
	margin: 40px 0 20px;
	font-size: 14px;
	line-height: 2;
	color: #666;
}

.footer-qr,
.banquan-right {
	float: right;
}

@media (max-width: 778px) {
	.footer-navv span,
	.footer-qr {
		display: none
	}
}

.fenye {
	margin-top: 35px;
}

.fenye span,
.fenye a {
	display: block;
	font-size: 16px;
	padding: 6px 12px;
	background: #e6e6e6;
}

.fenye .active span {
	color: #fff;
	background: #081f63;
}

.pagination {
	display: flex;
	justify-content: center;
}

.pagination li {
	margin: 0 8px;
}

input::-webkit-input-placeholder {
    color: #e6e6e6;
  }
 
  input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #e6e6e6;
  }
 
  input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #e6e6e6;
  }
 
  input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #e6e6e6;
  }
