/*
    ----------------------------------- 
            方法变量    
                     
    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;
}

/*
	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 {
  margin-right: auto;
  margin-left: auto;
  max-width: 68.314%;
  width: 100%;
}

img {
  max-width: 100%;
}

.problem_banner {
  height: 700px;
  background: url(../images/problem_banner.jpg) no-repeat center center / cover;
  padding-top: 245px;
}

.problem_banner .box {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.problem_banner .box h3 {
  text-align: center;
  color: #ffffff;
  font-size: 42px;
  font-weight: normal;
}

.problem_banner .box .search {
  margin-top: 42px;
  background: #fcfcfc;
  height: 62px;
  border-radius: 5px;
}

.problem_banner .box .search .text {
  float: left;
  width: 80%;
  line-height: 62px;
  background: none;
  border: none;
  font-size: 16px;
  padding: 0 25px;
}

.problem_banner .box .search input::-webkit-input-placeholder {
  color: #c7c7c7;
}

.problem_banner .box .search .btn {
  float: right;
  width: 100px;
  height: 62px;
  background: url(../images/btn2.png) no-repeat center center / cover;
  border: none;
}

.problem_banner .box p {
  margin-top: 15px;
  color: #fefefe;
  font-size: 12px;
}

.problem_banner .box p a {
  color: #fefefe;
}

/**内容**/
.problem_box .top {
  background: #fcfcfc;
  border-bottom: 1px solid #f7f7f7;
  padding: 35px 0;
}

.problem_box .top .tit {
  position: relative;
}

.problem_box .top .tit h3 {
  color: #666666;
  font-size: 24px;
  font-weight: normal;
}

.problem_box .top .tit p {
  margin-top: 10px;
  color: #666666;
  font-size: 16px;
}

.problem_box .top .tit p span {
  color: #194981;
}

.problem_box .top .tit i {
  position: absolute;
  right: 0;
  top: -2px;
  display: block;
  width: 60px;
  line-height: 0;
}

.problem_box .problem_list {
  padding: 55px 0 70px;
}

.problem_box .problem_list h3 {
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
}

.problem_box .problem_list ol {
  margin-top: 50px;
}

.problem_box .problem_list ol li {
  float: left;
  background: #f7f7f7;
  width: 32%;
  cursor: pointer;
  margin-right: 2%;
  border: 1px solid #f1f1f1;
  position: relative;
}

.problem_box .problem_list ol li:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 25px;
  margin-left: -12.5px;
  height: 13px;
  background: url(../images/jt2.png) no-repeat center center / cover;
}

.problem_box .problem_list ol li img {
  width: 100%;
}

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

.problem_box .problem_list ol li .img {
  line-height: 0;
  overflow: hidden;
}

.problem_box .problem_list ol li .text {
  border-top: 1px solid #f1f1f1;
  line-height: 75px;
  color: #666666;
  font-size: 18px;
  padding: 0 40px;
  position: relative;
}

.problem_box .problem_list ol li .text:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 30px;
  width: 15px;
  height: 15px;

  background: url(../images/pic01.png) no-repeat center center / cover;
}

.problem_box .problem_list ol li .text p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.problem_box .problem_list ol li.cur,
.problem_box .problem_list ol li:hover {
  background: #00327d;
  border-bottom-color: #00327d;
}

.problem_box .problem_list ol li.cur:before,
.problem_box .problem_list ol li:hover:before {
  display: block;
}

.problem_box .problem_list ol li.cur .text,
.problem_box .problem_list ol li:hover .text {
  border-top: #00327d;
  color: #fff;
}

.problem_box .problem_list ol li.cur .text:before,
.problem_box .problem_list ol li:hover .text:before {
  background-image: url(../images/pic2.png);
}

.problem_box .problem_list .problem_hide {
  margin-top: 20px;
}

.problem_box .problem_list .problem_hide ul {
  display: none;
}

.problem_box .problem_list .problem_hide ul li {
  background: #fcfcfc;
  float: left;
  width: 23.5%;
  margin-top: 2%;
  margin-right: 2%;
  text-align: center;
  border: 1px solid #f1f1f1;
}

.problem_box .problem_list .problem_hide ul li:nth-child(4n) {
  margin-right: 0;
}

.problem_box .problem_list .problem_hide ul li .img {
  line-height: 0;
  overflow: hidden;
  text-align: center;
}

.problem_box .problem_list .problem_hide ul li .text {
  padding: 20px 10px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}

.problem_column {
  border-top: 1px solid #f7f7f7;
  background: #fcfcfc;
  padding: 100px 0;
}

.problem_column ol li {
  float: left;
  width: 26%;
  padding: 0 28px;
  border-right: 1px dotted #d6d6d6;
}

.problem_column ol li:first-child {
  padding-left: 0;
}

.problem_column ol li:last-child {
  border-right: none;
  padding-right: 0;
}

.problem_column ol li:first-child,
.problem_column ol li:last-child {
  width: 24%;
}

.problem_column ol li .icon {
  height: 53px;
  line-height: 0;
}

.problem_column ol li .text {
  padding-top: 25px;
}

.problem_column ol li .text h3 {
  color: #666666;
  font-size: 15px;
}

.problem_column ol li .text p {
  margin-top: 10px;
  color: #999999;
  font-size: 13px;
  line-height: 18px;
}

.nybanner2 {
  height: 500px;
  background: url(../images/nybanner2.jpg) no-repeat center right / cover;
}

.nybanner2 .box {
  padding-top: 176px;
}

.nybanner2 .box h3 {
  color: #333333;
  font-size: 36px;
  font-weight: normal;
}

.nybanner2 .box p {
  margin-top: 18px;
  color: #6e6e6e;
  font-size: 30px;
}

.nybanner3 {
  height: 200px;

  background: url(../images/nybanner3.jpg) no-repeat center right / cover;
}

.nybanner3 .box {
  padding-top: 58px;
  /*  padding-top: 176px; */
}

.nybanner3 .box p {
  margin-top: 10px;
}

.nybanner4 {
  /* height: 500px; */
  /* background: url(../images/nybanner4.jpg) no-repeat center center / cover; */
  /* padding-top: 145px; */
}

.nybanner4 .box {
  /* max-width: 900px; */
  width: 100%;
  margin: 0 auto;
}

.nybanner4 .box h3 {
  color: #fff;
  /* font-size: 36px; */
}

.nybanner4 .box h4 {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-size: 30px;
  font-weight: lighter;
}

.nybanner4 .box .search {
  /* margin: 50px auto 0; */
  background: #fcfcfc;
  max-width: 760px;
  width: 100%;
}

.problem_box .top .tit2 h3 {
  font-size: 30px;
  color: #333333;
}

.problem_list2 {
  padding: 50px 0 70px;
}

.problem_list2 ol li {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}

.problem_list2 ol li:last-child {
  margin-bottom: 0;
}

.problem_list2 ol li .bt {
  border: 1px solid #efefef;
  border-radius: 5px;
  line-height: 70px;
  color: #666666;
  font-size: 18px;
  padding: 0 40px;
  cursor: pointer;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.problem_list2 ol li .bt:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -4.5px;
  width: 15px;
  height: 9px;
  background: url(../images/jt3.png) no-repeat center center / cover;
}

.problem_list2 ol li ul.text {
  display: none;
  margin-left: 40px;
}

.problem_list2 ol li ul.text li {
  margin-top: 20px;
  margin-bottom: 0;
  float: left;
  width: 100%;
  border: 1px solid #efefef;
  border-radius: 5px;
  line-height: 70px;
  background: #fcfcfc;
  font-size: 18px;
  position: relative;
}

.problem_list2 ol li ul.text li:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -6px;
  width: 16px;
  height: 12px;
  background: url(../images/jt4.png) no-repeat center center / cover;
}

.problem_list2 ol li ul.text li a {
  display: block;
  color: #666666;
  padding: 0 40px;
}

.problem_box2 ol li {
  float: left;
  width: 100%;
  padding: 60px 60px 60px 0;
  border-bottom: 1px solid #e6e6e6;
}

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

.problem_box2 ol .nopic .text {
  width: 100%;
}

.problem_box2 ol li .text {
  padding-top: 45px;
  float: left;
  /* width: 62%; */
  width: 50%;
  color: #666666;
  font-size: 18px;
  line-height: 36px;
}

/* .problem_box2 ol li .text p span{
	font-size: 16px;
} */

.problem_box2 ol li .img {
  float: right;
  max-width: 266px;
  line-height: 0;
}

ol.olShow {
  padding: 50px 0 70px;
}

ol.olShow li {
  float: left;
  width: 100%;
  border: 1px solid #efefef;
  border-radius: 5px;
  line-height: 70px;
  color: #666666;
  font-size: 18px;
  padding: 0 40px;
  cursor: pointer;
  margin-bottom: 20px;
}

ol.olShow li:last-child {
  margin-bottom: 0;
}

body.hideBody {
  overflow-x: hidden;
  overflow-y: hidden;
}

.pop_hide {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: none;
  background: url(../images/bg.png);
}

.pop_hide .box {
  display: none;
  width: 695px;
  margin: 0 auto;
  background: #fff;
  border-radius: 3px;
  padding: 45px 70px 40px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.pop_hide .box span.guanbi {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  cursor: pointer;
}

.pop_hide .box h3 {
  text-align: center;
  color: #333333;
  font-size: 36px;
  font-weight: normal;
}

.pop_hide .box .icon {
  margin-top: 35px;
  text-align: center;
}

.pop_hide .box .icon span {
  display: inline-block;
  width: 38px;
  height: 37px;
  margin: 0 20px;
  background: url(../images/star.png) no-repeat center center / cover;
}

.pop_hide .box .icon span.cur {
  background-image: url(../images/Hstar.png);
}

.pop_hide .box .t {
  margin-top: 8px;
  text-align: center;
  color: #666666;
  font-size: 24px;
}

.pop_hide .box .t_jieshao {
  font-size: 14px;
  color: #666666;
  text-align: center;
  margin: 10px 0;
}

.pop_hide .box ol li {
  float: left;
  width: 50%;
  text-align: center;
}

.pop_hide .box ol li .icon {
  height: 46px;
  overflow: hidden;
}

.pop_hide .box ol li .text {
  margin-top: 20px;
}

.pop_hide .box ol li .text p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 10px;
}

.pop_hide .box ol li .text a {
  color: #666666;
  font-size: 14px;
}

.pop_hide .box a.more {
  width: 175px;
  height: 46px;
  background: #666666;
  text-align: center;
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 46px;
  margin: 50px auto 0;
  border-radius: 3px;
}

.problem_list3 ol li {
  float: left;
  width: 100%;
  padding: 100px 0;
  border-bottom: 1px solid #f2f2f2;
}

.problem_list3 ol li .left {
  float: left;
  width: 58%;
}

.problem_list3 ol li .left h3 {
  color: #333333;
  font-size: 20px;
}

.problem_list3 ol li .left ul.text {
  margin-top: 45px;
}

.problem_list3 ol li .left ul.text li {
  margin-top: 20px;
  margin-bottom: 0;
  float: left;
  width: 100%;
  padding: 0;
  border: 1px solid #efefef;
  border-radius: 5px;
  line-height: 70px;
  background: #fcfcfc;
  font-size: 18px;
  position: relative;
}

.problem_list3 ol li .left ul.text li:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -6px;
  width: 16px;
  height: 12px;
  background: url(../images/jt4.png) no-repeat center center / cover;
}

.problem_list3 ol li .left ul.text li a {
  display: block;
  color: #666666;
  padding: 0 30px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.problem_list3 ol li .left ul.text li:first-child {
  margin-top: 0;
}

.problem_list3 ol li .img {
  float: right;
  width: 37%;
  line-height: 0;
}

.mobile_box {
  display: none;
  padding: 40px 0 50px;
}

.mobile_box h3 {
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
}

.mobile_box .info_list {
  margin-top: 30px;
}

.mobile_box .info_list ul li {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}

.mobile_box .info_list ul li:last-child {
  margin-bottom: 0;
}

.mobile_box .info_list ul li .box {
  width: 100%;
  background: #f7f7f7;
  cursor: pointer;
  border: 1px solid #f1f1f1;
  position: relative;
}

.mobile_box .info_list ul li .box:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 25px;
  margin-left: -12.5px;
  height: 13px;
  background: url(../images/jt2.png) no-repeat center center / cover;
}

.mobile_box .info_list ul li .box .img {
  line-height: 0;
}

.mobile_box .info_list ul li .box .img img {
  width: 100%;
}

.mobile_box .info_list ul li .box .text {
  border-top: 1px solid #f1f1f1;
  line-height: 75px;
  color: #666666;
  font-size: 18px;
  padding: 0 15px;
  position: relative;
}

.mobile_box .info_list ul li .box .text:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 30px;
  width: 15px;
  height: 15px;
  background: url(../images/pic1.png) no-repeat center center / cover;
}

.mobile_box .info_list ul li .qh_box {
  display: none;
  margin-top: 10px;
}

.mobile_box .info_list ul li .qh_box ol li {
  width: 49%;
  float: left;
  background: #fcfcfc;
  text-align: center;
  margin-top: 2%;
  margin-bottom: 0;
  border: 1px solid #f1f1f1;
}

.mobile_box .info_list ul li .qh_box ol li:nth-child(2n) {
  float: right;
}

.mobile_box .info_list ul li .qh_box ol li .img {
  line-height: 0;
  overflow: hidden;
  text-align: center;
}

.mobile_box .info_list ul li .qh_box ol li .img img {
  width: 100%;
}

.mobile_box .info_list ul li .qh_box ol li .t {
  padding: 20px 10px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}

.mobile_box .info_list ul li.cur .box {
  background: #00327d;
  border-bottom-color: #00327d;
}

.mobile_box .info_list ul li.cur .box:before {
  display: block;
}

.mobile_box .info_list ul li.cur .box .text {
  color: #fff;
}

.mobile_box .info_list ul li.cur .box .text:before {
  background-image: url(../images/pic2.png);
}

.problem_list4 {
  padding: 50px 0;
}

.problem_list4 ol li {
  float: left;
  background: #fcfcfc;
  border: 1px solid #efefef;
  margin-right: 2%;
  padding: 30px 0;
  width: 23.5%;
}

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

.problem_list4 ol li .bt {
  color: #333333;
  font-size: 24px;
  text-align: center;
  line-height: 30px;
  margin-bottom: 30px;
}

.problem_list4 ol li .img {
  line-height: 0;
  text-align: center;
}

.problem_list4 ol li .text {
  padding: 20px 30px 0;
}

.problem_list4 ol li .text h3 {
  color: #333333;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 5px;
}

.problem_list4 ol li .text p {
  color: #333333;
  font-size: 14px;
  line-height: 16px;
}

.problem_list4 .tables {
  margin-top: 30px;
}

.problem_list4 .tables table {
  width: 100%;
}

.problem_list4 .tables table tr th {
  background: #00327d;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  padding: 15px;
}

.problem_list4 .tables table tr td {
  padding: 20px 15px;
  text-align: center;
  color: #333333;
  font-size: 20px;
}

.problem_list4 .tables table tr:nth-child(2n-1) {
  background: #f5f5f5;
}

.problem_list4 .tables .bt {
  margin-top: 30px;
}

.problem_list4 .tables .bt span {
  display: block;
  float: left;
  font-size: 20px;
  margin-right: 26px;
}

#right {
  display: inline-block;
  float: right;
  width: 48.5%;

}

#right ul {
  width: 100%;
}

#right ul li {
  width: 48%;
  border: none;
  padding: 0;
  /* margin-right: 0.5%; */
  max-width: 280px;
}

/* #right ul li:last-child{
	margin-right: 0;
}
 */
/**2019-3-29**/
.about_banner {
  height: 46.9vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding-top: 300px;
  color: #fff;
}

.about_banner h3 {
  font-size: 70px;
  font-weight: normal;
}

.about_banner p {
  font-size: 42px;
}

.about_banner a {
  margin-top: 170px;
  display: inline-block;
  background: #00327d;
  line-height: 58px;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 45px;
  border-radius: 50px;
  transition: all .5s;
}

.about_banner a i {
  background: url(../images/about_banner_icon.png) no-repeat center center / cover;
  width: 14px;
  height: 9px;
  display: inline-block;
  margin-left: 10px;
  position: relative;
  top: -2px;
  transition: all .5s;
}

.about_banner a:hover {
  background: #1358CA;
}

/*.about_banner a:hover i {
  background-image: url(../images/about_banner_icon2.png);
}*/


.Ksupport_banner {
  /* height: 40.2vw; */
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding-top: 245px;
  color: #fff;
  background-image: url(/templates/default/images/Ksupport_banner.jpg) no-repeat center center/cover;
}

.Ksupport_banner .box .search input::-webkit-input-placeholder {
  color: #c7c7c7;
}

.Ksupport_banner h3 {
  font-size: 50px;
  font-weight: normal;
}

.Ksupport_banner p {
  font-size: 24px;
}

.Ksupport_banner2 .text {
  margin-top: 10px;
  font-size: 18px;
  line-height: 28px;
  max-width: 472px;
}

.product_series_banner .text {
  padding-left: 53.2%;
}

.product_ifloor_banner .text {
  /* padding-left: 56%; */
}

.banner_pos_0 .text h3 {
  text-align: left;
}

.banner_pos_0 .text,
..banner_pos_0 {
  text-align: left;
}

.banner_pos_1 .text {
  text-align: left;
  /* padding-left: 53.2%; */
}

.banner_pos_2 .text,
.banner_pos_2 {
  text-align: center;
}

.banner_pos_1 .text_1 {
  text-align: left;
  padding-left: 53.2%;
}

.banner .box {
  position: relative;
}

.banner .box .text {
  /* position: absolute;
  right: 0;
  top: 35%;
  width: 45%; */
  position: absolute;
  right: 0;
  top: 57%;
  width: 45%;
  left: 23.5%;
}

.banner .box .text h3 {
  color: #000000;
  font-size: 122px;
  font-weight: lighter;
}

.banner .box .text h4 {
  color: #000000;
  font-size: 66px;
  font-weight: normal;
  text-transform: capitalize;
}

.banner .box .text a.more {
  margin-top: 80px;
  display: inline-block;
  background: #194981;
  line-height: 50px;
  padding: 0 35px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 16px;
}

.banner .box .text a.more i {
  display: inline-block;
  background: url(../images/banner_icon1.png) no-repeat center center / cover;
  width: 29px;
  height: 7px;
  margin-left: 10px;
  position: relative;
  top: -2px;
}

.banner .box .text a.more:hover {
  background: #1358CA;
}

/**2019-4-1**/
.fzlc_box {
  margin: 50px 14.9% 0;
  position: relative;
}

.fzlc_box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 51.1%;
  width: 100%;
  height: 2px;
  background: #cccfd2;
}

.fzlc_box .box {
  margin: 0 6%;
}

.fzlc_box .box .img {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.fzlc_box .box .img img {
  width: 100%;
  transition: all 1.2s;
}

.fzlc_box .box .text {
  margin-top: 25px;
  height: 205px;
  border-left: 1px solid #9ba0a6;
  position: relative;
  transition: all 1.2s;
}

.fzlc_box .box .text:before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0;
  width: 8px;
  height: 8px;
  background: #9ba0a6;
  border-radius: 50px;
  transition: all 1.2s;
}

.fzlc_box .box .text .t {
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
  padding-left: 20px;
}

.fzlc_box .box .text h3 {
  color: #333333;
  font-size: 28px;
  transition: all 1.2s;
}

.fzlc_box .box .text .t .d {
  color: #666666;
  font-size: 15px;
  line-height: 24px;
  max-height: 144px;
  overflow: hidden;
}

.fzlc_box .box:hover .img img {
  transform: scale(1.2);
}

.fzlc_box .box:hover .text {
  border-left-color: #00327d;
}

.fzlc_box .box:hover .text:before {
  background: #00327d;
}

.fzlc_box .box:hover .text h3 {
  color: #00327d;
}

.fzlc_box .slick-prev,
.fzlc_box .slick-next {
  width: 70px;
  height: 30px;
  border: none;
  top: 50%;
  margin-top: -10px;
}

.fzlc_box .slick-prev {
  background: url(../images/history_left.png) no-repeat center center / cover;
  left: -6%;
}

.fzlc_box .slick-next {
  background: url(../images/history_right.png) no-repeat center center / cover;
  right: -6%;
}

.fzlc_box .slick-prev:hover {
  background: url(../images/history_Hright.png) no-repeat center center / cover;
}

.fzlc_box .slick-next:hover {
  background: url(../images/history_Hleft.png) no-repeat center center / cover;
}

.Ksupport_banner .box {
  /* max-width: 50%; */
}

/**引用字体**/
/*@font-face {
    font-family: 'DINEngschriftStd';
    src: url('../fonts/DINEngschriftStd.eot');
    src:
        url('../fonts/DINEngschriftStd.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DINEngschriftStd.woff') format('woff'),
        url('../fonts/DINEngschriftStd.ttf') format('truetype'),
        url('../fonts/DINEngschriftStd.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}*/


@font-face {
  font-family: 'Avenir LT 55 Roman';
  src: url('../fonts/Avenir LT 55 Roman.eot');
  src:
    url('../fonts/Avenir LT 55 Roman.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Avenir LT 55 Roman.woff') format('woff'),
    url('../fonts/Avenir LT 55 Roman.ttf') format('truetype'),
    url('../fonts/Avenir LT 55 Roman.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir LT 85 Heavy';
  src: url('../fonts/Avenir LT 85 Heavy.eot');
  src:
    url('../fonts/Avenir LT 85 Heavy.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Avenir LT 85 Heavy.woff') format('woff'),
    url('../fonts/Avenir LT 85 Heavy.ttf') format('truetype'),
    url('../fonts/Avenir LT 85 Heavy.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@media (max-width:768px) {
  body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }
}


.nav_box {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}

.nav_box .nav-title {
  padding: 23px 25px 0;
  height: 74px;
  position: relative;
}

.nav_box .nav-title h1 {
  line-height: 0;
  height: 28px;
  margin-left: 65px;
  float: left;
}

.nav_box .nav-title .navclose {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  line-height: 0;
}

.nav_box .nav-title .cd_gwc {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  line-height: 0;
}

.nav_box .navSearch {
  width: 216px;
  float: right;
  height: 28px;
  margin-right: 60px;
}

.nav_box .navSearch .text {
  float: left;
  height: 28px;
  border: none;
  width: 180px;
  color: #333333;
  font-size: 14px;
  background: none;
  border-bottom: 1px solid #000000;

  -webkit-appearance: none;
  border-radius: 0;
}

.nav_box .navSearch .btn {
  float: right;
  background: url(../images/cd_ss.jpg) no-repeat center center / cover;
  width: 28px;
  height: 28px;
  border: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.nav_box .navlist ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #eeeeee;

  line-height: 68px;
  font-size: 26px;
  position: relative;
}

.nav_box .navlist ul li a {
  color: #333333;
  position: relative;
  display: inline-block;
  padding: 0 25px;
}

.nav_box .navlist ul li i {
  position: absolute;
  right: 25px;
  top: 28px;
  width: 30px;
  height: 14px;
  display: block;
  background: url(../images/navlist.jpg) no-repeat center center / cover;
}

.nav_box .navlist ul li .navbox {
  display: none;
}

.nav_box .navlist ul li .navbox a {
  display: block;
  line-height: 70px;
  font-size: 14px;
  font-size: 24px;
  padding: 0 40px;
  border-top: 1px solid #eeeeee;
}

.nav_box .navlist ul li.cur i {
  transform: rotate(180deg);
}

.nav_box .navBtn {
  margin-top: 80px;
  text-align: center;
}

.nav_box .navBtn .yuyan {
  font-size: 30px;
  color: #333333;
}

.nav_box .navBtn .yuyan a {
  display: inline-block;
  color: #333333;
  margin: 0 50px;
}

.nav_box .navBtn p {
  margin-top: 25px;
  color: #333333;
  font-size: 18px;
}

@media (max-width: 480px) {
  .nav_box {
    padding-top: 20px;
  }

  .nav_box .nav-title {
    height: 60px;
    padding: 15px 15px 0;
  }

  .nav_box .nav-title h1 {
    margin-left: 35px;
    height: 20px;
  }

  .nav_box .nav-title h1 img {
    height: 20px;
  }

  .nav_box .nav-title .navclose {
    width: 20px;
    left: 15px;
  }

  .nav_box .nav-title .cd_gwc {
    width: 20px;
    right: 15px;
  }

  .nav_box .navSearch {
    margin-right: 35px;
    height: 20px;
  }

  .nav_box .navSearch .text {
    height: 20px;
    font-size: 12px;
  }

  .nav_box .navSearch .btn {
    width: 20px;
    height: 20px;
  }

  .nav_box .navlist ul li {
    line-height: 50px;
    font-size: 16px;
  }

  .nav_box .navlist ul li a {
    padding: 0 15px;
  }

  .nav_box .navlist ul li i {
    width: 16px;
    height: 10px;
    top: 22px;
  }

  .nav_box .navlist ul li .navbox a {
    font-size: 14px;
    padding: 0 30px;
    line-height: 50px;
  }


  .nav_box .navBtn {
    margin-top: 40px;
    text-align: center;
  }

  .nav_box .navBtn .yuyan {
    font-size: 24px;
  }

  .nav_box .navBtn .yuyan a {
    margin: 0 20px;
  }

  .nav_box .navBtn p {
    margin-top: 18px;
    font-size: 16px;
  }

}

@media (max-width: 414px) {
  .nav_box .navSearch {
    width: 160px;
  }

  .nav_box .navSearch .text {
    width: 136px;
  }
}

@media (max-width: 375px) {
  .nav_box .navSearch {
    width: 135px;
  }

  .nav_box .navSearch .text {
    width: 110px;
  }
}

.header_zhanwei {
  /* height: 60px; */
}

/*底部19-4-9*/
.t_footer {
  margin-top: 0px;
  /* font-family: 'Avenir LT 85 Heavy'; */
}

.t_footer .input {
  border: 1px solid #fff;
}

.t_footer .input input {
  float: left;
  width: 80%;

}

.t_footer .input .img {
  float: left;
  padding: 6px 0 5px 0;
}

.t_footer .input .img img {
  width: 70%;
}

.t_footer input {
  background: none;
  border: none;
  color: #cbd0dd;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  text-align: center;
  /*  font-family: 'Avenir LT 85 Heavy'; */
}

/* WebKit browsers */
.t_footer input::-webkit-input-placeholder {
  color: #cbd0dd;

}

/* Mozilla Firefox 4 to 18 */
.t_footer input:-moz-placeholder {
  color: #cbd0dd;

}

/* Mozilla Firefox 19+ */
.t_footer input::-moz-placeholder {
  color: #cbd0dd;

}

/* Internet Explorer 10+ */
.t_footer input:-ms-input-placeholder {
  color: #cbd0dd;

}

.t_footer p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin: 15px 0;
}

.t_footer .btn {
  margin: 0 0;
  color: #333333;
  font-size: 16px;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 10px 0;
  font-weight: bold;

}

.t_footer .t_fooer_lb ul {
  margin-top: 40px;
  text-align: center;
}

.t_footer .t_fooer_lb ul li {
  display: inline-block;
  margin-right: 15px;
}

.t_footer .t_fooer_lb ul li:last-child {

  margin-right: 0px;
}

.t_footer .t_fooer_lb ul li a {
  width: 34px;
  height: 35px;
  display: block;
}

.t_footer .t_fooer_lb ul li a.fx_icon1 {
  background: url(../images/mo_footer_icon1.png) no-repeat center center / cover;
  background-size: 34px 35px;
}

.t_footer .t_fooer_lb ul li a.fx_icon2 {
  background: url(../images/mo_footer_icon2.png) no-repeat center center / cover;
  background-size: 34px 35px;
}

.t_footer .t_fooer_lb ul li a.fx_icon3 {
  background: url(../images/mo_footer_icon3.png) no-repeat center center / cover;
  background-size: 34px 35px;
}

.t_footer .t_fooer_lb ul li a.fx_icon4 {
  background: url(../images/mo_footer_icon4.png) no-repeat center center / cover;
  background-size: 34px 35px;
}

.t_footer .t_fooer_lb ol {
  margin-top: 20px;
  text-align: center;
  padding-bottom: 20px;
}

.t_footer .t_fooer_lb ol li {
  display: inline-block;
  padding: 0 15px;
  border-right: 1px solid #acacac;
  line-height: 0;
}

.t_footer .t_fooer_lb ol li:last-child {
  padding-right: 0;
  border-right: none;
}

.t_footer .t_fooer_lb ol li a {
  width: 50px;
  height: 33px;
  display: block;
}

.t_footer .t_fooer_lb ol li a.t_gq1 {
  background: url(../images/t_gq1.jpg) no-repeat center center / cover;
}

.t_footer .t_fooer_lb ol li a.t_gq2 {
  background: url(../images/t_gq2.jpg) no-repeat center center / cover;
}

.t_footer .t_fooer_lb ol li a.t_gq3 {
  background: url(../images/t_gq3.jpg) no-repeat center center / cover;
}

.t_footer .t_fooer_lb ol li a.t_gq4 {
  background: url(../images/t_gq4.jpg) no-repeat center center / cover;
}

.t_zdibu {
  /* background: #0543a1; */
  /* font-family: 'Avenir LT 85 Heavy'; */
  margin-top: 20px;
  margin-bottom: 10px;
}

.t_zdibu div {
  width: 50%;
  display: block;
  float: left;
  padding: 10px 0;
}

.t_zdibu a {
  width: 66px;
  height: 51px;
  text-align: center;
  margin: 0 auto;
  display: block;

}

.t_zdibu a.t_youxiang {
  background: url(../images/t_youxiang.png) no-repeat center center / cover;
}

.t_zdibu a.t_dianhua {
  background: url(../images/t_dianhua.png) no-repeat center center / cover;

}

.t_fooer_lb .t_qhyy {
  text-align: center;
  margin-top: 15px;
  /* padding-bottom: 10px; */
}

.t_fooer_lb .t_qhyy a {
  color: #fff;
  position: relative;
  display: block;
}

.t_fooer_lb .t_qhyy a img {
  width: 30px;
  height: 20px;
  margin-bottom: -5px;
}

.t_fooer_lb .t_qhyy a span {
  padding-right: 10px;
  position: relative;
}

.t_fooer_lb .t_qhyy a span:before {
  background: url(../images/t_sjt.png) center center/cover;
  width: 10px;
  height: 8px;
  position: absolute;
  top: 35%;
  right: 0;
  content: "";
}

.t_banquan {
  margin-top: 10px;
  padding-bottom: 15px;
}

.t_banquan p {
  line-height: 24px;
  font-size: 12px;
  margin: 10px 0 15px;
}

.t_banquan p a {
  display: inline-block;
  color: #fff;
}

/* .t_fooer_lb .t_qhyy a:before{
	background: url(../images/t_gq1.jpg) center center;
	width: 38px;
	height: 24px;
	content: "";
	position: absolute;
	bottom: -2px;
  left: 33%;
  display: inline-block;
} */

@media (max-width: 480px) {

  .t_footer h4 {
    line-height: 50px;
    padding: 0;
    height: 50px;
  }

  .t_footer .t_fooer_lb p {
    line-height: 50px;
    height: 50px;
    padding: 0;
  }

  .t_zdibu a {
    width: 45px;
    height: 35px;
  }
}

.xtimg_Box {
  display: none;
}

/**2019-4-10**/
.sitem ul li {
  float: left;
  width: 100%;
  padding: 20px 0;
  line-height: 24px;
  border-bottom: 1px solid #eee;
}

.sitem ul li>a {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}

.sitem ul li .text {
  margin-top: 10px;
}

.sitem ul li .text a {
  display: block;
  float: left;
  margin-right: 25px;
}

/**搜索**/
.nav_box .search_b {
  float: right;
  margin-right: 65px;
  width: 28px;
  line-height: 0;
  display: block;
}

.search_box {
  background: #fff;
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 0;
}

.search_box .search .btn {
  float: left;
  width: 37px;
  height: 37px;
  background: url(../images/search.jpg) no-repeat center center / cover;
  border: none;
}

.search_box .search .text {
  float: left;
  height: 37px;
  border: none;
  background: none;
  font-size: 28px;
  color: #adadad;
  margin-left: 18px;
  width: 700px;
}

.search_box .box {
  margin-top: 30px;
  padding-left: 55px;
}

.search_box .box a {
  display: block;
  color: #333333;
  font-size: 22px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .search_box {
    padding: 20px 15px;
  }

  .search_box .search .text {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .search_box {
    padding: 30px 15px;
  }

  .search_box .search .btn {
    width: 20px;
    height: 20px;
  }

  .search_box .search .text {
    margin-left: 15px;
    width: 90%;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }

  .search_box .box {
    margin-top: 20px;
    padding-left: 35px;
  }

  .search_box .box a {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .nav_box .search_b {
    width: 20px;
    margin-right: 35px;
  }
}

@media (max-width: 375px) {
  .search_box .search .text {
    width: 86%;
  }
}


/**2019-4-10**/
/**语言**/
.language_box {
  background: #fff;
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 0;
}

.language_box .top {
  text-align: center;
  position: relative;
}

.language_box .top span.guanbi {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
}

.language_box .top h3 {
  color: #333333;
  font-size: 24px;
  font-weight: normal;
}

.language_box ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #c9c9c9;
  padding: 30px 0;
}

.language_box ul li .icon {
  width: 68px;
  line-height: 0;
  float: left;

}

.language_box ul li .icon img {
  border: 1px solid #c9c9c9;
}

.language_box ul li p {
  float: left;
  margin-left: 38px;
  color: #333333;
  font-size: 24px;
  line-height: 47px;
}

@media (max-width: 768px) {
  .language_box {
    padding: 20px 0;
  }

  .language_box .top {
    padding: 0 15px;
  }

  .language_box .top span.guanbi {
    left: 15px;
  }

  .language_box ul {
    margin-top: 20px;
  }

  .language_box ul li {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .language_box {
    padding: 30px 0;
  }

  .language_box .top span.guanbi {
    width: 20px;
  }

  .language_box .top h3 {
    font-size: 16px;
  }

  .language_box ul li {
    padding: 15px;
  }

  .language_box ul li .icon {
    width: 38px;
  }

  .language_box ul li p {
    font-size: 14px;
    line-height: 25px;
    margin-left: 20px;
  }
}


/*按钮*/
.buy_fixed {
  position: fixed;
  right: 20px;
  top: 50%;
}

.buy_fixed a {
  display: inline-block;
  background: #00327d;
  border-radius: 50px;
}

.buy_fixed a .anniu_id {
  width: auto;
  font-style: normal;
}

.buy_fixed a p,
.buy_fixed a .anniu_id {
  float: left;
  color: #ffffff;
  font-size: 20px;
  line-height: 60px;
  padding-left: 30px;
  display: none;
}

.buy_fixed a i {
  float: right;
  width: 60px;
  line-height: 0;
  display: block;
}

.buy_fixed a:hover {
  background: #1358ca;
}

.buy_fixed a:hover p,
.buy_fixed a:hover .anniu_id {
  display: block;
}

.buy_fixed a button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}


.about_box .text .title h3 {
  text-transform: initial;
}

.t_pinglun {
  margin-top: 50px;
  position: relative;
}

.mo_pinglun {
  position: relative;
}

.t_pinglun div,
.mo_pinglun div {
  line-height: 0;
}

.t_pinglun .slick-dots,
.mo_pinglun .slick-dots {
  bottom: 10%;
}

.t_pinglun .slick-dots button,
.mo_pinglun .slick-dots button {
  background: #ededed;
  border: 1px solid #333333;
  border-radius: 25px;
  width: 10px;
  height: 10px;
}

.t_pinglun .slick-dots .slick-active button,
.mo_pinglun .slick-dots .slick-active button {
  background: #333333;
  border: 1px solid #333333;
}

/**2019-4-12**/
.join_box {
  padding: 80px 0;
}

.join_box h3 {
  color: #333333;
  font-size: 30px;
  text-transform: uppercase;
}

.join_box .join {
  margin-top: 35px;
}

.join_box .join ol li {
  float: left;
  width: 100%;
  border: 1px solid #efefef;
  border-radius: 3px;
  margin-bottom: 20px;
}

.join_box .join ol li .bt {
  line-height: 68px;
  padding: 0 30px;
}

.join_box .join ol li .bt span {
  float: left;
  color: #333333;
  font-size: 18px;
  font-weight: bold;
}

.join_box .join ol li .bt a {
  margin-top: 15px;
  float: right;
  color: #1358ca;
  font-size: 16px;
  display: inline-block;
  border: 1px solid #1358ca;
  line-height: 38px;
  padding: 0 30px;
  border-radius: 50px;
}

.join_box .join ol li .text {
  display: none;
  padding: 30px;
}

.join_box .join ol li .text .t {
  width: 48%;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}

.join_box .join ol li .text .t h4 {
  color: #333333;
  font-size: 18px;
  margin-bottom: 20px;
}

.join_box .join ol li.cur {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.join_box .join ol li.cur .bt {
  background: #fbfbfb;
}

.join_box .join ol li.cur .bt span {
  color: #1358ca;
}

.join_box .join ol li.cur .bt a {
  background: #1358ca;
  color: #fff;
  border-color: #1358ca;
}

.page {
  margin-top: 10px;
  text-align: center;
}

.page a,
.page span {
  display: block;
  float: left;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #dddddd;
  color: #666666;
  font-size: 16px;
  margin-right: 10px;
}

.page a.cur,
.page span.cur,
.page a:hover,
.page span:hover {
  background: #1358ca;
  color: #fff;
  border-color: #1358ca;
}

.product_ifloor .text .title3 p {
  font-weight: bold;
  color: #333333;
  font-size: 26px;
}

/**2019-4-18**/
h3.c_tit {
  color: #333333;
  font-size: 30px;
  /*  text-transform: uppercase; */
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 20px;
}

.contact_box1 {
  padding: 70px 0 80px;
}

.contact_box1 .left {
  float: left;
  width: 47.8%;
}

.contact_box1 .left .name {
  margin-top: 20px;
  color: #333333;
  font-size: 16px;
  line-height: 24px;
}

.contact_box1 .left .text_box {
  margin-top: 30px;
}

.contact_box1 .left .text_box h4 {
  color: #333333;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact_box1 .left .text_box p {
  color: #333333;
  font-size: 16px;
  line-height: 30px;
}

.contact_box1 .left .text_box a {
  color: #1358ca;
  font-size: 24px;
  display: inline-block;
  line-height: 32px;
}

.contact_box1 .img_box {
  float: right;
  width: 50%;
  line-height: 0;
}

.contact_box2 {
  padding: 80px 0;
  background: #fafafa;
}

.contact_box2 .img_box {
  float: left;
  width: 47.8%;
  line-height: 0;
}

.contact_box2 .left {
  float: right;
  width: 50%;
}

.contact_box2 .left .text_box {
  margin-top: 30px;
  background: #fff;
  padding: 20px 25px;
  position: relative;
}

.contact_box2 .left .text_box:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 26px;
  background: url(../images/contact_icon5.jpg) no-repeat center center / cover;
}

.contact_box2 .left .text_box .t {
  float: left;
  max-width: 60%;
  color: #333333;
  font-size: 16px;
  line-height: 30px;
}

.contact_box2 .left .text_box a {
  float: right;
  display: inline-block;
  color: #1358ca;
  font-size: 20px;
  line-height: 30px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.searchtop {
  background: #fafafa;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.searchtop .tit_search {
  line-height: 100px;
  color: #333333;
  font-size: 30px;
}

.searchtop .tit_search h3 {
  font-weight: normal;
}

.searchbtn {
  color: #333333;
  font-size: 20px;
  margin: 60px 0 40px;
}





/**/
.warr_ny {
  margin-top: 90px;
  font-family: arial;
  margin-bottom: 140px;
}

.warr_ny .warr_left {
  float: left;
  width: 19.23%;
}

.warr_ny .warr_left ul li {
  background: #f1f1f1;
  color: #999999;
  font-size: 20px;
  padding-left: 28px;
  padding-right: 28px;
  padding-top: 20px;
  padding-bottom: 20px;

}

.warr_ny .warr_left ul li a {
  color: #999999;
}

.warr_ny .warr_left ul li.cur {
  background: #01327e;
}

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

.warr_ny .warr_right {
  float: left;
  padding-left: 60px;
  width: 80.77%;
}

.warr_ny .warr_right h3 {
  color: #333333;
  font-size: 20px;
  font-weight: bold;
}

.warr_ny .warr_right i {
  width: 100%;
  display: block;
  height: 1px;
  background: #cccccc;
  margin: 28px 0;
}

.warr_ny .warr_right .text h4 {
  font-size: 18px;
  color: #00327d;
  margin-bottom: 5px;
}

.warr_ny .warr_right .text p {
  color: #666666;
  font-size: 16px;
  line-height: 28px;
}

.warr_ny .warr_right .text_bd {
  margin-top: 70px;
}

.warr_ny .warr_right .text_bd h2 {
  font-size: 20px;
  color: #00327d;
}

.warr_ny .warr_right .text_bd .text_xl {
  border: 1px solid #efefef;
  border-radius: 5px;
  line-height: 60px;
  color: #666666;
  font-size: 18px;
  padding: 0 40px;
  cursor: pointer;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  box-shadow: 0px 3px 1px 1px rgba(0, 0, 0, 0.12);

}

.text_xl_2 {
  position: relative;
}

.warr_ny .warr_right .text_bd .text_xl_1 {
  border: 1px solid #efefef;
  border-radius: 5px;
  line-height: 60px;
  color: #666666;
  font-size: 18px;
  padding: 0 40px;
  cursor: pointer;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  /* box-shadow: 0px 3px 1px 1px rgba(0, 0, 0, 0.12); */
  display: none;

}

.warr_ny .warr_right .text_bd .text_xl_2:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -4.5px;
  width: 20px;
  height: 10px;
  z-index: 9999;
  background: url(../images/t_xl.png) no-repeat center center / cover;
}

.warr_ny .warr_right .text_bd .text_xl_shuru ul li {
  float: left;
  width: 48.5%;
  margin-right: 2%;
  margin-bottom: 20px;
}

.warr_ny .warr_right .text_bd .text_xl_shuru ul li:nth-child(2n) {
  float: right;
  margin-right: 0;
}

.warr_ny .warr_right .text_bd .text_xl_shuru ul li .wenben {
  color: #333333;
  font-size: 16px;
  background: #fff;
  border: 1px solid #eeeeee;
  box-shadow: 0px 3px 1px 1px rgba(0, 0, 0, 0.12);
  line-height: 60px;
  height: 60px;
  width: 100%;
  padding: 0 20px;
}

.warr_ny .warr_right .text_bd .text_xl_shuru ul li .liuyan {
  width: 100%;
  max-width: 100%;
  height: 160px;
  border: 1px solid #F6F6F6;
  box-shadow: 0px 3px 1px 1px rgba(0, 0, 0, 0.12);
  padding: 15px;
  color: #666;
  font-size: 16px;
  font-family: arial;
}

.warr_ny .warr_right .text_bd h2 span {
  font-size: 16px;
  color: #333333;
  font-weight: lighter;
  margin-left: 8px;
}

.warr_ny .warr_right .text_bd .text_xl_shuru ol li {
  float: left;
}

.warr_ny .warr_right .text_bd .text_xl_shuru ol li .shangchuan {
  border: 2px dashed #cccccc;
  background: none;
  width: 100px;
  height: 100px;
  background: url(../images/shangchuan.png)center center/cover;
  cursor: pointer;

}

.warr_ny .warr_right .text_bd .text_xl_shuru ol li .tianjia {
  border: 2px dashed #cccccc;
  background: none;
  width: 100px;
  height: 100px;
  background: url(../images/tianjia.png)center center/cover;
  margin-left: 20px;
  cursor: pointer;
}

.warr_ny .warr_right .text_bd .text_xl_shuru ol li .tijiao {
  color: #fff;
  background: #00327d;
  padding: 18px 70px;
  border-radius: 32px;
  border: none;
  font-size: 16px;
  margin-top: 40px;
  cursor: pointer;
}

.t_tanchu_1 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.t_tanchu_1 .box {
  width: 678px;
  margin: 0 auto;
  background: #fff;
  border-radius: 3px;
  padding: 40px 46px 40px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  text-align: center;
}

.t_tanchu_1 .box .guanbi {
  position: absolute;
  right: 2%;
  top: 20px;
  cursor: pointer;
}

.t_tanchu_1 .box .box_ny {
  font-size: 26px;
  color: #131414;
  font-family: arial;
  margin-top: 30px;
}

.t_tanchu_1 .box .box_ny button {
  color: #fff;
  background: #00327d;
  font-size: 20px;
  border: none;
  border-radius: 5px;
  padding: 16px 78px;
  margin-top: 50px;
  cursor: pointer;
}

@media (max-width: 1350px) {
  .warr_ny .warr_left ul li {
    font-size: 18px;
  }
}

@media (max-width: 1280px) {
  .warr_ny .warr_left ul li {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1080px) {
  .warr_ny .warr_right {
    width: 100%;
    padding-left: 0;
    margin-top: 28px;
  }

  .warr_ny .warr_left {
    width: auto;
  }

  .warr_ny .warr_left ul li {
    float: left;
  }
}

@media (max-width: 768px) {
  .warr_ny {
    margin-top: 50px;
  }

  .warr_ny .warr_left ul li {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .warr_ny .warr_right .text_bd {
    margin-top: 35px;
  }

  .warr_ny .warr_right .text_bd .text_xl {
    padding: 0 20px;
  }

  .warr_ny .warr_right .text_bd .text_xl,
  .warr_ny .warr_right .text_bd .text_xl_shuru ul li .wenben {
    font-size: 14px;
    line-height: 50px;
    height: 50px;
  }

  .warr_ny .warr_right .text_bd .text_xl_shuru ol li .shangchuan,
  .warr_ny .warr_right .text_bd .text_xl_shuru ol li .tianjia {
    width: 80px;
    height: 80px;
  }

  .warr_ny .warr_right .text_bd .text_xl_shuru ol li .tijiao {
    padding: 10px 50px;
  }

  .warr_ny .warr_right i {
    margin: 20px 0;
  }

  .t_tanchu_1 .box {
    width: 80%;
    padding: 30px 25px 30px;
  }

  .t_tanchu_1 .box .box_ny {
    font-size: 24px;
  }

  .t_tanchu_1 .box .box_ny button {
    margin-top: 30px;
    padding: 8px 50px;
  }

  .t_tanchu_1 .box .guanbi {
    width: 25px;
    height: 25px;
    right: 4%;
  }
}

@media (max-width: 480px) {
  .warr_ny .warr_right .text_bd .text_xl_shuru ul li {
    width: 100%;
    margin-bottom: 15px;
  }

  .warr_ny {
    margin-bottom: 40px;
  }
}


/**/
/*关于我们新页面*/
.about_banner {
  /* height: 51vw; */
  /* padding-top: 375px; */
}

.about_banner h3 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 30px;
}

.about_banner p {
  font-size: 20px;
  text-align: center;
  max-width: 730px;
  line-height: 30px;
  width: 100%;
  margin: 0 auto;
}

.about_banner a.more {
  width: 150px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #fff;
  border-radius: 0;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-size: 20px;
  text-transform: none;
  display: block;
  margin: 50px auto 0;
  padding: 0 0;
  text-align: center;
}

.about_banner a.more:hover {
  color: #fff;
}

.about_menu {
  background: #194981;
  line-height: 45px;
  height: 45px;
  text-align: center;
  width: 100%;
}

.about_menu a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  margin: 0 90px;
}

.about_big {
  background: #f6f8fa;
}

.about_big ol li {
  padding: 230px 155px;
  float: left;
  width: 33.333333%;
  text-align: center;
  border: 1px solid #f6f8fa;
  position: relative;
}

.about_big ol li .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.about_big ol li .box {
  position: relative;
  z-index: 1;
}

.about_big ol li .icon {
  width: 90px;
  margin: 0 auto 70px;
  line-height: 0;
  overflow: hidden;
  transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.about_big ol li .icon span {
  display: block;
}

.about_big ol li .icon em {
  display: none;
}

.about_big ol li .text {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.about_big ol li h3 {
  color: #333333;
  font-size: 20px;
}

.about_big ol li i.xiantiao {
  width: 50px;
  height: 1px;
  background: #194981;
  margin: 36px auto;
  display: block;
}

.about_big ol li p {
  color: #666666;
  font-size: 18px;
  line-height: 30px;
  text-transform: uppercase;
}

.about_big ol li:hover .icon,
.about_big ol li.cur .icon {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.about_big ol li:hover .icon span,
.about_big ol li.cur .icon span {
  display: none;
}

.about_big ol li:hover .icon em,
.about_big ol li.cur .icon em {
  display: block;
}

.about_big ol li:hover h3,
.about_big ol li:hover p,
.about_big ol li.cur h3,
.about_big ol li.cur p {
  color: #fff;
}

.about_big ol li:hover i.xiantiao,
.about_big ol li.cur i.xiantiao {
  background: #999999;
}

.about_big ol li:hover,
.about_big ol li.cur {
  border: 1px solid #002a68;
}

.about_big ol li:hover .img,
.about_big ol li.cur .img {
  opacity: 1;
}

.about_big ol li:hover .text,
.about_big ol li.cur .text {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.about_pro {
  position: relative;
}

.about_pro .img {
  line-height: 0;
}

.about_pro .img span {
  display: block;
}

.about_pro .img em {
  display: none;
}

.about_pro .box {
  position: relative;
}

.about_pro .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.about_pro .text .t {
  margin-top: 180px;
  max-width: 480px;
}

.about_pro .text .t h3 {
  color: #194981;
  font-size: 30px;
}

.about_pro .text .t p {
  margin-top: 20px;
  color: #666666;
  font-size: 18px;
  line-height: 34px;
}


.proBottom {
  position: absolute;
  bottom: 14.6%;
  left: 16%;
  width: 18%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  z-index: 3;
}

.proBottom .num {
  color: #194981;
  font-size: 24px;
  font-family: arial;
}

.proBottom .num #ct1 {
  color: #999;
}

.proBottom .xian {
  width: 50%;
  height: 2px;
  background: rgba(0, 0, 0, .25);
  margin-left: 5%;
  position: relative;
}

.proBottom .xian .xianBg {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  opacity: 1;
  z-index: 4;
  width: 0px;
  background: #007aff;
}

.about_pro .slick-prev,
.about_pro .slick-next {
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 13.8%;
  margin-top: 0;
  border: none;
}

.about_pro .slick-prev {
  background: url(../images/zuo.png) no-repeat center center/cover;
  left: 33%;
}

.about_pro .slick-next {
  background: url(../images/you.png) no-repeat center center/cover;
  left: 36%;
}

.about_history {
  background: #f5f7f8;
  padding: 80px 0;
}

.about_history .title {
  text-align: center;
}

.about_history .history_box {
  margin: 40px 11% 0;
  position: relative;
}

.history_box ol li,
.history_box ul li {
  float: left;
  width: 24%;
  border-left: 1px solid #8c929a;
  padding: 0 30px 60px 20px;
  position: relative;
}

.history_box ul {
  margin-left: 4%;
}

.history_box ul,
.history_box ol {
  padding: 0 5.3%;
}

.history_box ul li {
  width: 25%;
}

.history_box ol {
  margin-left: 1%;
}

.history_box ol li::before,
.history_box ul li::before {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  background: #8c929a;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.history_box ol li span,
.history_box ul li span {
  color: #333333;
  font-size: 28px;
  font-weight: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history_box ol li p,
.history_box ul li p {
  margin-top: 10px;
  color: #666666;
  font-size: 15px;
  line-height: 20px;
  height: 80px;
  overflow: hidden;
}

.history_box ol li .img,
.history_box ul li .img {
  margin-top: 20px;
  width: 66%;
  line-height: 0;
  overflow: hidden;

}


.history_box ul li::before {
  top: -5px;
  bottom: auto;
}

.history_box ul li {
  padding-bottom: 0;
  padding-top: 60px;
}

.history_box .xiantiao {
  width: 100%;
  height: 2px;
  background: #cccfd2;
}

.about_history .history_box .slick-prev,
.about_history .history_box .slick-next {
  width: 71px;
  height: 31px;
  border: none;
  margin-top: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.about_history .history_box .slick-prev {
  background: url(../images/history_left.png) no-repeat center center / cover;
  left: -5%;
}

.about_history .history_box .slick-next {
  background: url(../images/history_right.png) no-repeat center center / cover;
  right: -5%;
}

#about_news .title {
  text-align: center;
}

#about_news ol li {
  float: left;
  width: 100%;
  margin-left: 0;
  margin-bottom: 30px;
}

#about_news ol li .img {
  float: left;
  width: 32%;
}

#about_news ol li .t_text {
  float: right;
  width: 68%;
  padding-left: 30px;
}

#about_news ol li .t_text h3 {
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#about_news ol li .t_text p {
  height: 96px;
}

.phone_history_b {
  display: none;
}

#about_news ol li .t_text em {
  margin-top: 30px;
  font-style: initial;
  border: 1px solid #00327d;
  color: #00327d;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding: 0 40px;
  font-family: arial;
  line-height: 46px;
  display: inline-block;
  overflow: hidden;
}

#about_news ol li:last-child {
  margin-bottom: 0;
}

.phone_history {
  display: none;
}

.phone_history span {
  color: #333333;
  font-size: 28px;
}

.phone_history p {
  margin-top: 10px;
  color: #666666;
  font-size: 16px;
  line-height: 20px;
}

.phone_history .img {
  margin-top: 20px;
  line-height: 0;
  overflow: hidden;
}

.phone_history .slick-prev,
.phone_history .slick-next {
  width: 24px;
  height: 24px;
  border: none;
  margin-top: -12px;
}

.phone_history .slick-prev {
  left: 15px;
  background: url(../images/zuo.png) no-repeat center center/cover;
}

.about_banner .about_video video {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.phone_history .slick-next {
  right: 15px;
  background: url(../images/you.png) no-repeat center center/cover;
}

@media (max-width:1680px) {
  .about_big ol li {
    padding: 218px 150px;
  }

  .proBottom {
    left: 8%;
  }

  .about_pro .slick-prev {
    left: 27.5%;
  }

  .about_pro .slick-next {
    left: 31%;
  }

  .about_history .history_box {
    margin-left: 8%;
    margin-right: 8%;
  }

}

@media (max-width:1600px) {
  .about_big ol li {
    padding: 200px 100px;
  }

  .proBottom {
    left: 7%;
  }

}

@media (max-width:1440px) {
  .about_pro .text .t {
    margin-top: 140px;
  }

  .proBottom {
    bottom: 100px;
  }

  .about_pro .slick-prev,
  .about_pro .slick-next {
    bottom: 95px;
    width: 36px;
    height: 36px;
    background-size: cover;
  }

  .about_pro .slick-prev {
    left: 28%;
  }

  #about_news ol li .t_text p {
    height: 72px;
  }

  .about_banner {
    padding-top: 285px;
  }

  .about_big ol li {
    padding: 100px 50px;
  }
}

@media (max-width:1336px) {

  .history_box ol li,
  .history_box ul li {
    padding-right: 20px;
  }


}

@media (max-width:1280px) {
  .about_big ol li {
    padding: 100px 50px;
  }

  .about_pro .slick-prev {
    left: 31%;
  }

  .about_pro .slick-next {
    left: 34.5%;
  }
}

@media (max-width:1024px) {
  .about_banner {
    padding-top: 180px;
  }

  .about_menu a {
    margin: 0 50px;
  }

  .about_big ol li {
    padding: 60px 20px;
  }

  .about_big ol li .icon {
    margin-bottom: 40px;
  }

  .about_big ol li p {
    font-size: 14px;
    line-height: 24px;
  }

  .about_pro .text .t {
    margin-top: 60px;
  }

  .proBottom {
    bottom: 30px;
    left: 15px;
    font-size: 14px;
  }



  .about_pro .slick-prev,
  .about_pro .slick-next {
    width: 24px;
    height: 24px;
    bottom: auto;
    top: 50%;
    margin-top: -12px;
  }

  .proBottom .xian {
    display: none;
  }

  .about_pro .slick-prev {
    left: 15px;
  }

  .about_pro .slick-next {
    right: 15px;
    left: auto;
  }

  #about_news {
    padding: 60px 0;
  }

  #about_news ol li .t_text p {
    height: 48px;
  }

  #about_news ol li .t_text em {
    font-size: 14px;
    line-height: 36px;
  }

  .about_history {
    padding: 60px 0;
  }

  .about_history .history_box {
    display: none;
  }

  .phone_history {
    margin-top: 40px;
    padding: 0 8px;
    display: block;
  }

  .phone_history .box {
    padding: 0 7px;
  }
}

@media (max-width:991px) {}

@media (max-width:768px) {
  .about_banner h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .about_banner p {
    font-size: 14px;
    line-height: 24px;
  }

  .about_banner a.more {
    font-size: 16px;
    line-height: 36px;
    height: 38px;
    margin-top: 20px;
  }

  .about_big ol li {
    width: 100%;
    padding: 40px 15px;
    border: none;
  }

  .about_big ol li p {
    overflow: initial;
    height: auto;
  }

  .about_big ol li.cur {
    border: none;
  }

  .about_big ol li .icon {
    width: 40px;
    margin-bottom: 20px;
  }

  .about_big ol li h3 {
    font-size: 16px;
  }

  .about_big ol li i.xiantiao {
    margin: 25px auto;
  }

  .about_big ol li .icon {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  .about_big ol li .text {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }

  .about_pro .text .t {
    max-width: 400px;
  }

  .about_pro .text .t p {
    font-size: 14px;
    line-height: 24px;
  }

  .phone_history span {
    font-size: 24px;
  }

  #about_news ol li .t_text {
    padding-top: 0;
    padding-left: 15px;
  }

  #about_news ol li {
    margin-bottom: 15px;
  }

  #about_news ol li .t_text em {
    margin-top: 20px;
  }
}

@media (max-width:640px) {

  .about_banner,
  #about_banner {
    padding-top: 40px;
    height: 400px;
  }

  .about_menu a {
    margin: 0 10px;
  }

  #about_news ol li .t_text {
    padding-top: 2.5%;
  }

  #about_news ol li .t_text em {
    display: none;
  }

  .about_banner .about_video {
    height: 500px;
  }

  .about_banner .about_video video {
    width: 100%;
    height: 100%;
  }

  .about_banner .about_video video source {
    opacity: 0;
  }
}

@media (max-width:480px) {
  .phone_history_b {
    display: block;
  }

  .about_pro .text .t h3 {
    font-size: 20px;
    text-align: center;
  }

  .about_pro .text {
    position: relative;
    padding-bottom: 60px;
    background: #fff;
  }

  .about_pro .text .t {
    margin-top: 0;
    padding-top: 15px;
    padding-right: 0;
    max-width: 100%;
  }

  .about_pro .text .t p {
    margin-top: 10px;
  }

  .about_pro .slick-prev,
  .about_pro .slick-next {
    display: none;
    opacity: 0;
  }

  .proBottom {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }

  .phone_history {
    margin-top: 30px;
  }

  .about_pro .img span {
    display: none;
  }

  .about_pro .img em {
    display: block;
  }

  #about_news ol li .t_text {
    padding-top: 0;
  }

  #about_news,
  .about_history {
    padding: 40px 0;
  }

  .about_banner h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media (max-width:414px) {
  #about_news ol li .t_text p {
    height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .about_menu a {
    margin: 0 5px;
  }

  .about_banner h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .proBottom {
    bottom: 15px;
    width: auto;
    text-align: center;
  }

  .proBottom .num {
    font-size: 14px;
  }
}

@media (max-width:375px) {
  .about_banner h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media (max-width:360px) {}

/* 2020-1-6 */
.showAbout {
  z-index: 9999;
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  background: #000;
}

.showAbout .return {
  position: absolute;
  left: 3%;
  top: 6%;
  z-index: 3;
  color: #fff;
  font-size: 16px;
}

.showBottom {
  position: absolute;
  bottom: 14.6%;
  left: 16%;
  width: 18%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  z-index: 3;
}

.showAbout .num {
  color: #fff;
  font-size: 20px;
  font-family: arial;
}

.showAbout .num #ct {
  color: #999;
}

.showAbout .xian {
  width: 50%;
  height: 1px;
  background: #666;
  margin-left: 5%;
  position: relative;
}

.showAbout .xian .xianBg {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  opacity: 1;
  z-index: 4;
  width: 0px;
  background: #fff;
  /* animation: clickPrice 3s ease infinite;
  -webkit-animation: clickPrice 3s ease infinite;
  -moz-animation: clickPrice 3s ease infinite;
  -o-animation: clickPrice 3s ease infinite;
  transition: all 3s ease; */
}

@keyframes clickPrice {
  from {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

@-webkit-keyframes clickPrice {
  from {
    width: 0px;
  }

  to {
    width: 100%;
  }
}

.showAbout .return i {
  display: inline-block;
  zoom: 1;
  vertical-align: middle;
  margin-right: 7px;
  width: 0;
  height: 0;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 5px 7px 5px 0;
  position: relative;
  top: -1px;
}

.bannerShow {
  max-width: 1920px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.bannerShow .img {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.bannerShow .text {
  position: absolute;
  top: 20%;
  left: 16%;
  width: 660px;
  height: 360px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.bannerShow .text .textNr {
  width: 100%;
  color: #fff;
}

.bannerShow .text .textNr h3 {
  width: 100%;
  white-space: normal;
  word-break: break-word;
  font-size: 60px;
  font-weight: normal;
}

.bannerShow .text .textNr p {
  margin-top: 40px;
  width: 100%;
  white-space: normal;
  word-break: break-word;
  font-size: 20px;
}

.bannerShow .text .textNr a {
  color: #fff;
  display: inline-block;
  margin-top: 30px;
}

.bannerShow .slick-prev,
.bannerShow .slick-next {
  width: 30px;
  height: 17px;
  border: none;
  margin-top: 0;
  top: auto;
  bottom: 15%;
}

.bannerShow .slick-prev {
  background: url(../images/showL.png) no-repeat center center/cover;
  left: 32%;
}

.bannerShow .slick-next {
  background: url(../images/showR.png) no-repeat center center/cover;
  left: 35%;
  right: auto;
}

@media (max-width:1440px) {
  .bannerShow .text {
    top: 14%;
  }

  .bannerShow .text .textNr h3 {
    font-size: 40px;
  }

  .bannerShow .text .textNr p {
    font-size: 16px;
    margin-top: 25px;
  }
}