﻿/*
    ----------------------------------- 
            方法变量    
                     
    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           // 清除浮动

    -----------------------------------
*/

a, p, li, td, ul, i {
	list-style: none;
}
.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;
	overflow: hidden;
}
[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;
	background: #f6f6f6;
}
.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);
}
/*
	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);
}
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);
}
.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);
}
/*
	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 {
	margin: 0 auto;
	width: 1200px;
}
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;
}
.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;
}
.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: 999999;
	width: 100%;
	height: 99px;
	background: #fff;
	position: fixed;
	left: 0;
	top: 0px;
	-moz-box-shadow: 0px 0px 4px #d1cfcf;
	-webkit-box-shadow: 0px 0px 4px #d1cfcf;
	box-shadow: 0px 0px 4px #d1cfcf;
}
.header .logo {
	display: table;
	width: 265px;
	height: 81px;
	position: absolute;
	left: 50%;
	margin-left: -600px;
	top: 11px;
}
.header .nav {
	width: 760px;
	position: absolute;
	left: 50%;
	top: 0px;
	margin-left: -292px;
}
.header .nav ul li {
	line-height: 99px;
	float: left;
	padding: 0 23px;
}
#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%;
}
.header .nav ul li a {
	display: block;
	color: #555;
	font-size: 18px;
}
.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: -94%;
	top: 99px;
	background: #443f37;
	padding: 15px;
}
.header .nav ul > li .navbox a {
	display: block;
	color: #fff;
	font-size: 16px;
	padding: 0 2%;
	line-height: 62px;
	float: left;
	height: 100%;
}
.header .nav ul > li .navbox a:hover {
	color: #76c5f0;
}
.header .nav ul > li .navbox {
	padding: 0px;
	height: 62px;
	background: rgba(0, 0, 0, 0.598039);
}
.header .nav ul li:hover .header .nav ul > li .navbox {
	display: block;
}
.header .nav ul li a {
	position: relative;
}
.header .nav ul li a:hover {
	color: #007cc2;
}
.header .nav ul li .jiao {
	border: 10px solid rgba(0,0,0,0);
	border-bottom: 10px solid rgba(0,0,0,.5);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}
.nav_box {
	width: 41%;
	height: 100%;
	margin: auto;
}
/**/
.top_z_right {
	width: 206px;
	height: 20px;
	line-height: 20px;
	position: absolute;
	right: 50%;
	top: 40px;
	margin-right: -616px;
}
.top_z_right_4_zh {
	width: 31PX;
	height: 20px;
	float: left;
	font-size: 15px;
	line-height: 20px;
	text-align: center;
	margin-top: 9px;
	margin-left: 25px;
}
.top_z_right_4_zh a {
	width: 100%;
	height: 100%;
	display: block;
	color: #fff;
	border-radius: 16px;
	background: #078ede;
}
.top_z_right_4_zh a:hover {
	width: 100%;
	height: 100%;
	display: block;
	color: #fff;
	background: #999;
}
.top_z_right_4_en {
	width: 30PX;
	height: 30px;
	float: right;
	font-size: 14px;
	line-height: 30px;
	text-align: center;
	margin-top: 9px;
	margin-left: 10px;
}
.top_z_right_4_en a {
	width: 100%;
	height: 100%;
	display: block;
	color: #078ede;
	border-radius: 16px;
	border: 1px solid #e5e5e5;
}
.top_z_right_4_en a:hover {
	width: 100%;
	height: 100%;
	display: block;
	color: #fff;
	background: #078ede;
	border: 1px solid #078ede;
}
.top_z_right_1 {
	width: 61px;
	height: 20px;
	float: left;
	z-index: 999;
	border-right: 1px solid #eaeaea;
	background: url(../images/top_z_right_1.jpg) no-repeat left center;
}
.top_z_right_2 {
	width: 61px;
	height: 20px;
	float: left;
	border-right: 1px solid #eaeaea;
	background: url(../images/top_z_right_2.jpg) no-repeat left center;
	margin-left: 9px;
}
.top_z_right_3 {
	width: 61px;
	height: 20px;
	float: left;
	background: url(../images/top_z_right_3.jpg) no-repeat left center;
	margin-left: 9px;
}
.top_z_right_4 {
	width: 97px;
	height: 20px;
	float: right;
}
.search_bj {
	height: 20px;
	position: relative;
	text-indent: 10px;
}
.search_bj h5 {
	color: #777;
	line-height: 20px;
	font-size: 15px;
	font-weight: normal;
	width: auto;
}
.search_bj h5 a {
	color: #777;
	display: inline-block;
}
.search_bj h5 img {
	vertical-align: middle;
	margin-right: 3px;
}
.search_bj h5 i {
	display: inline-block;
	position: relative;
	font-style: normal;
}
.search_bj h5 i span {
	display: block;
	top: 22px;
	left: -52px;
	background: url(../images/code_bj.png) no-repeat;
	width: 162px;
	height: 156px;
	position: absolute;
	display: none;
	z-index: 2;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.search_bj h5 i span img {
	width: 117px;
	height: 117px;
	margin: 19px auto 0;
	display: block;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.search_bj h5 i:hover span {
	display: block;
	color: #007cc2;
}
.search_bj h5 i:hover {
	display: block;
	color: #007cc2;
	text-indent: 20px;
}
.search_bj h5 a:hover {
	display: block;
	color: #007cc2;
	text-indent: 20px;
}
/**/
.header .search_btn {
	float: left;
	width: 240px;
	height: 40px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 50px;
	margin-top: 0px;
	margin-left: 0px;
}
.header .search_btn input {
	float: left;
	width: 197px;
	height: 40px;
	font-size: 15px;
	background: none;
	border: none;
	color: #444;
	border-radius: 50px 0 0 50px;
	padding: 0 12px 0 26px;
}
.header .search_btn .btn {
	background: url(../images/search_btn.png) no-repeat center center;
	width: 19px;
	height: 19px;
	border: none;
	float: left;
	margin-top: 10px;
}
.header .navbtn {
	position: absolute;
	right: 15px;
	top: 50%;
	width: 4%;
	margin-top: -2%;
	overflow: hidden;
	z-index: 999;
	line-height: 0;
	display: none;
}
.footer {
	background: #088bd4 url(../images/footer.jpg) repeat-x left top;
	width: 100%;
	height: auto;
	min-height: 334px;
	float: left;
}
.footer .footer_nav {
	padding: 50px 0 0;
	width: 555px;
	float: left;
}
.foot_contact {
	width: 575px;
	height: auto;
	float: right;
	padding-top: 50px;
}
.footer, .footer a, .footer p, .footer td {
	color: #fff;
}
.footer_center {
	width: 1200px;
	margin: 0 auto;
	line-height: 28px;
}
.footer .footer_nav ul li {
	width: 14.28571429%;
	float: left;
}
.footer .footer_nav ul li span {
	display: block;
	color: #fff;
	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: #fff;
	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;
	width: 100%;
	float: left;
	padding: 44px 0 0;
	color: #969696;
	font-size: 14px;
}
.banner_btn {
	position: relative;
	overflow: hidden;
	max-height: 96vh;
	margin-top: 99px;
}
.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;
}
.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;
}
.home_tit {
	width: 500px;
	height: 110px;
}
.home_tit .y {
	color: #444444;
	font-size: 24px;
	text-transform: uppercase;
	padding-top: 5px;
}
.home_tit .t {
	font-weight: bold;
	font-family: arial;
	color: #027dc6;
	font-size: 52px;
	text-transform: uppercase;
}
.home_tit .t span {
	display: inline-block;
	margin-right: 15px;
	font-weight: normal;
	color: #444;
	font-size: 40px;
	font-family: arial;
	text-transform: uppercase;
}
.home_div {
	padding: 3.8% 0 75px;
	width: 1200px;
	margin: 0 auto;
	position: relative;
}
.home_div .home_csae_img {
	width: 647px;
	float: right;
	position: relative;
	z-index: 0 !important;
}
.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;
	position: absolute;
	left: 0px;
	width: 684px;
	z-index: 999;
}
.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: #007cbb;
	color: #fff;
}
.home_div .home_cast_text .bottom_t {
	margin-top: 8px;
}
.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: #007cbb;
}
.home_div .home_cast_text .bottom_t .t {
	color: #666666;
	font-size: 15.5px;
	line-height: 27px;
	height: 302px;
	overflow: hidden;
}
.home_div .home_cast_text .bottom_t .more {
	display: inline-block;
	color: #fff;
	font-size: 18px;
	font-family: arial;
	width: 210px;
	text-align: center;
	line-height: 52px;
	padding-right: 35px;
	background: #027dc6 url(../images/more_icon.png) no-repeat 160px center;
}
.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.19375%;
	height: 100%;
	background: rgba(11, 152, 236, 0.9);
}
.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: 59.17%;
	padding: 5% 5% 1%;
	-webkit-transform: translateY(0px) !important;
	-moz-transform: translateY(0px) !important;
	-ms-transform: translateY(0px) !important;
	-o-transform: translateY(0px) !important;
	transform: translateY(0px) !important;
}
.home_div2 .home_solution_con .home_text_con ol li {
	float: left;
	width: 32%;
	margin-right: 1.3%;
	margin-bottom: 7%;
	text-align: center;
}
.home_div2 .home_solution_con .home_text_con ol li .img {
	width: 178px;
	height: 141px;
	border: 2px solid #e3e3e3;
}
.home_div2 .home_solution_con .home_text_con ol li .bt {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	margin-top: 10px;
	color: #444;
	font-size: 16.5px;
	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: 80px;
	bottom: 0;
	width: 22px;
	height: 1px;
	background: #40a8e6;
}
.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: 35.33%;
	transition: all .8s;
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}
.home_div2 .home_solution_con .home_text_tit .home_tit {
	border: 8px solid rgba(255, 255, 255, 0.2);
}
.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: #4ab2f1;
}
.home_div2 .home_solution_con .home_text_tit .bottom_t .t {
	margin-top: 32px;
	color: #fefefe;
	font-size: 15.5px;
	line-height: 27px;
	height: 150px;
	overflow: hidden;
}
.home_div2 .home_solution_con .home_text_tit .bottom_t .more {
	margin-top: 12%;
	display: inline-block;
	color: #fff;
	font-size: 15px;
	font-family: arial;
	background: url(../images/more_icon2.png) no-repeat right center;
	padding-right: 35px;
	height: 36px;
	line-height: 34px;
}
.home_div3 {
	padding: 20px 0;
	background: #ededed;
	margin-top: 40px;
}
.home_div3 ol {
	margin: 0 auto;
	width: 1200px;
}
.home_div3 ol li {
	position: relative;
	float: left;
	width: 129px !important;
	height: 59px !important;
	margin: 0 6px;
	-webkit-transform: translateY(0px) !important;
	-moz-transform: translateY(0px) !important;
	-ms-transform: translateY(0px) !important;
	-o-transform: translateY(0px) !important;
	transform: translateY(0px) !important;
}
.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: 80px;
}
.home_div3 ol li .text_con .t_con .en {
	color: #3d6a9b;
	font-size: 30px;
	font-family: arial;
	text-transform: uppercase;
	font-weight: lighter;
}
.home_div3 ol li .text_con .t_con h3 {
	margin-top: 8px;
	color: #ffffff;
	font-size: 34px;
}
.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;
}
.home_div5 {
	padding: 0px 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%;
	transition: all .8s;
	opacity: 1;
	-webkit-transform: translateY(55px) !important;
	-moz-transform: translateY(55px) !important;
	-ms-transform: translateY(55px) !important;
	-o-transform: translateY(55px) !important;
	transform: translateY(55px) !important;
}
}
.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-top: 15px;
	margin-right: 4%;
	font-weight: normal;
}
.home_div5 .left .text_c .bt {
	margin-top: 20px;
	display: inline-block;
	color: #444;
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	height: 42px;
	overflow: hidden;
}
.home_div5 .left .text_c .bt:hover {
	color: #18a0e2;
}
.home_div5 .left .text_c .more {
	display: inline-block;
	color: #fff;
	font-size: 14px;
	margin-top: 32px;
	font-family: arial;
	width: 158px;
	text-align: center;
	line-height: 40px;
	padding-right: 35px;
	background: #027dc6 url(../images/more_icon.png) no-repeat 120px center;
}
.home_div5 .left .text_c .img {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
}
.home_div5 .left .text_c p {
	font-size: 14px;
	line-height: 24px;
	color: #777;
}
.home_div5 .left .text_c .img .icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 36%;
	padding-top: 8%;
	background: #fff;
}
.home_div5 .right {
	float: right;
	width: 60.83%;
	-webkit-transform: translateY(93px) !important;
	-moz-transform: translateY(93px) !important;
	-ms-transform: translateY(93px) !important;
	-o-transform: translateY(93px) !important;
	transform: translateY(93px) !important;
}
.home_div5 .right ol {
	margin-top: -3.8%;
}
.home_div5 .right ol li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #d9d9d9;
	padding: 3% 2% 3% 6%;
	position: relative;
}
.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 p {
	font-size: 14px;
	color: #777;
	margin-top: 10px;
	line-height: 22px;
}
.home_div5 .right ol li .data span {
	display: inline-block;
	float: left;
	margin-right: 16px;
	margin-right: 4%;
	margin-top: 8px;
	font-weight: normal;
}
.home_div5 .right ol li .bt {
	margin-top: 8px;
	color: #444;
	font-size: 18px;
	font-weight: bold;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.home_div5 .right ol li .more {
	margin-top: 2px;
	font-size: 14px;
	display: inline-block;
	color: #0181c2;
	background: url(../images/more_icon3.png) no-repeat right center;
	padding-right: 35px;
	height: 36px;
	text-align: center;
	line-height: 34px;
	position: absolute;
	right: 26px;
	z-index: 999;
	top: 98px;
}
.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, .home_div5 .right ol li:hover p {
	color: #fff;
}
.right ol li:hover .more {
	background: url(../images/more_icon3_aa.png) no-repeat right center;
}
.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: #007cbb;
}
.menu ul li.cur {
	background: #007cbb;
}
.menu ul li.cur a:hover {
	color: #fff;
}
.menu ul li.cur a {
	color: #fff;
}
.jjfa_menu ul li {
	width: 16.6%;
}
.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: #007cbb;
	font-size: 30px;
}
.about_div .left .text {
	margin-top: 5%;
	background: #f9f9f9;
	color: #777777;
	font-size: 15px;
	line-height: 25px;
	padding: 5%;
}
.about_div .right {
	margin-top: 5%;
	float: right;
	width: 43.58%;
}
.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: #007cbb;
	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: #007cbb;
	width: 170px;
	height: 52px;
	text-align: center;
	display: block;
	line-height: 52px;
	color: #fff;
	font-size: 20px;
}
.hdbm_div2 {
	background: #f9f9f9;
	padding: 80px 0;
}
.hdbm_div2 .bt {
	text-align: center;
	color: #007cbb;
	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: #007cbb;
	font-size: 22px;
	color: #fff;
	height: 56px;
	border: none;
	line-height: 56px;
	width: 120px;
}
.hdbm_div2 ol li:nth-child(3n) {
	margin-right: 0;
}
.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: #007cbb;
	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;
}
.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: #007cbb;
	font-size: 27px;
	font-weight: normal;
}
.map_list ol li .t {
	margin-top: 10px;
	color: #666666;
	font-size: 14px;
	line-height: 24px;
}
.ck_map {
	position: absolute;
	right: 0;
	bottom: 0;
	color: #007cbb;
	font-size: 16px;
}
.ck_map:hover {
	text-decoration: underline;
	color: #007cbb;
}
.contact_map {
	position: relative;
	width: 100%;
	height: 400px;
}
.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: #007cbb;
	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%;
}
.join_bt {
	text-align: center;
	color: #007cbb;
	font-size: 28px;
}
.join_name {
	text-align: center;
	color: #555555;
	margin-top: 10px;
}
.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: #444;
	font-size: 15px;
}
.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%;
}
.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: #007cbb;
}
.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;
}
.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;
}
.news_show .news_title h1 {
	max-width: 80%;
	float: left;
	color: #007cbb;
	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;
}
.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;
}
.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;
}
@ .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: #007cbb;
	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;
}
.case_div2 {
	margin-top: 80px;
}
.case_div2 .case_title {
	text-align: center;
}
.case_div2 .case_title .bt {
	color: #007cbb;
	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: #007cbb;
	color: #fff;
}
.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: #007cbb;
	border: 1px solid #007cbb;
}
.case_div3 {
	margin-top: 70px;
	margin-bottom: 90px;
}
.case_div3 .case_title .bt {
	color: #007cbb;
	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: #007cbb;
	border: 1px solid #007cbb;
}
.dljm_div {
	background: url(../images/dljm_bg.jpg) no-repeat center bottom;
	padding: 60px 0 75px;
}
.dljm_div h1 {
	text-align: center;
	color: #007cbb;
	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: #007cbb;
	color: #fff;
	font-size: 20px;
	font-family: "微软雅黑";
}
.dljm_div .dljm_btn input.cz {
	background: #474747;
}
.service_menu ul li {
	width: 33.33333333%;
}
.service_div {
	padding: 75px 0 90px;
}
.service_div h1 {
	text-align: center;
	font-weight: normal;
	color: #007cbb;
	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: #007cbb;
	color: #fff;
	font-family: "微软雅黑";
	border: none;
	font-size: 20px;
}
.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;
}
.service_tit {
	text-align: center;
	font-weight: normal;
	color: #007cbb;
	font-size: 26px;
}
.service_yw {
	margin-top: 5px;
	text-align: center;
	text-transform: uppercase;
	color: #d6d6d6;
	font-size: 18px;
	font-family: arial;
}
.service_t {
	text-align: center;
	color: #666666;
	font-size: 15px;
	margin-top: 5px;
}
.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;
}
.service_shfw3 {
	margin: 50px 0;
}
.service_shfw3 ol {
	margin-top: 30px;
}
.service_shfw3 ol li {
	float: left;
	width: 32%;
	margin-right: 2%;
}
.service_shfw3 ol li:nth-child(3n) {
	margin-right: 0;
}
.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: #bf9e5b;
	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;
}
.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;
}
.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%;
}
.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: #007cbb;
}
.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;
}
.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: #007cbb;
	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: #007cbb;
	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: #007cbb;
	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: #007cbb;
	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;
}
.jjfa_div3 {
	margin-top: 60px;
}
.jjfa_div3 h2, .jjfa_div3 .yw {
	text-align: center;
}
.jjfa_div3 h2 {
	font-weight: normal;
	color: #007cbb;
	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: #007cbb;
}
.jjfa_div4 {
	margin-top: 50px;
	margin-bottom: 60px;
}
.jjfa_div4 .yw, .jjfa_div4 h2 {
	text-align: center;
}
.jjfa_div4 h2 {
	font-weight: normal;
	color: #007cbb;
	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;
}
.news_div {
	padding: 70px 0 50px;
}
.news_div h1 {
	text-align: center;
	font-weight: normal;
	color: #007cbb;
	font-size: 26px;
}
.news_div .news_menu {
	text-align: center;
	margin-top: 30px;
}
.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: #007cbb;
	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: #007cbb;
}
.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;
}
.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%;
}
.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;
}
.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%;
}
.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%;
}
.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;
}
.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%;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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%;
}
.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;
}
.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 #007cbb;
	color: #007cbb;
}
.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;
}
.inputerror {
	border: 1px solid #078ede !important;
	background-color: #ffe6e6 !important;
}
@-webkit-keyframes inputerrors {
 0% {
 background-color: #fff;
}
 100% {
 background-color: #ffe6e6;
}
}
.inputerror {
	animation: inputerrors 0.5s 3 ease;
}
.pagination li {
	float: left;
	padding: 0 2%;
}
/*.pagination .thisclass{
	padding-left: 35%;
}*/

.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: #007CBB;
	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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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: 1;
	-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);
}
.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;
}
/*.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;
}
.beid {
	height: 411px;
	width: 730px;
	position: absolute;
	z-index: 99999;
	background: #f6f6f6;
	left: -553px;
	top: 72px;
}
#featureContainer {
	MARGIN: 0px auto;
	WIDTH: 923px;
}
#wrap {
	OVERFLOW: hidden
}
#load {
	BACKGROUND-IMAGE: url(../images/loader32x32.gif);
	TEXT-INDENT: -9999px;
	MARGIN: 0px auto;
	WIDTH: 923px;
	DISPLAY: none;
	BACKGROUND-REPEAT: no-repeat;
	BACKGROUND-POSITION: center 50%;
	HEIGHT: 100px;
}
#feature {
	POSITION: relative;
}
#feature .button {
	POSITION: absolute;
	WIDTH: 840px;
	TOP: 72px;
}
#feature .prev {
	left: 0px;
	TEXT-INDENT: -9999px;
	WIDTH: 30px;
	DISPLAY: block;
	BACKGROUND: url(../images/feature_left.gif) center top;
	HEIGHT: 48px;
	TOP: 10px;
	position: absolute;
}
#feature .next {
	right: 0;
	TEXT-INDENT: -9999px;
	WIDTH: 30px;
	DISPLAY: block;
	BACKGROUND: url(../images/feature_right.gif) center top;
	HEIGHT: 48px;
	TOP: 10px;
	position: absolute;
}
#feature .prev:hover {
	BACKGROUND-POSITION: center bottom
}
#feature .next:hover {
	BACKGROUND-POSITION: center bottom
}
.featureUL {
	POSITION: relative;
	LIST-STYLE-TYPE: none;
	MARGIN: 0px;
	WIDTH: 2800px;
	PADDING-RIGHT: 0px;
	FLOAT: left;
	LEFT: 0px
}
.featureBox {
	BACKGROUND-IMAGE: url(../images/bg-featurebox.jpg);
	WIDTH: 280px;
	BACKGROUND-REPEAT: no-repeat;
	FLOAT: left;
	HEIGHT: 230px;
	OVERFLOW: hidden;
	PADDING-TOP: 10px
}
#botton-scroll {
	Z-INDEX: 0;
	MARGIN: 0px auto;
	WIDTH: 1130px !important;
	FLOAT: left;
	HEIGHT: 66px;
}
#block {
	Z-INDEX: 0;
	POSITION: relative;
	MARGIN: 0px auto;
	WIDTH: 1130px;
	HEIGHT: 66px;
	OVERFLOW: hidden;
}
#block .box {
	background: #fff;
	WIDTH: 129px;
	FLOAT: left;
	HEIGHT: 48px;
	overflow: hidden;
	border: 1px solid #e2e1e1;
}
#block .box img {
	width: 78%;
	height: auto;
	vertical-align: middle;
}
#block .box .feature-title {
	FONT-SIZE: 140%;
	FONT-WEIGHT: normal
}
#block .box .feature-thumb {
	WIDTH: 240px;
	MARGIN-BOTTOM: 5px;
	FLOAT: left;
	HEIGHT: 150px
}
.abMcrh img {
	border: none;
}
/*搜索*/

.top_z_right #wrapper {
	text-align: center;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
}
.top_z_right #toolbar {
	width: 100%;
	min-width: 240px;
	margin: 0 auto;
}
.top_z_right .button {
	width: 48px;
	height: 26px;
	border-radius: 50%;
	background-color: none;
	color: #ffffff;
	text-align: center;
	font-size: 1.5em;
	position: relative;
	left: 59%;
	margin-left: 0px;
	z-index: 1;
	cursor: pointer;
}
.top_z_right .button, .icons {
	-webkit-transition: -webkit-all 1s cubic-bezier(.87, -.41, .19, 1.44);
	transition: all 1s cubic-bezier(.87, -.41, .19, 1.44);
}
.top_z_right .button:after {
/*content:"+"; color: #333;*/
}
.top_z_right .button.active {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 60px;
}
.top_z_right .icons {
	width: 0%;
	overflow: hidden;
	height: 40px;
	list-style: none;
	background-color: #ffffff;
	margin: -68px 0 0 45%;
	border-radius: 2em;
}
.top_z_right .icons.open {
	width: 100%;
	margin: 0;
	overflow: hidden;
}
.top_z_right .icons li {
	display: none;
	width: 10%;
	color: #3AB09E;
}
.top_z_right .icons.open li {
	width: 16%;
	display: inline-block;
}
/*内页开始*/
.neiye_banner {
	width: 100%;
	height: 500px;
	margin: 99px auto 0;
	position: relative;
}
.neiye_banner img {
	width: 1920px;
	height: 500px;
	position: absolute;
	left: 50%;
	margin-left: -960px;
	z-index: -9;
}
.about_banner {
	width: 1920px;
	height: 500px;
	position: absolute;
	left: 50%;
	margin-left: -960px;
	z-index: -9;
	background: url(../images/about.jpg) no-repeat center top;
}
.service_banner {
	width: 1920px;
	height: 500px;
	position: absolute;
	left: 50%;
	margin-left: -960px;
	z-index: -9;
	background: url(../images/service.jpg) no-repeat center top;
}
.news_banner {
	width: 1920px;
	height: 500px;
	position: absolute;
	left: 50%;
	margin-left: -960px;
	z-index: -9;
	background: url(../images/news.jpg) no-repeat center top;
}
.product_banner {
	width: 1920px;
	height: 500px;
	position: absolute;
	left: 50%;
	margin-left: -960px;
	z-index: -9;
	background: url(../images/products.jpg) no-repeat center top;
}
.brand_banner {
	width: 1920px;
	height: 500px;
	position: absolute;
	left: 50%;
	margin-left: -960px;
	z-index: -9;
	background: url(../images/brand.jpg) no-repeat center top;
}
.pz_banner .bannerHeadline {
	background: url(../images/nygy1.png) no-repeat center bottom;
	width: 506px;
	text-align: center;
	padding-bottom: 34px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -61px 0 0 -600px;
}
.pz_banner .bannerHeadlineContact {
	background-image: url(../images/622-8.png);
}
.pz_banner .bannerHeadline h3 {
	width: 100%;
	float: left;
	font-size: 46px;
	color: white;
	line-height: 55px;
	font-weight: bold;
	font-family: Arial;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.pz_banner .bannerHeadline h5 {
	width: 100%;
	float: left;
	font-size: 20px;
	color: white;
	line-height: 34px;
	letter-spacing: 1px;
	font-weight: normal;
}
.ny_menu {
	width: 100%;
	height: 58px;
	margin: 0 auto;
	background: #f4f4f4;
}
.ny_menu_center {
	width: 1200px;
	height: 100%;
	margin: 0 auto;
}
.ny_menu_center .menu {
	overflow:inherit;
	background: #f4f4f4;
}
.ny_menu_center .menu ul {
	text-align: center;
}
.ny_menu_center .menu>ul li {
	width: auto;
	padding: 0 19px;
	display: inline-block;
	text-align: center;
	height: 58px;
	line-height: 58px;
	font-size: 16px;
}
.ny_menu_center .menu ul li a {
	cursor: pointer;
}
.ny_menu_center .menu ul li.act a {
	cursor: pointer;
}
.ny_menu_center .menu ul li:last-child {
	border-right: none;
}
.ny_menu_center .menu ul li a {
	display: block;
	width: 100%;
	color: #686868;
}
.ny_menu_center .menu ul li a:hover {
	color: #0196e2;
}
.ny_menu_center .menu ul li.act:hover {
	background: #078ede;
}
.ny_menu_center .menu ul li.act {
	background: #078ede;
}
.ny_menu_center .menu ul li.act a:hover {
	color: #fff;
}
.ny_menu_center .menu ul li.act a {
	color: #fff;
}
.ny_conten img {
	
}
.ny_conten {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding-top: 35px;
	line-height: 30px;
}
.ny_conten_center {
	width: 1200px;
	height: auto;
	min-height: 300px;
	margin: 0 auto;
}
.ny_conten_center_nr {
	width: 100%;
	margin: 0 auto;
	height: auto;
	padding-bottom: 35px;
}
/*留言*/
.company0 {
	width: 100%;
	height: 480px;
	float: left;
}
.company0 .pic {
	height: 420px;
	padding-top: 22px;
	float: left;
}
.company0 .pic img {
	width: 100%;
	display: block;
	height: 58px;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
}
.company0 .pic img.first {
	margin-bottom: 45px;
}
.company01 {
	width: 1200px;
	margin: auto;
	padding: 60px 0 70px;
	text-align: center;
	overflow: hidden;
}
.company01 li {
	float: left;
	width: 256px;
	height: 280px;
	background: #f1f1f1;
	overflow: hidden;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
}
.company01 li:nth-of-type(even) {
	background: #f9f9f9;
}
.company01 li div {
	position: relative;
	width: 120px;
	height: 120px;
	margin: 60px auto 45px;
	border-radius: 50%;
	background-color: #fff;
}
.company01 li div:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #fff;
	-webkit-transition: 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
	-moz-transition: 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
	transition: 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.company01 li em {
	position: absolute;
	top: 0;
	left: 0;
}
.company01 li .act {
	opacity: 0;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
}
.company01 li p {
	font-size: 24px;
}
.company01 li:hover {
	background: #0061ae;
}
.company01 li:hover div:before {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
}
.company01 li:hover .act {
	opacity: 1;
}
.company01 li:hover p {
	color: #fff;
}
.company02 {
	width: 1200px;
	margin: auto;
	padding: 34px 0;
	overflow: hidden;
	margin-top: 30px;
}
.company02 ul {
	position: relative;
	left: 0px;
	width: 1280px;
	overflow: hidden;
	text-align: center;
}
.company02 ul li {
	float: left;
	width: 299px;
	margin: 0px 0px 30px;
}
.company02 ul li picture {
	width: 300px;
	background: #f8f8f8;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
}
.company02 ul li picture:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}
.company02 ul li picture img {
	width: 86%;
}
.form-group {
	width: 620px;
	height: auto;
	float: left;
	clear: both;
	margin-bottom: 19px;
}
.form-group .mb-2 {
	clear: none;
	border: none;
	color: #fff;
	font-size: 16px;
	float: left;
	width: 500px;
	height: 54px;
	background: #999;
	padding: 0;
	cursor: pointer;
	margin-left: 62px;
}
.form-group .mb-2:hover {
	background: #078ede;
	color: #fff;
}
.form-group .form-control {
	width: 500px;
	height: 50px;
	padding: 4px;
	color: #666;
	background: #eee;
	border: none;
	text-indent: 20px;
	font-size: 15px;
}
.form-group .col-6 {
	width: 250px;
	height: 50px;
	float: left;
	cursor: pointer;
}
.form-group #content {
	width: 500px;
	height: 100px;
	padding: 4px;
	font-family: 微软雅黑;
}
.form-group .col-6 .form-control {
	width: 242px;
	height: 50px;
	padding: 4px;
}
.form-group .input-text, input.input-file, input.code, textarea {
}
.form-group .row {
	width: 570px;
}
.form-group label {
	width: 62px;
	height: 50px;
	line-height: 50px;
	float: left;
	color: #555;
	font-size: 15px;
}
.liuyan_peiimg {
	width: 520px;
	height: 418px;
	float: right;
	margin-top: 21px;
	background: url(../images/liuyan_peiimg.jpg) no-repeat;
}
/*新闻*/
.newsListCon {
	width: 100%;
	margin-top: 0px;
}
#newsListCon {
	margin-top: 0px;
}
.newsListCon .mainCon {
	width: 1200px;
	margin: 0 auto;
}
.newsListCon .mainCon .conBox {
	width: 1200px;
	margin: 0 auto;
}
.newsListCon .mainCon .con {
	width: 100%;
}
.newsListCon .mainCon dl {
	width: 100%;
	padding-top: 39px;
	height: 206px;
	border: 1px solid #eee;
	border-top: none;
	background: #fff;
	position: relative;
}
.newsListCon .mainCon dl:first-child {
	border-top: 1px solid #eee;
}
.newsListCon .mainCon dt {
	width: 220px;
	height: 130px;
	border: 1px solid #eee;
	float: left;
	margin-left: 40px;
	overflow: hidden;
}
.newsListCon .mainCon dt img {
	display: block;
	transform: scale(1);
	transition: all 2s ease-out;
	width: 220px;
	height: 130px;
}
.newsListCon .mainCon dl:hover dt img {
	transform: scale(1.2);
}
.newsListCon .mainCon dd {
	width: 875px;
	height: 109px;
	position: relative;
	margin-left: 28px;
	float: left;
}
.newsListCon .mainCon dd h3 {
	font-size: 17px;
	font-weight: normal;
}
.newsListCon .mainCon dd h3 a {
	color: #444;
	text-decoration: none;
}
.newsListCon .mainCon dd p {
	font-size: 14px;
	color: #777;
	line-height: 22px;
	margin-top: 8px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.newsListCon .mainCon dd .label {
	font-size: 12px;
	color: #999999;
	display: block;
	padding-left: 26px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: url(../images/newslist_icon03.png) no-repeat left center;
	line-height: 16px;
}
.newsListCon .mainCon dd .zan {
	display: block;
	font-size: 13px;
	font-family: arial;
	height: 16px;
	background: url(../images/newslist_icon01.png) no-repeat left top;
	position: absolute;
	top: 5px;
	right: 74px;
	padding-left: 24px;
	padding-top: 2px;
}
.newsListCon .mainCon dd .readNum {
	line-height: 10px;
	color: #777;
	display: block;
	font-size: 13px;
	font-family: arial;
	height: 11px;
	background: url(../images/newslist_icon02.png) no-repeat left center;
	position: absolute;
	top: 0px;
	right: 4px;
	padding-left: 24px;
	padding-top: 2px;
}
.newsListCon .mainCon dd .shijian_time {
	line-height: 10px;
	color: #777;
	display: block;
	font-size: 13px;
	font-family: arial;
	height: 11px;
	background: url(../images/shijian_time.png) no-repeat left center;
	position: absolute;
	top: 0px;
	right: 84px;
	padding-left: 24px;
	padding-top: 2px;
}
.newsListCon .mainCon dd a.more {
	display: block;
	width: 36px;
	height: 36px;
	background: url(../images/list_circle.png) no-repeat left top;
	overflow: hidden;
	position: absolute;
	right: 6px;
	bottom: -40;
}
.newsListCon .mainCon dl:hover dd a.more {
	background-position: left bottom;
}
.newsListCon .mainCon dl:hover dd h3 a {
	color: #078ede;
}
.newsListCon .mainCon dl:hover {
	box-shadow: 0 0 10px 6px #eeeeee;
	z-index: 99;
}
.newsDetialsArticle {
	width: 100%;
	padding-top: 0px;
}
.newsDetialsArticle .mainCon {
	width: 100%;
}
.newsDetialsArticle .mainCon .article {
	position: relative;
	width: 100%;
	background: #fff;
	float: left;
}
.newsDetialsArticle .mainCon .article .conBox {
	padding: 0;
}
.newsDetialsArticle .mainCon .article .conBox h2 {
	text-align: center;
	font-size: 22px;
}
.newsDetialsArticle .mainCon .article .title h1 {
	font-size: 22px;
	color: #333333;
	font-weight: normal;
	margin-bottom: 16px;
}
.newsDetialsArticle .mainCon .article .title .share {
	width: auto;
	margin-left: 398px;
	height: 24px;
}
.newsDetialsArticle .mainCon .article .title .share p {
	float: left;
	overflow: hidden;
	margin-top: 4px;
}
.newsDetialsArticle .mainCon .article .title .share p span {
	display: block;
	font-size: 12px;
	color: #999999;
	padding: 0 8px;
	border-left: 1px dotted #ddd;
	float: left;
}
.newsDetialsArticle .mainCon .article .title .share p span a {
	color: #999;
}
.newsDetialsArticle .mainCon .article .title .share p span:first-child {
	padding-left: 0;
	border-left: none;
}
.newsDetialsArticle .mainCon .article .title .share p span #cntrHits {
	float: right;
}
.newsDetialsArticle .mainCon .article .title .share ul {
	float: right;
}
.newsDetialsArticle .mainCon .article .title .share li {
	margin-left: 7px;
	width: 24px;
	height: 24px;
	float: left;
}
.newsDetialsArticle .mainCon .article .title .share li img {
	display: block;
}
.newsDetialsArticle .mainCon .article .title i {
	width: 100%;
	display: block;
	height: 1px;
	background: #e7e7e7;
	margin-top: 18px;
}
.newsDetialsArticle .mainCon .article .title p.label {
	font-size: 12px;
	color: #999999;
	display: block;
	padding-left: 26px;
	background: url(../images/newslist_icon03_1.png) no-repeat left center;
	line-height: 16px;
	margin-top: 24px;
}
.newsDetialsArticle .mainCon .article .con {
	margin: 20px 0;
}
.newsDetialsArticle .mainCon .article .con img {
	max-width: 100%;
}
.newsDetialsArticle .mainCon .article .con p {
	width: 100%;
	margin: 0 auto;
	white-space: normal;
}
.newsDetialsArticle .mainCon .article .con p a {
	color: #2167d2;
}
.newsDetialsArticle .mainCon .article .context {
	width: 100%;
	float: left;
	border-top: 1px solid #e7e7e7;
	margin-top: 30px;
	background: #fff;
	height: 70px;
}
.newsDetialsArticle .mainCon .article .context p {
	width: 599px;
	float: left;
	height: 70px;
	line-height: 70px;
}
.newsDetialsArticle .mainCon .article .context p a {
	font-size: 13px;
	color: #666666;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.newsDetialsArticle .mainCon .article .context p.prevNews a {
	margin-left: 0px;
	padding-left: 20px;
	background: url(../images/newsdetialsarticle_icon10_1.png) no-repeat left center;
}
.newsDetialsArticle .mainCon .article .context p.NextNews a {
	margin-right: 0px;
	padding-right: 20px;
	text-align: right;
	background: url(../images/newsdetialsarticle_icon11_1.png) no-repeat right center;
}
.newsDetialsArticle .mainCon .article .context p.prevNews a:hover {
	background: url(../images/newsdetialsarticle_icon12_1.png) no-repeat left center;
	color: #078ede;
}
.newsDetialsArticle .mainCon .article .context p.NextNews a:hover {
	background: url(../images/newsdetialsarticle_icon13_1.png) no-repeat right center;
	color: #078ede;
}
.newsDetialsArticle .mainCon .article .context p.NextNews {
	border-left: 1px solid #e7e7e7;
	width: 599px;
}
.newsDetialsArticle .mainCon .article .backNewsList {
	width: 49px;
	height: 49px;
	display: block;
	position: absolute;
	left: -49px;
	top: 0;
	cursor: pointer;
}
.newsDetialsArticle .mainCon .hotNews {
	width: 300px;
	float: right;
}
.newsDetialsArticle .mainCon .hotNews .box:first-child {
	margin-top: 0;
}
.newsDetialsArticle .mainCon .hotNews .box .top {
	height: 40px;
	border-bottom: 1px solid #e7e7e7;
}
.newsDetialsArticle .mainCon .hotNews .box .top h3 {
	font-size: 18px;
	color: #333333;
	font-weight: normal;
	float: left;
}
.newsDetialsArticle .mainCon .hotNews .box .top h3 em {
	font-weight: bold;
	color: #2167d2;
}
.newsDetialsArticle .mainCon .hotNews .box .top h3 i {
	width: 72px;
	height: 1px;
	background: #2167d2;
	position: relative;
	display: block;
	top: 18px;
}
.newsDetialsArticle .mainCon .hotNews .box .top a.more {
	display: block;
	width: 21px;
	height: 21px;
	float: right;
	margin-top: 4px;
}
.newsDetialsArticle .mainCon .hotNews .box ul {
	padding-top: 18px;
}
.newsDetialsArticle .mainCon .hotNews .box1 li {
	font-size: 14px;
	margin-bottom: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.newsDetialsArticle .mainCon .hotNews .box1 li a {
	color: #333333;
}
.newsDetialsArticle .mainCon .hotNews .box1 li:hover a {
	color: #2167d2;
}
.newsDetialsArticle .mainCon .hotNews .box2 li {
	font-size: 14px;
	margin-bottom: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.newsDetialsArticle .mainCon .hotNews .box2 li a {
	color: #333333;
}
.newsDetialsArticle .mainCon .hotNews .box2 li:hover a {
	color: #2167d2;
}
.newsDetialsArticle .mainCon .hotNews .sidebar {
	width: 300px;
	float: left;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .top {
	width: 300px;
	height: 70px;
	background: url(../images/prolistclassify_icon01_1.png) no-repeat 238px center #2167d2;
}
.newsDetialsArticle .mainCon .hotNews .sidebar h3 {
	padding: 20px 0 0 26px;
	font-size: 24px;
	font-weight: normal;
}
.newsDetialsArticle .mainCon .hotNews .sidebar h3 a {
	display: block;
	color: #fff;
	text-decoration: none;
}
.newsDetialsArticle .mainCon .hotNews .sidebar h3 em {
	font-weight: bold;
	color: #fff;
}
.newsDetialsArticle .mainCon .hotNews .sidebar h3 span {
	font-size: 10px;
	color: #fff;
	font-family: arial;
	margin-left: 6px;
	position: relative;
	top: 2px;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box1 {
	padding: 26px;
	background: #fff;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box1 dl {
	margin-top: 20px;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box1 dl:first-child {
	margin-top: 0;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box1 dd a {
	display: block;
	font-size: 14px;
	color: #666666;
	height: 50px;
	line-height: 50px;
	background: url(../images/prolistclassify_icon02_1.png) no-repeat 190px center;
	text-indent: 25px;
	text-decoration: none;
	border: 1px solid #eaeaea;
	border-top: none;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box1 dd:first-child a {
	border-top: 1px solid #eaeaea;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box1 dd a:hover, .newsDetialsArticle .mainCon .hotNews .sidebar .box1 dd a.cur {
	color: #2167d2;
	background: url(../images/prolistclassify_icon03_1.png) no-repeat 190px center;
	font-weight: bold;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box2 {
	margin-top: 20px;
	background: #fff;
	margin-bottom: 20px;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box2 .phone {
	background: url(../images/prolistclassify_phone_1.png) no-repeat 32px center;
	padding-left: 86px;
	padding-top: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eaeaea;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box2 .phone span {
	display: block;
	font-size: 14px;
	color: #333333;
}
.newsDetialsArticle .mainCon .hotNews .sidebar .box2 .phone p {
	font-size: 24px;
	color: #2167d2;
	font-family: arial;
}
/*新闻*/
/*分页*/
.pagination {
	width: 1200px;
	margin-top: 30px;
	text-align: right;
	float: left;
	margin-bottom: 30px;
}
.pagination.tl {
	text-align: left;
}
.pagination.tc {
	text-align: center;
}
.pagination .prev, .pagination .next {
	font-family: '微软雅黑';
}
.pagination.tc a {
	border: 1px solid #ccc;
}
.pagination a {
	display: inline-block;
	width: auto;
	padding: 0 15px;
	height: 36px;
	margin: 0 2px;
	background: #e5e5e5;
	color: #999;
	line-height: 36px;
	font-size: 14px;
	text-align: center;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;
}
.pagination a:hover, .pagination a.act {
	background: #078ede;
	color: #fff;
}
.pagination a:hover, .pagination a.page-num-current {
	background: #078ede;
	color: #fff;
}
/*分页*/

/*产品*/
.pro_c {
	height: auto;
	overflow: hidden;
	margin-top: 0px;
}
.proprev {
	margin-top: 138px;
	width: 28px;
	height: 52px;
	float: left;
	z-index: 9;
	background: url(../images/proprev.gif) no-repeat 0 0;
}
.pronext {
	margin-top: 138px;
	width: 28px;
	height: 52px;
	float: right;
	z-index: 9;
	background: url(../images/pronext.gif) no-repeat 0 0;
}
.proprev:hover {
	background: url(../images/proprev1.gif) no-repeat 0 0;
}
.pronext:hover {
	background: url(../images/pronext1.gif) no-repeat 0 0;
}
.proimg {
	width: 1200px;
	float: left;
	overflow: hidden;
}
.proimg li {
	margin: 20px 13px 10px;
	width: 374px;
	background: #fff;
	overflow: hidden;
	line-height: 0;
	float: left;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
	border: 1px solid #ececec;
}
.proimg li img {
	width: 374px;
	height: 254px;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.proimg li span {
	display: block;
	text-indent: 30px;
	background: url(../images/pro_ico02.jpg) no-repeat 325px center;
	border-top: 1px solid #efefef;
	height: 78px;
	text-align: left;
	font-size: 15px;
	color: #333;
	line-height: 78px;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.proimg li:hover, .proimg li.cur {
	box-shadow: 0 2px 3px 3px #e6e6e6;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.proimg li:hover span, .proimg li.cur span {
	background: url(../images/pro_ico01.jpg) no-repeat 325px center;
	color: #078ede;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
/*产品*/
/*产品详情*/
.xiangqing_left {
	width: 700px;
	height: 575px;
	float: left;
	border: 1px solid #eee;
}
.xiangqing_right {
	width: 440px;
	height: auto;
	min-height: 575px;
	float: right;
}
.xiangqing_bottom {
	width: 1200px;
	height: auto;
	float: left;
	margin-top: 45px;
	line-height: 28px;
	word-wrap: break-word;
	border-top: 1px solid #eee;
	padding-top: 30px;
}
.xiangqing_fanye {
	width: 1200px;
	height: auto;
	min-height: 40px;
	float: left;
	margin-top: 30px;
	color: #666;
	font-size: 15px;
	margin-bottom: 30px;
}
.xiangqing_fanye a {
	float: left;
	width: 100%;
}
.chanpin_mingcheng {
	width: 100%;
	height: auto;
	line-height: 40px;
	color: #444;
	font-size: 22px;
	text-align: left;
	float: left;
	font-weight: bold;
	border-bottom: 1px solid #ececec;
	padding-bottom: 20px;
	padding-top: 6px;
}
.chanpin_fenlei {
	width: 100%;
	height: auto;
	line-height: 40px;
	color: #444;
	font-size: 15px;
	text-align: left;
	float: left;
	font-weight: normal;
	border-bottom: 1px solid #ececec;
	padding-bottom: 8px;
	padding-top: 6px;
}
.chanpin_canshu {
	width: 100%;
	height: auto;
	line-height: 32px;
	color: #555;
	font-size: 16px;
	text-align: left;
	float: left;
	margin-top: 20px;
	padding-bottom: 40px;
}
.chanpin_canshu p, .chanpin_canshu li, .chanpin_canshu ul, .chanpin_canshu h2, .chanpin_canshu h3, .chanpin_canshu h4, .chanpin_canshu h5, .chanpin_canshu h1, .chanpin_canshu dd, .chanpin_canshu dt, .chanpin_canshu dl {
	font-size: 16px;
	color: #555;
}
.chanpin_xaizai {
	width: 100%;
	height: 44px;
	line-height: 44px;
	color: #444;
	font-size: 18px;
	text-align: left;
	float: left;
}
.chanpin_xaizai a {
	background: url(../images/xiazai.png) no-repeat #ddd 145px center;
	font-size: 15px;
	color: #444;
	text-align: center;
	line-height: 44px;
	height: 100%;
	display: block;
	width: 100%;
}
.chanpin_xaizai a:hover {
	background: url(../images/xiazai_a.png) no-repeat #ea2129 145px center;
	color: #fff;
}
.jssora05l, .jssora05r {
	display: block;
	position: absolute;/* size of arrow element */
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: url(../images/a17.png) no-repeat;
	overflow: hidden;
}
.jssora05l {
	background-position: -10px -40px;
}
.jssora05r {
	background-position: -70px -40px;
}
.jssora05l:hover {
	background-position: -130px -40px;
}
.jssora05r:hover {
	background-position: -190px -40px;
}
.jssora05l.jssora05ldn {
	background-position: -250px -40px;
}
.jssora05r.jssora05rdn {
	background-position: -310px -40px;
}
.jssora05l.jssora05lds {
	background-position: -10px -40px;
	opacity: .3;
	pointer-events: none;
}
.jssora05r.jssora05rds {
	background-position: -70px -40px;
	opacity: .3;
	pointer-events: none;
}
/* jssor slider thumbnail navigator skin 01 css *//*.jssort01 .p            (normal).jssort01 .p:hover      (normal mouseover).jssort01 .p.pav        (active).jssort01 .p.pdn        (mousedown)*/
.jssort01 .p {
	position: absolute;
	top: 0;
	left: 0;
	width: 72px;
	height: 72px;
}
.jssort01 .t {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.jssort01 .w {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
.jssort01 .c {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 72px;
	height: 72px;
	border: none;
	box-sizing: content-box;
	background: url(../images/t01.png) -800px -800px no-repeat;
	_background: none;
}
.jssort01 .pav .c {
	top: 0px;
	left: 0px;
	width: 72px;
	height: 72px;
	border: none;
	background-position: 50% 50%;
}
.jssort01 .p:hover .c {
	top: 0px;
	left: 0px;
	width: 72px;
	height: 72px;
	border: none;
	background-position: 50% 50%;
	cursor: pointer;
}
.jssort01 .p.pdn .c {
	background-position: 50% 50%;
	width: 72px;
	height: 72px;
	border: none;
}
* html .jssort01 .c, * html .jssort01 .pdn .c, * html .jssort01 .pav .c {    /* ie quirks mode adjust */
	width /**/: 72px;
	height /**/: 72px;
}
#jssor_1 img {
	height: 475px;
	width: auto;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	display: table-cell;
}
#jssor_1 .w img {
	height: 72px;
}
.jssort01 {
	background: #ececec !important;
}
/*产品详情*/
/*证书*/
.picView-magnify-list li {
	float: left;
	display: inline-block;
	width: 275px;
	height: 371px;
	background-image: url(../images/xiangkuang.jpg);
	border: 0px solid #ccc;
	margin: 0 12px 25px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	-moz-background-size: 100% 100%;
}
.picView-magnify-list li a {
	display: block;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	position: relative;
	width: 275px;
	height: 371px;
}
.picView-magnify-list li a img {
	width: 275px;
	height: 371px;
	vertical-align: middle;
	text-align: center;
}
/**/
.product-list {
	margin-bottom: 0px;
}
.index.product-list {
	margin-bottom: 30px;
}
.product-list .row {
	margin-left: -13px;
	margin-right: -13px;
	margin-top: 15px;
}
.product-list .item {
	margin-left: 13px;
	margin-right: 13px;
	margin-bottom: 26px;
	width: 214px;
	float: left;
}
.product-list .item .border {
	box-sizing: border-box;
	border: 2px solid #e8e8e8;
	position: relative;
	transition: transform .2s ease;
}
.product-list .item .border:hover {
	transform: translateY(-10px);
	border: 2px solid #c7e8fc;
}
.product-list .item img {
	width: auto;
	padding: 12px 0;
	margin: 0 auto;
	height: 96px;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.product-list .item img:hover {
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.product-list .item .title {
	height: 44px;
	line-height: 44px;
	text-align: center;
	font-size: 14px;
	transition: background .5s ease;
}
.product-list .item .title a {
	font-size: 15px;
	display: block;
	text-decoration: none;
	color: #646464;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.product-list .item .line {/*width:100%;height:3px;background:#e8232a;position:absolute;bottom:0;right:0px;*/
}
.product-list .item .border:hover .title {
	background: #eee;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
.product-list .item .border:hover .title a {
	color: #078ede;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
/**/
/*导航*/

nav.navbar {
	margin-bottom: 0;
	border-bottom: 0;
	z-index: 2;
}
nav.navbar .navbar-header {
	float: none;
}
nav.navbar .navbar-header .container {
	padding-top: 27px;
	padding-bottom: 26px;
}
nav.navbar .navbar-header .container > .navbar-brand {
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	height: auto;
}
nav.navbar .navbar-header .container > .navbar-brand > a {
	display: inline-block;
	vertical-align: middle;
}
nav.navbar .navbar-header .container > .navbar-phone {
	margin-top: 9px;
	float: right;
}
nav.navbar .navbar-collapse {
	position: relative;
	padding: 0;
}
nav.navbar .navbar-collapse .container > ul {
	width: 100%;
}
nav.navbar .navbar-collapse .container > ul > li {
	position: relative;
	text-align: center;
	width: auto;
	padding: 0 23px;
	float: left;
}
nav.navbar .navbar-collapse .container > ul > li > a {
	padding: 0;
	font-size: 18px;
	font-family: Arial;
	color: #555;
	line-height: 99px;
	height: 99px;
	display: inline-block;
}
nav.navbar .navbar-collapse .container > ul > li > a span {
	font-size: 1.2rem;
}
nav.navbar .navbar-collapse .container > ul > li > ul {
	display: none;
	position: absolute;
	top: 99px;
	width: 2600px;
	z-index: 999;
	background: rgba(0, 0, 0, 0.69);
}
nav.navbar .navbar-collapse .container > ul > li > ul > li {
	line-height: 60px;
	height: 60px;
	width: auto;
	float: left;
	padding: 0;
}
nav.navbar .navbar-collapse .container > ul > li > ul > li a {
	color: #fff;
	font-size: 16px;
	padding: 0 25px;
}
nav.navbar .navbar-collapse .container > ul > li > ul > li ul {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	height: 100%;
	background: #bae9d1;
}
nav.navbar .navbar-collapse .container > ul > li > ul > li ul li {
	line-height: 45px;
	height: 45px;
}
nav.navbar .navbar-collapse .container > ul > li > ul > li ul li a {
	color: #fff;
	padding: 0 30px;
}
nav.navbar .navbar-collapse .container > ul > li > ul > li ul li:hover {
}
nav.navbar .navbar-collapse .container > ul > li > ul > li ul li:hover a {
	background: url(../images/link.png) no-repeat right center;
}
nav.navbar .navbar-collapse .container > ul > li > ul > li:hover {
	color: #078ede;
	transition: All 0.4s ease-in-out;
	-webkit-transition: All 0.4s ease-in-out;
	-moz-transition: All 0.4s ease-in-out;
	-o-transition: All 0.4s ease-in-out;
}
nav.navbar .navbar-collapse .container > ul > li > ul > li:hover > a {
	background: url(../images/link.png) no-repeat right center;
	color: #078ede;
}
nav.navbar .navbar-collapse .container > ul > li > ul > li:last-child {
	border-bottom: 0;
}
nav.navbar .navbar-collapse .container > ul > li:first-child > a {
	border-left: 0;
}
nav.navbar .navbar-collapse .container > ul > li:last-child > a {
	border-right: 0;
}
nav.navbar .navbar-collapse .container > ul > li:hover {
	color: #078ede;
}
nav.navbar .navbar-collapse .container > ul > li:hover > a {
	color: #078ede;
	background: transparent;
	background: url(../images/huaj.png) no-repeat center 88px;
}
nav.navbar .navbar-collapse .container > ul > li.active {
	background: #be131b;
}
nav.navbar .navbar-collapse .container > ul > li.active > a {
	border-right: 0;
}
nav.navbar .navbar-collapse:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0px;
	left: 50%;
	bottom: 0;
	transition: all 1.5s ease-in 1.5s;
}
nav.navbar .navbar-collapse.init:after {
	left: 0;
	width: 100%;
}
/*导航*/
.search placeholder {
	color: #fff;
}
.search {
	color: #fff;
	font-family: 微软雅黑;
}
.row {
	width: 100%;
	margin: 0 auto;
}
.row .col-12 {
	width: 273px;
	height: 243px;
	float: left;
	margin: 0 12px 10px;
}
.card-body {
	width: 100%;
	height: 42px;
	float: left;
	text-align: center;
	line-height: 42px;
}
.card-body h5 {
	font-weight: normal;
	font-size: 16px;
}
.row .col-12 .card-img-150 img {
	width: 100%;
	height: 100%；
}
.row .col-12 .card-img-150 {
	width: 100%;
	float: left;
	height: 196px;
	overflow: hidden;
	border: 1px solid #ddd;
}
/*在线客服*/
@font-face {
	font-family: jdcfont;
	src: url(../fonts/jdcfont.eot);
	src: url(../fonts/jdcfont.eot#iefix) format("embedded-opentype"), url(../fonts/jdcfont.woff) format("woff"), url(../fonts/jdcfont.ttf) format("truetype"), url(../fonts/jdcfont.svg#jdcfont) format("svg")
}
.jdcfont {
	font-family: jdcfont!important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: .2px;
	-moz-osx-font-smoothing: grayscale
}
.jdc-side {
	display: none;
	position: fixed;
	right: 0px;
	bottom: 50px;
	z-index: 300;
	width: 52px
}
.mod_hang_qrcode {
	position: relative
}
.mod-qr-tips {
	height: 44px;
	background-size: 100%;
	text-align: center;
	padding-top: 10px;
	color: #078ede;
	font-size: 18px;
}
.mod_hang_qrcode_show {
	display: none;
	position: absolute;
	right: 52px;
	top: 0px;
	width: 138px;
	min-height: 166px;
	border: 0 none;
	background: #fff;
	-webkit-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	-moz-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	box-shadow: 0 0 10px 0 rgba(20,34,67,.1)
}
.weixinkf {
	display: none;
	position: absolute;
	right: 52px;
	top: 0;
	width: 168px;
	min-height: 260px !important;
	border: 0 none;
	background: #fff;
	-webkit-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	-moz-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	padding-bottom: 20px;
}
.mod_hang_qrcode_show p {
	margin-top: 5px;
	line-height: 16px;
	color: #666;
	font-size: 13.5px;
	text-align: center
}
.mod_hang_qrcode_show_bg {
	width: 124px;
	height: 124px;
	margin: 8px auto 0;
	background-position: 0 0;
	background-repeat: no-repeat;
	-moz-background-size: 124px auto;
	background-size: 124px auto;
	background-image: url(../images/qrcode.png)
}
.weixn_jjh {
	width: 124px;
	height: 170px;
	margin: 8px auto 0;
	background-position: 0 0;
	background-repeat: no-repeat;
	-moz-background-size: 124px auto;
	background-size: 124px auto;
}
.jdc_hang_qrcode .mod_hang_qrcode_show_bg {
	background-image: url(../images/qrcode.jpg)
}
.jdc_hang_qrcode p {
	padding-bottom: 5px
}
.mod_hang_qrcode_btn {
	display: block;
	width: 52px;
	height: 52px;
	color: #0989c5;
	font-size: 40px;
	cursor: pointer;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	transition: all .25s ease
}
.mod_hang_top {
	display: block;
	width: 52px;
	height: 52px;
	margin: 2px 0 0;
	text-align: center;
	cursor: pointer;
	-webkit-transition: all .25s ease;
	-moz-transition: all .25s ease;
	transition: all .25s ease;
	background-color: transparent
}
.mod_hang_qrcode:hover .mod_hang_qrcode_show {
	display: block
}
.mod_hang_qrcode_btn {
	position: relative;
	margin-top: 2px;
	text-align: center;
	background-color: transparent;
	-webkit-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	-moz-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	box-shadow: 0 0 10px 0 rgba(20,34,67,.1)
}
.mod_hang_qrcode_btn span {
	display: none;
	position: absolute;
	top: 25px;
	left: 25px;
	width: 30px;
	line-height: 15px;
	font-size: 12px;
	text-align: center
}
.mod_hang_qrcode_btn:hover {
	color: #fff
}
.mod_hang_top {
	-webkit-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	-moz-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	box-shadow: 0 0 10px 0 rgba(20,34,67,.1)
}
.mod_hang_top .mod_hang_qrcode_btn {
	background: 0 0;
	margin: 0
}
.mod_hang_appeal_btn {
	display: block;
	width: 52px;
	height: 52px;
	color: #0989c5;
	text-align: center;
	font-size: 20px;
	cursor: pointer;
	-webkit-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	-moz-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
}
.mod_hang_appeal:hover .mod_hang_appeal_show {
	display: block;
	opacity: 1;
}
.mod_hang_appeal_btn i, .mod_hang_qrcode_btn i {
	display: inline-block;
	width: 52px;
	height: 52px;
	line-height: 52px;
	font-size: 26px;
	color: #fff;
	background-color: #999
}
.mod_hang_appeal_btn i:hover, .mod_hang_qrcode_btn i:hover {
	background: #027dc6;
}
.mod_hang_appeal_btn span {
	display: none;
	position: absolute;
	top: 25px;
	left: 25px;
	width: 30px;
	line-height: 15px;
	font-size: 12px;
	text-align: center
}
.mod_hang_appeal.show .mod_hang_appeal_show {
	display: block
}
.mod_hang_appeal_show {
	opacity: 0;
	z-index: -9;
	right: -500px;
	position: absolute;
	right: 52px;
	bottom: -40px;
	background: #fff;
	-webkit-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	-moz-box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	box-shadow: 0 0 10px 0 rgba(20,34,67,.1);
	width: 300px;
	display: none;
}
/*.mod_hang_appeal_show li {
*zoom:1;  }
*zoom:1;  }*/

/*.mod_hang_appeal_show .icon_box, .mod_hang_appeal_show .text_box*/

.mod_hang_appeal_show li:hover {
	background: #f1f1f1;
}
.mod_hang_appeal_show li:after, .mod_hang_appeal_show li:before {
	content: "";
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	visibility: hidden
}
.mod_hang_appeal_show .icon_box, .mod_hang_appeal_show .text_box {
	float: left;
	width: 245px;
	height: 200px;
}
.mod_hang_appeal_show .icon_box {
	width: 50px;
	line-height: 90px;
	text-align: center
}
.mod_hang_appeal_show .icon_box i {
	color: #777;
	font-size: 30px
}
.mod_hang_appeal_show .text_box h5 {
	margin-top: 10px;
	font-size: 15px;
	color: #444;
	line-height: 24px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}
.mod_hang_appeal_show .text_box p {
	margin-top: 3px;
	max-height: 36px;
	overflow: hidden;
	line-height: 18px;
	font-size: 13px;
	color: #666;
}
.mod_hang_appeal_show .text_box a {
	color: #666;
}
.mod_hang_appeal_show .text_box a:hover {
	color: #078ede;
}
.jdc_feedback_qrcode .mod_hang_qrcode_btn {
	margin-bottom: 2px
}
.jdc_feedback_qrcode .mod_hang_qrcode_show {
	min-height: 226px
}
.jdc_feedback_qrcode .mod_hang_qrcode_show p {
	padding-bottom: 2px
}
.jdc_feedback_qrcode .mod_hang_qrcode_show_bg {
	margin-top: 0;
	background-image: none
}

@media (max-width:768px) {
.jdc-rwd .jdc-side {
	display: none!important
}
}
.jdc-lang-en .jdc_hang_qrcode .mod_hang_qrcode_show_bg {
	background-image: url(../images/qrcode-en.jpg)
}
.jdc-lang-en .mod-qr-tips {
	position: relative
}
.jdc-lang-en .mod-qr-tips:after {
	content: "Search";
	position: absolute;
	left: 41px;
	top: 8px;
	width: 85px;
	height: 30px;
	line-height: 30px;
	background: #fff;
	color: #666;
	font-size: 16px
}
/*在线客服*/
/*产品二三级导航*/
.ny_menu nav.navbar {
  margin-bottom: 0; width: 100%; float: left;  margin-top: 0px;
  border-bottom: 0;
  z-index: 999;
}

.ny_menu nav.navbar .navbar-header {
  float: none;
}
.ny_menu nav.navbar .navbar-header .container {
  padding-top: 27px;
  padding-bottom: 26px;
}
.ny_menu nav.navbar .navbar-header .container > .navbar-brand {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  height: auto;
}
.ny_menu nav.navbar .navbar-header .container > .navbar-brand > a {
  display: inline-block;
  vertical-align: middle;
}
.ny_menu nav.navbar .navbar-header .container > .navbar-phone {
  margin-top: 9px;
  float: right;
}
.ny_menu nav.navbar .navbar-collapse {
  position: relative;
  padding: 0;
}
.ny_menu nav.navbar .navbar-collapse .container > ul {
  width: 100%; text-align:center;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li {
  position: relative;
  text-align: center;
  width: 13.5%;
  padding: 0; display: inline-block; margin-top: 0px;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li a.act { color: #fff !important;background: #078ede !important; }
.ny_menu nav.navbar .navbar-collapse .container ul.drop-down li a.act { color: #fff; background: #078ede; }

.ny_menu nav.navbar .navbar-collapse .container > ul > li > a {
  padding: 0; 
  font-size: 16px;
  font-family: Arial; line-height: 58px;
  color: #686868;
  height: auto; display: block;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > a span {
  font-size: 1.2rem;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul {
  display: none;
  position: absolute;
  top: 58px;
  width: 100%; z-index: 999; background: none;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li {
  background: #eeeeee;
  border-bottom: 1px solid #e8e8e8;
  line-height: 40px;
  height: 40px; width: 100%;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li a {
  color: #686868; font-size: 14.5px;
  padding: 0;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #bae9d1;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li ul li {
  line-height: 45px;
  height: 45px;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li ul li a {
  color: #fff;
  padding: 0 30px;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li ul li:hover {
  background: #535151;transition:All 0.4s ease-in-out;
	-webkit-transition:All 0.4s ease-in-out;
	-moz-transition:All 0.4s ease-in-out;
	-o-transition:All 0.4s ease-in-out;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li ul li:hover a {
  background: url(../images/link.png) no-repeat right center;transition:All 0.4s ease-in-out;
	-webkit-transition:All 0.4s ease-in-out;
	-moz-transition:All 0.4s ease-in-out;
	-o-transition:All 0.4s ease-in-out;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li:hover {
  background: #f3f3f3; color: #078ede;transition:All 0.4s ease-in-out;
	-webkit-transition:All 0.4s ease-in-out;
	-moz-transition:All 0.4s ease-in-out;
	-o-transition:All 0.4s ease-in-out;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li:hover > a {
  background: url(../images/link.png) no-repeat right center;transition:All 0.4s ease-in-out;
	-webkit-transition:All 0.4s ease-in-out;color: #078ede;
	-moz-transition:All 0.4s ease-in-out;
	-o-transition:All 0.4s ease-in-out;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li > ul > li:last-child {
  border-bottom: 0;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li:first-child > a {
  border-left: 0;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li:last-child > a {
  border-right: 0;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li:hover { color: #f02030; transition:All 0.4s ease-in-out;
	-webkit-transition:All 0.4s ease-in-out;
	-moz-transition:All 0.4s ease-in-out;
	-o-transition:All 0.4s ease-in-out;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li:hover > a {color: #078ede; background: none; transition:All 0.4s ease-in-out;
	-webkit-transition:All 0.4s ease-in-out;
	-moz-transition:All 0.4s ease-in-out;
	-o-transition:All 0.4s ease-in-out;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li.active {
  background: #be131b;
}
.ny_menu nav.navbar .navbar-collapse .container > ul > li.active > a {
  border-right: 0;
}
.ny_menu nav.navbar .navbar-collapse:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0px;
  left: 50%;
  bottom: 0;
  transition: all 1.5s ease-in 1.5s;
}
.ny_menu nav.navbar .navbar-collapse.init:after {
  left: 0;
  width: 100%;
}
