﻿/*
    ----------------------------------- 
            方法变量    
                     
    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(css/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("../imagesp/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;
}

body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1129px) {
  .container {
    width: 1024px;
  }
}
@media (min-width: 1310px) {
  .container {
    width: 1310px;
  }
}
img {
  max-width: 100%;
}
.return_top {
  position: fixed;
  right: 0;
  bottom: 20px;
  width: 86px;
}
.return_top a {
  display: block;
  width: 86px;
  height: 78px;
  margin-bottom: 3px;
  background: #043e88;
  position: relative;
}
.return_top a .con{
	position: absolute;
	right: 86px;
	bottom: 0;
	background-color: #032554;
	transform: translateX(165px);
	opacity: 0;
	transition: all .5s;
}
.return_top a .con span{
	color: #fff;
	text-align: center;
	display: block;
    height: 78px;
    line-height: 78px;
    width: 165px;
    font-size: 18px;
}
.return_top a:hover {
  background: #032554;
}
.return_top a:hover .con{
	transform: translateX(0);
	opacity: 1;
}
@media (max-width: 1024px) {
  .return_top {
    display: none;
  }
}
.header {
  z-index: 99;
  position: absolute; position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 0 0 2%;
  height: 90px;
  background: rgba(4, 57, 131, 0.75);
  border-bottom: 1px solid #31568b;
}
.header .logo {
  display: table;
  width: 154px;
  height: 52px;
  float: left;
  line-height: 0;
  margin-top: 18px;
}
.header .nav {
  display: table;
  float: left;
  margin-left: 15%;
}
.header .nav > ul > li {
  float: left;
  line-height: 90px;
  margin: 0 5px;
  padding: 0 36px;
  text-align: center;
}
.header .nav > ul > li > a {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 15px;
}
.header .nav > ul > li > a:before {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-bottom: 3px solid #f08927;
}
.header .nav > ul > li .navbox {
	display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fcfeff;
  width: 100%;
  text-align: left;
  padding: 20px 0 30px;
}
.header .nav > ul > li .navbox .container{padding-left:11.5%}
.header .nav > ul > li .navbox h3 {
  color: #f18927;
  font-size: 18px;
  line-height: 20px;
}
.header .nav > ul > li .navbox ol {
  margin-top: 10px;
  width: 100%;
}
.header .nav > ul > li .navbox ol li {
  margin-top: 20px;
  float: left;
  width: 50%;
  padding-right: 20px;
}
.header .nav > ul > li .navbox ol li span {
  display: block;
  color: #000000;
  font-size: 15px;
  padding-left: 20px;
  line-height: 20px;
  position: relative;
}
.header .nav > ul > li .navbox ol li span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 9px;
  background: url(../imagesp/icon-l1.png) no-repeat center center;
}
.header .nav > ul > li .navbox ol li span:hover a {
  color: #f18927;
}
.header .nav > ul > li .navbox ol li > div {
  margin-top: 15px;
  min-height: 54px;
}
.header .nav > ul > li .navbox ol li > div a {
  line-height: 24px;
  display: block;
  float: left;
  color: #727373;
  font-size: 15px;
  margin-left: 20px;
}
.header .nav > ul > li .navbox ol li > div a:hover {
  color: #f18927;
}
.header .nav > ul > li .navbox2 .left {
  float: left;
  width: 60%;
  border-right: 1px solid #e3e3e3;
  min-height: 210px;
}
.header .nav > ul > li .navbox2 .right {
  float: right;
}
.header .nav > ul > li .navbox2 .right img {
  margin-top: 15px;
}
.header .nav > ul > li .navbox2 .right a {
  display: block;
  width: 366px;
  height: 179px;
}
.header .nav > ul > li .navbox2 .right p {
  text-align: center;
  line-height: 20px;
  color: #000000;
  font-size: 18px;
  margin-top: 10px;
}
.header .nav > ul > li .navbox3 .left ol li {
  width: 33.33333333%;
}
.header .nav > ul > li.cur,
.header .nav > ul > li:hover {
  background: url(../imagesp/nav_hover.png) no-repeat center top;
}
.header .nav > ul > li.cur a:before,
.header .nav > ul > li:hover a:before {
  display: block;
}
.header .nav > ul > li ol.menu_sec{padding:0;position: absolute;margin-left:-36px;display: none;}
.header .nav > ul > li ol.menu_sec li{background-color: #fff;line-height: 50px;padding-left: 36px;padding-right:41px;}
.header .nav > ul > li ol.menu_sec li:hover {background: #053a84;color: #fff;display: block;}
.header .nav > ul > li ol.menu_sec li:hover a{color: #fff;display: block}

.header .search {
  float: right;
  margin-right: 38px;
  display: table;
  padding-top: 32px;
}
.header .search a {
  display: block;
  width: 27px;
  height: 27px;
}
.header .navbtn {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 4%;
  margin-top: -2%;
  overflow: hidden;
  z-index: 999;
  line-height: 0;
  display: none;
}
.header .language {
  float: right;
  width: 99px;
  height: 90px;
  position: relative;
}
.header .language .top {
  border-left: 1px solid #31568b;
  text-align: center;
  height: 90px;
  line-height: 90px;
}
.header .language .top .current {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
}
.header .language .top i {
  display: inline-block;
  background: url(../imagesp/icon1.png) no-repeat center center;
  width: 7px;
  height: 4px;
  position: relative;
  top: -47%;
  margin-left: 6px;
}
.header .language .content {
  border-left: 1px solid #31568b;
  text-align: center;
  display: none;
  z-index: 999;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  font-size: 14px;
  padding: 10px;
  background: rgba(4, 57, 131, 0.75);
}
.header .language .content a {
  color: #fff;
  display: block;
  line-height: 24px;
}
.header .language .content a:hover {
  color: #f08927;
}
@media (max-width: 1600px) {
  .header .nav {
    margin-left: 10%;
  }
  .header .nav ul li {
    margin: 0;
  }
}
@media (max-width: 1440px) {
  .header .nav {
    margin-left: 5%;
  }
}
@media (max-width: 1366px) {
  .header .nav {
    margin-left: 2%;
  }
}
@media (max-width: 1024px) {
  .header {
    position: relative;
    background: #032554;
    height: auto;
    padding-left: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header .logo {
    margin-top: 0;
    width: 20%;
    height: auto;
  }
  .header .nav {
    display: none;
  }
  .header .language {
    display: none;
  }
  .header .search {
    display: none;
  }
  .header .navbtn {
    display: block;
  }
}
@media (max-width: 414px) {
  .header .logo {
    width: 26%;
  }
  .header .navbtn {
    width: 7%;
    margin-top: -3.5%;
  }
}

.fixed-head {
  z-index: 999;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  /*background: #fff;*/
  transition: All .4s ease;
  -webkit-transition: All .4s ease;
  -moz-transition: All .4s ease;
  -o-transition: All .4s ease;
  -webkit-animation: headerFix 1s ease 1;
  animation: headerFix 1s ease 1;
}
@-webkit-keyframes headerFix {
  from {
    -webkit-transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
  }
}
@keyframes headerFix {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}


.footer .footer_nav {
  padding: 35px 0;
  background: #112543;
}
.footer .footer_nav .left {
  width: 72%;
}
.footer .footer_nav .left ul li {
  float: left;width: 126px;
}
.footer .footer_nav .left ul li span {
  padding: 0 35px;
  display: block;
  color: #ffffff;
  font-size: 14px;
  position: relative;
}
.footer .footer_nav .left ul li span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 1px;
  height: 9px;
  background: #2b394e;
}
.footer .footer_nav .left ul li div {
  margin-top: 20px;
  padding-left: 35px;
}
.footer .footer_nav .left ul li div a {
  display: block;
  color: #8799b2;
  font-size: 12px;
  line-height: 28px;
}
.footer .footer_nav .left ul li:first-child span {
  padding-left: 0;
}
.footer .footer_nav .left ul li:first-child span:before {
  display: none;
}
.footer .footer_nav .left ul li:first-child div {
  padding-left: 0;
}
.footer .footer_nav .right {
  width: 27%;
  padding-left: 3%;
  padding-bottom: 2%;
  background: url(../imagesp/bg4.jpg) repeat-y left top;
}
.footer .footer_nav .right h3 {
  color: #afb6c1;
  font-size: 22px;
  font-weight: normal;
}
.footer .footer_nav .right .text {
  margin-top: 18px;
  color: #ffffff;
  font-size: 15px;
  line-height: 28px;
}
.footer .footer_nav .right .dh {
  margin-top: 18px;
  color: #ffffff;
  font-size: 32px;
  font-family: arial;
  font-weight: bold;
  background: url(../imagesp/dh.png) no-repeat left center;
  padding-left: 42px;
}
.footer .footer_nav .right .fx {
  margin-top: 24px;
}
.footer .footer_nav .right .fx a {
  cursor: pointer;
  display: block;
  width: 45px;
  height: 45px;
  float: left;
  margin-right: 22px;
  position: relative;
}
.footer .footer_nav .right .fx a span{
	position: absolute;
	right: -200px;
	top: -16px;
	width: 190px;
	height: 180px;
	display: none;
}
.footer .footer_nav .right .fx a:hover span{
	display: block;
}
.footer .footer_bottom {
  background: #091c38;
  padding: 20px 0;
  text-align: center;
}
.footer .footer_bottom .links {
  font-size: 14px;color: #8799b2;
}
.footer .footer_bottom .links span {
  color: #ffffff;
}
.footer .footer_bottom .links a {
  color: #8799b2;
  display: inline-block;
  margin: 0 5px;
}
.footer .footer_bottom .banquan {
  margin-top: 10px;
  color: #8799b2;
}
.footer .footer_bottom .banquan a {
  color: #8799b2;
  display: inline-block;
  margin: 0 5px;
}
.footer .footer_bottom .banquan span {
  color: #8799b2;
  display: inline-block;
  margin-left: 10px;
}
.beian{padding-top: 10px;}
.footer .footer_bottom .banquan #bdshare{clear: both; padding: 10PX 0;width: 218px;margin: 0 auto;float:none}
.footer .footer_bottom .banquan #bdshare span{height: 25px;margin-left: 0;}
.footer .footer_bottom .banquan #bdshare a{margin: 0;height: 25px;}
@media (max-width: 1024px) {
  .footer .footer_nav {
    display: none;
  }
}
@media (max-width: 480px) {
  .footer .footer_bottom {
    text-align: left;	  
  }
  .footer .footer_bottom .links {
    display: none;
  }  
  .footer .footer_bottom .links span {
    display: block;
    margin-bottom: 5px;
  }
  .footer .footer_bottom .links a {
    display: block;
    margin-left: 0;
    margin-right: 6px;
    float: left;
  }
  .footer .footer_bottom .banquan {
    text-align: left;
  }
  .footer .footer_bottom .banquan a {
    display: none;
  }
  .footer .footer_bottom .banquan span {
    display: none;
  }
	.beian{display: none}
}
.banner_con {
  position: relative;
}
.banner_con .icon_btn {
  display: block;
  width: 1.40625%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  margin-left: -0.703125%;
  bottom: 8%;
  z-index: 9;
}
.banner {
  position: relative;
  z-index: 8;
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .slick-prev,
.banner .slick-next {
  width: 60px;
  height: 86px;
  border: none;
  margin-top: -43px;
}
.banner .slick-prev {
  background: url(../imagesp/prev.png) no-repeat center center;
  left: 0;
}
.banner .slick-next {
  background: url(../imagesp/next.png) no-repeat center center;
  right: 0;
}
.banner .slick-dots {
  bottom: 25px;
}
.banner .slick-dots li button {
  width: 10px;
  height: 10px;
  margin: 0 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
.banner .slick-dots li.slick-active button {
  background: #fff;
}
@media (max-width: 1024px) {
  .banner .slick-prev,
  .banner .slick-next {
    width: 40px;
    height: 57px;
    margin-top: -28.5px;
    background-size: 100% 100%;
  }
}
@media (max-width: 640px) {
  .banner .slick-prev,
  .banner .slick-next {
    width: 25px;
    height: 36px;
    margin-top: -18px;
  }
  .banner .slick-dots {
    bottom: 15px;
  }
  .banner .slick-dots li {
    margin: 0 3px;
  }
  .banner .slick-dots li button {
    width: 6px;
    height: 6px;
    margin: 0;
  }
}
@media (max-width: 414px) {
  .banner .slick-prev,
  .banner .slick-next {
    width: 15px;
    height: 22px;
    margin-top: -11px;
  }
}
.icon_title {
  text-align: center;
}
.icon_title span {
  color: #393939;
  font-size: 33px;
  font-weight: bold;
  padding: 0 24px;
  background: url(../imagesp/icon3.png) no-repeat left top;
  position: relative;
}
.icon_title span:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 17px;
  background: url(../imagesp/icon4.png) no-repeat center center;
}
.icon_title span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #033e88;
  border-radius: 2px;
  position: relative;
  top: -9px;
  margin: 0 18px;
}
.icon_title span em {
  font-style: normal;
  text-transform: uppercase;
  color: #033e88;
  font-size: 26px;
}
@media (max-width: 640px) {
  .icon_title span {
    font-size: 24px;
    line-height: 30px;
  }
  .icon_title span i {
    top: -3px;
    margin: 0 5px;
    width: 4px;
    height: 4px;
  }
  .icon_title span em {
    position: relative;
    top: 1.5px;
    font-size: 20px;
  }
}
@media (max-width: 414px) {
  .icon_title span {
    font-size: 16px;
    line-height: 30px;
  }
  .icon_title span i {
    top: -4px;
    margin: 0 12px;
  }
  .icon_title span em {
    position: relative;
    top: 1.5px;
    font-size: 14px;
  }
}
.icon_name {
  text-align: center;
  color: #666666;
  font-size: 15px;
  margin-top: 15px;
}
@media (max-width: 1024px) {
  .icon_name {
    margin-top: 2.5%;
  }
}
@media (max-width: 1024px) {
  .icon_name {
    font-size: 14px;
  }
}
.home_con {
  padding: 80px 0;
}
.home_con .home_pro {
  margin-top: 50px;
}
.home_con .home_pro .left a,
.home_con .home_pro .right a {
  display: block;
  width: 100%;
  position: relative;
}
.home_con .home_pro .left a .text,
.home_con .home_pro .right a .text {
  position: absolute;
  left: 35px;
  top: 30px;
  width: 100%;
}
.home_con .home_pro .left a .text h3,
.home_con .home_pro .right a .text h3 {
  color: #333333;
  font-size: 20px;
  line-height: 22px;
  padding-bottom: 16px;
  margin-bottom: 10px;
  position: relative;
}
.home_con .home_pro .left a .text h3:before,
.home_con .home_pro .right a .text h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #cfcfcf;
}
.home_con .home_pro .left a .text span,
.home_con .home_pro .right a .text span {
  color: #666666;
  font-size: 15px;
  line-height: 30px;
}
.home_con .home_pro .left {
  width: 68.671875%;
}
.home_con .home_pro .left ul li {
  float: left;
  width: 48.91%;
  margin-bottom: 20px;
  line-height: 0;
  overflow: hidden;
}
.home_con .home_pro .left ul li:first-child {
  width: 100%;
}
.home_con .home_pro .left ul li:first-child a .text h3 {
  color: #f3f3f3;
  font-size: 30px;
  line-height: 33px;
}
.home_con .home_pro .left ul li:first-child a .text h3:before {
  width: 40px;
  height: 2px;
  background: #346fb1;
}
.home_con .home_pro .left ul li:first-child a .text span {
  color: #c4e3f8;
}
.home_con .home_pro .left ul li:nth-child(3) {
  float: right;
}
.home_con .home_pro .right {
  width: 29.765625%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .home_con {
    padding: 7% 0;
  }
  .home_con .home_pro {
    margin-top: 5%;
  }
  .home_con .home_pro .left ul li {
    margin-bottom: 2.25%;
  }
	.home_con .home_pro .left a .text span,
	.home_con .home_pro .right a .text span {
	  line-height:25px;
	}
}
@media (max-width: 768px) {
  .home_con .home_pro img {
    max-width: 100%;
  }
  .home_con .home_pro .left a .text,
  .home_con .home_pro .right a .text {
    left: 15px;
    top: 15px;
  }
  .home_con .home_pro .left a .text h3,
  .home_con .home_pro .right a .text h3 {
    font-size: 15px;
    line-height: 22px;
    padding-bottom: 8px;
    margin-bottom: 6px;
  }
  .home_con .home_pro .left a .text span,
  .home_con .home_pro .right a .text span {
    font-size: 12px;
  }
  .home_con .home_pro .left {
    width: 100%;
  }
  .home_con .home_pro .left ul li:first-child a .text h3 {
    line-height: 24px;
    font-size: 15px;
  }
  .home_con .home_pro .left ul li:first-child a .text span {
    color: #c4e3f8;
  }
  .home_con .home_pro .left ul li:nth-child(3) {
    float: right;
  }
  .home_con .home_pro .right {
    width: 100%;
  }
	.home_con .home_pro .right {height: 246px; overflow: hidden;background: #f4f5fa;}
	.home_con .home_pro .right img{top:50%;position: absolute;margin-top: -390px;margin-right: -100px;right: 0;}
}
@media (max-width: 414px) {
  .home_con .home_pro .left {
    width: 100%;
  }
  .home_con .home_pro .left ul li {
    width: 100%;
  }
	.home_con .home_pro .left ul li:first-child a {background: url(../imagesp/home_img01_s.jpg) no-repeat 92% 65%;height: 265px;
  }
	.home_con .home_pro .left ul li:first-child a img {
   display: none;
  }
  .home_con .home_pro .left ul li:first-child a .text h3 {
    line-height: 24px;
    font-size: 15px;
  }
  .home_con .home_pro .left ul li:first-child a .text span {
    color: #c4e3f8;
  }
  .home_con .home_pro .left ul li:nth-child(3) {
    float: right;
  }
	.home_con .home_pro .right img{top:50%;position: absolute;margin-top: -160px;margin-right: -100px;right: 0}
}
.home_solutions{
	overflow: hidden;
}
.home_solutions .text_con {
  width: 100%;
}
.home_solutions .text_con .img {
  width: 49.9%;
  line-height: 0;
  overflow: hidden;
}
.home_solutions .text_con .text {
  background: url(../imagesp/home_bg.jpg) no-repeat center center;
  height: 550px;
  width: 50.1%;
  padding-left: 3%;
  padding-top: 5%;
  padding-right: 3%;
}
.home_solutions .text_con .text .icon_title {
  text-align: left;
}
.home_solutions .text_con .text .icon_title span {
  color: #ffffff;
  background: url(../imagesp/icon5.png) no-repeat left top;
}
.home_solutions .text_con .text .icon_title span:before {
  background: url(../imagesp/icon6.png) no-repeat center center;
}
.home_solutions .text_con .text .icon_title span i {
  background: #537eba;
}
.home_solutions .text_con .text .icon_title span em {
  color: #537eba;
}
.home_solutions .text_con .text .con {
  width: 566px;
  margin-top: 5%;
  padding-left: 3%;
}
.home_solutions .text_con .text .con h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: normal;
}
.home_solutions .text_con .text .con p {
  margin-top: 5%;
  color: #ffffff;
  font-size: 16px;
  line-height: 32px;
}
.home_solutions .text_con .text .con .more {
  margin-top: 6%;
  background: #f1861b;
  display: inline-block;
  border-radius: 50px;
  padding: 0 30px;
  height: 38px;
  line-height: 38px;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}
.home_solutions .slick-prev,
.home_solutions .slick-next {
  width: 74px;
  height: 74px;
  border: none;
  top: auto;
  bottom: 0;
  margin-top: 0;
}
.home_solutions .slick-prev {
  background: url(../imagesp/prev1.png) no-repeat center center;
  left: 46.05%;
}
.home_solutions .slick-next {
  background: url(../imagesp/next1.png) no-repeat center center;
  right: 46.15%;
}
@media (max-width: 1680px){
	.home_solutions .text_con .text{
		height: 472px;
		 padding-top:3%;
	}
	.home_solutions .slick-prev{
		left: 45.25%;
	}
	.home_solutions .slick-next{
		right: 45.48%;
	}
}
@media (max-width: 1440px){
	.home_solutions .text_con .text{
		height: 413px;
	}
	.home_solutions .text_con .text .con {margin-top: 1%}
	.home_solutions .slick-prev{
		left: 44.9%;
	}
	.home_solutions .slick-next{
		right: 44.95%;
	}
	.home_solutions .text_con .text{
		padding-top: 6%;
	}
}
@media (max-width: 1366px){
	.home_solutions .text_con .text{
		height: 391px;
	}
	.home_solutions .slick-prev{
		left: 44.9%;
	}
	.home_solutions .slick-next{
		right: 44.6%;
	}
	.home_solutions .text_con .text{
		padding-top: 5%;
	}
}

@media (max-width: 1024px) {
	
  .home_solutions .text_con {
    padding: 0 15px;
  }
  .home_solutions .text_con .img {
    width: 100%;
  }
  .home_solutions .text_con .img img {
    width: 100%;
  }
  .home_solutions .text_con .text {
    width: 100%;
    height: 480px;
    background-size: 100% 100%;
    padding: 8% 15px 8%;
  }
  .home_solutions .text_con .text .con {
    width: 100%;
  }
  .home_solutions .slick-prev,
  .home_solutions .slick-next {
    width: 50px;
    height: 50px;
    border: none;
    top: auto;
    bottom: 1px;
    margin-top: 0;
    background-size: 100% 100%;
  }
  .home_solutions .slick-prev {
    left: 45%;
  }
  .home_solutions .slick-next {
    right: 45%;
  }
}
@media (max-width: 768px) {
  .home_solutions .slick-prev,
  .home_solutions .slick-next {
    bottom: 0;
  }
  .home_solutions .slick-prev {
    left: 43.5%;
  }
  .home_solutions .slick-next {
    right: 43.5%;
  }
  .home_solutions .text_con .text{height:400px;}
}
@media (max-width: 640px) {
  .home_solutions .slick-prev,
  .home_solutions .slick-next {
    bottom: 0;
  }
  .home_solutions .slick-prev {
    left: 42%;
  }
  .home_solutions .slick-next {
    right: 42%;
  }
}
@media (max-width: 480px) {
  .home_solutions .slick-prev,
  .home_solutions .slick-next {
    width: 30px;
    height: 30px;
  }
  .home_solutions .slick-prev {
    left: 43%;
  }
  .home_solutions .slick-next {
    right: 43%;
  }
}
@media (max-width: 414px) {
	.home_solutions .text_con .text{height: 340px;}
  .home_solutions .text_con .text .con h3 {
    font-size: 16px;
  }
	.home_solutions .text_con .text .con p {font-size: 14px;line-height: 28px;}
}
@media (max-width: 375px) {
  .home_solutions .slick-prev,
  .home_solutions .slick-next {
    width: 30px;
    height: 30px;
  }
  .home_solutions .slick-prev {
    left: 41%;
  }
  .home_solutions .slick-next {
    right: 41%;
  }
}
@media (max-width: 320px) {
  .home_solutions .slick-prev,
  .home_solutions .slick-next {
    width: 30px;
    height: 30px;
  }
  .home_solutions .slick-prev {
    left: 40%;
  }
  .home_solutions .slick-next {
    right: 40%;
  }
}
.home_case {
	overflow: hidden;
  margin-top: 100px;
  padding-bottom: 178px;
  background: url(../imagesp/case_bg.jpg) no-repeat center bottom;
}
.home_case .left {
  width: 33.984375%;
  margin-top: 6%;
}
.home_case .left .icon_title {
  text-align: left;
}
.home_case .left ul {
  margin-top: 30px;
  width: 250px;
}
.home_case .left ul li {
  
  min-width: 135px;
  border: 1px solid #e6e6e6;
  border-radius: 50px;
  line-height: 40px;
  margin: 10px 0;
  text-align: center;
}
.home_case .left ul li a {
  display: block;
  color: #777777;
  font-size: 16px;
}
.home_case .left ul li a:hover,.home_case .left ul li a.cur {
  display: block;
  color: #fff;border-radius: 50px;
  background: #014090;
}
.home_case .left .text {
  margin-top:64px;
}
.home_case .left .text h3 {
  color: #014090;
  font-size: 28px;
  font-weight: normal;
  padding-bottom: 22px;
  margin-bottom: 25px;
  position: relative;
}
.home_case .left .text h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width:80px;
  height:2px;
  background: #dfe4e9;
}
.home_case .left .text p {
  color: #666666;
  font-size: 15px;
  line-height: 24px;
}
.home_case .left .text a {
  margin-top: 25px;
  display: inline-block;
  color: #014090;
  text-transform: uppercase;
  font-size: 15px;
  background: url(../imagesp/more1.jpg) no-repeat right center;
  padding-right: 38px;float: right;
}
.home_case .right {
  width: 61.09375%;
  position: relative;
}
.home_case .right img {
  width: 100%;
}
.home_case .right i {
  display: block;
  float: right;
  width: 91.7%;
  line-height: 0;
}
.home_case .right span {
  display: block;
  position: absolute;
  left: 0;
  top: 7%;
  width: 95.7%;
  line-height: 0;
  overflow: hidden;
  box-shadow: -1px 4px 12px 0px #899599;
}
.home_case .right .case_line{
	position: absolute;left:-15%;bottom:0;z-index: 9999;width:50px;height: 20px;
}
.home_case .right .case_line li{
	width: 20px;height: 20px;float: left;margin-right: 10px;
}
.home_case .right .case_line li a{display: block;width: 20px;height: 20px;background: #287ef0;}
.home_case .right .case_line li a:hover,.home_case .right .case_line li a.cur{background: #1657ac;}
.home_case .right .case_line li:last-child{
	margin-right: 0;
}
@media (max-width: 1024px) {
  .home_case {
    margin-top: 8%;
    padding-bottom: 8%;
  }
  .home_case .left {
    width: 100%;
    margin-top: 0;
  }
  .home_case .left ul {
    margin-top: 3%;
    width: 100%;
  }
  .home_case .left ul li {
    margin: 0 0 0 2%;float: left
  }

  .home_case .left ul li:first-child {
    margin-left: 0;
  }
  .home_case .left .text {
    margin-top: 3%;
  }
  .home_case .right {
    width: 100%;
  }
  .home_case .right .bg {
    display: none;
  }
  .home_case .right span {
    position: relative;
    width: 100%;
    top: 0;
    display: block;
    margin-top: 5%;
  }
  .home_case .right .case_line{
		right:0;top:0;z-index: 9999;left: auto;
	}
}
@media (max-width: 480px) {
  .home_case .left ul {
    margin-top: 5%;
  }
  .home_case .left ul li {
    width: 23.5%;
    min-width: 0;
  }
  .home_case .left .text {
    margin-top: 3%;
  }
}
@media (max-width: 414px) {
  .home_case .left ul li {
    line-height: 30px;
  }
  .home_case .left ul li a {
    font-size: 13px;
  }
  .home_case .left .text {
    margin-top: 6%;
  }
  .home_case .left .text h3 {
    font-size: 15px;
    font-weight: normal;
    padding-bottom: 10px;
    margin-bottom: 8px;
  }
  .home_case .left .text p {
    color: #666666;
    font-size: 14px;
    line-height: 24px;
  }
  .home_case .left .text a {
    margin-top: 4%;
  }
	.home_case .right span {margin-top: 6%;}
	.home_case .right .case_line{
		width:38px;height: 15px;
	}
	.home_case .right .case_line li{
		width:15px;height: 15px;margin-right: 8px;
	}
	.home_case .right .case_line li a{width: 15px;height: 15px;}	

	
}
.home_news {
  background: url(../imagesp/bg2.jpg);
  padding: 80px 0 100px;
}
.home_news .ol_list {
  margin-top: 20px;
  text-align: center;
}
.home_news .ol_list a {
  display: inline-block;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #e9e9e9;
  line-height: 40px;
  padding: 0 35px;
  color: #777777;
  font-size: 16px;
  margin: 0 7px;
  position: relative;
}
.home_news .ol_list a:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: -5px;
  width: 10px;
  height: 5px;
  background: url(../imagesp/bg3.png) no-repeat center center;
}
.home_news .ol_list a:hover,
.home_news .ol_list a.cur {
  background: #093c8a;
  border-color: #093c8a;
  color: #fff;
}
.home_news .ol_list a:hover:before,
.home_news .ol_list a.cur:before {
  display: block;
}
.home_news .con_box {
  margin-top: 60px;
}
.home_news .con_box .left {
  width: 46%;
  position: relative;
}
.home_news .con_box .left span {
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}
.home_news .con_box .left .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: rgba(0, 0, 0, 0.4);
  padding-left: 20px;
}
.home_news .con_box .left .text p {
  max-width: 70%;
  float: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #ffffff;
  font-size: 17px;
}
.home_news .con_box .left .text em {
  float: right;
  display: inline-block;
  background: #f08921;
  font-style: normal;
  color: #ffffff;
  font-size: 14px;
  font-family: arial;
  padding: 0 18px;
}
.home_news .con_box .left .text em i {
  display: inline-block;
  background: url(../imagesp/more2.png) no-repeat center center;
  width: 24px;
  height: 6px;
  position: relative;
  margin-left: 10px;
  top: -2px;
}
.home_news .con_box .right {
  width: 54%;
}
.home_news .con_box .right ul li {
  float: left;
  width: 100%;
  background: #fff;
  height: 137px;
  margin-bottom: 3px;
}
.home_news .con_box .right ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 50px;
}
.home_news .con_box .right ul li a .text_con {
  padding-top: 5%;
}
.home_news .con_box .right ul li a .text_con .text {
  width: 80%;
}
.home_news .con_box .right ul li a .text_con .text h3 {
  color: #323232;
  font-size: 17px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .con_box .right ul li a .text_con .text p {
  margin-top: 8px;
  color: #888888;
  font-size: 15px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.home_news .con_box .right ul li a .text_con .data span {
  text-align: center;
  display: block;
  color: #666666;
  font-size: 42px;
}
.home_news .con_box .right ul li a .text_con .data em {
  font-style: normal;
  color: #919294;
  font-size: 16px;
  font-family: arial;
}
.home_news .con_box .right ul li:hover {
  background: #093c89;
}
.home_news .con_box .right ul li:hover a .text_con .text h3,
.home_news .con_box .right ul li:hover a .text_con .text p,
.home_news .con_box .right ul li:hover a .text_con .data span,
.home_news .con_box .right ul li:hover a .text_con .data em {
  color: #fff;
}
@media (max-width: 1024px) {
  .home_news {
    padding: 8% 0;
  }
  .home_news .ol_list {
    margin-top: 4%;
  }
  .home_news .con_box .right ul li {
    height: auto;
  }
  .home_news .con_box .right ul li a {
    padding: 2.7% 15px;
  }
  .home_news .con_box .right ul li a .text_con {
    padding-top: 0;
  }
  .home_news .con_box .right ul li a .text_con .data {
    max-width: 30%;
  }
}
@media (max-width: 991px) {
  .home_news .con_box .left {
    width: 100%;
  }
  .home_news .con_box .left img {
    width: 100%;
  }
  .home_news .con_box .right {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .home_news .ol_list {
    text-align: center;
  }

  .home_news .con_box {
    margin-top: 6%;
  }
  .home_news .con_box .right ul li a {
    padding: 5% 15px;
  }
  .home_news .con_box .right ul li a .text_con .text{
  	width: 100%;
  }
  .home_news .con_box .right ul li a .text_con .data{
  	float: none;
  }
}
@media (max-width: 414px) {
  .home_news .ol_list {
    text-align: center;
  }
  .home_news .ol_list a {
    line-height: 34px;
    font-size: 13px;
  }
  .home_news .con_box .left .text {
    height: 36px;
    line-height: 36px;
    padding-left: 15px;
  }
  .home_news .con_box .left .text p {
    max-width: 60%;
    font-size: 13px;
  }
  .home_news .con_box .left .text em {
    display: block;
    font-size: 13px;
    padding: 0 15px;
    max-width: 40%;
    text-align: center;
  }
  .home_news .con_box .left .text em i {
    display: none;
  }
  .home_news .con_box .right ul li a .text_con .text h3 {
    font-size: 15px;
  }
  .home_news .con_box .right ul li a .text_con .text p {
    font-size: 13px;
    line-height: 22px;
  }
  .home_news .con_box .right ul li a .text_con .data span {
    font-size: 32px;
  }
}
@media (max-width: 320px) {
  .home_news .con_box .right ul li a .text_con .text {
    width: 75%;
  }
}


.ny_banner {
  background: url(../imagesp/about_banner.jpg) no-repeat center center / cover;
  min-height: 620px;
  padding-top: 300px;
	
}
.ny_banner h1 {
  margin-top: 13px;
  font-size: 47px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
.ny_banner .name {
  width: 62%;
  margin: 15px auto 0;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
@media (max-width: 1024px) {
  .ny_banner {
    padding-top: 12%;
    min-height: 530px;
  }
}
@media (max-width: 768px) {
  .ny_banner {
    min-height: 445px;
  }
  .ny_banner .name {
    width: 100%;
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 640px) {
  .ny_banner {
    min-height: auto;
    padding: 15% 0 6%;
  }
  .ny_banner h1 {
    font-size: 24px;
  }
}

.product_banner {
  background: url(../imagesp/pro_banner.jpg) no-repeat center top; height: 500px;
  padding-top:120px;
}

.product_banner_c{ width: 1280px; margin: 0 auto;}
.product_banner_c1{ color: #cecece;font-size: 14px; width:100%;}
.product_banner_c1 a{color: #cecece;font-size: 14px;}
.product_banner_c2{ width: 1280px; margin: 0 auto; padding-top:60px;}
.product_banner_c2a{width:55%;float:left;}
.product_banner_c2a h3{ color: #FFFFFF; font-size: 28px; }
.product_banner_c2a div{font-size: 16px; color: #fff; padding-top:30px;}
.product_banner_c2a div span{color: #f08927;font-size: 20px}
.product_banner_c2b{width:45%;float:left;text-align: center }

@media (max-width: 800px) {
	.product_banner {
	  background: url(../imagesp/pro_banner.jpg) no-repeat center center;
	  padding-top:3%;height: 208px;background-size: cover;
	}
	.add_height{height: auto;padding-bottom:5%}
	.product_banner img{height: auto;}
	.product_banner_c{ width: 96%;padding: 0 2%}
	.product_banner_c2{ width: 100%; padding-top:5%;}
	.product_banner_c2a{width:100%;float:none;}
	.product_banner_c2a h3{ color: #FFFFFF; font-size: 18px; }
	.product_banner_c2a div{padding-top:5%;font-size: 14px;}
	.product_banner_c2a div span{color: #f08927;font-size:16px}
	.product_banner_c2b{width:100%;float:none;text-align: center }
}
@media (max-width: 414px) {
	.product_banner {
	  padding-top:0;height: auto;background-size:cover;width: 100%;
	}
	.add_height{height: auto;padding-bottom:5%}
	.product_banner img{height: auto;}
	.product_banner_c{ width: 100%;padding:8% 0 0 0;min-height: 108px}
	.product_banner_c2{ width: 100%; padding-top:0;}
	.product_banner_c2a{width:100%;float:none;}
	.product_banner_c2a h3{ color: #FFFFFF; font-size: 18px; }
	.product_banner_c2a div{padding-top:5%;font-size: 14px;}
	.product_banner_c2a div span{color: #f08927;font-size:16px}
	.product_banner_c2b{width:100%;float:none;text-align: center }
}

.title_box {
  background: url(../imagesp/top_bg3.png) no-repeat center center;
  width: 700px;
  height: 109px;
  position: relative;
  margin: 60px auto 0;
  text-align: center;
  padding-left: 95.5px;
}
.title_box a {
  display: block;
  height: 109px;
  float: left;
  width: 150px;
  border-right: 1px solid #0b1a2f;
  padding-top: 26px;
}
.title_box a span {
  display: block;
  height: 28px;
}
.title_box a em {
  font-style: normal;
  color: #ffffff;
  font-size: 14px;
  margin-top: 8px;
  display: block;
}
.title_box a:last-child {
  border-color: rgba(0, 0, 0, 0);
}
.title_box a:hover,
.title_box a.cur {
  background: #124490;
}
@media (max-width: 1024px) {
  .title_box {
    margin-top: 9%;
  }
}
@media (max-width: 640px) {
  .title_box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .title_box {
    background-size: 100% cover;
    height: auto;
    padding-left: 0;
  }
  .title_box a {
    width: 25%;
    height: auto;
    padding-top: 3%;
    padding-bottom: 3%;
  }
  .title_box a span {
    width: 20%;
    height: auto;
    line-height: 0;
    margin: 0 auto;
  }
  .title_box a em {
    margin-top: 5px;
  }
}
@media (max-width: 414px) {
  .title_box a em {
    font-size: 12px;
  }
}
.service_yw {
  text-align: center;
  color: #e8e8e8;
  font-size: 36px;
  font-weight: bold;
  font-family: arial;
}
@media (max-width: 414px) {
  .service_yw {
    font-size: 20px;
  }
}



.about_jianjie {
  padding: 82px 0 92px;
}
.about_jianjie .box {
    margin-top: 3%;    
    /*padding-left: 8%;
    padding-right: 8%;*/
	font-size: 16px;
	line-height: 2;
}
@media (max-width: 414px) {
  .about_jianjie {
	  padding: 40px 0 40px;
	}
	
 .about_jianjie .box {
    font-size: 14px;
	 padding-left:2%;
    padding-right:2%;
  }
}

a.case_show_btn {
  margin-top: 4%;
  float: right;
  display: inline-block;
  background: #17478e;
  color: #fff;
  font-size: 14px;
  line-height: 34px;
  border-radius: 4px;
  padding: 0 20px;
}

@media (max-width: 991px) {}
@media (max-width: 768px) {}
@media (max-width: 640px) {}
@media (max-width: 480px) {
	.case_show .box{padding-bottom: 0}
}


.pro_nav {
  background: #efefef;
}
.pro_nav a {
  line-height: 56px;
  display: block;
  float: left;
  padding: 0 30px;
  color: #888888;
  font-size: 14px;
}
.pro_nav a:hover,
.pro_nav a.cur {
  background: #dfdfdf;
  color: #000;
}
@media (max-width: 768px) {.pro_nav{display: none}}
@media (max-width: 480px) {
  .pro_nav .container{padding: 0;}
  .pro_nav a {
    line-height: 40px;
    padding: 0 2%;
    font-size: 12px;
  }
}
@media (max-width: 360px) {
	.pro_nav .container{padding: 0;}
  .pro_nav a {
    font-size: 12px;
  }
}
.pro_box {
  margin-top: 50px;
  margin-bottom: 60px;
}
.pro_box ul li {
  float: left;
  width: 30.5%;
  margin-bottom: 4%;
  margin-right: 4.25%;
}
.pro_box ul li:nth-child(3n) {
  margin-right: 0;
}
.pro_box ul li .img {
  line-height: 0;
  overflow: hidden;background: #dedde3;
}
.pro_box ul li .img img {
  width: 100%;
}
.pro_box ul li .text {
  border: 1px solid #eeeeee;
  padding: 17px 18px;text-align: center;
}
.pro_box ul li .text h3 {
  color: #888888;
  font-size: 16px;
  text-transform: uppercase;
  font-family: arial;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.pro_box ul li .text p {
  color: #888888;
  font-size: 13px;
  margin-top: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.pro_box ul li:hover .text {
  background: #fa9530;
  border-color: #fa9530;
}
.pro_box ul li:hover .text h3,
.pro_box ul li:hover .text p {
  color: #fff;
}
.pro_box .more_btn {
  display: block;
  width: 100%;
  background: #f2f2f2;
  text-align: center;
  line-height: 46px;
  color: #666666;
  font-size: 15px;
  font-family: arial;
  text-transform: uppercase;
}
.pro_box .more_btn span {
  display: inline-block;
  background: url(../imagesp/more_icon1.png) no-repeat right center;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .pro_box {
    margin: 5% 0 6%;
  }
}
@media (max-width: 768px) {
  .pro_box ul li {
    margin-bottom: 2%;
    width: 32%;
    margin-right: 2%;
  }
  .pro_box ul li .text {
    padding: 10px;
  }
}
@media (max-width: 640px) {
  .pro_box ul li {
    margin-right: 0;
    width: 49%;
  }
  .pro_box ul li:nth-child(2n) {
    float: right;
  }
  .pro_box ul li .text p {
    margin-top: 2px;
  }
}
@media (max-width: 375px) {
  .pro_box ul li {
    width: 100%;
    margin-bottom: 4%;
  }
}

.news_banner {
  background: url(../imagesp/news_banner.jpg) no-repeat center center / cover;
  padding-top: 300px;
}
.news_banner .title_box {
  background: url(../imagesp/top_bg2.png) no-repeat center center;
  width: 431px;
  padding-left: 65.5px;
}
@media (max-width: 1024px) {
  .news_banner {
    padding-top: 20%;
  }
}
@media (max-width: 640px) {
  .news_banner {
    padding-top: 15%;
  }
}
@media (max-width: 480px) {
  .news_banner .title_box {
    width: 100%;
    padding-left: 0;
  }
  .news_banner .title_box a {
    width: 50%;
  }
}
.news_box {
  background: #f1efef;
  padding: 70px 0 60px;
}
.news_box {
  width: 100%;
}
.news_box ul li {
  margin-bottom: 3%;
  float: left;
  width: 100%;
  background: #fff;
  padding: 3% 0;
}
.news_box ul li .data {
  width: 17%;
  margin: 0 3%;
  padding: 2.7% 0 3.3%;
  float: left;
  text-align: center;
  background: #f9f9f9;
  transition: all .5s;
}
.news_box ul li .data p {
  color: #124189;
  font-size: 49px;
  font-family: arial;padding-bottom: 10px;
}
.news_box ul li .data span {
  color: #8c8c8c;
  font-size: 16px;
}
.news_box ul li .text {
  float: right;
  width: 77%;
  padding-right: 3%;
}
.news_box ul li .text h3 {
  color: #18478e;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all .5s;
}
.news_box ul li .text em {
  display: none;
}
.news_box ul li .text p {
  margin-top: 12px;
  color: #777777;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.news_box ul li .text span {
  margin-top: 15px;
  display: inline-block;
  border: 1px solid #e8e8e8;
  line-height: 32px;
  padding: 0 18px;
  color: #999999;
  font-size: 14px;
}
.news_box ul li:hover .text h3 {
  color: #f08921;
}
.news_box ul li:hover .data {
  background: #124189;
}
.news_box ul li:hover .data p,
.news_box ul li:hover .data span {
  color: #fff;
}

.news_box .more_btn {
  margin: 1% auto 0;
  width: 11%;
  display: block;
}
.news_box .news_con {
  background: #fff;
  padding: 5% 4%;
}
.news_box .news_con h3 {
  text-align: center;
  color: #666666;
  font-size: 24px;
  font-weight: normal;
  border-bottom: 1px solid #f1efef;
  padding-bottom: 3%;
}
.news_box .news_con .name {
  text-align: center;
  color: #a8a8a8;
  font-size: 14px;
  margin-top: 2.2%;
}
.news_box .news_con .name span {
  display: inline-block;
  margin: 0 5px;
}
.news_box .news_con .con {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  padding: 4% 0 0;
}
.news_box .news_con .bottom {
  margin-top: 4%;
}
.news_box .news_con .bottom ol {
  float: left;
  width: 85%;
}
.news_box .news_con .bottom ol li {
  float: left;
  padding: 2% 0;
  width: 100%;
  border-bottom: 1px dashed #e9e9e9;
}
.news_box .news_con .bottom ol li:last-child {
  border-bottom: none;
}
.news_box .news_con .bottom ol li a {
  display: inline-block;
  color: #777777;
  font-size: 14px;
}
.news_box .news_con .bottom ol li a span {
  display: inline-block;
  color: #333333;
  font-size: 16px;
}
.news_box .news_con .bottom .return {
  margin-top: 4%;
  float: right;
  display: inline-block;
  background: #17478e;
  color: #fff;
  font-size: 14px;
  line-height: 34px;
  border-radius: 4px;
  padding: 0 20px;
}
@media (max-width: 414px) {
  .news_box .news_con .bottom .return {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .news_box .news_con h3 {
    font-size: 16px;
  }
}
@media (max-width: 414px) {
  .news_box .news_con .bottom ol {
    display: none;
  }
}
@media (max-width: 375px) {
  .news_box .news_con h3 {
    border-bottom: none;
    padding-bottom: 0;
  }
  .news_box .news_con .name {
    display: none;
  }
}
.news_box .right {
  width: 22%;
  float: right;
}
.news_box .right .right_nav {
  margin-bottom: 20px;
}
.news_box .right .right_nav h3 {
  color: #094293;
  font-size: 18px;
  font-weight: normal;
}
.news_box .right .right_nav ul {
  margin-top: 10px;
}
.news_box .right .right_nav ul li {
  float: left;
  width: 100%;
  line-height: 30px;
}
.news_box .right .right_nav ul li a {
  display: block;
  width: 100%;
  color: #666666;
  font-size: 14px;
  background: url(../imagesp/icon_1.png) no-repeat right center;
}
.news_box .right .right_nav ol li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}
.news_box .right .right_nav ol li a {
  display: block;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.news_box .right .right_nav ol li .t {
  margin-top: 8px;
  color: #999999;
  font-size: 12px;
}
.news_box .right .right_nav ol li:last-child {
  border-bottom: none;
}
@media (max-width: 991px) {
  .news_box {
    padding: 6% 0;
  }
}
@media (max-width: 768px) {
  .news_box {
    width: 100%;
  }
  .news_box .more_btn {
    width: 14%;
  }
  .news_box .right {
    display: none;
  }
}
@media (max-width: 640px) {
  .news_box ul li .data {
    display: none;
  }
  .news_box ul li .text {
    width: 100%;
    padding: 0 15px;
  }
  .news_box ul li .text em {
    display: block;
    font-style: normal;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
  }
  .news_box ul li .text p {
    margin-top: 6px;
  }
  .news_box .more_btn {
    width: 25%;
  }
}


/**2017-11-29**/
.search_box {
  padding: 160px 0 60px;
  min-height: 540px;
}
.search_box h1 {
  color: #063a83;
  font-size: 24px;
  font-weight: normal;
}
.search_box .search_btn {
  margin-top: 16px;
  width: 635px;
  border: 1px solid #e3e3e3;
  height: 46px;
}
.search_box .search_btn .text {
  float: left;
  border: none;
  -webkit-appearance: none;
  background: none;
  width: 80%;
  line-height: 44px;
  padding: 0 10px;
  font-size: 14px;
  font-family: "微软雅黑";
}
.search_box .search_btn .btn {
  float: right;
  background: url(../imagesp/search.png) no-repeat center center;
  width: 56px;
  height: 44px;
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.search_box .name {
  color: #2e353d;
  font-size: 16px;
  margin: 20px 0 10px 0;line-height:28px
}
.search_box .name span {
  color: #063b83;
}
.search_box .name p {
  padding-bottom: 40px;
}
.search_box .search_con {
  border-top: 1px solid #e1e1e1;
}
.search_box .search_con ul li {
  float: left;
  width: 100%;
  padding: 45px 0;
  border-bottom: 1px solid #e1e1e1;
}
.search_box .search_con ul li .img {
  display: block;
  float: left;
  line-height: 0;
  width: 19%;
}
.search_box .search_con ul li .img img {
  border: 1px solid #e1e1e1;
}
.search_box .search_con ul li .text {
  width: 100%;
}
.search_box .search_con ul li .text .bt {
  display: block;
  color: #063b83;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.search_box .search_con ul li .text p {
  color: #666666;
  font-size: 16px;
  margin: 15px 0;
}
.search_box .search_con ul li .text .more {
  color: #666666;
  font-size: 14px;
  display: inline-block;
  text-decoration: underline;
}
.search_box .search_con .more_btn {
  margin: 35px auto 0;
  width: 11%;
  display: block;
}
.result_page{ text-align: center;padding-top: 40px;font-size: 16px;}
.result_page a{border: 1px solid #ccc;padding: 5px 10px;margin: 0 5px;background: #fff;}
.result_page span{padding-right:10px;}
.result_page a.FontRed{color: #fff;background: #f08927}
@media (max-width: 480px) {
	.result_page{ text-align: center;padding-top: 40px;font-size: 12px;}
	.result_page span{display: none}
	.result_page a{border: 1px solid #ccc;padding: 2px 5px;margin: 0 2px;background: #fff;}	
}

@media (max-width: 1024px) {
  .search_box {
    padding: 4% 0 6%;
  }
  .search_box .search_con ul li {
    padding: 3% 0;
  }
  .search_box .search_con ul li .text {
    padding-top: 3%;
  }
}
@media (max-width: 768px) {
  .search_box .name {
    font-size: 14px;
    margin: 2% 0;
  }
  .search_box .search_con ul li .text {
    padding-top: 2.5%;
  }
  .search_box .search_con ul li .text .bt {
    font-size: 14px;
  }
  .search_box .search_con ul li .text p {
    margin: 1% 0;
    font-size: 14px;
  }
  .search_box .search_con .more_btn {
    margin-top: 3%;
  }
}
@media (max-width: 640px) {
  .search_box .search_btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .search_box h1 {
    font-size: 22px;
  }
  .search_box .search_btn {
    height: 36px;
  }
  .search_box .search_btn .text {
    line-height: 34px;
  }
  .search_box .search_btn .btn {
    width: 43px;
    height: 34px;
    background-size: 100% 100%;
  }
  .search_box .search_con ul li .text {
    padding-top: 0;
  }
  .search_box .search_con ul li .img {
    width: 28%;
  }
  .search_box .search_con ul li .text {
    width: 68%;
  }
}
@media (max-width: 414px) {
  .search_box .search_con ul li .img {
    width: 32%;
  }
  .search_box .search_con ul li .text {
    width: 100%;
  }
  .search_box .search_con ul li .text {
    padding-top: 2.5%;
  }
  .search_box .search_con .more_btn {
    width: 23%;
  }
  .search_box .search_con ul li .text .more {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
  }
  .search_box .search_con ul li .text p {
    height: 38px;
    overflow: hidden;
  }
}
@media (max-width: 375px) {
  .search_box .search_con ul li .text {
    padding-top: 3.5%;
  }
  .search_box .search_con ul li .text p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    height: auto;
  }
}
@media (max-width: 320px) {
  .search_box .search_con ul li .text {
    padding-top: 2.5%;
  }
}

.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%;
	}
}

.service_wenti .qa_box ul li .left{
	width: 80%;
	float: left;
}
.service_wenti .qa_box ul li .right{
	display: inline-block;
	float: right;
	padding-top: 38px;
}
.service_wenti .qa_box ul li .right a{
	display: inline-block;
	line-height: 32px;
	border: 1px solid #e8e8e8;
	color: #999999;
	font-size: 14px;
	padding: 0 20px;
	background: #fff;
}
.service_wenti .qa_box ul li .right a:hover{
	background: #f18a22;
	border-color: #f18a22;
	color: #fff;
}
@media only screen and (max-width:768px ) {
	.service_wenti .qa_box ul li .left{
	  	width: 100%;
	}
	.service_wenti .qa_box ul li .right {
	  	float: none;
	  	padding-top: 3%;
	}
}

.home_con .home_pro .left a img,
.home_con .home_pro .right a img,
.home_solutions .text_con .img img,
.home_case .right span img,
.home_news .con_box .left span img,
.pro_box ul li .img img,
.about_jianjie .right ol li .img img{
	width: 100%;
  	transition: all 1s;
  	-moz-transition: all 1s;
  	-o-transition: all 1s;
  	-webkit-transition: all 1s;
  	-ms-transition: all 1s;
}
.home_con .home_pro .left a img:hover,
.home_con .home_pro .right a img:hover,
.home_solutions .text_con .img:hover img,
.home_case .right span img:hover,
.home_news .con_box .left span img:hover,
.pro_box ul li .img img:hover,
.about_jianjie .right ol li .img img:hover{
  	transform: scale(1.1);
	-moz-transform: scale(1.1);
  	-o-transform: scale(1.1);
  	-webkit-transform: scale(1.1);
  	-ms-transform: scale(1.1);
}

#focus_Box {
  float: right;
  position: relative;
  width: 540px;
  height: 393px;
}
#focus_Box ul {
  position: relative;
  width: 540px;
  height: 393px;
}
#focus_Box li {
  z-index: 0;
  position: absolute;
  width: 0px;
  background: #787878;
  height: 0px;
  top: 0;
  cursor: pointer;
  left: 0;
}
#focus_Box li img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
#focus_Box li p {
  display: none;
  padding: 15px 15px 0;
  text-align: center;
  color: #2d2d2d;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#focus_Box .prev,
#focus_Box .next {
  display: block;
  z-index: 100;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  width: 31px;
  height: 58px;
  top: 153px;
}
#focus_Box .prev {
  background: url(../imagesp/p_left.jpg) no-repeat center center;
  left: -59px;
}
#focus_Box .next {
  background: url(../imagesp/p_right.jpg) no-repeat center center;
  right: -59px;
}


@media (max-width: 768px) {
  #focus_Box{
  	float: none;
  	margin: 5% auto 0;
  }
}
@media only screen and (max-width:640px ) {
	#focus_Box .prev{
  		left: -48px;
  	}
  	#focus_Box .next{
  		right: -48px;
  	}
}
@media (max-width: 480px) {
  #focus_Box {
    display: none;
  }
}


/**2017-12-25**/
.title3 {
  text-align: center;
  color: #555555;
  font-size: 28px;
  font-weight: normal;
  padding-bottom: 15px;
  position: relative;
}
.title3:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -55px;
  width:110px;
  height: 3px;
  background: #efefef;
}

@media (max-width: 640px) {
  .title3 {
    font-size: 22px;
  }
}
@media (max-width: 414px) {
  .title3 {
    font-size: 20px;
    padding-bottom: 12px;
  }
}


.more_btn a{
	margin-top: 50px;
	float: right;
	display: inline-block;
	padding: 0 30px;
	height: 44px;
	line-height: 44px;
	background: #043e88;
	border-radius: 50px;
	text-align: center;
	color: #fff;
	font-size: 16px;
}
@media only screen and (max-width:768px ) {
	.more_btn{
		text-align: center;
	}
	.more_btn a{
		margin-top: 5%;
		float: none;
	}
}

.ntitle1{
text-align: center;
    color: #555555;
    font-size: 28px;
    font-weight: normal;
    padding-bottom: 15px;
    position: relative;
    padding-top: 50px;
    margin-bottom: 2%;
}
.ntitle1:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
    width: 40px;
    height: 3px;
    background: #efefef;
}


.return_top_bottom{
	display: none;
}

@media (max-width: 640px){
	.footer{
		margin-bottom: 78px;
	}
	.return_top_bottom{
		display: block;
		right: auto;
		top: auto;
		bottom: 0;
		width: 100%;
	}
	.return_top_bottom a{
		float: left;
		margin-bottom: 0;
		width: 25%;
		text-align: center;
		border-right: 1px solid #032554;
	}
	.return_top_bottom a:last-child{
		border-right: none;
	}
}
@media (max-width: 480px){
	
	.footer{
		margin-bottom: 40px;
	}
	.return_top_bottom{
		height: 50px;
	}
	.return_top_bottom a img{
		width: 61px;
		height: auto;
	}
	
}


.table{
	padding: 60px 0;
}
.table h3{
	text-align: center;
    	color: #666666;
   	 font-size: 30px;
	
}
.table span{
    text-align: center;
    display: block;
    color: #aaaaaa;
    font-size: 14px;
    margin: 12px 0 15px;
    text-transform: uppercase;
    font-family: arial;
	
}
.table .text strong{
    font-size: 16px;
    margin-top: 2%;
    display: block;

}
.table table{
	margin-top: 40px;
}
.table table tr{
	background: #f7f7f7;
}
.table table tr th{
	background: #093c8a;
    	color: #fff;
  	font-size: 18px;
  	font-weight: normal;
   	padding: 1.5% 0;
}
.table table tr:nth-child(2n){
	background: #fff;
}
.table table tr td {
    text-align: center;
    padding: 1.5% 0;
}



/*产品精选*/

.plan_banner {text-align: center}
.plan_banner h3{ font-size: 40px; text-align: left; color: #FFF ; padding:40px 0; line-height:60px;padding-left:15%;width: 100%;
	text-shadow:#000000 2px 0 0,#000000 0 2px 0,#000000 -2px 0 0,#000000 0 -2px 0;
	-webkit-text-shadow:#000000 2px 0 0,#000000 0 2px 0,#000000 -2px 0 0,#000000 0 -2px 0;
	-moz-text-shadow:#000000 2px 0 0,#000000 0 2px 0,#000000 -2px 0 0,#000000 0 -2px 0;
}
.plan_banner_tit{font-size:40px;color: #f08927 ;text-align: left;font-weight:bold;padding-left:25%;width: 100%;
	/*text-shadow: 5px 2px 3px #000000;*/
	text-shadow:#000000 2px 0 0,#000000 0 2px 0,#000000 -2px 0 0,#000000 0 -2px 0;
}


@media (max-width: 800px){
.plan_banner {}
.plan_banner h3{ font-size:28px; text-align: center; color: #FFF ; padding:0; line-height:40px;width: 100%}
.plan_banner_tit{font-size:28px;  color: #f08927 ;line-height:40px;padding:10px 2% 0 2%;float: none;text-align: center;}
}

@media (max-width: 414px){
.plan_banner {}
.plan_banner h3{ font-size:18px; text-align: center; color: #FFF ; padding:0; line-height:20px;width: 100%}
.plan_banner_tit{font-size:18px;  color: #f08927 ;line-height:20px;padding:10px 2% 0 2%;float: none;text-align: center;}	
}

.SiteMap ul li{
	font-weight:bold;
	line-height:25px;
	padding:10px 20px;
	border-bottom:1px dashed #CCCCCC;
	font-size:14px;
}
.SiteMap ul li ul li{
	font-weight:normal;
	border-bottom:none;
	font-size:12px;
	background:none;
	padding:5px 0px;}

.fzlc{width: 760px;margin: 0 auto;}
.fzlc ul{padding: 44px 0 13px; margin-left: 9px; position:relative; border-left:1px solid #e6e6e6; margin-top: 30px;}
.fzlc ul:after{position:absolute; left:-13px; top:0; width:26px; height:26px; background:url("../imagesp/about62_icon_time.png") no-repeat; display:block; fzlc:" ";}
.fzlc li{padding-left: 13px; margin-bottom: 23px;}
.fzlc li:after{content:"\200B"; display:block; height:0; clear:both;}
.fzlc .time{position:relative; float:left; width:76px; height:30px; font-size: 16px; padding-left:13px; line-height: 30px; color:#fff; background:url("../imagesp/about62_icon_this.png") no-repeat left center;}
.fzlc .time:after{position:absolute; left:-17px; top:12px; width:7px; height:7px; background:url("../imagesp/about62_icon_dot.png") no-repeat; display:block; content:" ";}
.fzlc .p_box{float:right; width:651px; padding:3px 0;}
.fzlc em{float:left; font-size: 14px; color:#767676; line-height: 24px; width:90px;}
.fzlc p{float:left; font-size: 16px; color:#767676; line-height: 24px; width:670px; margin:0;}

@media (max-width: 480px){
	.fzlc{width: 100%;margin: 0 auto;}
	.fzlc ul{padding: 44px 0 13px; margin-left: 9px; position:relative; border-left:1px solid #e6e6e6; margin-top: 30px;}
	.fzlc ul:after{position:absolute; left:-13px; top:0; width:26px; height:26px; background:url("../imagesp/about62_icon_time.png") no-repeat; display:block; fzlc:" ";}
	.fzlc li{padding-left: 13px; margin-bottom: 23px;}
	.fzlc li:after{content:"\200B"; display:block; height:0; clear:both;}
	.fzlc .time{position:relative; float:left; width:76px; height:30px; font-size: 16px; padding-left:13px; line-height: 30px; color:#fff; background:url("../imagesp/about62_icon_this.png") no-repeat left center;}
	.fzlc .time:after{position:absolute; left:-17px; top:12px; width:7px; height:7px; background:url("../imagesp/about62_icon_dot.png") no-repeat; display:block; content:" ";}
	.fzlc .p_box{float:none; padding:3px 0;padding-left:10px;width: 100%;}
	.fzlc p{float:none; font-size: 14px; color:#767676; line-height: 24px; width:100%; margin:0;clear: both;padding-top: 5px;}
	
}

.service_nav {
  background: #efefef;color: #888888;
}
.service_nav a {
  line-height: 56px;
  padding: 0 15px;
  color: #888888;
  font-size: 14px;
}
.service_nav a:hover,.service_nav a.cur {
  color: #000;
}


.service-banner{
    background: url("../imagesp/service_banner_bg.jpg");
    height:700px;
}

 
.service-banner .content-box{
    width:1280px;
    margin: 0 auto;
    padding-top:100px;
    position: relative;
}
.service-banner .content-box .img-box28{
    position: absolute;
    top:90px;
    right:0;
}
.service-banner .content-box .text-box span{color: #fa942f;font-size:32px;font-weight: bold;}
.service-banner .content-box .text-box span.font_blue{color: #053a84;}

.service-banner .content-box .text-box i{
    display: block;
    width: 36px;
    height:3px;
    background-color: #fa942f;
    margin: 19px 0 39px;
}
.service-banner .content-box .text-box  i.line_blue{
    background-color: #053a84;
}
.service-banner .content-box .text-box p{
    font-size:16px;
    color: #626262;
    padding-top:30px;line-height: 2;
}

.add_service2_box1 {background: url("../imagesp/service_banner_bg2.jpg");height: 650px;}
.add_service2_box1 .f-r{padding-top: 5%;}
.add_service2_box1 .content-box .text-box p {color: #333333;padding-left: 20%;}


@media (max-width:1024px){
	.service-banner {height: auto;background-size: cover}
	.service-banner .content-box{
		width:96%;
		margin: 0 auto;
		padding:40px 0;
		position: relative;
	}	
	.service-banner .content-box .img-box28{
		position:absolute;
		top:15%;
		right:0;width:40%;
	}
	.service-banner .content-box .text-box span{font-size:28px;}
	.add_service2_box1{background-position: right bottom;}
	.add_service2_box1 .content-box .text-box p{padding-top:0;padding-left: 0;margin-top: -20px;}
	.add_service2_box1 .f-r{width: 50%;}
	
}
@media (max-width:800px){
	.service-banner .content-box .img-box28{top:40%;}
	.add_service2_box1 .f-r{padding-top: 10%;width: 40%;}
}
@media (max-width:414px){
	
	.service-banner .content-box .img-box28{
		position:static;
		top:auto;
		right:auto;width: auto
	}
	.add_service2_box1 .f-r{padding-top: 5%;clear: both;width:auto;}
}

.website-text{
    background:#f8f8f8;
    width: 100%;
    height: 453px;
    text-align: center;
    color: #393939;
    padding-top: 128px;
}
.website-text h1{
    font-size: 34px;
    margin-bottom: 10px;
}
.website-text h2{
    font-size: 34px;
    margin-bottom: 10px;
}
.website-text p{
    font-size: 15px;
}


.service_box2 .clearfix:before, .service_box2 .clearfix .clearfix:after {
    content: "";
     display: table; 
}
.cards{
    background: url("../imagesp/service1_3.jpg");
    height: 400px;
}
.card-box{
    width: 1260px;
    margin: -170px  auto 0;
}
.card-box>ul>li{
    width: 304px;
    height: 407px;
    background-color: #ffffff;
    text-align: center;
    float: left;
    padding-top: 62px;transition-duration: .5s;-ms-transition-duration: .5s;-moz-transition-duration: .5s; -webkit-transition-duration: .5s;
}
.card-box>ul>li+li{
    margin-left: 14.6px;
}
.card-box h3{
    font-size: 20px;
    color: #393939;
    margin-bottom: 5px;padding-top:80px;
}
.card-box p{
    font-size: 14px;
    color: #828282;padding: 0 5%;
}
.card-box .lists{
    font-size: 14px;
    color: #9D9D9D;
    font-weight: 600;line-height: 1.8;padding: 20px 5%;
}

.card-box ul li:nth-child(1) {
    background: url("../imagesp/service1_4.png") center 62px no-repeat #fff;
}
.card-box ul li:nth-child(2) {
    background: url("../imagesp/service1_5.png") center 62px no-repeat #fff;
}
.card-box ul li:nth-child(3) {
    background: url("../imagesp/service1_6.png") center 62px no-repeat #fff;
}
.card-box ul li:nth-child(4) {
    background: url("../imagesp/service1_7.png") center 62px no-repeat #fff;
}

.card-box>ul>li:hover{
    background-color: #1C6AC3;
}
.card-box>ul>li:hover h3,
.card-box>ul>li:hover p,
.card-box>ul>li:hover .lists{
    color: #ffffff;
}
.card-box .icon07:hover i{
    background: url("../images/aggregation-icon007.png") no-repeat;
}
.card-box .icon06:hover i{
    background: url("../images/aggregation-icon006.png") no-repeat;
}
.card-box .icon05:hover i{
    background: url("../images/aggregation-icon005.png") no-repeat;
}
.card-box .icon04:hover i{
    background: url("../images/aggregation-icon004.png") no-repeat;
}

@media (max-width:1024px){
	.website-text {padding: 40px 0;height:330px;}
	.website-text h2 {font-size: 28px;}
	.website-text p {font-size: 14px;padding: 0 2%;}
	.card-box {width:96%;padding: 0 2%;}
}
@media (max-width:1024px){
	.cards {height: auto}
	.card-box>ul>li {width:47%;margin-bottom: 5%;}
	.card-box>ul>li+li {margin-left:6%}
	.card-box>ul>li:nth-child(3n){margin-left: 0}
}
@media (max-width:414px){
	
	.card-box>ul>li {width: 100%;margin-bottom: 5%;float: none;}
	.card-box>ul>li+li {
		margin-left:0;margin-bottom: 5%
	}
}

.service_box3{width:100%; margin: 0 auto; background-color: #e2e2e2 ; padding: 82px 0 92px;}
.service_box3 .container{padding: 0;}
.service_box3 .gs{text-align: center; color: #606060; line-height: 28px; font-size: 16px;}
.service_box3 h3{color: #434343; font-size:35px;text-align: center; padding-bottom:5px;}
.service_box3 ul{ width:100%;margin-top:60px; }
.service_box3 li{ width:23.5%;text-align: center; float: left; text-align: center; font-size: 20px;color: #0a4c9d;height:350px; background-color: #FFFFFF;margin: 0 1%;transition-duration: .5s;-ms-transition-duration: .5s;-moz-transition-duration: .5s; -webkit-transition-duration: .5s;}
.service_box3 li:hover{background-color: #093c8b; color: #FFFFFF}
.service_box3 li:hover p{color: #fff;}
.service_box3 li span{text-align: center; font-size:60px; padding-bottom: 15px; padding-top:50px;display: block}
.service_box3 li p{text-align: left; font-size:14px;color: #ababab;padding: 15px 5% 0 5%;line-height: 24px;}
.service_box3 ul li:first-child{margin-left: 0}
.service_box3 ul li:last-child{margin-right:0; }

@media (max-width:1024px){
	.service_box3{padding: 40px 0}
	.service_box3 .gs{font-size: 14px;padding: 0 2%;line-height: 20px;}
	.service_box3 h3{font-size: 28px;}
	.service_box3 ul{margin-top: 30px;}
	.service_box3 li{width: 48%;margin-bottom: 5%;height: 300px;}
	.service_box3 ul li:first-child{margin-left: 1%}
	.service_box3 li span{padding-top: 30px;}
}
@media (max-width:414px){
	.service_box3 li{width: 98%;}
}

.service_box5{ width:100%; margin: 0 auto; background-color: #f8f8f8 ; padding: 32px 0 92px;text-align: center}
.service_box5 h3{color: #434343; font-size:35px; text-align: center; padding-bottom:5px; padding-top: 50px;}
.service_box5 p{color: #434343;font-size: 16px;}
.service_box5_img{ text-align: center; padding-top: 50px;}
.show_case_img_box{max-width: 1920px;height: auto;padding-top:30px;}
.show_case_img_box ul{width: 100%;}
.show_case_img_box ul li{float: left;margin:0 2%;width: 21%;line-height:50px;background: #ffffff;transition-duration: .3s;-ms-transition-duration: .3s;-moz-transition-duration: .3s; -webkit-transition-duration: .3s;overflow: hidden}
.show_case_img_box ul li img{max-width: 100%;height: auto;display: block;transition:all 0.5s ease-out 0s;-webkit-transition:all 0.5s ease-out 0s;}
.show_case_img_box ul li:hover{background:#fa9530;}
.show_case_img_box ul li:hover a{color: #fff;}
.show_case_img_box ul li:hover img{transform:scale(1.1);-webkit-transform:scale(1.1);}

@media (max-width:1024px){
	.service_box5{padding:40px 0 60px;}
	.service_box5 h3{ font-size:28px;padding-top: 0;}
	.service_box5 p{font-size:14px;width: 0 2%;}
	.show_case_img_box ul li{float: left;margin:0 2% 5%;width:46%;}
}

.service_box4{background-color: #fff;}


.service2_1{}
.service2_2{ width: 100%; background: #ebebeb;  padding:82px 0 60px 0; }
.service2_2 ul{ margin:0 auto; overflow:hidden;}
.service2_2 ul li{float: left;background-color: #FFFFFF;height: 140px;width: 48%;position: relative;margin-right:4%;margin-bottom: 23px;}
.service2_2 ul li.no{margin-right: 0px;}
.service2_2 ul li .img{position: absolute;left: 0px;top: 5px;background-image: url(../imagesp/service2_2.png);background-repeat: no-repeat;height: 130px;width: 130px;}
.service2_2 ul li .img.n1{background-position: 0px 0px;}
.service2_2 ul li .img.n2{background-position: 0px -130px;}
.service2_2 ul li .img.n3{background-position: 0px -260px;}
.service2_2 ul li .img.n4{background-position: 0px -390px;}
.service2_2 ul li .img.n5{background-position: 0px -520px;}
.service2_2 ul li .img.n6{background-position: 0px -650px;}
.service2_2 ul li .img.n7{background-position: 0px -780px;}
.service2_2 ul li .img.n8{background-position: 0px -910px;}
.service2_2 ul li .img.n9{background-position: 0px -1040px;}
.service2_2 ul li .img.n10{background-position: 0px -1170px;}
.service2_2 ul li:hover .img.n1{background-position: -130px 0px;}
.service2_2 ul li:hover .img.n2{background-position: -130px -130px;}
.service2_2 ul li:hover .img.n3{background-position: -130px -260px;}
.service2_2 ul li:hover .img.n4{background-position: -130px -390px;}
.service2_2 ul li:hover .img.n5{background-position: -130px -520px;}
.service2_2 ul li:hover .img.n6{background-position: -130px -650px;}
.service2_2 ul li:hover .img.n7{background-position: -130px -780px;}
.service2_2 ul li:hover .img.n8{background-position: -130px -910px;}
.service2_2 ul li:hover .img.n9{background-position: -130px -1040px;}
.service2_2 ul li:hover .img.n10{background-position: -130px -1170px;}
.service2_2 ul li .b{position: absolute;left: 130px;top: 20px;font-size: 18px;color: #333333;line-height: 1.1em;padding-right: 4%}
.service2_2 ul li .b p{font-size: 12px;line-height: 24px;color: #666666;margin-top: 10px;}
.service2_2 ul li,
.service2_2 ul li .img,
.service2_2 ul li .b,
.service2_2 ul li .b p {
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
}
.service2_2 ul li:hover{ background-color:#053a84;}
.service2_2 ul li:hover .b{color: #FFFFFF;}
.service2_2 ul li:hover .b p{color: #FFFFFF;}

@media (max-width:1024px){
	.service2_2{padding: 40px 0;}
	.service2_2 ul li{width: 100%;float: none;margin-right: 0;height: 125px;}
	.service2_2 ul li .b {top:25px;}
}
@media (max-width:414px){
	.service2_2 ul li{height: 150px;}
	.service2_2 ul li .img {display: none;}
	.service2_2 ul li .b {left: 10px;}
}

.service2_3{background:url(../imagesp/service2_3.gif) no-repeat center top;}
.service2_3 h3{color: #f7912c;}
.service2_3 .gs{color: #fff;width: 61%;margin: 0 auto}
.service2_3 ul li{ width:15%;text-align: center; float: left; text-align: center; font-size:18px;color: #393939;height:350px; background-color: #FFFFFF;margin: 0 1%}

@media (max-width:1024px){
	.service2_3{background-size: cover}
	.service2_3 .gs{width: 98%;}
	.service2_3 ul li{width: 31.3%;height: 300px;margin-bottom: 5%;}
}
@media (max-width:414px){
	.service2_3 ul li{width:48%;height: 300px;margin-bottom: 5%;}
	
}

.service3_box{}
.service3_box .container{padding: 0;}
.service3_box ul{padding: 80px 0;border-bottom: 1px solid #e8e8e8;}
.service3_box ul.borderno{border-bottom:0}
.service3_box ul h3{font-size:24px;padding-bottom: 15px;font-weight: 500;letter-spacing: 2px;padding-bottom:25px;}
.service3_box ul div{width: 36px;height: 3px;background: #053a84;margin-bottom: 50px;}
.service3_box ul li{float: left;padding:0 5%;text-align: center;}
.service3_box ul li img{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	-webkit-transition-property: transform;
	transition-property: transform;
	cursor: pointer;	
}
.service3_box ul li:hover img{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
.service3_box ul li h4 {
    color: #4c4c4c;
    font-size: 18px;
    margin: 25px 0 15px 0;
    line-height: 24px;
    font-weight: 500;
	letter-spacing: 2px;
}

@media (max-width:1024px){
	.service3_box ul{padding:40px 0 20px;}
	.service3_box ul h3{padding-left: 2%;}
	.service3_box ul div{margin-left: 2%;margin-bottom: 30px;}	
	.service3_box ul li h4 {font-size: 16px;margin: 15px 0;}
}
@media (max-width:414px){
	.service3_box ul li{width: 32%;margin-right: 2%;padding: 0;margin-bottom: 5%;}
	.service3_box ul li:nth-child(3n){margin-right: 0}
}

.add_service4{background:none;height:600px}
.add_service4 .content-box{
    padding-top:120px;
}
.add_service4 .content-box .text-box{width: 60%;}
.add_service4 .content-box .text-box p {
    padding-left: 10%;
}
.add_service4 .content-box .img-box28 {top:120px;right: 80px;}

@media (max-width:1024px){
	.add_service4 {height: auto;}
	.add_service4 .content-box{padding-top: 40px;}
	.add_service4 .content-box .text-box{width:100%;}
	.add_service4 .content-box .text-box p {padding-top: 0;padding-left: 0}
	.add_service4 .content-box .img-box28 {padding-top: 40px;top:0;right: 0;}
}
@media (max-width:414px){
	.add_service4 .content-box .img-box28 {top:auto;padding-top: 20px;}
}


.service4_box ul li span{font-size:10px;font-family: Arial;}
/*IT*/
.service4_box{background: url("../imagesp/service1_3.jpg");padding-top: 80px;}
.service4_box .container{padding: 0;}
.service4_box ul{padding: 60px 0 80px;}
.service4_box h3{font-size:35px;text-align: center;color: #434343;padding-bottom:5px;}
.service4_box .gs{text-align: center;color: #606060; line-height: 28px; font-size: 16px;}
.service4_box ul li{float: left;text-align: center;width: 25%;padding-bottom: 30px;}
.service4_box ul li img{
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	-webkit-transition-property: transform;
	transition-property: transform;
	cursor: pointer;	
}
.service4_box ul li:hover img{
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
.service4_box ul li h4 {
    color: #4c4c4c;
    font-size: 18px;
    margin:10px 0;
    line-height: 24px;
    font-weight: 500;
}

@media (max-width:1024px){
	.service4_box{padding-top: 40px;}
	.service4_box ul{padding: 40px 0;}
	.service4_box h3{font-size: 28px;}
	.service4_box .gs{font-size: 14px;}
}
@media (max-width:414px){
	.service4_box ul li{width: 50%;}
}

.add_service4_3{}
.add_service4_3 li{padding-top:60px;}

.add_service4_4{background:url(../imagesp/service2_3.gif) no-repeat center top;padding: 80px 0;}
.add_service4_4 .container{padding: 0;}
.add_service4_4 .img{width: 50%;text-align: center;float: left}
.add_service4_4 .text-box{width:35%;text-align: left;color: #fff;float: right;padding-top:100px;font-size: 18px;line-height: 2;}
.add_service4_4 .text-box h3{font-size: 35px;}
.add_service4_4 .text-box p{font-size: 22px;}
.add_service4_4 .text-box .text_dw{position: absolute}
.add_service4_4 .text_lc{position: absolute;left: 0;top:0;margin-left: -150px;font-size:66px;color: #07a2fc; }

@media (max-width:1024px){
	.add_service4_4{background-size: cover;}
	.add_service4_4 .img{width:40%;margin-left: 2%}
	.add_service4_4 .text-box{width: 45%;padding-top:30px;}
	.add_service4_4 .text-box h3{font-size:28px;}
	.add_service4_4 .text-box p{font-size: 18px;}
	.add_service4_4 .text_lc{font-size:50px;margin-left: -110px;}
}
@media (max-width:414px){
	.add_service4_4{height:450px;}
	.add_service4_4 .img{width:50%;float: none;margin: 0 auto}
	.add_service4_4 .text-box{width:72%;float: right;font-size: 14px;}
	.add_service4_4 .text-box h3{font-size:22px;}
	.add_service4_4 .text-box p{font-size: 16px;}
	.add_service4_4 .text_lc{font-size:40px;margin-left: -90px;}
}


.pro311_box2{padding: 80px 0;}
.pro311_box2 .container{padding: 0;}
.pro311_box2 .gs{text-align: center; color: #606060; line-height: 28px; font-size: 16px;width:60%;margin: 0 auto;padding-bottom: 30px}
.pro311_box2 h3{color: #434343; font-size:35px;text-align: center; padding-bottom:5px;}
.pro311_box2 .img{width: 50%;text-align: center;float: right}
.pro311_box2 .text{width:50%;text-align: left;float: left;padding-top:50px;font-size: 18px;line-height: 2;}
.pro311_box2 .text ul li{padding-bottom:45px;}
.pro311_box2 .text ul li i{background: url(../imagesp/pro311_box2_icon.png);width: 63px;height: 63px;float: left;margin-right: 15px;margin-top: 5px;}
.pro311_box2 .text ul li:nth-child(1) i{background-position: 0 0;}
.pro311_box2 .text ul li:nth-child(2) i{background-position: 63px 0 ;}
.pro311_box2 .text ul li:nth-child(3) i{background-position: 126px 0 ;}
.pro311_box2 .text ul li:nth-child(4) i{background-position: 189px 0 ;}

.pro311_box2 .text ul li:nth-child(1):hover i{background-position: 0 63px;}
.pro311_box2 .text ul li:nth-child(2):hover i{background-position: 63px 63px;}
.pro311_box2 .text ul li:nth-child(3):hover i{background-position: 126px 63px;}
.pro311_box2 .text ul li:nth-child(4):hover i{background-position: 189px 63px;}

.pro311_box2 .text strong{font-weight:normal}
.pro311_box2 .text p{font-size: 14px;padding-top: 10px;line-height: 1.5;}
.pro311_box2 .text ul li:hover{color:#f99229;cursor: pointer}

@media (max-width:1024px){
	.pro311_box2{padding:40px 0;}	
	.pro311_box2 .gs{width:96%;font-size: 14px;line-height: 20px;}	
	.pro311_box2 h3{font-size: 28px;}
	.pro311_box2 .img{width:100%;text-align: center;float: none}
	.pro311_box2 .text{width:100%;text-align: left;float: none;padding:0 2%;font-size: 16px;line-height: 2;}
	.pro311_box2 .text ul li{padding-bottom:20px;clear: both}
	.pro311_box2 .text p{padding-top:5px}
}
@media (max-width:414px){
	.pro311_box2 .text p{}
}



.add_pro312_box2 .text ul li i{background: url(../imagesp/pro312_box2_icon.png);}
.add_pro312_box2 .img{padding-top: 5%}
.add_pro313_box4 .text ul li i{background: url(../imagesp/pro313_box3_icon.png);}
.add_pro316_box2 .text ul li i{background: url(../imagesp/pro316_box1_icon.png);margin-bottom:30px;}

@media (max-width:1024px){
	.add_pro313_box4 .text ul {padding-top: 20px;}
	
}

.pro311_box3{ width:100%; margin: 0 auto; background-color: #e2e2e2 ; padding: 80px 0 60px 0;}
.pro311_box3 h3{color: #434343; font-size:35px; text-align: center; padding-bottom:5px;}
.pro311_box3 .container{padding: 0;}
.pro311_box3 ul{width: 100%; margin: 0 auto;padding-top: 30px;}
.pro311_box3 ul li{ width:48%;  float: left;  padding: 10px; background-color: #FFFFFF; margin-right:4%; margin-bottom: 40px; border-bottom: 1px solid #afafaf;transition-duration: .5s;-ms-transition-duration: .5s;-moz-transition-duration: .5s; -webkit-transition-duration: .5s;}
.pro311_box3 ul li:hover{background-color: #eaeaea;cursor: pointer}
.pro311_box3 ul li:nth-child(2n){margin-right: 0}
.pro311_box3_img{ width:16%; float: left; border-right: 1px solid #C7C7C7; padding-right: 2%;}
.pro311_box3_img img{max-width: 100%;height: auto}
.pro311_box3_title{ padding-left: 2%;float: left; line-height:24px; padding-top: 20px; width:80%;}
.pro311_box3_title span{float: left; font-size:40px;line-height:40px; font-style:italic;width: 14%}
.pro311_box3_title p{float: left;width:80%;line-height: 40px;}
.pro311_box3_title p.line15{line-height: 1.5}
.pro311_box3_title p.line2{line-height:1.5;margin-top:-10px;}

@media (max-width:1024px){
	.pro311_box3{padding: 40px 0 20px 0}
	.pro311_box3 h3{font-size:28px;}
	.pro311_box3 ul{width: 96%;padding: 20px 2% 0 2%;}
	.pro311_box3 ul li{width: 100%;float: none;margin-bottom:15px;}
	.pro311_box3_img {display: none;}
	.pro311_box3_title{width: 100%;padding-top: 0}
	.pro311_box3_title span{width:8%;}
	.pro311_box3_title p{}
	.pro311_box3_title p.line15 {line-height:40px;}
}
@media (max-width:414px){
	.pro311_box3_title span{width:18%;}
	.pro311_box3_title p{line-height:28px;}
	.pro311_box3_title p.line15 {line-height:20px;}
}

.pro311_box4{width: 100%;padding: 80px 0;}
.pro311_box4 .container{padding: 0;}
.pro311_box4 h3{color: #434343; font-size:35px; text-align: center; padding-bottom:5px;}
.pro311_box4 .gs{text-align: center; color: #606060; line-height: 28px; font-size: 16px;}
.pro311_box4 ul{ width: 100%; margin: 0 auto;padding-top:30px; }
.pro311_box4 li{ width:22%;text-align: center; float: left; text-align: center; font-size: 16px;color: #434343;background:#f8f8f8;padding: 5% 0;margin-right: 4%;box-shadow: 0px 10px 14px -7px #000000;transition-duration: .5s;-ms-transition-duration: .5s;-moz-transition-duration: .5s; -webkit-transition-duration: .5s;cursor: pointer}
.pro311_box4 li span{text-align: center; font-size:60px;display: block}
.pro311_box4 li p{text-align: center; font-size:14px;color: #ababab;padding: 0 18% }
.pro311_box4 li:last-child{margin-right: 0}
.pro311_box4 li:hover{background-color: #093c8b; color: #FFFFFF}
.pro311_box4 li:hover p{color: #ffffff;}

@media (max-width:1024px){
	.pro311_box4{padding:40px 0;}	
	.pro311_box4 .gs{width:100%;font-size: 14px;line-height: 20px;padding: 0 2%;}	
	.pro311_box4 h3{font-size: 28px;}
}
@media (max-width:414px){
	.pro311_box4 ul{width: 96%;}
	.pro311_box4 li{width: 48%;margin-bottom: 5%;}
	.pro311_box4 li:nth-child(2n){margin-right: 0}
	.pro311_box4 li span{text-align: center; font-size:50px;display: block}
	.pro311_box4 li p{padding: 0 10%;}
}


.add_pro311_box5{background:url(../imagesp/pro311_box5.jpg) no-repeat center center;}
.add_pro311_box5 h3{color: #fff;}
.add_pro311_box5 .gs{color: #fb9530;}
.add_pro311_box5 ul{}
.add_pro311_box5 ul li{background: none;border: 1px solid #fff;cursor:pointer;transition:all .3s;color: #fb9530;}
.add_pro311_box5 ul li span{padding-bottom: 25px;}
.add_pro311_box5 ul li p{color: #fff;padding-top: 25px;}
.add_pro311_box5 ul li.active,.add_pro311_box5 ul li:hover{border:1px solid #fff;box-shadow:0 0 15px #fff;-webkit-transform:translateY(-14px);transform:translateY(-14px);background: none;}

@media (max-width:1024px){
	.add_pro311_box5{background-size: cover}
	
}


.addpro311_box1{}
.addpro311_box1 h3{font-size:30px;}
.addpro311_box1 .plan_banner_tit{font-size: 30px;clear: both}

@media (max-width:800px){
.addpro311_box1 h3{font-size:24px;width:98%;padding:0 1%;line-height:30px;}
.addpro311_box1 .plan_banner_tit{font-size: 24px;line-height:30px;}	
}
@media (max-width: 414px){
.addpro311_box1 h3{font-size:14px;width:98%;padding:0 1%;line-height: 20px;}
.addpro311_box1 .plan_banner_tit{font-size: 14px;line-height: 18px;}	
}



.add_pro313_box1 ul{padding-top:20px}
.pro311_box2  .add_pro313_box1 h3{text-align: left;font-size:28px;font-weight: normal}
.add_pro313_box1 .text ul li{background: url(../imagesp/yes.png) no-repeat left center;width: 50%;float: left;text-indent:30px;line-height:50px;font-size: 18px;padding-bottom: 0;}

@media (max-width: 414px){
	.add_pro313_box1 .text ul li{width: 100%;}
	.add_pro313_box1 .text ul{padding-top: 0}
	.pro311_box2  .add_pro313_box1 h3{font-size: 24px;}
	.add_pro313_box1 .text ul li{line-height: 40px;font-size: 16px;}
}


.add_pro314_box1{}
.add_pro314_box1 .text ul li i{background: url(../imagesp/pro314_box1_icon.png);}
.add_pro314_box1 .img{padding-top: 5%;}
@media (max-width: 414px){
	.pro311_box2 .text ul li i {margin-bottom: 15px;}
	
}



.add_pro314_box4{ width: 100%; padding:80px 0 40px;}
.add_pro314_box4 .container{padding: 0;}
.add_pro314_box4 h3{color: #434343; font-size:35px; text-align: center; padding-bottom:5px;}
.add_pro314_box4 .gs{text-align: center; color: #606060; line-height: 28px; font-size: 16px;}
.add_pro314_box4 .list{ width:100%; margin: 3% 0;}
.add_pro314_box4 .list dl{ float: left; height: 140px; width:23%; padding: 2%; margin: 1%; background:#f8f8f8;box-shadow: 0px 10px 14px -7px #000000; transition-duration: .5s;-ms-transition-duration: .5s;-moz-transition-duration: .5s; -webkit-transition-duration: .5s;cursor: pointer}
.add_pro314_box4 .list dl:nth-child(4n){}
.add_pro314_box4 .list dl:hover{background-color: #093c8b; color: #FFFFFF}
.add_pro314_box4 .list dl dt{ width: 100%; font-size: 16px; color: #333;font-weight: bold}
.add_pro314_box4 .list dl dt span{ color: #ff4229;font-size:25px;}
.add_pro314_box4 .list dl dd{ font-size:14px; color: #999; line-height: 22px; margin-top: 2%;font-weight: normal}
.add_pro314_box4 .list dl:hover dt,.add_pro314_box4 .list dl:hover dd{color: #ffffff;}

@media (max-width: 1024px){
	.add_pro314_box4{padding: 40px 0 20px}
	.add_pro314_box4 h3{font-size: 28px;}
}
@media (max-width: 414px){	
	
	.add_pro314_box4 .list dl{width: 48%;margin-bottom:3%;height: 130px;}
	.add_pro314_box4 .gs{font-size: 14px;line-height: 20px;}
	.add_pro314_box4 .list dl dt{font-size: 14px;}
	.add_pro314_box4 .list dl dt span{font-size: 20px;}
}

@media (max-width:414px){
	.add_pro316_box2 .text ul li:first-child i{margin-bottom:50px;}
}

.pro316_box4{padding:80px 0 100px 0;}
.pro316_box4 h3{color: #434343; font-size:35px; text-align: center; padding-bottom:100px;}
.pro316_box4 .step{background:url(../imagesp/pro316_2.png) center center no-repeat;height:251px;width:1200px;margin:auto;position:relative;    -webkit-transform: translateY(0px);opacity: 1;}
.pro316_box4.show .step{transform:translateY(0px);-webkit-transform:translateY(0px);opacity:1;}
.pro316_box4 .step .item{width:125px;height:125px;text-align:center;position:absolute;}
.pro316_box4 .step .item .h{height:125px;}
.pro316_box4 .step .item .h b{font-size:35px;color:#fff;font-family:Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;display:block;padding-top:15px;}
.pro316_box4 .step .d1{left:15px;top:14px;}
.pro316_box4 .step .d2{left:163px;top:110px;}
.pro316_box4 .step .d3{left:313px;top:14px;}
.pro316_box4 .step .d4{left:463px;top:110px;}
.pro316_box4 .step .d5{left:612px;top:14px;}
.pro316_box4 .step .d6{left:762px;top:110px;}
.pro316_box4 .step .d7{left:911px;top:14px;}
.pro316_box4 .step .d8{left:1060px;top:110px;}
.pro316_box4 .step .even .t{background:url(../imagesp/pro316_3.png) top center no-repeat;padding-top:80px;position:absolute;width:100%;top:100%;left:0;margin-top:-15px;opacity:0;
transform:translateY(20px);-webkit-transform:translateY(20px);
transition:all 0.5s ease-out 0s;-webkit-transition:all 0.5s ease-out 0s;}
.pro316_box4 .step .odd .t{background:url(../imagesp/pro316_3.png) bottom center no-repeat;padding-bottom:80px;position:absolute;width:100%;bottom:100%;left:0;margin-bottom:-15px;opacity:0;
transform:translateY(-20px);-webkit-transform:translateY(-20px);
transition:all 0.5s ease-out 0s;-webkit-transition:all 0.5s ease-out 0s;}
.pro316_box4 .step .d2 .t{transition-delay:0.2s;-webkit-transition-delay:0.2s;}
.pro316_box4 .step .d3 .t{transition-delay:0.4s;-webkit-transition-delay:0.4s;}
.pro316_box4 .step .d4 .t{transition-delay:0.6s;-webkit-transition-delay:0.6s;}
.pro316_box4 .step .d5 .t{transition-delay:0.8s;-webkit-transition-delay:0.8s;}
.pro316_box4 .step .d6 .t{transition-delay:1s;-webkit-transition-delay:1s;}
.pro316_box4 .step .d7 .t{transition-delay:1.2s;-webkit-transition-delay:1.2s;}
.pro316_box4 .step .d8 .t{transition-delay:1.4s;-webkit-transition-delay:1.4s;}
.pro316_box4 .step .t.act{transform:translateY(0px);-webkit-transform:translateY(0px);opacity:1;}
.pro316_box4 .step .t h4{font-size:20px;}
.pro316_box4 .step .t p{font-size:13.5px;line-height:1.2;margin-top:8px;}
.pro316_box4 .pics{margin-top:120px;}
.pro316_box4 .pics .tit{text-align:center;}
.pro316_box4 .pics .tit .h1{font-size:48px;color:#333;}
.pro316_box4 .pics .tit .h2{font-size:30px;text-transform:uppercase;font-family:'Times New Roman';}
.pro316_box4 .pics .list{margin-top:50px;position:relative;height:895px;}
.pro316_box4 .pics .list .item{position:absolute;overflow:hidden;
transition:all 0.3s ease-out 0s;-webkit-transition:all 0.3s ease-out 0s;}
.pro316_box4 .pics .list .item img{transition:all 0.5s ease-out 0s;-webkit-transition:all 0.5s ease-out 0s;}
.pro316_box4 .pics .list .item:hover{box-shadow:0 0 15px rgba(0,0,0,0.5);}
.pro316_box4 .pics .list .item:hover img{transform:scale(1.1);-webkit-transform:scale(1.1);}

@media (max-width:800px){	
	.pro316_box4{padding: 40px 0;}
	.pro316_box4 h3 {font-size: 28px;padding-bottom: 40px;}
	.pro316_box4 .step{background: none;width:98%;height:240px;}
	.pro316_box4 .step .item {width: 100%;text-align: left;clear: both;height: 60px;}
	.pro316_box4 .step .item .h{float: left;height:60px;}
	.pro316_box4 .step .item .h b{font-size:35px;color:#4461a0;font-family:Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;padding-top:15px;}
	.pro316_box4 .step .item .h img{display: none;}
	.pro316_box4 .step .even .t {background: none;top:50%;left:50px;padding-top: 0;}
	.pro316_box4 .step .odd .t {background: none;top:20%;left:50px;padding-top: 0;padding-bottom: 0;}
	.pro316_box4 .step .d1{left:0;top:0;}
	.pro316_box4 .step .d2{left:50%;top:0;}
	.pro316_box4 .step .d3{left:0;top:60px;}
	.pro316_box4 .step .d4{left:50%;top:60px;}
	.pro316_box4 .step .d5{left:0;top:120px;}
	.pro316_box4 .step .d6{left:50%;top:120px;}
	.pro316_box4 .step .d7{left:0;top:180px;}
	.pro316_box4 .step .d8{left:50%;top:180px;}
}
@media (max-width:414px){
	.pro316_box4 .step{width:98%;height:480px;}
	.pro316_box4 .step .d2{left:0;top:60px;}
	.pro316_box4 .step .d3{left:0;top:120px;}
	.pro316_box4 .step .d4{left:0;top:180px;}
	.pro316_box4 .step .d5{left:0;top:240px;}
	.pro316_box4 .step .d6{left:0;top:300px;}
	.pro316_box4 .step .d7{left:0;top:360px;}
	.pro316_box4 .step .d8{left:0;top:420px;}	
}

.pro316_box5{padding: 80px;background:#f8f8f8;}
.pro316_box5 h3{ color: #434343; font-size:35px; text-align: center; padding-bottom:5px;}
.pro316_box5 .gs{text-align: center; color: #606060; line-height: 28px; font-size: 16px;}
.pro316_box5 .main{ text-align:center; position:relative; z-index:2;padding-top:150px;}
.pro316_box5 .pic{ display:inline-block; position:relative;opacity:1; }
.pro316_box5 .pic li{ position:absolute; color:#666; font-size:20px;opacity:1;}
.pro316_box5 .pic .li-1{ left:65px; top:53px; transition-delay:1.3s;}
.pro316_box5 .pic .li-2{ bottom:100%; left:173px; margin-bottom:10px; transition-delay:1.5s;}
.pro316_box5 .pic .li-3{ right:195px; bottom:98%; transition-delay:1.7s;}
.pro316_box5 .pic .li-4{ right:63px; top:15px; transition-delay:1.9s;}

@media (max-width:1024px){
	.pro316_box5{padding:40px 0;}
	.pro316_box5 h3{font-size: 28px;}
	.pro316_box5 .gs{font-size: 14px;padding: 0 2%;line-height: 20px;}
}
@media (max-width:414px){
	.pro316_box5 .main {padding-top: 120px;}
	.pro316_box5 .pic li{font-size: 16px;}
	.pro316_box5 .pic .li-1{left:0;}
	.pro316_box5 .pic .li-2{left:20%;}
	.pro316_box5 .pic .li-3{right: 20%}
	.pro316_box5 .pic .li-4{right: 0}
}

.add_pro317_box2{}
.add_pro317_box2 .img{padding-top:7%;}
.add_pro317_box2 .text{padding-top: 30px}
.add_pro317_box2 .text p{padding-top: 15px;}
.add_pro317_box2 .text ul li{padding-bottom:25px;height:80px;}
.add_pro317_box2 .text ul li i{background: url(../imagesp/pro317_box1_icon.png);}

.add_pro317_box2 .text ul li:nth-child(5) i{background-position: 252px 0 ;}
.add_pro317_box2 .text ul li:nth-child(6) i{background-position: 315px 0 ;}
.add_pro317_box2 .text ul li:nth-child(7) i{background-position: 378px 0 ;}

.add_pro317_box2 .text ul li:nth-child(5):hover i{background-position: 252px 63px;}
.add_pro317_box2 .text ul li:nth-child(6):hover i{background-position: 315px 63px;}
.add_pro317_box2 .text ul li:nth-child(7):hover i{background-position: 378px 63px;}


@media (max-width: 414px){
	.add_pro317_box2 .gs{padding-bottom: 0;}
	.add_pro317_box2 .text ul li {clear: both;height: auto}
	.add_pro317_box2 .text p {padding-top: 0}
}



.add_pro317_box3{padding: 80px;background:#e2e2e2;}
.add_pro317_box3 .container{padding: 0;}
.add_pro317_box3 h3{ color: #434343; font-size:35px; text-align: center; padding-bottom:5px;}
.add_pro317_box3 .gs{text-align: center; color: #606060; line-height: 28px; font-size: 16px;}
.add_pro317_box3 ul{padding-top:50px}
.add_pro317_box3 ul li{float: left;margin-right: 2%;width: 15%;background: #fff;font-size: 18px;display: block;text-align: center;line-height: 200px;transition-duration: .5s;-ms-transition-duration: .5s;-moz-transition-duration: .5s; -webkit-transition-duration: .5s; }
.add_pro317_box3 ul li:last-child{margin-right: 0;}
.add_pro317_box3 ul li:hover{color: #fff;background: #033e8c;cursor: pointer}


@media (max-width: 800px){
	.add_pro317_box3{padding: 40px 0 20px;}
	.add_pro317_box3 h3{font-size: 28px;}
	.add_pro317_box3 .gs{font-size: 14px;padding: 0 2%;}
	.add_pro317_box3 ul{padding:20px 2% 0;}
	.add_pro317_box3 ul li{width:32%; height: 127px;margin-bottom:20px;line-height: 127px;font-size: 16px; }
	.add_pro317_box3 ul li:nth-child(3n){margin-right: 0}
}

.addpro318_box1 .img{padding-top:7%;}
.addpro318_box1 .text ul li i{margin-bottom:40px;background: url(../imagesp/pro318_box1_icon.png);}
@media (max-width: 1024px){
	.addpro318_box1{padding-bottom: 0}
	.addpro318_box1 .img{padding-top:0;}
	.addpro318_box1 strong{line-height: 20px;}
	
}


.add_pro318_box4 .text ul li i{margin-bottom:40px;background: url(../imagesp/pro318_box3_icon.png);}

.add_pro331_box2 li {width: 18.4%;}
.add_pro331_box2 li p {
    text-align: center;    
}
@media (max-width: 1024px){
	.add_pro331_box2 li {width:48%;}
}

.add_pro331_box3 ul li{}
.add_pro331_box3 ul li{width: 23.5%;margin-bottom:2%}
.add_pro331_box3 ul li:nth-child(4n){margin-right: 0;}
.add_pro331_box3 ul li:nth-child(4n+1){margin-left: 0;}

@media (max-width: 1024px){
	.add_pro331_box3 ul li{width:48%;}
	.add_pro331_box3 ul li:nth-child(2n+1){margin-left:1%;}
}


.add_pro322_box3{}
.add_pro322_box3 .card-box>ul>li{width:408px;}
.add_pro322_box3 .card-box ul li:nth-child(1) {
    background: url(../imagesp/pro322_box2_01.png) center 55px no-repeat #fff;
}
.add_pro322_box3 .card-box ul li:nth-child(2) {
    background: url("../imagesp/pro322_box2_02.png") center 55px no-repeat #fff;
}
.add_pro322_box3 .card-box ul li:nth-child(3) {
    background: url("../imagesp/pro322_box2_03.png") center 55px no-repeat #fff;
}

.add_pro322_box3 .card-box>ul>li:hover{
    background-color: #1C6AC3;cursor: pointer;
}
.add_pro322_box3 .card-box>ul>li:hover h3,
.add_pro322_box3 .card-box>ul>li:hover p,
.add_pro322_box3 .card-box>ul>li:hover .lists{
    color: #ffffff;
}
@media (max-width: 1024px){
	.add_pro322_box3 .card-box>ul>li{width:29%;}
	.add_pro322_box3 .card-box>ul>li:nth-child(3n) {margin-left:6%;}
}
@media (max-width: 800px){
	.add_pro322_box3 .card-box>ul>li{width:47%;}
	.add_pro322_box3 .card-box>ul>li:nth-child(3n) {margin-left:0;}
}
@media (max-width:414px){
	.add_pro322_box3 .card-box>ul>li{width:100%;clear: both;height: auto;padding-bottom: 30px;}
	.add_pro322_box3 .card-box>ul>li:nth-child(3n) {margin-left:0;}
}

.pro323_box2{padding: 80px 0;width: 100%}
.pro323_box2 h3{ color: #434343; font-size:35px; text-align: center; padding-bottom:5px;}
.pro323_box2 .gs{text-align: center; color: #606060; line-height: 28px; font-size: 16px;}
.pro323_box2 .img{padding:50px 0;text-align: center}
.pro323_box2 ul{width: 70%;margin: 0 auto;font-size: 16px;line-height: 2; }
.pro323_box2 ul li{width:55%;float: left;margin-right:7%;}
.pro323_box2 ul li:last-child{width:38%;margin-right: 0; }

@media (max-width: 1024px) {
	.pro323_box2{padding:40px 0;}
	.pro323_box2 h3{font-size: 28px;}
	.pro323_box2 .gs{font-size: 14px;padding: 0 2%;}
	.pro323_box2 .img{padding:20px 0;}
	.pro323_box2 ul {width: 96%;font-size: 14px;}
	.pro323_box2 ul li{width:100%;float:none;margin-right: 0}
	.pro323_box2 ul li:last-child{width:100%;margin-right: 0; }
}


.add_pro323_box3 {background: #f8f8f8}
.add_pro323_box3 h5{line-height: 50px;font-size:30px;font-weight: normal;padding-bottom:20px;padding-left:78px;color: #434343}
.add_pro323_box3 .text{padding-top: 30px;}
.add_pro323_box3 .img{padding-top:8%;}

.add_pro323_box3 .text ul li i{background: url(../imagesp/pro323_box2.png);}
.add_pro323_box3 .text ul li:nth-child(5) i{background-position: 252px 0 ;}
.add_pro323_box3 .text ul li:nth-child(5):hover i{background-position: 252px 63px;}

@media (max-width: 1024px) {
	.add_pro323_box3 .text{padding-top: 0;}
	.add_pro323_box3 .img{padding-top:0;}
}

.add_support51_box2 {}
.add_support51_box2  ul{margin-top:50px;}
.add_support51_box2  li{margin-right:4%;width: 22%;background:#f8f8f8;min-height: 290px;padding-top:4%;box-shadow: 0px 10px 14px -7px #000000;transition-duration: .5s;-ms-transition-duration: .5s;-moz-transition-duration: .5s; -webkit-transition-duration: .5s;padding-bottom: 0 }
.add_support51_box2  li:hover{color: #fff;background: #033e8c;cursor: pointer}
.add_support51_box2  li:last-child{margin-right: 0}
.add_support51_box2  li span{font-size:35px;color: #032554;}
.add_support51_box2  li:hover span,.add_support51_box2  li:hover p{color: #ffffff;}


.support51_box1{ width:100%;padding-bottom: 80px;}
.support51_box1_l{width:60%; float: right}
.support51_box1 h3{ color: #434343; float:left; font-size:32px; font-weight: normal; border-bottom:2px solid #093c8b; padding-bottom:30px;}
.support51_box1_c{ line-height: 2;padding-top:30px;}
.support51_box1_r{width:40%; float: left; text-align: center}

@media (max-width: 1024px) {
.support51_box1{ padding-bottom:40px;}
.support51_box1_l,.support51_box1_r{width:100%; float: none}	
.support51_box1 h3{ color: #434343; float:none; font-size:20px; font-weight: normal; border-bottom:2px solid #093c8b; padding-bottom:15px;}	
	
	
.add_support51_box2  ul{margin-top:40px;}
.add_support51_box2  li{margin-right:4%;width:48%;min-height:220px;padding-top:4%;padding-bottom: 0;margin-bottom: 5% }
.add_support51_box2  li:nth-child(2n){margin-right: 0}
.add_support51_box2  li span{font-size:30px;color: #032554;}
}

@media (max-width: 414px) {
.add_support51_box2  ul{margin-top:0;}
.add_support51_box2  li{margin-right:0;width:100%;min-height:180px;padding-bottom: 4%;}	
.add_support51_box2  li p{padding: 0 15%}	
}

.support51_box3{padding: 80px 0 0;}
.support51_box3 h3{ color: #434343; font-size:35px; text-align: center; padding-bottom:5px;}
.support51_box3 .gs{text-align: center; color: #606060; line-height: 28px; font-size: 16px;}
.support51_box3 .show_case_img_box ul li{margin: 0 2% 0 0;width: 23.5%;text-align: center;background:#f8f8f8}
.support51_box3 .show_case_img_box ul li:last-child{margin-right: 0;}
.support51_box3 .show_case_img_box ul li:hover{background:#fa9530;}
@media (max-width: 1024px) {
	.support51_box3{padding: 40px 0 0;}
	.support51_box3 h3{font-size: 28px;}
	.support51_box3 .gs{font-size: 14px;padding: 0 2%;line-height: 20px;}
}
@media (max-width: 414px) {
	.support51_box3 .show_case_img_box ul li{margin: 0 2% 5%;width: 46%;}	
	support51_box3 .show_case_img_box ul li:nth-child(2n){margin-right: 0;}
}

.addpro341_box1{text-align: center;padding:0 10%;color: #fff;font-size: 28px;line-height: 2;font-weight: bold}

.pro341_box2{padding: 80px 0;}
.pro341_box2 .container{padding: 0;}
.pro341_box2 h3{ color: #434343; font-size:35px; text-align: center; padding-bottom:5px;}
.pro341_box2_l{width:60%;float: left;padding-top: 30px;}

.pro341_box2_r{text-align: center;width:35%;float: right;padding-top: 30px;}
.pro341_box2_l p{text-indent: 2em;font-size: 14px;line-height: 2;padding-bottom: 15px;}
.pro341_box2_l span{padding-top:50px;font-size: 16px;color: #41a0fe;line-height:1.8;}

@media (max-width: 1024px) {
	.pro341_box2{padding: 40px 0;}
	.pro341_box2 h3{font-size: 28px;}
	.pro341_box2_l{width:96%;float: none;padding: 20px 2%;}
	.pro341_box2_r{width:100%;float: none;padding-top: 0;}
}

.add_pro341_box3{background: url(../imagesp/service_bg2.jpg) no-repeat center top;} 
.add_pro341_box3 .list dl{width:18%;padding:2% 1%;height:200px;} 

@media (max-width:1024px) {
	.add_pro341_box3 .list dl{width:48%;padding:2% 1%;} 
}

.add_pro341_box4{}
.add_pro341_box4 .text{width: 62%;}
.add_pro341_box4 .text ul li{padding-bottom:25px;}
.add_pro341_box4 .text ul li i{background: url(../imagesp/pro341_box3_icon.png);}
.add_pro341_box4 .img{width:35%;padding-top:5%;}
.add_pro341_box4 .text ul li:nth-child(5) i{background-position: 252px 0 ;}
.add_pro341_box4 .text ul li:nth-child(5):hover i{background-position: 252px 63px;}

@media (max-width: 1024px) {
	.add_pro341_box4 .text{width:100%;float: none;padding-top: 20px;}
	.add_pro341_box4 .img{width:100%;padding-top:0;}
}

.add_pro331_box1{}
.add_pro331_box1 .text ul li i{margin-bottom:50px;background: url(../imagesp/pro331_box1_icon.png);}
.add_pro331_box1 .img{padding-top: 8%}

.add_pro331_box5{background:#f8f8f8;}
.add_pro331_box5 ul li span{font-size: 14px;padding-top: 10px;font-family: "微软雅黑"}


.pro332_box3{padding: 80px 0;background: url(../imagesp/about_bg2.jpg) no-repeat center top;background-size: cover;}
.pro332_box3 .container{padding: 0;}
.pro332_box3 h3{ color: #434343; font-size:35px; text-align: center; padding-bottom:5px;}
.pro332_box3 .gs{text-align: center; color: #606060; line-height: 28px; font-size: 16px;}
.pro332_box3 ul{padding-top: 50px;}
.pro332_box3 ul li{ float: left;width:18.4%;margin-right: 2%;}
.pro332_box3 ul li:last-child{margin-right: 0;}
@media (max-width:1024px) {
	.pro332_box3{padding: 40px 0;}
	.pro332_box3 h3{font-size: 28px;}
	.pro332_box3 .gs{font-size: 14px;}
	.pro332_box3 ul{padding-top: 30px;}
}
@media (max-width:414px) {
	.pro332_box3 ul li{ float: none;width:96%;margin:0 2% 20px 2%;text-align: center}
	.pro332_box3 ul li:last-child{display: none}
}

.add_pro332_box4{}
.add_pro332_box4 li{width:30% ;margin-right:5%;margin-left: 0}
.add_pro332_box4 li:last-child{margin-right: 0;}
.add_pro332_box4 li p{text-align: center}
.add_pro332_box4 li span{padding-top: 80px;}
@media (max-width:1024px) {
	.add_pro332_box4 li{margin-right: 4%;}
	.add_pro332_box4 li span{padding-top:40px;}
}
@media (max-width:414px) {
	.add_pro332_box4 li{width:98% ;margin-right:0;margin-left:1%}
	.add_pro332_box4 li span{padding-top:40px;}
}

.add_pro333_box1 .img{padding-top:10%}
.add_pro333_box1 .text ul li i{background: url(../imagesp/pro333_box1_icon.png);}
.add_pro333_box1 .text ul li:nth-child(5) i{background-position: 252px 0 ;}
.add_pro333_box1 .text ul li:nth-child(5):hover i{background-position: 252px 63px;}

.add_pro342_box1 .text ul li i{background: url(../imagesp/pro342_box1_icon.png);}
.add_pro342_box1 .text ul li:first-child i{margin-bottom:80px;}
.add_pro342_box1 .img{padding-top:5%}
.add_pro342_box3 li{padding-top:3%}
.add_pro342_box3 li p{text-align: center}
.add_pro342_box3 img{margin: 0 auto;margin-bottom: 20px;display: block;}

@media (max-width:414px) {
	.add_pro342_box1 .text ul li:first-child i{margin-bottom:120px;}
	.add_pro342_box3 li{padding-top:4%}
}



.add_pro343_box1 .text ul li i{background: url(../imagesp/pro343_box1_icon.png);}
.add_pro343_box1 .img{padding-top:7%}
.add_pro343_box3 li {height: 400px}
@media (max-width:414px) {
	.add_pro343_box3 li{padding-top:8%}
}

.about_wenhua {
  padding-bottom:50px;
}
.about_wenhua ul {
  width: 100%;
  margin: 50px auto 0;
}
.about_wenhua ul li {
  position: relative;
  float: left;
  width: 27.5%;
  margin-right: 8.75%;
}
.about_wenhua ul li:last-child {
  margin-right: 0;
}
.about_wenhua ul li .img {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.about_wenhua ul li .img em {
  border-radius: 50%;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.about_wenhua ul li .img span {
  position: absolute;
  right: 15%;
  top: 18%;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  font-family: arial;
}
.about_wenhua ul li .img .text {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 50px;
  margin-top: -25px;
  background: url(../imagesp/about63_box1_bg.png) no-repeat center center / cover;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.about_wenhua ul li .img img {
  width: 100%;
}

.about63_box2 {padding-top: 30px;}
.about63_box2 h3{color: #555555; font-size:28px; text-align: center; padding-bottom:5px;font-weight: normal}
.about63_box2 ul{padding-top: 50px;}
.about63_box2 ul li{width:16%;float: left;margin-right:5%;line-height:204px;background: #4064ae;color: #fff;font-size: 30px;text-align: center;box-shadow: 0px 10px 14px -7px #276873;}
.about63_box2 ul li:last-child{margin-right: 0;background: #ff4d4d}
.about63_box2 ul li:nth-child(2){background: #3daf35}
.about63_box2 ul li:nth-child(3){background: #f5c519}
.about63_box2 ul li:nth-child(4){background: #52dfe4}

@media (max-width: 1024px) {
	
	
}
@media (max-width: 991px) {
  .about_wenhua {
    padding:3% 0;
  }
  .about_wenhua ul {
    margin-top: 7%;
  }
	.about63_box2 {padding-top: 6%;}
	.about63_box2 ul{padding-top: 6%;}
	.about63_box2 ul li{width: 30%;margin-bottom:5%;}
	.about63_box2 ul li:nth-child(3n){margin-right: 0}
}
@media (max-width: 768px) {
  .about_wenhua ul li {
    width: 30.5%;
    margin-right: 4.25%;
  }
}
@media (max-width: 640px) {
  .about_wenhua ul {
    width: 100%;
  }
  .about_wenhua ul li {
    width: 60%;
    position: relative;
    left: 50%;
    margin-left: -30%;
    margin-right: 0;
    float: none;
    margin-bottom: 6%;
  }
}
@media (max-width: 414px) {
  .about_wenhua ul li {
    width: 65%;
  }
  .about_wenhua ul li .img span {
    font-size:20px;
  }
	.about63_box2 h3{font-size: 20px;}
	.about63_box2 ul li{line-height: 80px;font-size:16px;}
}

.contactus{width: 80%;margin: 0 auto; background: url(../imagesp/contact_bg1.jpg) no-repeat right 95%;}
.contactus_l{width:50%;float: left;}
.contactus_r{width:50%;float: right;}
.contactus ul{width: 100%;padding-top: 30px;clear: both}
.contactus ul li{width:100%;margin-bottom: 5%;}

@media (max-width: 1024px) {
	.contactus{width:100%;margin: 0 auto;}
}
@media (max-width:414px) {
	.contactus{background: none;}
	.contactus_l{width:100%;float: none;}
	.contactus_r{width:100%;float: none;margin-top: 5%}
}

.page404{padding:50px 0;text-align: center}
.page404_1{font-size:300px;color: #ff0000;font-family:'微软雅黑';font-weight: bolder;}
.page404_2{font-size:42px;color: #000000;}
@media (max-width: 768px) {
	.page404_1{font-size:80px;}
	.page404_2{font-size:50px;}	
}
@media (max-width: 414px) {
	.page404_1{font-size:50px;}
	.page404_2{font-size:30px;}	
}
