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

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

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

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

   //滤镜

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

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

    -----------------------------------
*/
.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(../images/cover.htc);
  behavior: url(css/cover.htc);
}
.vcenter {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tHide {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.blockFull {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.block {
  display: block;
  position: relative;
}
.centerBlock {
  margin-left: auto;
  margin-right: auto;
}
.clearfix {
  clear: both;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-loading .slick-list {
  background: #ffffff url("../images/ajax-loader.gif") center center no-repeat;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-prev,
.slick-next {
  z-index: 20;
  position: absolute;
  display: block;
  height: 60px;
  width: 30px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -30px;
  padding: 0;
  border: none;
  outline: none;
  border: 1px solid red;
}
.slick-prev {
  left: 30px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: 30px;
}
.slick-next {
  right: 30px;
}
[dir="rtl"] .slick-next {
  left: 30px;
  right: auto;
}
.slick-dots {
  position: absolute;
  bottom: 20px;
  height: auto;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  line-height: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  height: 10px;
  width: 10px;
  padding: 0;
  margin: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: #cccccc;
  border-radius: 0px;
}
.slick-dots li.slick-active button {
  background: #333333;
}
/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
.mm-hidden {
  display: none !important;
}
.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}
.mm-menu,
.mm-menu > .mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.mm-menu {
  box-sizing: border-box;
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}
.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-panel.mm-opened {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
.mm-panel.mm-highest {
  z-index: 1;
}
.mm-menu > .mm-panel {
  background: inherit;
  border-color: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 20px;
}
.mm-menu > .mm-panel.mm-hasnavbar {
  padding-top: 40px;
}
.mm-menu > .mm-panel:before,
.mm-menu > .mm-panel:after {
  content: '';
  display: block;
  height: 20px;
}
.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}
.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}
.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent;
}
.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
  display: block;
}
.mm-vertical .mm-listview > li > .mm-next,
.mm-listview > li.mm-vertical > .mm-next {
  height: 40px;
  bottom: auto;
}
.mm-vertical .mm-listview > li > .mm-next:after,
.mm-listview > li.mm-vertical > .mm-next:after {
  top: 16px;
  bottom: auto;
}
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after,
.mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.mm-navbar > * {
  display: block;
  padding: 10px 0;
}
.mm-navbar a,
.mm-navbar a:hover {
  text-decoration: none;
}
.mm-navbar .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.mm-navbar .mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
}
.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0;
}
.mm-navbar .mm-btn:last-child {
  text-align: right;
  padding-right: 20px;
  right: 0;
}
.mm-panel .mm-navbar {
  display: none;
}
.mm-panel.mm-hasnavbar .mm-navbar {
  display: block;
}
.mm-listview,
.mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}
.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px;
}
.mm-listview a,
.mm-listview a:hover {
  text-decoration: none;
}
.mm-listview > li {
  position: relative;
}
.mm-listview > li,
.mm-listview > li:after,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next:before {
  border-color: inherit;
}
.mm-listview > li > a,
.mm-listview > li > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0;
}
.mm-listview > li > a.mm-arrow,
.mm-listview > li > span.mm-arrow {
  padding-right: 50px;
}
.mm-listview > li:not(.mm-divider):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.mm-listview > li:not(.mm-divider):after {
  left: 20px;
}
.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.mm-listview .mm-next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
  margin-right: 50px;
}
.mm-listview .mm-next.mm-fullsubopen {
  width: 100%;
}
.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none;
}
.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0;
}
.mm-menu > .mm-panel > .mm-listview {
  margin: 20px -20px;
}
.mm-menu > .mm-panel > .mm-listview:first-child,
.mm-menu > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px;
}
.mm-listview .mm-inset {
  list-style: inside disc;
  padding: 0 10px 15px 40px;
  margin: 0;
}
.mm-listview .mm-inset > li {
  padding: 5px 0;
}
.mm-listview .mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}
.mm-listview .mm-spacer {
  padding-top: 40px;
}
.mm-listview .mm-spacer > .mm-next {
  top: 40px;
}
.mm-listview .mm-spacer.mm-divider {
  padding-top: 25px;
}
.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px;
}
.mm-next:after,
.mm-arrow:after {
  border-top: none;
  border-left: none;
  right: 20px;
}
.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-navbar > *,
.mm-menu .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-navbar .mm-btn:before,
.mm-menu .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu .mm-listview > li .mm-next:after,
.mm-menu .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.5);
}
.mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu .mm-divider {
  background: rgba(0, 0, 0, 0.05);
}
/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative;
}
.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-opened {
  overflow: hidden;
  position: relative;
}
html.mm-opened body {
  overflow: hidden;
}
html.mm-background .mm-page {
  background: inherit;
}
#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}
.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}
.mm-menu.mm-current {
  display: block;
}
.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
}
html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0);
  }
}
/*
	jQuery.mmenu autoHeight addon CSS
*/
.mm-menu.mm-top.mm-autoheight,
.mm-menu.mm-bottom.mm-autoheight {
  max-height: 80%;
}
.mm-menu.mm-top.mm-autoheight.mm-fullscreen,
.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
  max-height: 100%;
}
.mm-menu.mm-measureheight > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}
/*
	jQuery.mmenu counters addon CSS
*/
em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%;
}
em.mm-counter + a.mm-next {
  width: 90px;
}
em.mm-counter + a.mm-next + a,
em.mm-counter + a.mm-next + span {
  margin-right: 90px;
}
em.mm-counter + a.mm-fullsubopen {
  padding-left: 0;
}
.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0;
}
.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px;
}
.mm-nosubresults > .mm-counter {
  display: none;
}
.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu dividers addon CSS
*/
.mm-divider > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}
.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-collapsed:not(.mm-uncollapsed) {
  display: none;
}
.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-fixeddivider:after {
  content: none !important;
  display: none !important;
}
.mm-hasdividers .mm-fixeddivider {
  display: block;
}
.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05);
}
/*
	jQuery.mmenu dragOpen addon CSS
*/
html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/*
	jQuery.mmenu iconpanels addon CSS
*/
.mm-iconpanel .mm-panel {
  -webkit-transition-property: -webkit-transform, left, right;
  -moz-transition-property: -moz-transform, left, right;
  -ms-transition-property: -ms-transform, left, right;
  -o-transition-property: -o-transform, left, right;
  transition-property: transform, left, right;
}
.mm-iconpanel .mm-panel.mm-opened {
  border-left: 1px solid;
  border-color: inherit;
}
.mm-iconpanel .mm-panel.mm-subopened {
  overflow-y: hidden;
  left: -40px;
  right: 40px;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-iconpanel .mm-panel.mm-iconpanel-0 {
  left: 0px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-1 {
  left: 40px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-2 {
  left: 80px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-3 {
  left: 120px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-4 {
  left: 160px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-5 {
  left: 200px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-6 {
  left: 240px;
}
.mm-subblocker {
  background: inherit;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.mm-subopened .mm-subblocker {
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -100000px;
  left: 0;
  z-index: 3;
}
/*
	jQuery.mmenu navbars addon CSS
*/
.mm-menu > .mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-navbar-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom: none;
  top: auto;
  bottom: 0;
}
.mm-navbar-top ~ .mm-navbar-top {
  border-bottom: none;
}
.mm-navbar-bottom ~ .mm-navbar-bottom {
  border-top: none;
}
.mm-navbar.mm-hasbtns {
  padding: 0 40px;
}
.mm-close:after {
  content: 'x';
}
.mm-navbar[class*="mm-navbar-content-"] > * {
  box-sizing: border-box;
  display: block;
  float: left;
}
.mm-navbar > .mm-breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px;
}
.mm-navbar > .mm-breadcrumbs > * {
  display: inline-block;
  padding: 10px 3px;
}
.mm-navbar > .mm-breadcrumbs > a {
  text-decoration: underline;
}
.mm-navbar.mm-hasbtns .mm-breadcrumbs {
  margin-left: -40px;
}
.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs {
  margin-left: 0;
  padding-left: 0;
}
.mm-navbar-top-1 {
  top: 0px;
}
.mm-hasnavbar-top-1 .mm-panel {
  top: 40px;
}
.mm-hasnavbar-top-1 .mm-indexer {
  top: 50px;
}
.mm-hasnavbar-top-1 .mm-fixeddivider {
  top: 40px;
}
.mm-navbar-top-2 {
  top: 40px;
}
.mm-hasnavbar-top-2 .mm-panel {
  top: 80px;
}
.mm-hasnavbar-top-2 .mm-indexer {
  top: 90px;
}
.mm-hasnavbar-top-2 .mm-fixeddivider {
  top: 80px;
}
.mm-navbar-top-3 {
  top: 80px;
}
.mm-hasnavbar-top-3 .mm-panel {
  top: 120px;
}
.mm-hasnavbar-top-3 .mm-indexer {
  top: 130px;
}
.mm-hasnavbar-top-3 .mm-fixeddivider {
  top: 120px;
}
.mm-navbar-top-4 {
  top: 120px;
}
.mm-hasnavbar-top-4 .mm-panel {
  top: 160px;
}
.mm-hasnavbar-top-4 .mm-indexer {
  top: 170px;
}
.mm-hasnavbar-top-4 .mm-fixeddivider {
  top: 160px;
}
.mm-navbar-bottom-1 {
  bottom: 0px;
}
.mm-hasnavbar-bottom-1 .mm-panel {
  bottom: 40px;
}
.mm-hasnavbar-bottom-1 .mm-indexer {
  bottom: 50px;
}
.mm-navbar-bottom-2 {
  bottom: 40px;
}
.mm-hasnavbar-bottom-2 .mm-panel {
  bottom: 80px;
}
.mm-hasnavbar-bottom-2 .mm-indexer {
  bottom: 90px;
}
.mm-navbar-bottom-3 {
  bottom: 80px;
}
.mm-hasnavbar-bottom-3 .mm-panel {
  bottom: 120px;
}
.mm-hasnavbar-bottom-3 .mm-indexer {
  bottom: 130px;
}
.mm-navbar-bottom-4 {
  bottom: 120px;
}
.mm-hasnavbar-bottom-4 .mm-panel {
  bottom: 160px;
}
.mm-hasnavbar-bottom-4 .mm-indexer {
  bottom: 170px;
}
.mm-navbar-size-2 {
  height: 80px;
}
.mm-navbar-size-3 {
  height: 120px;
}
.mm-navbar-size-4 {
  height: 160px;
}
.mm-navbar-content-2 > * {
  width: 50%;
}
.mm-navbar-content-3 > * {
  width: 33.33%;
}
.mm-navbar-content-4 > * {
  width: 25%;
}
.mm-navbar-content-5 > * {
  width: 20%;
}
.mm-navbar-content-6 > * {
  width: 16.67%;
}
/*
	jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box;
}
.mm-search {
  height: 40px;
  padding: 7px 10px 0 10px;
}
.mm-search input {
  border: none;
  border-radius: 26px;
  font: inherit;
  font-size: 14px;
  line-height: 26px;
  outline: none;
  display: block;
  width: 100%;
  height: 26px;
  margin: 0;
  padding: 0 10px;
}
.mm-search input::-ms-clear {
  display: none;
}
.mm-panel > .mm-search {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mm-panel.mm-hassearch {
  padding-top: 40px;
}
.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 80px;
}
.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px;
}
.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0;
}
.mm-noresults .mm-noresultsmsg {
  display: block;
}
.mm-noresults .mm-indexer {
  display: none !important;
}
li.mm-nosubresults > a.mm-next {
  display: none;
}
li.mm-nosubresults > a.mm-next + a,
li.mm-nosubresults > a.mm-next + span {
  padding-right: 10px;
}
.mm-menu .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu sectionIndexer addon CSS
*/
.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -ms-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.85%;
}
.mm-indexer ~ .mm-panel.mm-hasindexer {
  padding-right: 40px;
}
.mm-hasindexer .mm-indexer {
  right: 0;
}
.mm-hasindexer .mm-fixeddivider {
  right: 20px;
}
.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu toggles addon CSS
*/
input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}
label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
}
label.mm-toggle:before,
label.mm-check:before {
  content: '';
  display: block;
}
label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px;
}
label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}
input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right;
}
label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px;
}
label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
input.mm-check:checked ~ label.mm-check:before {
  opacity: 1;
}
li.mm-vertical label.mm-toggle,
li.mm-vertical label.mm-check {
  bottom: auto;
  margin-top: 0;
}
li.mm-vertical label.mm-toggle {
  top: 5px;
}
li.mm-vertical label.mm-check {
  top: 5px;
}
label.mm-toggle,
label.mm-check {
  right: 20px;
}
label.mm-toggle + a,
label.mm-toggle + span {
  padding-right: 80px;
}
label.mm-check + a,
label.mm-check + span {
  padding-right: 60px;
}
a.mm-next + label.mm-toggle,
a.mm-next + label.mm-check {
  right: 60px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span,
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  margin-right: 50px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span {
  padding-right: 70px;
}
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  padding-right: 50px;
}
em.mm-counter + a.mm-next + label.mm-toggle,
em.mm-counter + a.mm-next + label.mm-check {
  right: 100px;
}
em.mm-counter + a.mm-next + label.mm-toggle + a,
em.mm-counter + a.mm-next + label.mm-toggle + span,
em.mm-counter + a.mm-next + label.mm-check + a,
em.mm-counter + a.mm-next + label.mm-check + span {
  margin-right: 90px;
}
.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu label.mm-toggle:before {
  background: #f3f3f3;
}
.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7);
}
/*
	jQuery.mmenu borderstyle extension CSS
*/
.mm-menu.mm-border-none .mm-listview > li:after,
.mm-listview.mm-border-none > li:after {
  content: none;
}
.mm-menu.mm-border-full .mm-listview > li:after,
.mm-listview.mm-border-full > li:after {
  left: 0 !important;
}
/*
	jQuery.mmenu effects extension CSS
*/
html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}
html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu .mm-menu.mm-effect-slide-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-slide-menu.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
html.mm-effect-slide-menu.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
html.mm-effect-fade-menu .mm-menu.mm-effect-fade-menu {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
html.mm-effect-fade-menu.mm-opening .mm-menu.mm-effect-fade-menu {
  opacity: 1;
}
.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}
.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(1) {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(2) {
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(3) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(4) {
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(5) {
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(6) {
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(7) {
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(8) {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(9) {
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}
html.mm-effect-slide-listitems.mm-opening .mm-menu.mm-effect-slide-listitems .mm-panel.mm-opened .mm-listview > li {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*
	jQuery.mmenu fullscreen extension CSS
*/
.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}
html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}
html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}
.mm-menu.mm-fullscreen.mm-top,
.mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}
html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}
/*
	jQuery.mmenu multiline extension CSS
*/
.mm-menu.mm-multiline .mm-listview > li > a,
.mm-menu.mm-multiline .mm-listview > li > span,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > a,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > span {
  text-overflow: clip;
  white-space: normal;
}
/*
	jQuery.mmenu pageshadow extension CSS
*/
.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
}
.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%;
}
.mm-menu.mm-pageshadow.mm-next:after,
.mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none;
}
.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.mm-menu.mm-right {
  left: auto;
  right: 0;
}
.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}
html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
  }
}
/*
	jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}
.mm-menu.mm-front {
  z-index: 1;
}
.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}
/*
	jQuery.mmenu themes extension CSS
*/
.mm-menu.mm-theme-dark {
  background: #333333;
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-navbar > *,
.mm-menu.mm-theme-dark .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview {
  border-color: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-dark .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark .mm-divider {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333333;
}
.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-white {
  background: white;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-navbar > *,
.mm-menu.mm-theme-white .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-white .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white .mm-divider {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white label.mm-toggle:before {
  background: white;
}
.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-black {
  background: black;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-navbar > *,
.mm-menu.mm-theme-black .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-black .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-divider {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none;
}
.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-toggle:before {
  background: black;
}
.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
/*
	jQuery.mmenu tileview extension CSS
*/
.mm-menu.mm-tileview .mm-listview:after,
.mm-menu .mm-tileview.mm-listview:after {
  content: '';
  display: block;
  clear: both;
}
.mm-menu.mm-tileview .mm-listview > li,
.mm-menu .mm-tileview.mm-listview > li {
  width: 50%;
  height: 0;
  padding: 50% 0 0 0;
  float: left;
  position: relative;
}
.mm-menu.mm-tileview .mm-listview > li:after,
.mm-menu .mm-tileview.mm-listview > li:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-xs,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-s,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-s {
  width: 25%;
  padding-top: 25%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-l,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-l {
  width: 75%;
  padding-top: 75%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-xl,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xl {
  width: 100%;
  padding-top: 100%;
}
.mm-menu.mm-tileview .mm-listview > li > a,
.mm-menu.mm-tileview .mm-listview > li > span,
.mm-menu .mm-tileview.mm-listview > li > a,
.mm-menu .mm-tileview.mm-listview > li > span {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0;
}
.mm-menu.mm-tileview .mm-listview > li > .mm-next,
.mm-menu .mm-tileview.mm-listview > li > .mm-next {
  width: auto;
}
.mm-menu.mm-tileview .mm-listview > li > .mm-next:before,
.mm-menu.mm-tileview .mm-listview > li > .mm-next:after,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:before,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:after {
  content: none;
  display: none;
}
.mm-menu.mm-tileview .mm-panel {
  padding-left: 0;
  padding-right: 0;
}
.mm-menu.mm-tileview .mm-panel:after {
  content: none;
  display: none;
}
.mm-menu.mm-tileview .mm-listview {
  margin: 0;
}
.page {
  text-align: center;
}
.page a {
  display: inline-block;
  border: 1px solid #e4e4e4;
  line-height: 40px;
  color: #666666;
  font-size: 14px;
  margin: 0 1px;
  transition: all .5s;
  padding: 0 16px;
}
.page a:hover,
.page a.cur {
  background: #134992;
  border-color: #134992;
  color: #fff;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1029px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1230px) {
  .container {
    width: 1230px;
  }
}
img {
  max-width: 100%;
}
.float-box {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 28px;
  z-index: 999;
}
.float-box ul li {
  width: 64px;
  height: 64px;
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
  cursor: pointer;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f8f8f8;
}
.float-box ul li.return-top {
  background-position: center;
}
.float-box ul li:last-child {
  border-bottom: 1px solid #e8e8e8;
}
.title {
  text-align: center;
}
.title em {
  font-style: normal;
  font-family: arial;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 80px;
  color: #f4f4f1;
  opacity: 0.7;
}
.title h3 {
  position: relative;
  z-index: 2;
  color: #17498e;
  font-size: 36px;
  margin-top: -50px;
}
.title h3 span {
  font-size: 26px;
  font-weight: normal;
}
.title p {
  margin-top: 12px;
  color: #999;
}
.home_head {
  width: 100%;
  position: relative;
}
.home_head .top {
  background: #17498e;
  line-height: 40px;
  color: #6e91c2;
  font-size: 14px;
}
.home_head .top .text {
  float: left;
}
.home_head .top .language {
  margin-left: 20px;
  float: right;
}
.home_head .top .language a {
  color: #6e91c2;
}
.home_head .top .language a.cur,
.home_head .top .language a:hover {
  color: #9fc1f1;
}
.home_head .top .tel {
  float: right;
  margin-left: 24px;
  background: url(../images/icon1.png) no-repeat right center;
  padding-right: 22px;
}
.home_head .header {
  padding: 25px 0 0;
  position: relative;
  z-index: 9;
}
.home_head .header .logo {
  display: block;
  float: left;
  margin-bottom: 25px;
}
.home_head .header .nav {
  float: right;margin-top: 12px;
}
.home_head .header .nav ul li {
  float: left;
  text-align: center;
  padding: 0 20px 29px;
  line-height: 42px;
  transition: all .5s;
  position: relative;
}
.home_head .header .nav ul li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  width: 1px;
  height: 7px;
  background: #ebebeb;
}
.home_head .header .nav ul li a {
  display: block;
  color: #333333;
  font-size: 16px;
  border-bottom: 2px solid #fff;
  transition: all .5s;
}
.home_head .header .nav ul li:last-child {
  padding-right: 0;
}
.home_head .header .nav ul li:last-child:before {
  display: none;
}
.home_head .header .nav ul li .navbox{
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	background: #fff;
	display: none;
}
.home_head .header .nav ul li .navbox a{
	display: block;
}
.home_head .header .nav ul li .navbox a:hover{
	color: #1c5ca9;
}
.home_head .header .nav ul li:hover > a,
.home_head .header .nav ul li.cur a {
  color: #1c5ca9;
  border-bottom: 2px solid #17498e;
}
.home_head .navbtn {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 4%;
  margin-top: -2%;
  overflow: hidden;
  z-index: 999;
  line-height: 0;
  display: none;
}
.footer {
  background: #17498e;
  padding: 30px 0 0;
}
.footer .footer-top {
  padding-bottom: 20px;
}
.footer .footer-top .footer-nav ul li {
  float: left;
  width: 142px;
}
.footer .footer-top .footer-nav ul li span {
  display: block;
  color: #ececec;
  font-size: 16px;
}
.footer .footer-top .footer-nav ul li > div {
  margin-top: 5px;
}
.footer .footer-top .footer-nav ul li > div a {
  display: block;
  color: #a0c1ea;
  font-size: 14px;
  line-height: 24px;
}
.footer .footer-top .footer-nav ul li > div a:hover {
  text-decoration: underline;
}
.footer .footer-top .right span {
  display: block;
  color: #ececec;
  font-size: 16px;
}
.footer .footer-top .right .dz {
  margin-top: 5px;
  color: #a0c1ea;
  font-size: 14px;
  line-height: 24px;
}
.footer .footer-top .right .ewm {
  text-align: center;
}
.footer .footer-top .right .ewm > div {
  margin-top: 10px;
  width: 102px;
  float: left;
  margin-right: 8px;
}
.footer .footer-top .right .ewm > div em {
  display: block;
  width: 102px;
  height: 102px;
}
.footer .footer-top .right .ewm > div p {
  margin-top: 8px;
  color: #6e91c2;
  font-size: 14px;
}
.foot-bottom {
  border-top: 1px solid #2f5c9a;
  padding: 20px 0;
  color: #6e91c2;
  font-size: 14px;
  background: #17498e;
}
.foot-bottom span {
  float: left;
}
.foot-bottom a {
  float: right;
  color: #6e91c2;
}
.banner img {
  width: 100%;
}
.banner .slick-prev,
.banner .slick-next {
  width: 54px;
  height: 54px;
  margin-top: -27px;
  border: none;
}
.banner .slick-prev {
  background: url(../images/prev.png) no-repeat center center;
  left: 3%;
}
.banner .slick-next {
  background: url(../images/next.png) no-repeat center center;
  right: 3%;
}
.home-tech {
  padding: 60px 0 50px;
  background: url(../images/g_tech1.jpg) no-repeat center top;
}
.home-tech .title span {
  color: #333333;
}
.home-tech .title p {
  width: 686px;
  margin: 12px auto 0;
}
.home-tech .title em{
	color: #fff;
	opacity: 0.2;
}
.home-tech ol {
  margin: 40px 0;
}
.home-tech ol li {
	background: #fff;
  float: left;
  width: 32%;
  border: 1px solid #f3f3f3;
  padding: 10px 10px 30px;
  transition: all .5s;
  border-radius: 3px;
  margin-left: 2%;
}
.home-tech ol li:first-child {
  margin-left: 0;
}
.home-tech ol li .img {
  line-height: 0;
  display: block;
  overflow: hidden;
}
.home-tech ol li .img img {
  transition: all 1.5s;
  -moz-transition: all 1.5s;
  -o-transition: all 1.5s;
  -webkit-transition: all 1.5s;
  -ms-transition: all 1.5s;
}
.home-tech ol li .text {
  padding-top: 24px;
}
.home-tech ol li .text h3 {
  color: #666666;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all .5s;
}
.home-tech ol li .text p {
  margin-top: 10px;
  color: #999999;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}
.home-tech ol li .text span {
  display: block;
  margin-top: 20px;
  color: #999999;
  font-size: 14px;
  font-family: arial;
  text-transform: uppercase;
  width: 104px;
  height: 30px;
  line-height: 30px;
  transition: all .5s;
}
.home-tech ol li:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.home-tech ol li:hover .img img {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
.home-tech ol li:hover .text h3 {
  color: #2e65c1;
}
.home-tech ol li:hover .text span {
  text-align: center;
  color: #fff;
  background: #0058ad;
}
.home-field {
  background: url(../images/home_bg.jpg) no-repeat center top;
  padding-top: 79px;
  padding-bottom: 80px;
}
.home-field .title h4 {
  color: #ffffff;
  font-size: 68px;
  font-family: arial;
  text-transform: uppercase;
  opacity: 0.2;
}
.home-field .title h3 {
  margin-top: -40px;
  position: relative;
}
.home-field .title h3 span {
  color: #fff;
}
.home-field .title p {
  color: #fff;
}
.home-field .field_box {
  margin-top: 51px;
  width: 1205px;
  margin-left: -5px;
}
.home-field .field_box .box {
  margin: 0 5px;
  transform: translateY(12px);
  -webkit-transform: translateY(12px);
  -moz-transform: translateY(12px);
  -o-transform: translateY(12px);
  -ms-transform: translateY(12px);
  transition: all .5s;
  height: 392px;
}
.home-field .field_box .box a {
  display: block;
  background: #fff;
  width: 100%;
  position: relative;
}
.home-field .field_box .box a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: url(../images/home_bg2.jpg) repeat-x bottom left;
}
.home-field .field_box .box a img {
  width: 100%;
}
.home-field .field_box .box a .text {
  padding: 10px 10px 40px;
  border: 1px solid #f6f6f6;
}
.home-field .field_box .box a .text h3 {
  color: #666666;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home-field .field_box .box a .text p {
  margin-top: 10px;
  color: #999999;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}
.home-field .field_box .box a .text span {
  display: block;
  margin-top: 20px;
  color: #999999;
  font-size: 14px;
  font-family: arial;
  text-transform: uppercase;
  width: 104px;
  height: 30px;
  line-height: 30px;
  transition: all .5s;
}
.home-field .field_box .box:hover {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
}
.home-field .field_box .box:hover a .text h3 {
  color: #194a8d;
}
.home-field .field_box .box:hover a .text span {
  text-align: center;
  color: #fff;
  background: #0058ad;
}
.home-field .field_box .slick-dots {
  bottom: -40px;
}
.home-field .field_box .slick-dots li button {
  width: 70px;
  height: 3px;
  background: #e5e5e5;
}
.home-field .field_box .slick-dots li.slick-active button {
  background: #17498e;
}
.home-partner {
  padding-bottom: 60px;
}
.home-partner .title p {
  color: #999;
}
.home-partner .partner_box {
  margin-top: 45px;
  margin-bottom: 30px;
}
.home-partner .partner_box ol li {
  float: left;
  border: 1px solid #e5e5e5;
  line-height: 0;
  width: 19%;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 1.25%;
  margin-right: 1.25%;
}
.home-partner .partner_box ol li:nth-child(5n) {
  margin-right: 0;
}
.home-partner .partner_box ol li img {
  transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -webkit-transition: all 1s;
  -ms-transition: all 1s;
}
.home-partner .partner_box ol li:hover img {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
.more_btn {
  text-align: center;
}
.more_btn a {
  display: block;
  width: 160px;
  height: 44px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  line-height: 44px;
  font-family: arial;
  text-transform: uppercase;
  color: #cccccc;
  font-size: 16px;
  transition: all .5s;
  margin: 0 auto;
}
.more_btn a:hover {
  color: #fff;
  border-color: #17498e;
  background: #17498e;
}
.home-about {
  padding-top: 20px;
  margin-bottom: 60px;
  /*background: url(../images/home_bg3.jpg) no-repeat center top;*/
}

.home-about .g_title{
	display: block;
	text-align: center;
	color: #f9fbff;
	font-size: 158px;
	font-family: arial;
	font-weight: bold;
	text-transform: uppercase;
}

.home-about .top{
	margin-top: 40px;
}

.home-about .top li {
  float: left;
  width: 33.33333333%;
  text-align: center;
  position: relative;
}
.home-about .top li:before{
	content: "";
	position: absolute;
	right: 0;
	top: 8px;
	width: 1px;
	height: 105px;
	background: #efefef;
}
.home-about .top li:last-child::before{
	display: none;
}
.home-about .top li .img {
  /*border-radius: 50%;*/
  width: 57px;
  height: 55px;
  margin: 0 auto;
}
.home-about .top li .text {
  margin-top: 12px;
}
.home-about .top li .text h3 {
  color: #666666;
  font-size: 16px;
}
.home-about .top li .text p {
  margin-top: 7px;
  color: #999999;
  font-size: 14px;
}
.home-about .home-about-text {
  background: #fff;
  width: 88%;
  margin: -92px auto 0;
  text-align: center;
  min-height: 305px;
  padding: 35px 5% 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.home-about .home-about-text .tit {
  margin-bottom: 12px;
}
.home-about .home-about-text .tit h3 {
  color: #333333;
  font-size: 30px;
  font-weight: normal;
}
.home-about .home-about-text .tit span {
  color: #cccccc;
  font-size: 16px;
  font-family: arial;
  display: block;
  margin-top: 5px;
}
.home-about .home-about-text .t {
  color: #666666;
  font-size: 13px;
  line-height: 25px;
  margin-bottom: 30px;
  text-align: left;
}

.home-about .home-about-text .more_btn a{
	border-color: #bad2e9;
	color: #0058ad;
}
.home-about .home-about-text .more_btn a:hover{
	color: #fff;
}

.home-news {
  /*margin-top: 80px;*/
  padding-bottom: 70px;
}
.home-news .top{
	position: relative;
}
.home-news .top .title{
	float: left;
	text-align: left;
}
.home-news .top .title h3 {
  color: #003a89;
  font-size: 30px;
}
.home-news .top .tit {
	position: absolute;
	left: 115px;
	top: 45px;
  float: left;
  color: #999999;
  font-size: 14px;
  margin-left: 22px;
  margin-top: 18px;
}
.home-news .top .more {
  display: inline-block;
  float: right;
  text-transform: uppercase;
  color: #666666;
  font-size: 15px;
  margin-top: 18px;
}
.home-news .top .more:hover {
  color: #17498E;
}
.home-news .con_box {
  margin-top: 30px;
}
.home-news .con_box .right {
  float: left;
  width: 50%;
}
.home-news .con_box .right .text_box {
  background: #f7f7f7;
  padding: 10px 10px 15px;
}
.home-news .con_box .right .text_box .img {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.home-news .con_box .right .text_box .img img {
  transition: all 1.5s;
  -moz-transition: all 1.5s;
  -o-transition: all 1.5s;
  -webkit-transition: all 1.5s;
  -ms-transition: all 1.5s;
}
.home-news .con_box .right .text_box .text {
  padding-top: 15px;
}
.home-news .con_box .right .text_box .text .data {
  float: left;
  text-align: center;
}
.home-news .con_box .right .text_box .text .data span {
  font-size: 16px;
  display: block;
  padding: 6px 0;
  color: #000000;
}
.home-news .con_box .right .text_box .text .data span:first-child {
  font-size: 18px;
  border-bottom: 1px solid #eaeaea;
}
.home-news .con_box .right .text_box .text .text-b {
  margin-top: 8px;
  float: left;
  width: 89%;
  margin-left: 3%;
}
.home-news .con_box .right .text_box .text .text-b .bt {
  color: #333333;
  font-size: 16px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all .5s;
}
.home-news .con_box .right .text_box .text .text-b p {
  margin-top: 15px;
  color: #666666;
  font-size: 13px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home-news .con_box .right .text_box:hover .img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
.home-news .con_box .right .text_box:hover .text .text-b .bt {
  color: #003a89;
}
.home-news .con_box .left {
  float: right;
  width: 48%;
}
.home-news .con_box .left ul li {
  float: left;
  width: 100%;
  padding: 2.9% 3%;
  background: #f7f7f7;
  margin-top: 3%;
  transition: all .5s;
}
.home-news .con_box .left ul li .data {
  width: 128px;
  float: left;
  display: inline-block;
  padding-right: 28px;
}
.home-news .con_box .left ul li .data .ri {
  display: inline-block;
  float: left;
  color: #cccccc;
  font-size: 50px;
  font-family: arial;
  font-weight: normal;
}
.home-news .con_box .left ul li .data .t {
  padding-top: 8px;
  margin-left: 12px;
  display: inline-block;
  float: left;
  text-align: center;
}
.home-news .con_box .left ul li .data .t span {
  display: block;
  color: #999999;
  font-size: 14px;
  font-family: arial;
}
.home-news .con_box .left ul li .data .t i {
  width: 5px;
  height: 5px;
  background: #999999;
  border-radius: 50px;
  margin: 0 auto;
  display: block;
}
.home-news .con_box .left ul li .text {
  max-width: 73%;
  margin-top: 11px;
  display: inline-block;
  float: left;
  margin-left: ;
  border-left: 1px solid #c1c1c1;
  padding-left: 20px;
}
.home-news .con_box .left ul li .text .bt {
  color: #4e4e4e;
  font-size: 16px;
  position: relative;
  top: -3px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home-news .con_box .left ul li .text p {
  color: #757575;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home-news .con_box .left ul li:first-child {
  margin-top: 0;
}
.home-news .con_box .left ul li:hover {
  background: #003a89;
}
.home-news .con_box .left ul li:hover .data .ri {
  color: #fff;
}
.home-news .con_box .left ul li:hover .data .t span {
  color: #fff;
}
.home-news .con_box .left ul li:hover .data .t i {
  background: #fff;
}
.home-news .con_box .left ul li:hover .text .bt,
.home-news .con_box .left ul li:hover .text p {
  color: #fff;
}
.links {
  background: #f8f8f8;
  padding: 15px 0;
}
.links span {
  float: left;
  color: #666666;
  font-size: 16px;
}
.links .box {
  float: left;
  font-size: 16px;
  width: 90%;
}
.links .box a {
  display: block;
  color: #666666;
  float: left;
  margin-right: 20px;
}
.links .box a:hover {
  text-decoration: underline;
}
.nybanner {
  line-height: 0;
}
.nybanner img {
  width: 100%;
}
.partner {
  padding: 60px 0;
}
.partner .title p {
  color: #999;
}
.partner ol {
  margin-top: 40px;
  margin-bottom: 35px;
}
.partner ol li {
  float: left;
  border: 1px solid #e5e5e5;
  line-height: 0;
  width: 19%;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 1.25%;
  margin-right: 1.25%;
}
.partner ol li:nth-child(5n) {
  margin-right: 0;
}
.partner ol li img {
  transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -webkit-transition: all 1s;
  -ms-transition: all 1s;
}
.partner ol li:hover img {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
.tech {
  padding: 60px 0 70px;
}
.tech .title span {
  color: #333333;
}
.tech .title p {
  width: 686px;
  margin: 12px auto 0;
}
.tech ol {
  margin: 40px 0 25px;
}
.tech ol li {
  float: left;
  width: 32%;
  border: 1px solid #f3f3f3;
  padding: 10px 10px 30px;
  transition: all .5s;
  border-radius: 3px;
  margin-bottom: 2%;
  margin-right: 2%;
}
.tech ol li:nth-child(3n) {
  margin-right: 0;
}
.tech ol li .img {
  line-height: 0;
  display: block;
  overflow: hidden;
}
.tech ol li .img img {
  transition: all 1.5s;
  -moz-transition: all 1.5s;
  -o-transition: all 1.5s;
  -webkit-transition: all 1.5s;
  -ms-transition: all 1.5s;
}
.tech ol li .text {
  padding-top: 24px;
}
.tech ol li .text h3 {
  color: #666666;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all .5s;
}
.tech ol li .text p {
  margin-top: 10px;
  color: #999999;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
  text-indent: 2em;
}
.tech ol li .text span {
  display: block;
  margin-top: 20px;
  color: #999999;
  font-size: 14px;
  font-family: arial;
  text-transform: uppercase;
  width: 104px;
  height: 30px;
  line-height: 30px;
  transition: all .5s;
}
.tech ol li:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.tech ol li:hover .img img {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
.tech ol li:hover .text h3 {
  color: #2e65c1;
}
.tech ol li:hover .text span {
  text-align: center;
  color: #fff;
  background: #0058ad;
}
.menu {
  padding: 30px 0 20px;
  border-bottom: 1px solid #f7f7f7;
  text-align: center;
}
.menu a {
  display: inline-block;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  line-height: 40px;
  color: #333333;
  font-size: 16px;
  min-width: 120px;
  margin: 0 20px;
}
.menu a:hover,
.menu a.cur {
  background: #f04e04;
  border-color: #f04e04;
  color: #fff;
}
.contact_top {
  margin-top: 30px;
}
.contact_top .box {
  border: 1px solid #e5e5e5;
  padding: 20px 25px;
}
.contact_top .box .text_con {
  padding-top: 10px;
  width: 540px;
  float: left;
}
.contact_top .box .text_con h3 {
  color: #17498e;
  font-size: 18px;
  margin-bottom: 12px;
}
.contact_top .box .text_con p {
  color: #999999;
  font-size: 16px;
  line-height: 24px;
  padding-left: 20px;
  margin-top: 8px;
}
.contact_top .box .text_con p em {
  font-style: normal;
  float: left;
  display: block;
}
.contact_top .box .text_con p span {
  float: left;
  color: #333333;
  display: block;
}
.contact_top .box .text_con p .s2 {
  width: 100%;
  padding-left: 49px;
}
.contact_top .box .text_con .d1 {
  background: url(../images/contact1.jpg) no-repeat left 4px;
}
.contact_top .box .text_con .d2 {
  background: url(../images/contact3.jpg) no-repeat left 6px;
}
.contact_top .box .text_con .d3 {
  background: url(../images/contact5.jpg) no-repeat left 6px;
}
.contact_top .box .text_con .ewm {
  margin-top: 20px;
}
.contact_top .box .text_con .ewm .t {
  float: left;
  text-align: center;
  width: 120px;
  margin-right: 25px;
}
.contact_top .box .text_con .ewm .t span {
  margin: 0 auto;
  width: 100px;
  display: block;
  background: #fcfcfc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 6px;
  line-height: 0;
}
.contact_top .box .text_con .ewm .t em {
  font-style: normal;
  color: #666666;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
.contact_top .box .map {
  float: right;
  width: 605px;
}
.contact_top .box .map #map {
  width: 100%;
  height: 335px;
}
.contact_message {
  padding: 50px 0 60px;
}
.contact_message ol {
  margin-top: 40px;
}
.contact_message ol li {
  float: left;
  background: #fff;
  width: 32%;
  position: relative;
  border: 1px solid #d1d1d1;
  margin-bottom: 2%;
  margin-right: 2%;
}
.contact_message ol li:nth-child(3),
.contact_message ol li:nth-child(4),
.contact_message ol li:last-child {
  margin-right: 0;
}
.contact_message ol li:nth-child(4) {
  width: 100%;
}
.contact_message ol li:last-child {
  border: none;
  text-align: center;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 0;
}
.contact_message ol li span {
  position: absolute;
  left: 10px;
  top: 19px;
  width: 25px;
  line-height: 0;
}
.contact_message ol li input {
  border: none;
  background: none;
  width: 100%;
  padding: 0 10px 0 45px;
  -webkit-appearance: none;
  height: 64px;
  line-height: 64px;
  font-family: "微软雅黑";
  font-size: 14px;
}
.contact_message ol li textarea {
  width: 100%;
  border: none;
  background: none;
  height: 150px;
  font-family: "微软雅黑";
  -webkit-appearance: none;
  font-size: 14px;
  padding: 20px 10px 20px 45px;
}
.contact_message ol li .btn {
  float: none;
  margin: 0 auto;
  width: 246px;
  padding: 0;
  background: #f04e04;
  border-color: #f04e04;
  color: #fff;
  font-size: 20px;
  font-family: "微软雅黑";
  border-radius: 3px;
}
.join_box {
  padding: 30px 0 60px;
}
.join_box .top {
  margin-bottom: 25px;
}
.join_box .top h3 {
  color: #17498e;
  font-size: 18px;
}
.join_box .top p {
  color: #666666;
  margin-top: 8px;
}
.join_box .tit {
  background: #f6f6f6;
  line-height: 52px;
  color: #333333;
  font-size: 16px;
  padding: 0 25px;
}
.join_box .tit span {
  display: block;
  float: left;
  width: 16.66666667%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.join_box ol {
  border: 1px solid #ededed;
}
.join_box ol li {
  float: left;
  width: 100%;
  color: #333333;
  font-size: 14px;
}
.join_box ol li .bt {
  padding: 0 25px;
  cursor: pointer;
  line-height: 40px;
}
.join_box ol li .bt span {
  display: block;
  float: left;
  width: 16.66666667%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.join_box ol li .text {
  display: none;
  border-top: 1px solid #ededed;
  padding: 10px 25px 20px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.join_box ol li .text p span {
  color: #333333;
  font-weight: bold;
}
.join_box ol li:nth-child(2n) {
  background: #fcfcfc;
}
.join_box ol li:hover .bt span,
.join_box ol li.cur .bt span {
  color: #0058ad;
}
.news {
	padding-top: 20px;
  padding-bottom: 60px;
}
.news .left {
  float: left;
  width: 75%;
}
.news .left .news_box ul {
  margin-bottom: 40px;
}
.news .left .news_box ul li {
  float: left;
  width: 100%;
  border-bottom: 1px dotted #dcdcdc;
  padding: 20px 0;
}
.news .left .news_box ul li .img {
  display: block;
  float: left;
  width: 33.5%;
  line-height: 0;
}
.news .left .news_box ul li .text {
  padding-top: 2%;
  float: right;
  width: 63.5%;
}
.news .left .news_box ul li .text .bt {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #333333;
  font-size: 18px;
  font-weight: normal;
}
.news .left .news_box ul li .text p {
  color: #999999;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
  margin-top: 3%;
}
.news .left .news_box ul li .text .bottom {
  margin-top: 20px;
  font-size: 13px;
}
.news .left .news_box ul li .text .bottom a {
  display: block;
  float: left;
  margin-left: 23px;
  padding-left: 17px;
  color: #999999;
}
.news .left .news_box ul li .text .bottom a:first-child {
  margin-left: 0;
}
.news .left .news_box ul li .text .bottom .a1 {
  background: url(../images/news_icon1.jpg) no-repeat left center;
  padding-left: 19px;
}
.news .left .news_box ul li .text .bottom .a2 {
  background: url(../images/news_icon2.jpg) no-repeat left center;
}
.news .left .news_box ul li .text .bottom .a3 {
  background: url(../images/news_icon3.jpg) no-repeat left center;
}
.news .left .news_box ul li .text .bottom .data {
  float: right;
  color: #999999;
}
.news .left .news_box ul li:hover .text .bt {
  color: #134992;
}
.news .left .news_box .page {
  text-align: left;
}
.news .right {
  margin-top: 20px;
  float: right;
  width: 22%;
  background: #fcfcfc;
}
.news .right .tit {
  background: #f0f3f6;
  line-height: 48px;
  color: #333333;
  font-size: 16px;
  padding: 0 20px;
  font-weight: normal;
  border-left: 2px solid #17498e;
}
.news .right .huodong {
  margin-bottom: 20px;
}
.news .right .huodong ol li {
  float: left;
  width: 100%;
  border-bottom: 1px dotted #dfdfdf;
  font-size: 13px;
}
.news .right .huodong ol li a {
  color: #777777;
  line-height: 20px;
  padding: 12px 15px 12px 28px;
  display: block;
  background: url(../images/bg5.jpg) no-repeat 13px 19px;
}
.news .right .huodong ol li a:hover {
  color: #134992;
}
.news .right .huodong ol li:last-child {
  border-bottom: none;
}
.news_show {
  padding-top: 20px;
}
.news_show h1 {
  color: #333333;
  font-size: 22px;
  font-weight: normal;
}
.news_show .data-box {
  margin-top: 18px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
  color: #999999;
  font-size: 13px;
}
.news_show .data-box .f-l span {
  display: block;
  float: left;
  padding-left: 19px;
  margin-right: 20px;
}
.news_show .data-box .f-l .s1 {
  background: url(../images/news_icon1.jpg) no-repeat left center;
}
.news_show .data-box .f-l .s2 {
  background: url(../images/news_icon4.jpg) no-repeat left 4px;
}
.news_show .data-box .f-l .s3 {
  background: url(../images/news_icon5.jpg) no-repeat left center;
}
.news_show .data-box .f-l .s4 {
  background: url(../images/news_icon3.jpg) no-repeat left center;
}
.news_show .data-box .f-r span {
  display: block;
  float: left;
}
.news_show .data-box .f-r a {
  display: block;
  float: left;
  height: 16px;
  line-height: 0;
  margin-left: 10px;
}
.news_show .content {
  padding-top: 20px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
      text-indent: 2em;
}
.fy_btn {
  margin-top: 30px;
}
.fy_btn li {
  float: left;
  width: 100%;
  border: 1px solid #e9e9e9;
  margin-bottom: 7px;
}
.fy_btn li a {
  color: #777777;
  display: block;
  font-size: 13px;
  padding: 10px 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.fy_btn li a span {
  color: #999999;
  font-size: 16px;
}
.fy_btn li a:hover {
  color: #003A89;
}
.overseas {
  padding: 50px 0 60px;
}
.overseas .over_t {
  margin-top: 40px;
  background: url(../images/over1.jpg) repeat-x center top;
  padding-top: 20px;
}
.overseas .over_t .left {
  float: right;
  width: 52%;
  padding-top: 10%;
}
.overseas .over_t .left h3 {
  color: #17498e;
  font-size: 24px;
  font-weight: normal;
}
.overseas .over_t .left p {
  color: #000000;
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
}
.overseas .over_t .right {
  float: left;
  width: 45%;
}
.overseas .over_t .right span {
  line-height: 0;
  display: block;
}
.core {
  padding-bottom: 60px;
}
.core .title p {
  width: 986px;
  margin: 12px auto 0;
}
.core ol {
  margin-top: 40px;
}
.core ol li {
  background: #f8f8f8;
  float: left;
  width: 32%;
  transition: all .5s;
  margin-right: 2%;
}
.core ol li:nth-child(3n) {
  margin-right: 0;
}
.core ol li .img {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.core ol li .text {
  text-align: center;
  padding: 15px 10px;
  color: #000000;
  font-size: 14px;
}
.core ol li .text p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.core ol li:hover {
  background: #17498e;
}
.core ol li:hover .text p {
  color: #fff;
}
.port {
  padding: 50px 0 80px;
}
.port .port_box {
  margin-top: 40px;
  position: relative;
}
.port .port_box .left {
  width: 60%;
  float: right;
  position: absolute;
  right: 0;
  bottom: -22px;
  background: #fafafa;
  padding: 4% 3% 4% 9%;
}
.port .port_box .left h3 {
  color: #17498e;
  font-size: 24px;
  font-weight: normal;
}
.port .port_box .left span {
  display: block;
  color: #cccccc;
  font-size: 16px;
  text-transform: uppercase;
  font-family: arial;
  margin-top: 4px;
  padding-bottom: 12px;
  position: relative;
}
.port .port_box .left span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 223px;
  height: 2px;
  background: #235294;
}
.port .port_box .left p {
  margin-top: 10px;
  color: #000000;
  font-size: 14px;
  line-height: 24px;
}
.port .port_box .right {
  float: left;
  width: 46%;
}
.port .port_box .right span {
  display: block;
  line-height: 0;
  padding: 10px 0 0 10px;
  position: relative;
}
.port .port_box .right span:before {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #d2dbe9;
  height: 377px;
  width: 540px;
}
.vehicle_t {
  background: url(../images/port_bg.jpg) no-repeat center top;
  min-height: 471px;
  padding-top: 44px;
}
.vehicle_t .left {
  float: left;
  width: 65%;
  padding-top: 8%;
}
.vehicle_t .left h3 {
  color: #fff;
  font-size: 24px;
  font-weight: normal;
}
.vehicle_t .left span {
  display: block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-family: arial;
  margin-top: 4px;
  padding-bottom: 12px;
  position: relative;
}
.vehicle_t .left span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 223px;
  height: 2px;
  background: #fff;
}
.vehicle_t .left p {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}
.vehicle_t .right {
  float: right;
  width: 29%;
}
.vehicle_t .right span {
  display: block;
  line-height: 0;
  padding: 32px 32px 0 0;
  position: relative;
}
.vehicle_t .right span:before {
  z-index: 0;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  border: 10px solid #527cb1;
  height: 360px;
  width: 296px;
}
.vehicle_t .right span em {
  display: block;
  position: relative;
  z-index: 1;
}
.parts_t {
  padding-bottom: 60px;
}
.parts_t .port_box {
  margin-top: 0;
}
.parts_t .port_box .left {
  bottom: auto;
  top: 26px;
}
.parts {
  padding: 50px 0 60px;
}
.parts .box {
  margin-top: 50px;
  position: relative;
}
.parts .box .left {
  float: left;
  width: 61%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 4.5% 4% 4.8% 2%;
}
.parts .box .left .bt h3 {
  color: #17498e;
  font-size: 26px;
  font-weight: normal;
}
.parts .box .left .bt h4 {
  text-transform: uppercase;
  margin-top: 10px;
  color: #666666;
  font-size: 16px;
  font-weight: normal;
  padding-bottom: 18px;
  position: relative;
}
.parts .box .left .bt h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: #cccccc;
}
.parts .box .left .text {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.parts .box .left .text p {
  margin-top: 15px;
}
.parts .box .right {
  position: absolute;
  right: 0;
  top: 20px;
  float: right;
  width: 41%;
}
.parts .box .right span {
  display: block;
  line-height: 0;
}
.core_text {
  background: url(../images/port_bg2.jpg) no-repeat center top;
  padding: 80px 0 0;
}
.core_text .title em {
  color: #003688;
}
.core_text .title h3 {
  color: #fff;
}
.core_text .title h3 span {
  font-size: 36px;
  display: inline-block;
  margin-left: 10px;
}
.core_text .title p {
  color: #95c1ff;
}
.core_text .ol_list {
  margin: 50px auto 0;
  width: 982px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.core_text .ol_list ol li {
  float: left;
  width: 33.33333333%;
  text-align: center;
  padding: 6% 0;
  position: relative;
}
.core_text .ol_list ol li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 148px;
  background: #eaeaea;
}
.core_text .ol_list ol li .img {
  line-height: 0;
}
.core_text .ol_list ol li p {
  margin-top: 5%;
  color: #333333;
  font-size: 18px;
}
.core_text .ol_list ol li:last-child:before {
  display: none;
}
.core_text .ul_list {
  margin-top: 60px;
}
.core_text .ul_list li {
  float: left;
  width: 23.5%;
  background: url(../images/home_bg2.jpg) repeat-x left bottom #ffffff;
  margin-right: 2%;
  transform: translateY(15px);
  transition: all .5s;
}
.core_text .ul_list li:last-child {
  margin-right: 0;
}
.core_text .ul_list li .img {
  line-height: 0;
  overflow: hidden;
}
.core_text .ul_list li .text {
  border: 1px solid #f6f6f6;
  height: 180px;
  padding: 15px 15px 0;
}
.core_text .ul_list li .text h3 {
  color: #333333;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.core_text .ul_list li .text .t {
  margin-top: 8px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
}
.core_text .ul_list li:hover {
  transform: translateY(0);
}
.core_text .ul_list li:hover .text h3 {
  color: #194a8d;
}
.transport {
  padding: 50px 0 60px;
}
.transport .tran {
  margin-top: 50px;
  margin-top: ;
  position: relative;
}
.transport .tran .left {
  position: absolute;
  left: 0;
  top: 45px;
  width: 58%;
  background: #fcfcfc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 3% 20px;
}
.transport .tran .left h3 {
  color: #17498e;
  font-size: 26px;
  font-weight: normal;
}
.transport .tran .left span {
  margin-top: 10px;
  color: #999999;
  font-size: 16px;
  font-family: arial;
  text-transform: uppercase;
  display: block;
  border-bottom: 1px solid #e5e5e5;
}
.transport .tran .left span em {
  display: inline-block;
  padding-bottom: 10px;
  font-style: normal;
  border-bottom: 2px solid #17498e;
  position: relative;
  bottom: -1px;
}
.transport .tran .left .text {
  color: #333333;
  font-size: 14px;
  line-height: 24px;
}
.transport .tran .left .text p {
  margin-top: 20px;
}
.transport .tran .right {
  float: right;
  width: 47%;
}
.transport .tran .right span {
  display: block;
  line-height: 0;
}
.integrity {
  background: #fafafa;
  padding: 60px 0;
}
.integrity .left {
  float: left;
  width: 49%;
}
.integrity .left h3 {
  color: #17498e;
  font-size: 26px;
  font-weight: normal;
}
.integrity .left span {
  display: block;
  color: #999999;
  font-size: 14px;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 10px;
  padding-bottom: 10px;
}
.integrity .left .summary {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.integrity .left .text {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.integrity .left .text p {
  margin-top: 13px;
  padding-left: 12px;
  position: relative;
}
.integrity .left .text p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: #f04e04;
  border-radius: 50px;
}
.integrity .right {
  float: right;
  width: 47%;
}
.integrity .right span {
  display: block;
  line-height: 0;
}
.integrity .right .text {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.integrity .right .text p {
  margin-top: 15px;
  padding-left: 12px;
  position: relative;
}
.integrity .right .text p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: #f04e04;
  border-radius: 50px;
}
.zhengche .box .left {
  margin-top: 20px;
  padding-top: 4%;
  padding-bottom: 4%;
}
.zhengche .box .right {
  top: 0;
}
.zhengche2 {
  background-image: url(../images/port_bg3.jpg);
}
.zhengche2 .ul_list {
  margin-top: 40px;
}
.partner1 {
  padding-bottom: 40px;
}
.tables_tit {
  margin-top: 40px;
  text-align: center;
}
.tables_tit span {
  display: inline-block;
  background: #eaecf2;
  line-height: 40px;
  border-radius: 3px;
  color: #333333;
  font-size: 18px;
  width: 135px;
  cursor: pointer;
  transition: all .5s;
  margin: 0 10px;
}
.tables_tit span:hover,
.tables_tit span.cur {
  background: #f04e04;
  color: #fff;
}
.tables_con {
  margin-top: 40px;
}
.tables_con ol {
  margin: 0;
  display: none;
}
.tables_con ol:first-child {
  display: block;
}
.network {
  padding-bottom: 60px;
}
.network ol {
  margin-top: 40px;
}
.network ol li {
  float: left;
  width: 24.25%;
  background: #fbfbfb;
  transition: all .5s;
  margin-right: 1%;
}
.network ol li:last-child {
  margin-right: 0;
}
.network ol li .img {
  line-height: 0;
}
.network ol li .text {
  border-color: ;
  padding: 10px 15px;
}
.network ol li .text h3 {
  color: #333;
  font-size: 18px;
  font-weight: normal;
}
.network ol li .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 13px;
}
.network ol li:hover {
  background: #17498e;
}
.network ol li:hover .text h3,
.network ol li:hover .text p {
  color: #fff;
}
.about_box {
  padding: 50px 0 60px;
}
.about_box .box {
  margin-top: 40px;
}
.about_box .box .left {
  float: left;
  width: 51%;
}
.about_box .box .left h3 {
  color: #17498e;
  font-size: 18px;
}
.about_box .box .left span {
  text-transform: uppercase;
  margin-top: 10px;
  color: #999;
  font-size: 14px;
  display: block;
  font-weight: normal;
  padding-bottom: 12px;
  position: relative;
}
.about_box .box .left span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: #cccccc;
}
.about_box .box .left .text {
  color: #333333;
  font-size: 14px;
  line-height: 24px;
  text-indent: 2em;
}
.about_box .box .left .text p {
  margin-top: 12px;
}
.about_box .box .right {
  float: right;
  width: 47%;
}
.about_box .box .right span {
  display: block;
  line-height: 0;
}
.about_box2 {
  background: #fcfcfc;
  padding: 50px 0 60px;
}
.about_box2 ol {
  margin-top: 40px;
}
.about_box2 ol li {
  float: left;
  width: 32%;
  background: #17498e;
  margin-right: 2%;
}
.about_box2 ol li:last-child {
  margin-right: 0;
}
.about_box2 ol li .img {
  line-height: 0;
}
.about_box2 ol li .text {
  /*min-height: 163px;*/
  padding: 20px 25px 22px;
}
.about_box2 ol li .text h3 {
  color: #ffffff;
  font-size: 18px;
}
.about_box2 ol li .text p {
  color: #fff;
  line-height: 22px;
  margin-top: 10px;
}
.about_box3 {
  background: url(../images/about_bg.jpg) no-repeat center center;
  min-height: 657px;
  padding-top: 40px;
}
.about_box3 .title em {
  color: #003688;
}
.about_box3 .title h3 {
  color: #fff;
}
.about_box3 .about_text {
  width: 912px;
  margin: 30px auto 0;
  color: #fff;
  line-height: 22px;
}
.about_box3 .about_text .img {
  line-height: 0;
  margin: 15px 0;
}
.about_box3 .about_text p {
  margin-top: 10px;
}
.about_box3 .about_text h3 {
  font-size: 18px;
  font-weight: normal;
      margin-top: 10px;
}
.about_box3 .about_text span {
  color: #d1e6ff;
  display: block;
  margin-top: 5px;
  text-transform: uppercase;
}
.about_box4 {
  padding: 50px 0 60px;
}
.about_box4 .path {
  width: 956px;
  margin: 50px auto 0;
}
.about_box4 .path ol {
  background: url(../images/path2.jpg) repeat-y center top;
  margin-bottom: 60px;
}
.about_box4 .path ol li {
  float: left;
  width: 100%;
  margin-bottom: 100px;
  position: relative;
}
.about_box4 .path ol li:before {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -7.5px;
  top: 0;
  width: 15px;
  height: 15px;
  background: url(../images/path1.png) no-repeat center center;
}
.about_box4 .path ol li .img {
  float: left;
  width: 47%;
  line-height: 0;
}
.about_box4 .path ol li .img span {
  display: block;
  float: right;
  width: 58%;
  overflow: hidden;
}
.about_box4 .path ol li .img span img {
  width: 100%;
  transition: all 1.5s;
  -moz-transition: all 1.5s;
  -o-transition: all 1.5s;
  -webkit-transition: all 1.5s;
  -ms-transition: all 1.5s;
}
.about_box4 .path ol li:hover .img span img{
	transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
}
.about_box4 .path ol li:hover .text span{
	color: #17498e;
}
.about_box4 .path ol li .text {
  float: right;
  width: 47%;
}
.about_box4 .path ol li .text span {
  color: #000000;
  font-size: 18px;
  font-family: arial;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  display: inline-block;
}
.about_box4 .path ol li .text p {
  color: #666666;
  margin-top: 10px;
  font-size: 14px;
  line-height: 22px;
}
.about_box4 .path ol li:nth-child(2n) .img {
  float: right;
}
.about_box4 .path ol li:nth-child(2n) .img span {
  float: left;
}
.about_box4 .path ol li:nth-child(2n) .text {
  float: left;
  text-align: right;
}
.about_box4 .path ol li:last-child {
  margin-bottom: 0;
}
.about_honor {
  background: url(../images/about_bg2.jpg) no-repeat center top;
  min-height: 610px;
  padding-top: 50px;
}
.about_honor .title em {
  color: #e6edf4;
}
.about_honor #focus_Box {
  position: relative;
  width: 1200px;
  height: 312px;
  margin: 50px auto 0;
}
.about_honor #focus_Box ul {
  position: relative;
  width: 1200px;
  height: 312px;
}
.about_honor #focus_Box li {
  z-index: 0;
  position: absolute;
  width: 0px;
  background: #787878;
  height: 0px;
  top: 0;
  cursor: pointer;
  left: 0;
}
.about_honor #focus_Box li img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.about_honor #focus_Box li p {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #17498e;
  text-align: center;
  color: #fff;
}
.about_honor #focus_Box .prev,
.about_honor #focus_Box .next {
  display: block;
  z-index: 100;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  width: 28px;
  height: 58px;
  top: 126px;
}
.about_honor #focus_Box .prev {
  background: url(../images/honor1.png) no-repeat center center;
  left: 0;
}
.about_honor #focus_Box .next {
  background: url(../images/honor2.png) no-repeat center center;
  right: 0;
}
.about_honor .phone_honor {
  display: none;
  margin-top: 40px;
}
.about_honor .phone_honor .text {
  margin: 0 5px;
}
.about_honor .phone_honor .text p {
  line-height: 40px;
  background: #17498e;
  text-align: center;
  color: #fff;
}
.about_honor .phone_honor .slick-prev,
.about_honor .phone_honor .slick-next {
  width: 28px;
  height: 58px;
  border: none;
  margin-top: -29px;
}
.about_honor .phone_honor .slick-prev {
  background: url(../images/honor1.png) no-repeat center center;
  left: 0;
}
.about_honor .phone_honor .slick-next {
  background: url(../images/honor3.png) no-repeat center center;
  right: 0;
}




.inputerror { border: 1px solid #f00 !important; background-color: #ffe6e6 !important;}
@-webkit-keyframes inputerrors{
  0%{
    background-color: #fff;
	}
	100%{
    background-color: #ffe6e6;
	}
}
 
.inputerror{
	animation: inputerrors 0.5s 3 ease;
}

.float-box ul li .text{
	position: absolute;
	right: 64px;
	bottom: 0;
	background-color: #f8f8f8;
	transform: translateX(150px);
	opacity: 0;
	transition: all .5s;
}
.float-box ul li .ewm{
	width: 80px;
	height: 80px;
	bottom: -16px;
	padding: 5px;
}
.float-box ul li .text a,.float-box ul li .text span{
	display: block;
	height: 64px;
	line-height: 64px;
	width: 150px;
	text-align: left;
	padding-left: 10px;
	font-size: 16px;
}
.float-box ul li:hover .text{
	transform: translateX(0);
	opacity: 1;
}

/**2017-1-11**/
.business_box {
  padding: 50px 0 0;
}
.business_box .title h3 {
  color: #ec6800;
}
.business_box .title h3 span {
  color: #333333;
}
.business_box .work_service1 {
  border-bottom: 1px solid #f3f3f3;
  padding: 50px 0 55px;
}
.business_box .work_service1 .box {
  position: relative;
}
.business_box .work_service1 .box .left {
  float: left;
  width: 61%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2% 4.5% 2% 2%;
  margin-top: 34px;
}
.business_box .work_service1 .box .left .bt h3 {
  color: #17498e;
  font-size: 26px;
  font-weight: normal;
}
.business_box .work_service1 .box .left .bt h4 {
  text-transform: uppercase;
  margin-top: 5px;
  color: #cccccc;
  font-size: 14px;
  font-weight: normal;
  position: relative;
}
.business_box .work_service1 .box .left .text {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  text-indent: 2em;
}
.business_box .work_service1 .box .left .text p {
  margin-top: 10px;
}
.business_box .work_service1 .box .left .more_btn {
  margin-top: 18px;
}
.business_box .work_service1 .box .left .more_btn a {
  float: left;
  display: block;
  width: 140px;
  height: 40px;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  line-height: 40px;
  font-family: arial;
  text-transform: uppercase;
  color: #cccccc;
  font-size: 14px;
  transition: all .5s;
}
.business_box .work_service1 .box .left .more_btn a:hover {
  color: #fff;
  border-color: #17498e;
  background: #17498e;
}
.business_box .work_service1 .box .right {
  position: absolute;
  right: 0;
  top: -9px;
  float: right;
  width: 42%;
}
.business_box .work_service1 .box .right span {
  display: block;
  line-height: 0;
}
.business_box .work_service2 {
  border-bottom: none;
}
.business_box .work_service2 .box .left {
  float: right;
  box-shadow: none;
  padding-right: 0;
  padding-left: 2.5%;
  padding-top: 5%;
}
.business_box .work_service2 .box .left .bt span {
  color: #f4f4f1;
  font-size: 70px;
  font-family: arial;
  font-weight: bold;
  text-transform: uppercase;
}
.business_box .work_service2 .box .left .bt h3 {
  margin-top: -50px;
}
.business_box .work_service2 .box .right {
  width: 39%;
  float: left;
  position: relative;
  top: 0;
}
.business_box .work_service3 {
  background: url(../images/business_bg.jpg) no-repeat center top;
}
.business_box .work_service3 .box .left {
  width: 54%;
  background: #fff;
  position: relative;
  margin-top: 8%;
  padding-right: 2%;
}
.business_box .work_service3 .box .left span {
  position: absolute;
  left: 0;
  top: -60px;
  color: #23508d;
  font-size: 54px;
  font-family: arial;
  font-weight: bold;
  text-transform: uppercase;
}
.business_box .work_service3 .box .right {
  position: relative;
  top: 0;
  width: 46%;
}
.business_box .work_service4 {
  padding-top: 60px;
  border-bottom: 1px solid #f3f3f3;
}
.business_box .work_service4 .box .left {
  padding-top: 1%;
}
.business_box .work_service4 .box .right:before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 99%;
  height: 99%;
  background: #f0f0f0;
}
.business_box .work_service4 .box .right span {
  position: relative;
  z-index: 2;
}
.business_box .work_service5 {
  padding-top: 65px;
  padding-bottom: 60px;
}
.business_box .work_service5 .box .left {
  width: 54%;
  margin-top: 94px;
}
.business_box .work_service5 .box .left .bt span {
  color: #f4f4f1;
  font-size: 50px;
  font-family: arial;
  font-weight: bold;
  text-transform: uppercase;
}
.business_box .work_service5 .box .left .bt h3 {
  margin-top: -30px;
}
.business_box .work_service5 .box .right {
  position: relative;
  top: 0;
  width: 46%;
}
.business_box .work_service5 .box .right:before {
  content: "";
  width: 99%;
  height: 99%;
  position: absolute;
  right: -10px;
  top: -10px;
  border: 1px solid #d1dbe9;
}
.business_box .work_service5 .box .right span {
  position: relative;
  z-index: 2;
}
.business_box .work_service6 {
  background: url(../images/business_bg2.jpg) no-repeat center top;
}
.business_box .work_service6 .box .left {
  float: right;
  box-shadow: none;
}
.business_box .work_service6 .box .left .bt span {
  color: #184888;
  font-size: 70px;
  font-family: arial;
  font-weight: bold;
  text-transform: uppercase;
}
.business_box .work_service6 .box .left .bt h3 {
  color: #fff;
  margin-top: -50px;
}
.business_box .work_service6 .box .left .text {
  color: #fff;
}
.business_box .work_service6 .box .left .more_btn a:hover {
  border-color: #fff;
}
.business_box .work_service6 .box .right {
  float: left;
  position: relative;
  top: 0;
  width: 39%;
}
.business_box .work_service7 {
  padding-top: 60px;
}
.business_box .work_service7 .box .left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  background: #fff;
  width: 54%;
  margin-top: 5%;
  padding-right: 2%;
}
.business_box .work_service7 .box .left .bt span {
  color: #f4f4f1;
  font-size: 70px;
  font-family: arial;
  font-weight: bold;
  text-transform: uppercase;
}
.business_box .work_service7 .box .left .bt h3 {
  margin-top: -50px;
}
.business_box .work_service7 .box .right {
  position: relative;
  top: 0;
  width: 46%;
}
.business_box .work_service7 .box .right:before {
  content: "";
  width: 99%;
  height: 99%;
  position: absolute;
  right: -10px;
  top: -10px;
  border: 1px solid #d1dbe9;
}
.business_box .work_service7 .box .right span {
  position: relative;
  z-index: 2;
}
.business_box .work_service8 {
  border-bottom: none;
}
.business_box .work_service8 .box .left {
  padding-top: 4%;
}
/**2018-1-15**/
.path_box {
  padding: 60px 0;
}
.path_box .path_con {
  margin-top: 40px;
}
.path_box .path_con ul {
  margin-bottom: 30px;
}
.path_box .path_con ul li {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  transition: all .5s;
}
.path_box .path_con ul li .img {
  float: left;
  width: 30%;
  line-height: 0;
  overflow: hidden;
}
.path_box .path_con ul li .img img {
  width: 100%;
}
.path_box .path_con ul li .text {
  padding-top: 4%;
  float: right;
  width: 68%;
}
.path_box .path_con ul li .text span {
  color: #000000;
  font-size: 18px;
  font-family: arial;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  display: inline-block;
}
.path_box .path_con ul li .text p {
  color: #666666;
  margin-top: 10px;
  font-size: 14px;
  line-height: 22px;
}
.path_box .path_con ul li:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.path_box .path_con ul li:hover .text span {
  color: #ea5507;
}

/*信息公开2021-12 by:Lionliu */
.x-nodes {
	padding: 20px 30px;
	zoom: 1;
}
.x-node {
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 490px;
	margin-top: 30px;
	margin-left: 50px;
	vertical-align: top;
}
.x-node-header {
	padding-bottom: 12px;
	zoom: 1;
	border-bottom: 1px solid #d7d5d5;
}
.x-node-header:after {
	content: '';
	display: block;
	clear: both;
	visibility: hidden;
	font-size: 0;
	height: 0;
}
.x-node-header h2 {
	float: left;
	font-size: 16px;
	padding-left: 20px;
	line-height: normal;
	background: url(../images/dot.gif) no-repeat left center;
}
.x-node-body {
	padding: 7px 0;
	font-size: 14px;
}
.x-node-body ul {
	zoom: 1;
}
.x-node-body ul:after {
	content: '';
	display: block;
	clear: both;
	visibility: hidden;
	font-size: 0;
	height: 0;
}
.x-node-body li {
	float: left;
	margin-top: 7px;
	width: 33.33%;
	white-space: nowrap;
}
@media (max-width:1024px) {
	.x-nodes {
	padding: 5px;
	zoom: 1;
}
	.x-node {
	display: inline-block;
	*display: inline;
	zoom: 1;
	width: 95%;
	margin-top: 30px;
	margin-left: 1%;
	vertical-align: top;
}
	
}

/*视频*/
 
#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;}

.playboxbg { position:absolute; left:0; top:0; z-index:88888; width:100%; height:100%; background-color:#000;}


.inputerror { border: 1px solid #f00 !important; background-color: #ffe6e6 !important;}
@-webkit-keyframes inputerrors{
  0%{
    background-color: #fff;
	}
	100%{
    background-color: #ffe6e6;
	}
}
 
.inputerror{
	animation: inputerrors 0.5s 3 ease;
}
@media only screen and (max-width:1440px ) {
	.banner .text .img_bg .t{
		    margin-top:42%;
	}
}

.about_box3 .about_text ul{
	margin-top: 30px;
}
.about_box3 .about_text ul li{
	width: 32%;
	margin-right: 2%;
	background: #074c97;
	border: 1px solid #3c70a3;
	text-align: center;
	float: left;
	line-height: 80px;
}
.about_box3 .about_text ul li a{
	display: block;
	color: #9cceff;
	font-size: 14px;
}
.about_box3 .about_text ul li:last-child{
	margin-right: 0;
}
.about_box3 .about_text ul li:hover{
	background: #0156a9;
	border-color: #0077eb;
}
.about_box3 .about_text ul li:hover a{
	color: #fff;
}

@media only screen and (max-width:768px ) {
	.about_box3 .about_text ul{
		margin-top: 0;
	}
	.about_box3 .about_text ul li{
		width: 100%;
		margin-top: 20px;
		margin-right: 0;
		line-height: 40px;
	}
}
