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

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

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

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

   //滤镜

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

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

    -----------------------------------
*/
.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/cover.htc);
  behavior: url(css/cover.htc);
}
.vcenter {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tHide {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.blockFull {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.block {
  display: block;
  position: relative;
}
.centerBlock {
  margin-left: auto;
  margin-right: auto;
}
.clearfix {
  clear: both;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-loading .slick-list {
  background: #ffffff url("../images/ajax-loader.gif") center center no-repeat;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-prev,
.slick-next {
  z-index: 20;
  position: absolute;
  display: block;
  height: 60px;
  width: 30px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -30px;
  padding: 0;
  border: none;
  outline: none;
  border: 1px solid red;
}
.slick-prev {
  left: 30px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: 30px;
}
.slick-next {
  right: 30px;
}
[dir="rtl"] .slick-next {
  left: 30px;
  right: auto;
}
.slick-dots {
  position: absolute;
  bottom: 20px;
  height: auto;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  line-height: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  height: 10px;
  width: 10px;
  padding: 0;
  margin: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: #cccccc;
  border-radius: 0px;
}
.slick-dots li.slick-active button {
  background: #333333;
}
/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
.mm-hidden {
  display: none !important;
}
.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}
.mm-menu,
.mm-menu > .mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.mm-menu {
  box-sizing: border-box;
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}
.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-panel.mm-opened {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
.mm-panel.mm-highest {
  z-index: 1;
}
.mm-menu > .mm-panel {
  background: inherit;
  border-color: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 20px;
}
.mm-menu > .mm-panel.mm-hasnavbar {
  padding-top: 40px;
}
.mm-menu > .mm-panel:before,
.mm-menu > .mm-panel:after {
  content: '';
  display: block;
  height: 20px;
}
.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}
.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}
.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent;
}
.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
  display: block;
}
.mm-vertical .mm-listview > li > .mm-next,
.mm-listview > li.mm-vertical > .mm-next {
  height: 40px;
  bottom: auto;
}
.mm-vertical .mm-listview > li > .mm-next:after,
.mm-listview > li.mm-vertical > .mm-next:after {
  top: 16px;
  bottom: auto;
}
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after,
.mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.mm-navbar > * {
  display: block;
  padding: 10px 0;
}
.mm-navbar a,
.mm-navbar a:hover {
  text-decoration: none;
}
.mm-navbar .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.mm-navbar .mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
}
.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0;
}
.mm-navbar .mm-btn:last-child {
  text-align: right;
  padding-right: 20px;
  right: 0;
}
.mm-panel .mm-navbar {
  display: none;
}
.mm-panel.mm-hasnavbar .mm-navbar {
  display: block;
}
.mm-listview,
.mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}
.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px;
}
.mm-listview a,
.mm-listview a:hover {
  text-decoration: none;
}
.mm-listview > li {
  position: relative;
}
.mm-listview > li,
.mm-listview > li:after,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next:before {
  border-color: inherit;
}
.mm-listview > li > a,
.mm-listview > li > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0;
}
.mm-listview > li > a.mm-arrow,
.mm-listview > li > span.mm-arrow {
  padding-right: 50px;
}
.mm-listview > li:not(.mm-divider):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.mm-listview > li:not(.mm-divider):after {
  left: 20px;
}
.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.mm-listview .mm-next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
  margin-right: 50px;
}
.mm-listview .mm-next.mm-fullsubopen {
  width: 100%;
}
.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none;
}
.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0;
}
.mm-menu > .mm-panel > .mm-listview {
  margin: 20px -20px;
}
.mm-menu > .mm-panel > .mm-listview:first-child,
.mm-menu > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px;
}
.mm-listview .mm-inset {
  list-style: inside disc;
  padding: 0 10px 15px 40px;
  margin: 0;
}
.mm-listview .mm-inset > li {
  padding: 5px 0;
}
.mm-listview .mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}
.mm-listview .mm-spacer {
  padding-top: 40px;
}
.mm-listview .mm-spacer > .mm-next {
  top: 40px;
}
.mm-listview .mm-spacer.mm-divider {
  padding-top: 25px;
}
.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px;
}
.mm-next:after,
.mm-arrow:after {
  border-top: none;
  border-left: none;
  right: 20px;
}
.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-navbar > *,
.mm-menu .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-navbar .mm-btn:before,
.mm-menu .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu .mm-listview > li .mm-next:after,
.mm-menu .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.5);
}
.mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu .mm-divider {
  background: rgba(0, 0, 0, 0.05);
}
/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative;
}
.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-opened {
  overflow: hidden;
  position: relative;
}
html.mm-opened body {
  overflow: hidden;
}
html.mm-background .mm-page {
  background: inherit;
}
#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}
.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}
.mm-menu.mm-current {
  display: block;
}
.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
}
html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0);
  }
}
/*
	jQuery.mmenu autoHeight addon CSS
*/
.mm-menu.mm-top.mm-autoheight,
.mm-menu.mm-bottom.mm-autoheight {
  max-height: 80%;
}
.mm-menu.mm-top.mm-autoheight.mm-fullscreen,
.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
  max-height: 100%;
}
.mm-menu.mm-measureheight > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}
/*
	jQuery.mmenu counters addon CSS
*/
em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%;
}
em.mm-counter + a.mm-next {
  width: 90px;
}
em.mm-counter + a.mm-next + a,
em.mm-counter + a.mm-next + span {
  margin-right: 90px;
}
em.mm-counter + a.mm-fullsubopen {
  padding-left: 0;
}
.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0;
}
.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px;
}
.mm-nosubresults > .mm-counter {
  display: none;
}
.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu dividers addon CSS
*/
.mm-divider > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}
.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-collapsed:not(.mm-uncollapsed) {
  display: none;
}
.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-fixeddivider:after {
  content: none !important;
  display: none !important;
}
.mm-hasdividers .mm-fixeddivider {
  display: block;
}
.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05);
}
/*
	jQuery.mmenu dragOpen addon CSS
*/
html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/*
	jQuery.mmenu iconpanels addon CSS
*/
.mm-iconpanel .mm-panel {
  -webkit-transition-property: -webkit-transform, left, right;
  -moz-transition-property: -moz-transform, left, right;
  -ms-transition-property: -ms-transform, left, right;
  -o-transition-property: -o-transform, left, right;
  transition-property: transform, left, right;
}
.mm-iconpanel .mm-panel.mm-opened {
  border-left: 1px solid;
  border-color: inherit;
}
.mm-iconpanel .mm-panel.mm-subopened {
  overflow-y: hidden;
  left: -40px;
  right: 40px;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-iconpanel .mm-panel.mm-iconpanel-0 {
  left: 0px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-1 {
  left: 40px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-2 {
  left: 80px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-3 {
  left: 120px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-4 {
  left: 160px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-5 {
  left: 200px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-6 {
  left: 240px;
}
.mm-subblocker {
  background: inherit;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.mm-subopened .mm-subblocker {
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -100000px;
  left: 0;
  z-index: 3;
}
/*
	jQuery.mmenu navbars addon CSS
*/
.mm-menu > .mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-navbar-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom: none;
  top: auto;
  bottom: 0;
}
.mm-navbar-top ~ .mm-navbar-top {
  border-bottom: none;
}
.mm-navbar-bottom ~ .mm-navbar-bottom {
  border-top: none;
}
.mm-navbar.mm-hasbtns {
  padding: 0 40px;
}
.mm-close:after {
  content: 'x';
}
.mm-navbar[class*="mm-navbar-content-"] > * {
  box-sizing: border-box;
  display: block;
  float: left;
}
.mm-navbar > .mm-breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px;
}
.mm-navbar > .mm-breadcrumbs > * {
  display: inline-block;
  padding: 10px 3px;
}
.mm-navbar > .mm-breadcrumbs > a {
  text-decoration: underline;
}
.mm-navbar.mm-hasbtns .mm-breadcrumbs {
  margin-left: -40px;
}
.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs {
  margin-left: 0;
  padding-left: 0;
}
.mm-navbar-top-1 {
  top: 0px;
}
.mm-hasnavbar-top-1 .mm-panel {
  top: 40px;
}
.mm-hasnavbar-top-1 .mm-indexer {
  top: 50px;
}
.mm-hasnavbar-top-1 .mm-fixeddivider {
  top: 40px;
}
.mm-navbar-top-2 {
  top: 40px;
}
.mm-hasnavbar-top-2 .mm-panel {
  top: 80px;
}
.mm-hasnavbar-top-2 .mm-indexer {
  top: 90px;
}
.mm-hasnavbar-top-2 .mm-fixeddivider {
  top: 80px;
}
.mm-navbar-top-3 {
  top: 80px;
}
.mm-hasnavbar-top-3 .mm-panel {
  top: 120px;
}
.mm-hasnavbar-top-3 .mm-indexer {
  top: 130px;
}
.mm-hasnavbar-top-3 .mm-fixeddivider {
  top: 120px;
}
.mm-navbar-top-4 {
  top: 120px;
}
.mm-hasnavbar-top-4 .mm-panel {
  top: 160px;
}
.mm-hasnavbar-top-4 .mm-indexer {
  top: 170px;
}
.mm-hasnavbar-top-4 .mm-fixeddivider {
  top: 160px;
}
.mm-navbar-bottom-1 {
  bottom: 0px;
}
.mm-hasnavbar-bottom-1 .mm-panel {
  bottom: 40px;
}
.mm-hasnavbar-bottom-1 .mm-indexer {
  bottom: 50px;
}
.mm-navbar-bottom-2 {
  bottom: 40px;
}
.mm-hasnavbar-bottom-2 .mm-panel {
  bottom: 80px;
}
.mm-hasnavbar-bottom-2 .mm-indexer {
  bottom: 90px;
}
.mm-navbar-bottom-3 {
  bottom: 80px;
}
.mm-hasnavbar-bottom-3 .mm-panel {
  bottom: 120px;
}
.mm-hasnavbar-bottom-3 .mm-indexer {
  bottom: 130px;
}
.mm-navbar-bottom-4 {
  bottom: 120px;
}
.mm-hasnavbar-bottom-4 .mm-panel {
  bottom: 160px;
}
.mm-hasnavbar-bottom-4 .mm-indexer {
  bottom: 170px;
}
.mm-navbar-size-2 {
  height: 80px;
}
.mm-navbar-size-3 {
  height: 120px;
}
.mm-navbar-size-4 {
  height: 160px;
}
.mm-navbar-content-2 > * {
  width: 50%;
}
.mm-navbar-content-3 > * {
  width: 33.33%;
}
.mm-navbar-content-4 > * {
  width: 25%;
}
.mm-navbar-content-5 > * {
  width: 20%;
}
.mm-navbar-content-6 > * {
  width: 16.67%;
}
/*
	jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box;
}
.mm-search {
  height: 40px;
  padding: 7px 10px 0 10px;
}
.mm-search input {
  border: none;
  border-radius: 26px;
  font: inherit;
  font-size: 14px;
  line-height: 26px;
  outline: none;
  display: block;
  width: 100%;
  height: 26px;
  margin: 0;
  padding: 0 10px;
}
.mm-search input::-ms-clear {
  display: none;
}
.mm-panel > .mm-search {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mm-panel.mm-hassearch {
  padding-top: 40px;
}
.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 80px;
}
.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px;
}
.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0;
}
.mm-noresults .mm-noresultsmsg {
  display: block;
}
.mm-noresults .mm-indexer {
  display: none !important;
}
li.mm-nosubresults > a.mm-next {
  display: none;
}
li.mm-nosubresults > a.mm-next + a,
li.mm-nosubresults > a.mm-next + span {
  padding-right: 10px;
}
.mm-menu .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu sectionIndexer addon CSS
*/
.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -ms-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.85%;
}
.mm-indexer ~ .mm-panel.mm-hasindexer {
  padding-right: 40px;
}
.mm-hasindexer .mm-indexer {
  right: 0;
}
.mm-hasindexer .mm-fixeddivider {
  right: 20px;
}
.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu toggles addon CSS
*/
input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}
label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
}
label.mm-toggle:before,
label.mm-check:before {
  content: '';
  display: block;
}
label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px;
}
label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}
input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right;
}
label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px;
}
label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
input.mm-check:checked ~ label.mm-check:before {
  opacity: 1;
}
li.mm-vertical label.mm-toggle,
li.mm-vertical label.mm-check {
  bottom: auto;
  margin-top: 0;
}
li.mm-vertical label.mm-toggle {
  top: 5px;
}
li.mm-vertical label.mm-check {
  top: 5px;
}
label.mm-toggle,
label.mm-check {
  right: 20px;
}
label.mm-toggle + a,
label.mm-toggle + span {
  padding-right: 80px;
}
label.mm-check + a,
label.mm-check + span {
  padding-right: 60px;
}
a.mm-next + label.mm-toggle,
a.mm-next + label.mm-check {
  right: 60px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span,
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  margin-right: 50px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span {
  padding-right: 70px;
}
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  padding-right: 50px;
}
em.mm-counter + a.mm-next + label.mm-toggle,
em.mm-counter + a.mm-next + label.mm-check {
  right: 100px;
}
em.mm-counter + a.mm-next + label.mm-toggle + a,
em.mm-counter + a.mm-next + label.mm-toggle + span,
em.mm-counter + a.mm-next + label.mm-check + a,
em.mm-counter + a.mm-next + label.mm-check + span {
  margin-right: 90px;
}
.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu label.mm-toggle:before {
  background: #f3f3f3;
}
.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7);
}
/*
	jQuery.mmenu borderstyle extension CSS
*/
.mm-menu.mm-border-none .mm-listview > li:after,
.mm-listview.mm-border-none > li:after {
  content: none;
}
.mm-menu.mm-border-full .mm-listview > li:after,
.mm-listview.mm-border-full > li:after {
  left: 0 !important;
}
/*
	jQuery.mmenu effects extension CSS
*/
html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}
html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu .mm-menu.mm-effect-slide-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-slide-menu.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
html.mm-effect-slide-menu.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
html.mm-effect-fade-menu .mm-menu.mm-effect-fade-menu {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
html.mm-effect-fade-menu.mm-opening .mm-menu.mm-effect-fade-menu {
  opacity: 1;
}
.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}
.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(1) {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(2) {
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(3) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(4) {
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(5) {
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(6) {
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(7) {
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(8) {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(9) {
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}
html.mm-effect-slide-listitems.mm-opening .mm-menu.mm-effect-slide-listitems .mm-panel.mm-opened .mm-listview > li {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*
	jQuery.mmenu fullscreen extension CSS
*/
.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}
html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}
html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}
.mm-menu.mm-fullscreen.mm-top,
.mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}
html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}
/*
	jQuery.mmenu multiline extension CSS
*/
.mm-menu.mm-multiline .mm-listview > li > a,
.mm-menu.mm-multiline .mm-listview > li > span,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > a,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > span {
  text-overflow: clip;
  white-space: normal;
}
/*
	jQuery.mmenu pageshadow extension CSS
*/
.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
}
.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%;
}
.mm-menu.mm-pageshadow.mm-next:after,
.mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none;
}
.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.mm-menu.mm-right {
  left: auto;
  right: 0;
}
.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}
html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
  }
}
/*
	jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}
.mm-menu.mm-front {
  z-index: 1;
}
.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}
/*
	jQuery.mmenu themes extension CSS
*/
.mm-menu.mm-theme-dark {
  background: #333333;
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-navbar > *,
.mm-menu.mm-theme-dark .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview {
  border-color: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-dark .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark .mm-divider {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333333;
}
.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-white {
  background: white;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-navbar > *,
.mm-menu.mm-theme-white .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-white .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white .mm-divider {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white label.mm-toggle:before {
  background: white;
}
.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-black {
  background: black;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-navbar > *,
.mm-menu.mm-theme-black .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-black .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-divider {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none;
}
.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-toggle:before {
  background: black;
}
.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
/*
	jQuery.mmenu tileview extension CSS
*/
.mm-menu.mm-tileview .mm-listview:after,
.mm-menu .mm-tileview.mm-listview:after {
  content: '';
  display: block;
  clear: both;
}
.mm-menu.mm-tileview .mm-listview > li,
.mm-menu .mm-tileview.mm-listview > li {
  width: 50%;
  height: 0;
  padding: 50% 0 0 0;
  float: left;
  position: relative;
}
.mm-menu.mm-tileview .mm-listview > li:after,
.mm-menu .mm-tileview.mm-listview > li:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-xs,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-s,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-s {
  width: 25%;
  padding-top: 25%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-l,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-l {
  width: 75%;
  padding-top: 75%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-xl,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xl {
  width: 100%;
  padding-top: 100%;
}
.mm-menu.mm-tileview .mm-listview > li > a,
.mm-menu.mm-tileview .mm-listview > li > span,
.mm-menu .mm-tileview.mm-listview > li > a,
.mm-menu .mm-tileview.mm-listview > li > span {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0;
}
.mm-menu.mm-tileview .mm-listview > li > .mm-next,
.mm-menu .mm-tileview.mm-listview > li > .mm-next {
  width: auto;
}
.mm-menu.mm-tileview .mm-listview > li > .mm-next:before,
.mm-menu.mm-tileview .mm-listview > li > .mm-next:after,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:before,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:after {
  content: none;
  display: none;
}
.mm-menu.mm-tileview .mm-panel {
  padding-left: 0;
  padding-right: 0;
}
.mm-menu.mm-tileview .mm-panel:after {
  content: none;
  display: none;
}
.mm-menu.mm-tileview .mm-listview {
  margin: 0;
}
@font-face {
  font-family: "XXII-DONT-MESS-WITH-VIKINGS";
  src: url("../fonts/XXII-DONT-MESS-WITH-VIKINGS.svg");
  src: url("../fonts/XXII-DONT-MESS-WITH-VIKINGS.eot");
  src: url("../fonts/XXII-DONT-MESS-WITH-VIKINGS.otf");
  src: url("../fonts/XXII-DONT-MESS-WITH-VIKINGS.ttf");
  src: url("../fonts/XXII-DONT-MESS-WITH-VIKINGS.woff");
}
.page {
  text-align: center;
}
.page a {
  display: inline-block;
  border: 1px solid #e4e4e4;
  line-height: 40px;
  color: #666666;
  font-size: 14px;
  margin: 0 1px;
  transition: all .5s;
  padding: 0 16px;
}
.page a:hover,
.page a.cur {
  background: #0c5194;
  border-color: #0c5194;
  color: #fff;
}
.bread {
  border-bottom: 1px solid #e7e7e7;
  line-height: 65px;
  color: #666666;
  font-size: 14px;
}
.bread .container {
  background: url(../images/bread_bg.jpg) no-repeat left center;
  padding-left: 25px;
}
.bread a {
  color: #666666;
}
.bread a:hover {
  color: #0c5194;
}
.bread span {
  color: #0c5194;
}
body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 74%;
  width: 100%;
}
img {
  max-width: 100%;
}
.header_top {
 /* background: #030304;*/
  height: 50px;
  line-height: 50px;
  color: #cccccc;
  font-size: 12px;
	background: url(../images/toubutu.png) ;
	 background-repeat: repeat-x;
}
.header_top .icon a {
  display: block;
  float: left;
  color: #cccccc;
  padding: 0 18px;
  position: relative;
}
.header_top .icon a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 1px;
  height: 9px;
  background: url(../images/icon1.jpg) no-repeat center center / cover;
}
.header_top .icon a:first-child:before {
  display: none;
}
.header_top .icon a:last-child {
  padding-right: 0;
}
.header_top .icon a i {
  display: inline-block;
  margin-right: 6px;
  position: relative;
}
.header_top .icon a .i1 {
  width: 11px;
  height: 12px;
  background: url(../images/top1.png) no-repeat center center / cover;
}
.header_top .icon a .i2 {
  top: 1px;
  width: 14px;
  height: 13px;
  background: url(../images/top2.png) no-repeat center center / cover;
}
.header_top .icon a .i3 {
  top: 2px;
  width: 14px;
  height: 13px;
  background: url(../images/top3.png) no-repeat center center / cover;
}
.header_top .icon a .i4 {
  top: 2px;
  width: 14px;
  height: 14px;
  background: url(../images/top4.png) no-repeat center center / cover;
}
.header_top .icon a .i5 {
  top: 2px;
  width: 12px;
  height: 12px;
  background: url(../images/top5.png) no-repeat center center / cover;
}
.header {
  width: 100%;
}
.header .top {
  height: 100px;
}
.header .top .logo {
  margin-top: 21px;
  float: left;
  display: block;
  line-height: 0;
}
.header .top ul {
  float: right;
  padding-top: 32px;
}
.header .top ul li {
  color: #fff;
  margin-left: 32px;
  float: left;
}
.header .top ul li:first-child {
  margin-left: 0;
}
.header .top ul li .icon {
  width: 40px;
  line-height: 0;
  float: left;
}
.header .top ul li .text {
  float: left;
  margin-left: 22px;
}
.header .top ul li .text h3 {
  font-size: 16px;
  font-weight: normal;
}
.header .top ul li .text p {
  font-size: 12px;
}
.header .menu {
  background: #0c5194;
  height: 75px;
  margin: 0 6%;
  padding: 0 13%;
}
.header .menu .nav {
  float: left;
}
.header .menu .nav ul li {
  float: left;
  font-size: 18px;
  height: 75px;
  text-align: left;
  padding: 20px 24px 0;
  position: relative;
}
.header .menu .nav ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -16.5px;
  width: 1px;
  height: 33px;
  background: url(../images/icon2.jpg) no-repeat center center / cover;
}
.header .menu .nav ul li a {
  display: block;
  width: 100%;
  color: #fff;
  padding-bottom: 10px;
}
.header .menu .nav ul li a span {
  display: block;
  font-size: 12px;
}
.header .menu .nav ul li a i {
  display: inline-block;
  width: 9px;
  height: 5px;
  background: url(../images/icon6.jpg) no-repeat center center / cover;
  margin-left: 12px;
  position: relative;
  top: -3px;
}
.header .menu .nav ul li:first-child {
  padding-left: 0;
}
.header .menu .nav ul li:first-child:before {
  display: none;
}
.header .menu .nav ul li:hover a,
.header .menu .nav ul li.cur a {
  border-bottom: 2px solid #fff;
}
.header .menu .search {
  padding-top: 17px;
  float: right;
  height: 40px;
  line-height: 40px;
}
.header .menu .search .text {
  width: 208px;
  float: left;
  background: #fff;
  border: none;
  font-size: 14px;
  color: #000;
  height: 40px;
  line-height: 40px;
  padding:0 20px;
  margin-right:10px;  
}
.header .menu .search .btn {
  margin-top: 12px;
  float: left;
  width: 15px;
  height: 15px;
  background: url(../images/btn.jpg) no-repeat center center / cover;
  border: none;
}
.header .icon_btn {
  float: right;
  padding-top: 30px;
}
.header .icon_btn a {
  display: block;
  width: 44px;
  height: 44px;
  float: left;
  margin-left: 15px;
}
.header .icon_btn a:first-child {
  margin-left: 0;
}
.header .navbtn {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 4%;
  margin-top: -2%;
  overflow: hidden;
  z-index: 999;
  line-height: 0;
  display: none;
}
.footer {
  background: #0e1f39;
}
.footer .foot_nav_box {
  border-bottom: 1px solid #1a2a43;
  padding: 20px 0;
}
.footer .foot_nav_box .foot_nav {
  float: left;
}
.footer .foot_nav_box .foot_nav a {
  display: block;
  float: left;
  color: #ffffff;
  font-size: 14px;
  padding: 0 30px;
  position: relative;
}
.footer .foot_nav_box .foot_nav a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 1px;
  height: 12px;
  background: #3e4c61;
}
.footer .foot_nav_box .foot_nav a:first-child {
  padding-left: 0;
}
.footer .foot_nav_box .foot_nav a:first-child:before {
  display: none;
}
.footer .foot_nav_box .fx_icon {
  float: right;
  padding-top: 2px;
}
.footer .foot_nav_box .fx_icon a {
  display: block;
  float: left;
  line-height: 0;
  margin-left: 30px;
}
.footer .footer_box .left {
  padding: 40px 0;
  float: left;
  max-width: 530px;
  width: 100%;
  border-right: 1px solid #1a2a43;
}
.footer .footer_box .left .ewm {
  float: left;
  line-height: 0;
  display: block;
}
.footer .footer_box .left .dh {
  margin-left: 54px;
  margin-top: 15px;
  float: left;
}
.footer .footer_box .left .dh span {
  display: block;
  float: left;
  line-height: 0;
}
.footer .footer_box .left .dh .t {
  margin-top: -2px;
  float: left;
  margin-left: 17px;
}
.footer .footer_box .left .dh .t p {
  color: #656565;
  font-size: 12px;
}
.footer .footer_box .left .dh .t h3 {
  color: #fff;
  font-size: 24px;
  font-family: arial;
}
.footer .footer_box .left .dh .t .d {
  font-size: 12px;
  color: #b9bcc0;
}
.footer .footer_box .right {
  float: right;
  padding-top: 45px;
  max-width: 800px;
  width: 100%;
}
.footer .footer_box .right p {
  color: #b9bcc0;
  font-size: 14px;
  line-height: 36px;
  padding-left: 35px;
}
.footer .footer_box .right .d1 {
  background: url(../images/d1.png) no-repeat left center;
}
.footer .footer_box .right .d2 {
  background: url(../images/d2.png) no-repeat left center;
}
.footer .footer_box .right .d3 {
  background: url(../images/d3.png) no-repeat left center;
}
.footer .footer_box .right .d4 {
  background: url(../images/d4.png) no-repeat left center;
}
.banquan {
  border-top: 1px solid #1a2a43;
  background: #07152b;
  padding: 20px 0;
  color: #b9bcc0;
  font-size: 12px;
}
.banquan a {
  color: #b9bcc0;
}
.banner_box {
  position: relative;
  z-index: 1;
}
.banner_box .num {
  position: absolute;
  text-align: center;
  bottom: 26px;
  width: 100%;
  z-index: 2;
  color: #fff;
  font-size: 16px;
}
.banner_box .num span {
  display: inline-block;
  margin: 0 5px;
}
.banner_box .num .on {
  font-size: 24px;
}
.banner {
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .slick-prev,
.banner .slick-next {
  width: 32px;
  height: 58px;
  margin-top: -29px;
  border: none;
}
.nybanner .slick-prev,
.nybanner .slick-next {
  width: 32px;
  height: 58px;
  margin-top: -29px;
  border: none;
}
.nybanner .slick-prev,
.banner .slick-prev {
  background: url(../images/prev.png) no-repeat center center / cover;
  left: 6%;
}
.nybanner .slick-next,
.banner .slick-next {
  background: url(../images/next.png) no-repeat center center / cover;
  right: 6%;
}
.title span {
  font-size: 70px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: arial;
  line-height: 86px;
  color:#ecefee;
  margin-left: -5px;
}

.title h3 {
  color: #333;
  font-size: 30px;
  margin-top: -48px;
}
.title h5 {
  color: #fff;
  font-size: 30px;
  margin-top: -48px;
}

.title p {
  margin-top: 15px;
  color: #333333;
  font-size: 18px;
}
.title2 {
  text-align: center;
}
.ny_title {
  text-align: center;
}
.ny_title h3 em {
  color: #0c5194;
  font-style: normal;
}
.home_about {
  background: url(../images/home_bg.jpg) no-repeat center top;
  /*min-height: 734px;*/
  min-height: 700px;
  padding-top: 32px;
}
.home_about .left {
  padding-top: 130px;
  width: 46%;
  float: left;
}
.home_about .left ol {
  margin-top: 30px;
}
.home_about .left ol li {
  float: left;
  width: 33.33333333%;
}
.home_about .left ol li .bt {
  font-size: 14px;
  color: #333333;
}
.home_about .left ol li .bt span {
  color: #0c5194;
  font-size: 48px;
  font-weight: bold;
  font-family: arial;
  position: relative;
  bottom: -2px;
}
.home_about .left ol li p {
  color: #333333;
  font-size: 18px;
}
.home_about .left .text {
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  margin-top: 35px;
}
.home_about .left .more {
    display: block;
    width: 114px;
    line-height: 36px;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
	background: #0c5194;
	margin-top:15px;
}

.about_box4 .box .left .gushi{
	   display: block;
    width: 114px;
    line-height: 36px;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
	background: #0c5194;
}
.home_about .right {
  float: right;
  width: 42%;
  margin-right: 2%;
  position: relative;
  margin-top: 80px
}
.home_about .right .gun {
  display: block;
  line-height: 0;
}
.home_about .right .icon {
  position: absolute;
  right: -4%;
  top: 8%;
  width: 21%;
  line-height: 0;
}
.home_about .right .more {
  line-height: 0;
  margin-top: -9.5%;
  margin-left: -3.2%;
  width: 13%;
  display: block;
  z-index:9;
      position: relative;
}
.home_pro {
  padding-bottom: 70px;
  margin-top: 90px;
}
.home_pro ol {
  margin-top: 35px;
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}
.home_pro ol li {
  float: left;
  width: 25%;
  border-bottom: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  min-height: 225px;
  padding: 36px 40px 0;
  position: relative;
}
.home_pro ol li h3 {
  color: #0c5194;
  font-size: 18px;
  font-weight: bold;
}
.home_pro ol li .t {
  margin-top: 20px;
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  height: 78px;
}
.home_pro ol li span {
  display: block;
  color: #666666;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 26px;
}
.home_pro ol li .num {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #cccccc;
  font-size: 12px;
  font-family: arial;
}
.home_pro ol li .img_bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  line-height: 0;
}
.home_pro ol li .img_bg img {
  width: 100%;
}
.home_pro ol li .img {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  line-height: 0;
}
.home_pro ol li .img img {
  width: 1005;
}
.home_pro ol li:nth-child(2),
.home_pro ol li:nth-child(4),
.home_pro ol li:nth-child(5),
.home_pro ol li:nth-child(7) {
  background: #fcfcfc;
}
.home_pro ol li:hover,
.home_pro ol li.cur {
  background: url(../images/probg.jpg) no-repeat center center / cover;
  background-size: 100% 100%;
}
.home_pro ol li:hover h3,
.home_pro ol li.cur h3,
.home_pro ol li:hover .t,
.home_pro ol li.cur .t,
.home_pro ol li:hover span,
.home_pro ol li.cur span,
.home_pro ol li:hover .num,
.home_pro ol li.cur .num {
  color: #fff;
}
.home_pro ol li:hover .img_bg,
.home_pro ol li.cur .img_bg {
  display: none;
}
.home_pro ol li:hover .img,
.home_pro ol li.cur .img {
  display: block;
}
.home_solution_box {
 /* background: #0c5194 url(../images/home_solution_bg.jpg) no-repeat left bottom; */
}
.home_solution_box .container {
  position: relative;
	background: #0c5194 url(../images/home_solution_bg.jpg) no-repeat left bottom;

}
.home_solution_box .title2 {
  position: absolute;
  left: 2%;
  top: 100px;
  color: #fff;
}
.home_solution_box .title2 h3 {
  display: inline-block;
  font-size: 30px;
  padding: 0 20px;
  position: relative;
}
.home_solution_box .title2 h3:before,
.home_solution_box .title2 h3:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
}
.home_solution_box .title2 h3:before {
  left: 0;
  top: -3px;
  background: url(../images/solution_icon1.png) no-repeat center center / cover;
}
.home_solution_box .title2 h3:after {
  right: 0;
  bottom: -3px;
  background: url(../images/solution_icon2.png) no-repeat center center / cover;
}
.home_solution_box .title2 h3 span {
  font-weight: normal;
  text-transform: uppercase;
  color: #a6b6ce;
  font-size: 24px;
  display: inline-block;
  margin-left: 20px;
}
.home_solution .box .text {
  float: left;
  width: 50%;
 /* padding: 170px 3% 0 13%; */
 padding: 170px 3% 0 2%;
  color: #fff;
}
.home_solution .box .text .bt {
  font-size: 24px;
  font-weight: normal;
}
.home_solution .box .text .t {
  color: #ffffff;
  font-size: 14px;
  line-height: 26px;
  margin-top: 20px;
  height: 130px;
  overflow: hidden;
}
.home_solution .box .text a.more {
/*  margin-top: 76px; */
	margin-top: 0;
  display: block;
  width: 186px;
  line-height: 40px;
  text-align: center;
  background: #990000;
  border-radius: 50px;
  color: #fff;
}
.home_solution .box .img {
  float: right;
  width: 50%;
  line-height: 0;
}
.home_solution .slick-prev,
.home_solution .slick-next {
  width: 60px;
  height: 60px;
  margin-top: 0;
  top: auto;
  bottom: -20px;
  border: none;
}
.home_solution .slick-prev {
  background: url(../images/prev2.jpg) no-repeat center center / cover;
  left: 45.88%;
}
.home_solution .slick-next {
  background: url(../images/next2.jpg) no-repeat center center / cover;
  right: 45.8%;
}
.home_news {
  /*padding: 50px 0 80px;*/
  padding: 20px 0 0;
}
.home_news .news_btn {
  margin-top: 35px;
}
.home_news .news_btn a {
  display: block;
  float: left;
  width: 114px;
  line-height: 36px;
  color: #000000;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  border: 1px solid #b6cadf;
    border-radius: 5px;
    margin-right: 14px;
}
.home_news .news_btn a.cur {
  background: #0c5194;
  color: #fff;
}
.home_news .home_news_box {
  overflow: hidden;
  margin-top: 38px;
  padding-bottom: 83px;
}
.home_news .home_news_box ul {
  margin-left: -2%;
  margin-right: -2%;
}
.home_news .home_news_box ul li {
  float: left;
  width: 25%;
  padding: 0 2%;
  border-right: 1px solid #efefef;
}
.home_news .home_news_box ul li:last-child {
  /*border-right: none;*/
}
.home_news .home_news_box ul li .img {
  line-height: 0;
  overflow: hidden;
}
.home_news .home_news_box ul li .text {
  padding-top: 12px;
}
.home_news .home_news_box ul li .text .date p {
  height: auto;
}
.home_news .home_news_box ul li .text .date .ri {
  color: #999999;
  font-size: 20px;
}
.home_news .home_news_box ul li .text .date .nian {
  color: #cccccc;
  font-size: 12px;
}
.home_news .home_news_box ul li .text h3 {
  margin-top: 10px;
  color: #333333;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .home_news_box ul li .text i {
  display: block;
  width: 18px;
  height: 1px;
  background: #cccccc;
  margin: 12px 0;
}
.home_news .home_news_box ul li .text p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.home_news .home_news_box ul li .text span {
  text-transform: uppercase;
  color: #666666;
  font-size: 14px;
}
.nybanner img {
  width: 100%;
  float: left;
}
.news_box {
  padding: 60px 0 70px;
}
.news_box .news_tit {
  position: relative;
  z-index: 2;
  margin-top: 35px;
  text-align: center;
}
.news_box .news_tit a {
  display: inline-block;
  width: 150px;
  line-height: 46px;
  color: #333333;
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-size: 16px;
  margin: 0 10px;
}



.news_box .news_tit a:hover,
.news_box .news_tit a.cur {
  background: #0c5194;
  color: #fff;
}
.news_box .news_list {
  margin-top: 20px;
}
.news_box .news_list ul {
  margin-bottom: 50px;
}
.news_box .news_list ul li {
  margin-top: 20px;
  float: left;
  width: 100%;
  border: 1px solid #e6e6e6;
  padding: 20px;
  background: #fff;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
.news_box .news_list ul li .img {
  display: block;
  float: left;
  width: 25%;
  line-height: 0;
  overflow: hidden;
}
.news_box .news_list ul li .img img {
  width: 100%;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}
.news_box .news_list ul li .text {
  float: left;
  width: 54%;
  margin-left: 3%;
  padding-top: 3%;
}
.news_box .news_list ul li .text .bt {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #333333;
  font-size: 18px;
  font-weight: normal;
}
.news_box .news_list ul li .text p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  margin-top: 2%;
}
.news_box .news_list ul li .text .bottom {
  margin-top: 3.6%;
  font-size: 13px;
}
.news_box .news_list ul li .text .bottom span {
  display: block;
  float: left;
  margin-left: 23px;
  padding-left: 22px;
  color: #999999;
}
.news_box .news_list ul li .text .bottom span:first-child {
  margin-left: 0;
}
.news_box .news_list ul li .text .bottom span.f-r {
  display: none;
}
.news_box .news_list ul li .text .bottom .a1 {
  background: url(../images/news_icon1.jpg) no-repeat left center;
  padding-left: 19px;
}
.news_box .news_list ul li .text .bottom .a2 {
  background: url(../images/news_icon2.jpg) no-repeat left center;
}
.news_box .news_list ul li .right {
  float: right;
  text-align: right;
  padding-top: 1.4%;
}
.news_box .news_list ul li .right span {
  display: block;
  color: #999999;
  font-size: 18px;
}
.news_box .news_list ul li .right .more {
  margin-top: 9%;
  background: url(../images/news_icon.png) no-repeat right center;
  line-height: 40px;
  height: 40px;
  display: block;
  width: 120px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
.news_box .news_list ul li .right .more span {
  display: none;
}
.news_box .news_list ul li:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.news_box .news_list ul li:hover .img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.news_box .news_list ul li:hover .text .bt {
  color: #0c5194;
}
.news_box .news_list ul li:hover .right .more {
  display: block;
  text-align: center;
  background: #990000 url(../images/news_icon4.jpg) no-repeat right center;
}
.news_box .news_list ul li:hover .right .more span {
  display: block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
.news_box .mian_box .newsshow {
  width: 72%;
  float: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 25px 28px 35px;
}
.news_box .mian_box .newsshow h1 {
  color: #333333;
  font-size: 26px;
  font-weight: normal;
}
.news_box .mian_box .newsshow .date {
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}
.news_box .mian_box .newsshow .date span {
  display: block;
  float: left;
  color: #999999;
  margin-right: 50px;
  padding-left: 22px;
}
.news_box .mian_box .newsshow .date .s1 {
  background: url(../images/news_icon5.jpg) no-repeat left center;
}
.news_box .mian_box .newsshow .date .s2 {
  background: url(../images/news_icon1.jpg) no-repeat left center;
}
.news_box .mian_box .newsshow .date .s3 {
  background: url(../images/news_icon2.jpg) no-repeat left center;
}
.news_box .mian_box .newsshow .date .s4 {
  background: url(../images/news_icon3.jpg) no-repeat left center;
}

.news_box .mian_box .newsshow .detail {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  padding-top: 20px;
}
.news_box .mian_box .newsshow .detail .bt {
  color: #333;
  font-size: 18px;
}
.news_box .mian_box .newsshow .fy_bottom {
  margin-top: 40px;
}
.news_box .mian_box .newsshow .fy_bottom ul {
  float: left;
  max-width: 100%;
  width: 100%;
}
.news_box .mian_box .newsshow .fy_bottom ul li {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 44px;
  border-bottom: 1px solid #eeeeee;
}
.news_box .mian_box .newsshow .fy_bottom ul li:last-child {
  border-bottom: none;
}
.news_box .mian_box .newsshow .fy_bottom ul li a {
  display: block;
  color: #777777;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_box .mian_box .newsshow .fy_bottom ul li a span {
  color: #333333;
}
.news_box .mian_box .newsshow .fy_bottom .fx_box {
  float: left;
  margin-top: 15px;
  width: 100%;
  line-height: 24px;
}
.news_box .mian_box .newsshow .fy_bottom .fx_box span {
  display: block;
  float: left;
  padding-left: 20px;
  position: relative;
}
.news_box .mian_box .newsshow .fy_bottom .fx_box span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  background: url(../images/fx_icon.jpg) no-repeat center center;
  width: 14px;
  height: 14px;
}
.news_box .mian_box .newsshow .fy_bottom .fx_box a {
  display: block;
  float: left;
  margin-right: 5px;
}
.news_box .mian_box .down_show h1 {
  color: #0c5194;
}
.news_box .mian_box .down_show .down_show_top {
  border-bottom: 1px solid #eeeeee;
  padding: 20px 0 30px;
}
.news_box .mian_box .down_show .down_show_top .img {
  float: left;
  width: 25%;
  line-height: 0;
}
.news_box .mian_box .down_show .down_show_top .text {
  float: right;
  width: 73%;
}
.news_box .mian_box .down_show .down_show_top .text .banben {
  margin-top: 10px;
  color: #333333;
  font-size: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}
.news_box .mian_box .down_show .down_show_top .text .t {
  margin-top: 15px;
  color: #666;
  font-size: 14px;
  line-height: 24px;
}
.news_box .mian_box .down_show .down_show_top .text .down_btn {
  margin-top: 25px;
}
.news_box .mian_box .down_show .down_show_top .text .down_btn a {
  display: block;
  float: left;
  width: 208px;
  height: 54px;
  background: url(../images/down_bg1.jpg) repeat-x;
  color: #ffffff;
  font-size: 22px;
  line-height: 52px;
  text-align: center;
  margin-right: 20px;
  border-radius: 3px;
}
.news_box .mian_box .down_show .down_show_top .text .down_btn a i {
  margin-right: 10px;
  display: inline-block;
  width: 23px;
  height: 23px;
  background: url(../images/down_bg2.png) no-repeat center center / cover;
  position: relative;
  top: 3px;
}
.news_box .mian_box .down_show .down_show_con {
  padding-top: 30px;
}
.news_box .mian_box .down_show .down_show_con .detail {
  padding-top: 10px;
  word-wrap: break-word;
  word-break: normal;
}
/*.news_box .mian_box .down_show .down_show_con .detail p{
    overflow: auto;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
}*/
.news_box .mian_box .right_con {
  float: right;
  width: 25%;
}
.news_box .mian_box .right_con h3 {
  background: #ededed;
  line-height: 58px;
  color: #333333;
  font-size: 22px;
  font-weight: normal;
  padding: 0 20px;
      text-align: center;
}
.news_box .mian_box .right_con .tjkc {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.news_box .mian_box .right_con .tjkc ul li {
  line-height: 52px;
  float: left;
  width: 100%;
  font-size: 16px;
  padding: 0 20px;
  border-bottom: 1px solid #f5f5f5;
}
.news_box .mian_box .right_con .tjkc ul li a {
  display: block;
  color: #8b8b8b;
  background: url(../images/news_jt.jpg) no-repeat right center;
}
.news_box .mian_box .right_con .tjkc ul li:hover a {
  color: #0c5194;
}
.news_box .mian_box .right_con .rdxx {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.news_box .mian_box .right_con .rdxx ul li {
  float: left;
  border-bottom: 1px solid #f5f5f5;
  padding: 20px;
}
.news_box .mian_box .right_con .rdxx ul li .img {
  width: 45%;
  line-height: 0;
  float: left;
}
.news_box .mian_box .right_con .rdxx ul li .bt {
  float: right;
  width: 50%;
  color: #333333;
  font-size: 16px;
  line-height: 26px;
  height: 78px;
  overflow: hidden;
}
.news_box .mian_box .right_con .rdxx ul li:hover .bt {
  color: #0c5194;
}
.news_box .mian_box .right_con .cjwt {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}
.news_box .mian_box .right_con .cjwt ul li {
  font-size: 16px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #f7f8fa;
  line-height: 52px;
  padding: 0 20px;
}
.news_box .mian_box .right_con .cjwt ul li a {
  display: block;
  color: #333333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_box .mian_box .right_con .cjwt ul li:hover a {
  color: #0c5194;
}
.news_box2 {
  padding-top: 35px;
}
.down_box {
  background: #f1f1f1;
  padding: 20px 0;
}
.down_box .down_top ul li {
  padding: 15px 0;
  float: left;
  width: 100%;
  border-bottom: 1px solid #fff;
}
.down_box .down_top ul li span {
  display: block;
  float: left;
  background: url(../images/down_bg.png) no-repeat center center / cover;
  width: 96px;
  line-height: 30px;
  color: #0c5194;
  font-size: 14px;
  padding-left: 12px;
  margin-top: 5px;
}
.down_box .down_top ul li .text {
  float: right;
  width: 91%;
}
.down_box .down_top ul li .text a {
  display: block;
  float: left;
  line-height: 30px;
  padding: 0 20px;
  color: #333333;
  border-radius: 3px;
  margin: 5px 10px 5px 0;
  font-size: 15px;
}
.down_box .down_top ul li .text a:hover,
.down_box .down_top ul li .text a.cur {
  background: #990000;
  color: #fff;
}
.down_box .down_top .search {
  margin-top: 20px;
  width: 316px;
  height: 42px;
  background: #fff;
  border: 1px solid #ececec;
}
.down_box .down_top .search .text {
  width: 80%;
  float: left;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  color: #333333;
  border: none;
  font-size: 14px;
  -webkit-appearance: none;
}
.down_box .down_top .search .btn {
  float: right;
  width: 38px;
  background: url(../images/btn2.jpg) no-repeat center center / cover;
  height: 40px;
  border: none;
  -webkit-appearance: none;
}
.down_con {
  padding: 30px 0 60px;
}
.down_con h3 {
  color: #666666;
  font-size: 18px;
  font-weight: normal;
}
.down_con .tables {
  margin-top: 15px;
}
.down_con .tables table {
  border: 1px solid #eeeeee;
}
.down_con .tables table tr {
  border: 1px solid #eeeeee;
}
.down_con .tables table tr th {
  font-weight: normal;
  color: #fff;
  font-size: 16px;
  background: #0c5194;
  border: 1px solid #eeeeee;
  padding: 15px;
}
.down_con .tables table tr td {
  border: 1px solid #eeeeee;
  /*padding: 15px;*/
  padding:0 15px;
  color: #333333;
  font-size: 16px;
  line-height: 26px;
      text-align: center;
}
.down_con .tables table tr td .bt {
  color: #333333;
  font-size: 16px;
  display: block;
}
.down_con .tables table tr td .bt:hover {
  color: #0c5194;
}
.down_con .tables table tr td .t {
     padding: 8px 22px;
     line-height: 26px;
     color: #333333;
     font-size: 16px;
}
.down_con .tables table tr td .chakan,
.down_con .tables table tr td .xiazai {
  background: #f4f7fe;
  display: inline-block;
  line-height: 34px;
  color: #666666;
  width: 115px;
  margin: 5px 0;
}
.down_con .tables table tr td .chakan i {
  background: url(../images/chakan.png) no-repeat center center / cover;
  display: inline-block;
  width: 16px;
  height: 10px;
  margin-right: 8px;
}
.down_con .tables table tr td .chakan:hover {
  color: #fff;
  background: #0c5194;
}
.down_con .tables table tr td .chakan:hover i {
  background-image: url(../images/chakan_2.png);
}
.down_con .tables table tr td .xiazai i {
  background: url(../images/xiazai.png) no-repeat center center / cover;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}
.down_con .tables table tr td .xiazai:hover {
  color: #fff;
  background: #0c5194;
}
.down_con .tables table tr td .xiazai:hover i {
  background-image: url(../images/xiazai_2.png);
}
.down_con .tables table tr td:first-child {
  width: 30%;
}
.down_con .tables table tr td:first-child + td {
  width: 35%;
}
.down_con .tables table tr td:first-child + td + td,
.down_con .tables table tr td:first-child + td + td + td {
  text-align: center;
  width:10%;
}
.pro_leve .gation,
.pro_leve .gation_con {
  float: left;
  width: 100%;
}
.pro_leve .gation .box,
.pro_leve .gation_con .box {
  padding: 15px 0;
  float: left;
  width: 100%;
}
.pro_leve .gation .box span,
.pro_leve .gation_con .box span {
  display: block;
  float: left;
  background: url(../images/leve_bg.png) no-repeat center center / cover;
  width: 99px;
  line-height: 34px;
  height: 39px;
  color: #0c5194;
  font-size: 14px;
  padding-left: 12px;
  margin-top: 2px;
}
.pro_leve .gation .box .text,
.pro_leve .gation_con .box .text {
  float: right;
  width: 91%;
}
.pro_leve .gation .box .text a,
.pro_leve .gation_con .box .text a {
  display: block;
  float: left;
  line-height: 30px;
  padding: 0 20px;
  color: #333333;
  border-radius: 3px;
  margin: 5px 10px 5px 0;
  font-size: 15px;
}
.pro_leve .gation .box .text a:hover,
.pro_leve .gation_con .box .text a:hover,
.pro_leve .gation .box .text a.cur,
.pro_leve .gation_con .box .text a.cur {
  background: #005093;
  color: #fff;
}
.pro_leve .gation {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}
.pro_leve .gation_con {
  background: #eeeeee;
}
.pro_leve .gation_con .box .text {
  float: right;
  width: 91%;
}
.pro_leve .gation_con .box .text a {
  display: block;
  float: left;
  line-height: 30px;
  padding: 0 20px;
  color: #333333;
  border-radius: 3px;
  margin: 5px 10px 5px 0;
  font-size: 15px;
}
.pro_leve .gation_con .box .text a:hover,
.pro_leve .gation_con .box .text a.cur {
 /* background: none;
  color: #005093;*/
  background: rgba(0, 80, 147, 0.62);
  color: #fff;
}
.pro_list {
  padding: 45px 0;
}
.pro_list ul li {
  float: left;
  width: 23.5%;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 2%;
  margin-right: 2%;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}
.pro_list ul li:nth-child(4n) {
  margin-right: 0;
}
.pro_list ul li .img {
  line-height: 0;
  overflow: hidden;
}
.pro_list ul li .img img {
  width: 100%;
  /*-webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;*/
}
.pro_list ul li .text {
  color: #333333;
  font-size: 16px;
  line-height: 58px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.pro_list ul li:hover {
  background: #0c5194;
}/*
.pro_list ul li:hover .img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}*/
.pro_list ul li:hover .text {
  color: #fff;
}
.proshow_box {
  padding: 40px 0 60px;
}
.proshow_box .left {
  float: left;
  width: 42%;
}
.proshow_box .left img {
  width: 100%;
}
.proshow_box .left .dt_btn {
  margin-left: -5px;
  margin-right: -5px;
}
.proshow_box .left .dt_btn .img {
  padding: 5px;
}
.proshow_box .left .dt_btn .img img {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.proshow_box .left .xt_btn {
  margin-top: 25px;
  margin-left: -8px;
}
.proshow_box .left .xt_btn .img {
  margin-left: 8px;
}
.proshow_box .left .xt_btn .img img {
  border: 1px solid #eeeeee;
}
.proshow_box .left .xt_btn .slick-current .img img {
  border-color: #23619e;
}
.proshow_box .right {
  float: right;
  width: 55%;
}
.proshow_box .right h1 {
  color: #333333;
  font-size: 22px;
}
.proshow_box .right i {
  display: block;
  width: 70px;
  height: 1px;
  background: #cccccc;
  margin: 18px 0;
}
.proshow_box .right .text {
  color: #333333;
  font-size: 16px;
  line-height: 30px;
}
.proshow_box .right .text .t {
  margin-top: 26px;
}
.proshow_box .right .text .t p {
  padding-left: 18px;
  position: relative;
}
.proshow_box .right .text .t p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #666666;
  border-radius: 50px;
}
.proshow_box .right .dh {
  margin-top: 40px;
}
.proshow_box .right .dh p {
  color: #000000;
  font-size: 14px;
}
.proshow_box .right .dh span {
  margin-top: 5px;
  color: #333333;
  font-size: 24px;
  font-weight: bold;
  font-family: arial;
  display: block;
}
.proshow_box .right a.more {
  margin-top: 40px;
  background: #0c5194;
  line-height: 50px;
  display: block;
  width: 188px;
  color: #fff;
  text-align: center;
  font-size: 16px;
}
.proshow_box2 .tables_btn {
  width: 100%;
  background-color: #292c31;
}
.proshow_box2 .tables_btn li {
  line-height: 50px;
  float: left;
  width: 12.85%;
  text-align: center;
  border-right: 1px solid #3e4145;
  border-left: 1px solid #1f2125;
}
.proshow_box2 .tables_btn li a {
  font-size: 18px;
  color: #fff;
  display: block;
}
.proshow_box2 .tables_btn li:hover,
.proshow_box2 .tables_btn li.cur {
  background: #0c5194;
}
.proshow_box2 .tables_procon {
  padding-bottom: 60px;
}
.proshow_box2 .tables_procon .cpjs dl {
  border: 1px solid #ebebeb;
  padding: 22px;
}
.proshow_box2 .tables_procon .cpjs dl dt,
.proshow_box2 .tables_procon .cpjs dl dd {
 /* border: 1px solid #ebebeb;*/
  /*width: 49.25%;*/
   width:100%;
  padding: 20px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
  min-height: 254px;
}
.proshow_box2 .tables_procon .cpjs dl dt p,
.proshow_box2 .tables_procon .cpjs dl dd p {
  padding-left: 20px;
  position: relative;
}
.proshow_box2 .tables_procon .cpjs dl dt p:before,
.proshow_box2 .tables_procon .cpjs dl dd p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  background: #666666;
  border-radius: 50px;
}
.proshow_box2 .tables_procon .cpjs dl dt {
  float: left;
}
.proshow_box2 .tables_procon .cpjs dl dd {
  float: right;
}
.proshow_box2 .tables_procon .cpjs .zhibiao {
  margin-top: 20px;
  width: 100%;
}
.proshow_box2 .tables_procon .cpjs .zhibiao table {
  width: 100%;
  border: 1px solid #ebebeb;
}
.proshow_box2 .tables_procon .cpjs .zhibiao table tr {
  border: 1px solid #ebebeb;
}
.proshow_box2 .tables_procon .cpjs .zhibiao table tr th {
  background: #0c5194;
  text-align: left;
  padding: 12px 22px;
  font-size: 18px;
  color: #fff;
  font-weight: inherit;
}
.proshow_box2 .tables_procon .cpjs .zhibiao table tr td {
  border: 1px solid #ebebeb;
  padding: 8px 22px;
  line-height: 26px;
  color: #333333;
  font-size: 16px;
}
.proshow_box2 .tables_procon .xgxz,
.proshow_box2 .tables_procon .xgcp {
  padding: 0;
}
.proshow_box2 .tables_procon .xgxz .tables,
.proshow_box2 .tables_procon .xgcp .tables,
.proshow_box2 .tables_procon .xgxz ul,
.proshow_box2 .tables_procon .xgcp ul {
  margin-top: 22px;
}
.classic_case {
  padding-bottom: 80px;
}
.classic_case ul {
  margin-top: 40px;
}
.classic_case ul li {
  float: left;
  width: 32%;
  border: 1px solid #e7e8e7;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-right: 2%;
}
.classic_case ul li:nth-child(3n) {
  margin-right: 0;
}
.classic_case ul li .img {
  line-height: 0;
  overflow: hidden;
}
.classic_case ul li p {
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #333333;
  font-size: 18px;
  line-height: 60px;
}
.more_bottom {
  margin-top: 55px;
  text-align: center;
}
.more_bottom a {
  display: block;
  border: 1px solid #eaeaea;
  line-height: 50px;
  width: 188px;
  margin: 0 auto;
  color: #666666;
  font-size: 18px;
  text-transform: uppercase;
}
.case_box {
  background: url(../images/case_bg.jpg) no-repeat center top;
  min-height: 763px;
  padding-top: 60px;
}
.case_box ul li {
  background: #fff;
  position: relative;
}
.case_box ul li .text {
  text-align: center;
  padding: 20px;
}
.case_box ul li .text h3 {
  color: #2e2d2d;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.case_box ul li .text p {
  display: none;
  margin-top: 10px;
  color: #f4f6f9;
  font-size: 16px;
  line-height: 30px;
  height: 60px;
  text-overflow: inherit;
  overflow: hidden;
  white-space: inherit;
  text-align: left;
}
.case_box ul li:hover .text {
  position: relative;
  z-index: 2;
  margin-top: -70px;
  text-align: left;
  background: #0c5194;
}
.case_box ul li:hover .text h3 {
  color: #fff;
}
.case_box ul li:hover .text p {
  display: block;
}
.case_box2 {
  min-height: 0;
  background: none;
  padding-top: 0;
}
.case_box2 ul {
  margin-bottom: 30px;
}
.case_box2 ul li {
  margin-bottom: 2%;
}
.case_btn {
  margin-top: 20px;
}
.case_btn a {
  float: left;
  display: block;
  border: 1px solid #cccccc;
  line-height: 50px;
  border-radius: 3px;
  color: #666666;
  font-size: 16px;
 /* width: 11.5%;*/
	width: 15.83%;
  text-align: center;
  margin-top: 20px;
  margin-right: 1%;
}

.case_btn a:nth-child(7n){
	margin-right: 0;
}

.case_btn a:hover,
.case_btn a.cur {
  background: #0c5194;
  color: #fff;
  border-color: #0c5194;
}
.caseshow_box {
  padding: 35px 0 60px;
}
.caseshow_box .show_case {
  float: left;
  width: 75%;
}
.caseshow_box .show_case h1 {
  color: #333333;
  font-size: 26px;
  font-weight: normal;
}
.caseshow_box .show_case dl {
  margin-top: 16px;
  color: #333333;
  font-size: 20px;
  line-height: 36px;
}
.caseshow_box .show_case dl dt,
.caseshow_box .show_case dl dd {
  width: 50%;
}
.caseshow_box .right_con {
  float: right;
  width: 25%;
}
.caseshow_box .right_con h3 {
  background: #ededed;
  line-height: 58px;
  color: #333333;
  font-size: 22px;
  font-weight: normal;
  padding: 0 20px;
}
.caseshow_box .right_con .xgal {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.caseshow_box .right_con .xgal ul {
  padding: 20px;
}
.caseshow_box .right_con .xgal ul li {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.caseshow_box .right_con .xgal ul li .img {
  line-height: 0;
  overflow: hidden;
}
.caseshow_box .right_con .xgal ul li p {
  color: #2e2d2d;
  background: #f8f8f8;
  line-height: 46px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  padding: 0 15px;
}
.caseshow_box .right_con .xgal ul li:first-child {
  margin-top: 0;
}
.navlist {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  height: 100px;
}
.navlist ul li {
  float: left;
  width: 16.66%;
  text-align: center;
  line-height: 100px;
  font-size: 20px;
  border-left: 1px solid #f1f1f1;
}
.navlist ul li:first-child {
  border-left: none;
}
.navlist ul li a {
  display: block;
  color: #333333;
}
.navlist ul li i {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 0;
  margin-right: 12px;
  position: relative;
  top: 8px;
}
.navlist ul li i.i1 {
  background: url(../images/list1.png) no-repeat center center / cover;
}
.navlist ul li i.i2 {
  background: url(../images/list2.png) no-repeat center center / cover;
}
.navlist ul li i.i3 {
  background: url(../images/dingzhi.png) no-repeat center center / cover;
}
.navlist ul li i.i4 {
  background: url(../images/list3.png) no-repeat center center / cover;
}

.navlist ul li i.i5 {
  background: url(../images/list4.png) no-repeat center center / cover;
}

.navlist ul li i.i6 {
  background: url(../images/list6cws.png) no-repeat center center / cover;
}

.navlist ul li:hover,
.navlist ul li.cur {
  background: #0c5194;
}
.navlist ul li:hover a,
.navlist ul li.cur a {
  color: #fff;
}
.navlist ul li:hover i.i1,
.navlist ul li.cur i.i1 {
  background-image: url(../images/h_list1.png);
}
.navlist ul li:hover i.i2,
.navlist ul li.cur i.i2 {
  background-image: url(../images/h_list2.png);
}
.navlist ul li:hover i.i3,
.navlist ul li.cur i.i3 {
  background-image: url(../images/dingzhi_2.png);
}
.navlist ul li:hover i.i4,
.navlist ul li.cur i.i4 {
  background-image: url(../images/h_list3.png);
}

.navlist ul li:hover i.i5,
.navlist ul li.cur i.i5 {
  background-image: url(../images/h_list4.png);
}

.navlist ul li:hover i.i6,
.navlist ul li.cur i.i6 {
  background-image: url(../images/list6.png);
}

.aboutlist ul li i.i1 {
  background: url(../images/list5.png) no-repeat center center / cover;
}
.aboutlist ul li i.i2 {
  background: url(../images/list6.png) no-repeat center center / cover;
}
.aboutlist ul li i.i3 {
  background: url(../images/list7.png) no-repeat center center / cover;
}
.aboutlist ul li i.i4 {
  background: url(../images/list8.png) no-repeat center center / cover;
}
.aboutlist ul li:hover i.i1,
.aboutlist ul li.cur i.i1 {
  background-image: url(../images/h_list5.png);
}
.aboutlist ul li:hover i.i2,
.aboutlist ul li.cur i.i2 {
  background-image: url(../images/h_list6.png);
}
.aboutlist ul li:hover i.i3,
.aboutlist ul li.cur i.i3 {
  background-image: url(../images/h_list7.png);
}
.aboutlist ul li:hover i.i4,
.aboutlist ul li.cur i.i4 {
  background-image: url(../images/h_list8.png);
}
.problem_box .problem_list {
  margin-top: 40px;
}
.problem_box .problem_list ul {
  margin-bottom: 30px;
}
.problem_box .problem_list ul li {
  width: 32%;
  float: left;
  border: 1px solid #eeeeee;
  padding: 3.5% 2.5%;
  margin-bottom: 2%;
  margin-right: 2%;
}
.problem_box .problem_list ul li:nth-child(3n) {
  margin-right: 0;
}
.problem_box .problem_list ul li .bt {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.problem_box .problem_list ul li .bt span {
  color: #006699;
  font-weight: bold;
}
.problem_box .problem_list ul li i {
  display: block;
  width: 70px;
  height: 1px;
  background: #c6c6c6;
  margin: 20px 0 17px;
}
.problem_box .problem_list ul li .text {
  color: #333333;
  font-size: 14px;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
}
.problem_box .problem_list ul li .text span {
  font-size: 18px;
  color: #920e0e;
  font-weight: bold;
}
.problem_box .problem_list ul li .icon {
  margin-top: 22px;
  width: 32px;
  height: 19px;
  background: url(../images/qa_more.jpg) no-repeat center center / cover;
}
.problem_box .problem_list ul li:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.problem_box .problem_list ul li:hover .bt {
  color: #0c5194;
}
.technical_box {
  padding: 40px 0 70px;
}
.technical_box .container {
  position: relative;
}
.technical_box .text {
  position: absolute;
  float: left;
  width: 43%;
}
.technical_box .text h4 {
  margin-top: 22px;
  font-size: 95px;
  text-transform: uppercase;
  color: #f5f5f5;
  z-index: 1;
  position: relative;
}
.technical_box .text .box {
  position: relative;
  z-index: 4;
  background: #fafafa;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  width: 100%;
  min-height: 392px;
  margin-top: -45px;
  padding: 35px 20px 35px 114px;
}
.technical_box .text .box h3 {
  color: #0c5194;
  font-size: 30px;
}
.technical_box .text .box .t {
  margin-top: 8px;
  color: #333333;
  font-size: 18px;
}
.technical_box .text .box i {
  display: block;
  width: 112px;
  height: 1px;
  background: #b6b6b6;
  margin: 15px 0 10px;
}
.technical_box .text .box .d {
  color: #333333;
  font-size: 14px;
      overflow: overlay;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
}
.technical_box .text .box .d p {
  line-height: 21px;
}
.technical_box .text .box .d p span {
  font-family: arial;
  font-size: 18px;
  display: inline-block;
  margin-right: 30px;
}
.technical_box .text .box .zhiban {
  margin-top: 18px;
}
.technical_box .text .box .zhiban .icon {
  float: left;
  width: 44px;
  line-height: 0;
}
.technical_box .text .box .zhiban .rx {
  float: left;
  margin-left: 20px;
  margin-top: -3px;
}
.technical_box .text .box .zhiban .rx .d1 {
  color: #333333;
  font-size: 14px;
}
.technical_box .text .box .zhiban .rx .d2 {
  margin-top: 7px;
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  font-family: arial;
}
.technical_box .text .box .zhiban .rx .d2 span {
  margin-right: 30px;
}
.technical_box .text .box .whfw_t {
  color: #333333;
  font-size: 16px;
}
.technical_box .text .box .whfw_t p {
  line-height: 30px;
}
.technical_box .text .box .whfw_t p span {
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  font-family: arial;
  display: inline-block;
  margin-right: 30px;
}
.technical_box .text .box .whfw_t .ts {
  color: #999999;
  font-size: 14px;
}
.technical_box .img {
  position: relative;
  z-index: 3;
  float: right;
  line-height: 0;
  width: 61%;
}
.maintain_box {
  padding-top: 60px;
}
.maintain_box .text h4 {
  margin-top: -28px;
}
.maintain_box .text .box {
  padding-top: 100px;
}
.about_box {
  padding: 60px 0 70px;
}
.join {
  margin-top: 42px;
}
.join .tit {
  background: #0c5194;
  line-height: 52px;
  color: #fff;
  font-size: 18px;
  padding: 0 35px;
  text-align:center;
}
.join .tit span {
  display: block;
  float: left;
  width: 20%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.join ol {
  border: 1px solid #ededed;
  border-bottom: none;
}
.join ol li {
  float: left;
  width: 100%;
  color: #666666;
  font-size: 16px;
}
.join ol li .bt {
  padding: 0 35px;
  cursor: pointer;
  line-height: 50px;
  border-bottom: 1px solid #ededed;
  text-align:center;
}
.join ol li .bt span {
  display: block;
  float: left;
  width: 20%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.join ol li .text {
  display: none;
  border-bottom: 1px solid #ededed;
  padding: 15px 35px 35px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.join ol li .text p span {
  color: #333333;
  font-weight: bold;
}
.join ol li:hover .bt span,
.join ol li.cur .bt span {
  color: #0058ad;
}
.huace {
  margin-top: 40px;
}
.huace ul {
  margin-bottom: 30px;
}
.huace ul li {
  float: left;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  position: relative;
}
.huace ul li:nth-child(3n) {
  margin-right: 0;
}
.huace ul li span {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.huace ul li p {
  line-height: 60px;
  color: #cccccc;
  font-size: 16px;
  text-align: center;
  background: rgba(51, 51, 51, 0.84);
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.huace ul li:hover p {
  background: rgba(23, 91, 156, 0.84);
}
.contact_box {
  background: #fafafa;
  padding: 60px 0 70px;
}
.contact_box .map_box {
  position: relative;
  /*height: 620px;*/
  height: 350px;
}
.contact_box .map_box .anchorBL {
  display: none;
}
.contact_box .map_box #allmap {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.contact_box .map_box .map_text {
  position: absolute;
  left: 12px;
  top: 2%;
  width: 585px;
 /* height: 96%;*/
  height: auto;
  background: #fff;
  z-index: 2;
  padding: 12px;
}
.contact_box .map_box .map_text ol {
  /*background: #292c31;*/
  background: none;
  
}
.contact_box .map_box .map_text ol span {
  display: block;
  cursor: pointer;
  float: left;
  width: 25%;
  line-height: 70px;
  text-align: center;
 /* color: #ffffff;*/
 color: #666666;
  font-size: 20px;
  border: 1px solid #cccccc;
}
.contact_box .map_box .map_text ol span:hover,
.contact_box .map_box .map_text ol span.cur {
  background: #0d5498;
  color: #fff;
}
.contact_box .map_box .map_text ul {
  padding-top: 25px;
}
.contact_box .map_box .map_text ul li {
  float: left;
  width: 100%;
  display: none;
}
.contact_box .map_box .map_text ul li:first-child {
  display: block;
}
.contact_box .map_box .map_text ul li h3 {
  color: #333333;
  font-size: 21px;
}
.contact_box .map_box .map_text ul li .text {
  margin-top: 10px;
  color: #333333;
  /*font-size: 20px;*/
  font-size: 18px;
  line-height: 36px;
}
.contact_box .map_box .map_text ul li .text p {
  padding-left: 25px;
  position: relative;
}
.contact_box .map_box .map_text ul li .text p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  height: 21px;
  margin-top: -10.5px;
}
.contact_box .map_box .map_text ul li .text .d1:before {
  background: url(../images/d1.jpg) no-repeat center center / cover;
}
.contact_box .map_box .map_text ul li .text .d2:before {
  background: url(../images/d2.jpg) no-repeat center center / cover;
}
.contact_box .map_box .map_text ul li .text .d3:before {
  background: url(../images/d3.jpg) no-repeat center center / cover;
}
.contact_box .map_box .map_text ul li .img {
  line-height: 0;
  margin-top: 20px;
}
.contact_box2 {
  padding-top: 60px;
}
.contact_box2 .title p {
  max-width: 615px;
  margin: 15px auto 0;
}
.contact_dt {
  margin-top: 10px;
  position: relative;
}
.contact_dt .img_bg {
  max-width: 958px;
  line-height: 0;
  margin: 0 auto;
}
.contact_dt .bsc {
  position: absolute;
  left: 0;
  top: 27px;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
}
.contact_dt .bsc p {
  padding-left: 12px;
  position: relative;
}
.contact_dt .bsc p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
}
.contact_dt .bsc p.d1:before {
  background: #920e0e;
}
.contact_dt .bsc p.d2:before {
  background: #5ab530;
}
.contact_dt .bsc p.d3:before {
  background: #029adc;
}
.contact_dt .wdss_box {
  position: absolute;
  left: 0;
  top: 260px;
  width: 305px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 22px;
}
.contact_dt .wdss_box h3 {
  position: relative;
  font-weight: normal;
  color: #666;
  font-size: 16px;
  text-align: left;
  padding-left: 40px;
}
.contact_dt .wdss_box h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 29px;
  height: 30px;
  background: url(../images/m1.jpg) no-repeat center center / cover;
}
.contact_dt .wdss_box h3 span {
  display: block;
  color: #c8c8c8;
  font-size: 14px;
  line-height: 16px;
}
.contact_dt .wdss_box .ol_cx {
  margin-top: 15px;
}
.contact_dt .wdss_box .ol_cx li {
  float: left;
  width: 100%;
  margin-bottom: 12px;
}
.contact_dt .wdss_box .ol_cx li .cbox {
  width: 100%;
  height: 50px;
  position: relative;
}
.contact_dt .wdss_box .ol_cx li .cbox .ch {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 48px;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 0 10px;
  color: #999999;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.contact_dt .wdss_box .ol_cx li .cbox .ch:before {
  content: "";
  position: absolute;
  right: 17px;
  top: 22px;
  width: 13px;
  height: 7px;
  background: url(../images/icon4.jpg) no-repeat center center;
}
.contact_dt .wdss_box .ol_cx li .cbox .con {
  display: none;
  z-index: 999;
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid #cbcbcb;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #FFFFFF;
  padding: 10px;
}
.contact_dt .wdss_box .ol_cx li .cbox .con a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #999;
  font-size: 14px;
  display: block;
  line-height: 26px;
}
.contact_dt .wdss_box .ol_cx li .cbox .con a:hover {
  color: #666;
}
.contact_dt .wdss_box .ol_cx li .btn {
  background: #0c5194;
  display: block;
  height: 50px;
  border-radius: 3px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.contact_dt .wdss_box .ol_cx li .btn i {
  display: inline-block;
  margin-right: 12px;
  position: relative;
  top: 6px;
  width: 23px;
  height: 24px;
  background: url(../images/m2.jpg) no-repeat center center / cover;
}
.result_box {
  padding: 30px 0;
}
.result_box ul li {
  float: left;
  color: #333333;
  font-size: 14px;
  position: relative;
  width: 49.5%;
  background: #f3f3f4;
  margin-bottom: 1%;
}
.result_box ul li .bt {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  background: #0c5194;
  line-height: 48px;
  padding: 0 55px;
  position: relative;
}
.result_box ul li .bt:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -10.5px;
  width: 21px;
  height: 21px;
  background: url(../images/guo_icon.png) no-repeat center center / cover;
}
.result_box ul li .text {
  padding: 10px 20px;
}
.result_box ul li .text span {
  display: block;
  line-height: 32px;
  position: relative;
  padding: 0 35px;
}

.result_box ul li .text .s3{
	display:none;
}

.result_box ul li .text span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 17px;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.result_box ul li .text span.s1:before {
  height: 18px;
  background: url(../images/guo_icon1.png) no-repeat center center / cover;
}
.result_box ul li .text span.s2:before {
  height: 15px;
  background: url(../images/guo_icon2.png) no-repeat center center / cover;
}
.result_box ul li .text span.s3:before {
  height: 14px;
  background: url(../images/guo_icon3.png) no-repeat center center / cover;
}
.result_box ul li .text span.s4:before {
  height: 20px;
  background: url(../images/guo_icon4.png) no-repeat center center / cover;
}
.result_box ul li .text span.s5:before {
  height: 16px;
  width:16px;
  background: url(../images/qq_icon.png) no-repeat center center / cover;
}
.result_box ul li .text span.s6:before {
  height: 15px;
  background: url(../images/weixin_icon.jpg) no-repeat center center / cover;
  width:19px;
}
.result_box ul li:nth-child(2n) {
  float: right;
}
.feedback ol {
  margin-top: 40px;
}
.feedback ol li {
  float: left;
  background: #fff;
  width: 32%;
  position: relative;
  border: 1px solid #e2e2e2;
  margin-bottom: 2%;
  margin-right: 2%;
}
.feedback ol li:nth-child(3),
.feedback ol li:nth-child(5),
.feedback ol li:nth-child(6),
.feedback ol li:last-child {
  margin-right: 0;
}
.feedback ol li:nth-child(4),
.feedback ol li:nth-child(5) {
  width: 49%;
}
.feedback ol li:nth-child(5) {
  float: right;
}
.feedback ol li:nth-child(6) {
  width: 100%;
}
.feedback ol li:last-child {
  border: none;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
.feedback ol li input {
  border: none;
  background: none;
  width: 100%;
  padding: 0 15px;
  -webkit-appearance: none;
  height: 50px;
  line-height: 50px;
  font-family: "微软雅黑";
  font-size: 16px;
  color: #666666;
}
.feedback ol li textarea {
  width: 100%;
  border: none;
  background: none;
  height: 150px;
  font-family: "微软雅黑";
  -webkit-appearance: none;
  font-size: 16px;
  padding: 15px;
  color: #666666;
}
.feedback ol li .btn {
  float: none;
  margin: 0 auto;
  width: 170px;
  padding: 0;
  background: none;
  font-size: 20px;
  color: #666666;
  border: 1px solid #e2e2e2;
  font-family: "微软雅黑";
  border-radius: 3px;
}

.about_box2 {
  padding: 50px 0 70px;
  min-height: 0;
  background: none;
}
.about_box2 .left {
  width: 52%;
  padding-top: 12px;
}
.about_box2 .left ol {
  margin-top: 15px;
}
.about_box2 .left .text {
  margin-top: 20px;
}
.about_box3 {
  background: url(../images/about_bg3.jpg) no-repeat center bottom;
  padding: 60px 0 80px;
}
.about_box6 .title span {
  color: #545454;
}
.about_box7 .title span {
  color: #545454;
}
.title h3 a{
  color: #333333;
}

.about_box3 .title h3,
.about_box3 .title p {
  color: #333;
}
.about_box3 ol {
  margin-top: 40px;
}
.about_box3 ol li {
  float: left;
  width: 32%;
  background: #ffffff;
  margin-right: 2%;
}
.about_box3 ol li:nth-child(3n) {
  margin-right: 0;
}
.about_box3 ol li .img {
  line-height: 0;
  overflow: hidden;
}
.about_box3 ol li .text {
  padding: 25px 20px;
}
.about_box3 ol li .text h3 {
  color: #333333;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.about_box3 ol li .text p {
  margin-top: 12px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  min-height: 72px;
}
.about_box4 {
  background: url(../images/about_bg2.jpg) no-repeat center center / cover;
  padding: 80px 0;
}
.about_box4 .box {
  background: #fff;
}
.about_box4 .box .left {
  width: 50%;
  float: left;
}
.about_box4 .box .left .title h3 {
  color: #0c5194;
}
.about_box4 .box .left .title p {
  margin-top: 7px;
}
.about_box4 .box .left i {
  display: block;
  width: 76px;
  height: 1px;
  background: #9ea0ac;
  margin: 20px 0;
}
.about_box4 .box .left .text {
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}
.about_box4 .box .left .qianming {
  line-height: 0;
  margin-top: 30px;
}
.about_box4 .box .img {
  float: right;
  line-height: 0;
  width: 47%;
}
.about_box5 {
 
  padding: 60px 0 80px;
}
.about_box5 .title span {
  color: #ecefee;
}
.about_box5 .title h3,
.about_box5 .title p {
  color: #333333;
}
.about_box5 .history_box {
  margin-top: 45px;
}
.about_box5 .history_box .box .img {
  float: left;
  width: 48%;
  line-height: 0;
}
.about_box5 .history_box .box .text {
  float: right;
  width: 49%;
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  padding-top: 4%;
   overflow: auto;
   height: 310px;
}
.about_box5 .history_box .box .text .bt {
  margin-top: 15px;
  font-size: 20px;
}
.about_box5 .history_box .box .text .bt:first-child {
  margin-top: 0;
}
.about_box5 .history_bg {
  margin-top: 30px;
  position: relative;
  padding: 0 4%;
}
.about_box5 .history_bg:before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #333333;
}
.about_box5 .history_btn .text {
  text-align: center;
  width: 100%;
  float: left;
  padding-top: 18px;
  cursor: pointer;
}
.about_box5 .history_btn .text i {
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  background: #999999;
  border: 4px solid #4f5052;
  margin: 0 auto;
}
.about_box5 .history_btn .text p {
  margin-top: 12px;
  color: #999999;
  font-size: 20px;
  font-family: arial;
}
.about_box5 .history_btn .text:hover i {
  background: #990000;
  border-color: #691315;
}
.about_box5 .history_btn .text:hover p {
  color: #fff;
}
.about_box5 .history_btn .slick-current .text i {
  background: #990000;
  border-color: #691315;
}
.about_box5 .history_btn .slick-current .text p {
  color: #fff;
}
.about_box5 .history_btn .slick-prev,
.about_box5 .history_btn .slick-next {
  width: 50px;
  height: 50px;
  border: none;
  top: 0;
  margin-top: 0;
}
.about_box5 .history_btn .slick-prev {
  background: url(../images/history_left.png) no-repeat center center / cover;
  left: -4.6%;
}
.about_box5 .history_btn .slick-next {
  background: url(../images/history_right.png) no-repeat center center / cover;
  right: -4.6%;
}
.about_box6 {
  padding: 70px 0 100px;
  background: url(../images/about_bg.jpg) no-repeat center bottom / cover;
}
.about_box6 .layout_box {
  margin-top: 45px;
}
.about_box6 .layout_box ul li {
  float: left;
  width: 100%;
}
.about_box6 .layout_box ul li .text {
  float: left;
  width: 53%;
}
.about_box6 .layout_box ul li .text h3 {
  color: #ffffff;
  font-size: 26px;
float: left;
}
.about_box6 .layout_box ul li .text .bt {
/*  margin-top: 10px; */
  padding-top: 10px;
  font-size: 20px;
  color: #ffffff;
}
.about_box6 .layout_box ul li .text i {
  display: block;
  width: 76px;
  height: 1px;
  background: #9ea0ac;
  margin: 18px 0 12px;
}
.about_box6 .layout_box ul li .text .t {
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
}
.about_box6 .layout_box ul li .img {
  float: right;
  width: 41%;
  line-height: 0;
  overflow: hidden;
}
.about_box6 .layout_box ul li .img img {
  width: 100%;
}
.about_box6 .layout_box ol {
  margin-top: 50px;
}
.about_box6 .layout_box ol li {
  position: relative;
  float: left;
  text-align: center;
  width: 23.5%;
  cursor: pointer;
  margin-right: 2%;
}
.about_box6 .layout_box ol li:nth-child(4n) {
  margin-right: 0;
}
.about_box6 .layout_box ol li .img {
  line-height: 0;
  overflow: hidden;
}
.about_box6 .layout_box ol li .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #333333;
  font-size: 16px;
  line-height: 52px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.8);
}
.about_box6 .layout_box ol li:hover .text,
.about_box6 .layout_box ol li.cur .text {
  background: rgba(12, 81, 148, 0.8);
  color: #fff;
}
.about_box7 {
  padding: 60px 0 80px;
  background: #292c31;
}
.about_box7 .honor_box {
  margin-top: 45px;
}
.about_box7 .honor_box .text {
  width: 100%;
  padding: 0 4%;
}
.about_box7 .honor_box .text .img {
  line-height: 0;
  overflow: hidden;
}
.about_box7 .honor_box .text .t {
  margin-top: 12px;
  text-align: center;
  color: #333333;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.about_box7 .honor_box .slick-prev,
.about_box7 .honor_box .slick-next {
  width: 21px;
  height: 41px;
  border: none;
}
.about_box7 .honor_box .slick-prev {
  background: url(../images/honor_left.jpg) no-repeat center center / cover;
  left: -30px;
}
.about_box7 .honor_box .slick-next {
  background: url(../images/honor_right.jpg) no-repeat center center / cover;
  right: -30px;
}
.gjwd_img {
  max-width: 1080px;
  margin: 30px auto 60px;
}
.wdcx_box {
  padding-top: 60px;
}
.wdcx_box .news_tit {
  position: relative;
  z-index: 2;
  margin-top: 35px;
  text-align: center;
}
.wdcx_box .news_tit a {
  display: inline-block;
  width: 150px;
  line-height: 46px;
  color: #333333;
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-size: 16px;
  margin: 0 10px;
}
.wdcx_box .news_tit a:hover,
.wdcx_box .news_tit a.cur {
  background: #0c5194;
  color: #fff;
}
.wdcx_box .title p {
  max-width: 615px;
  margin: 15px auto 0;
}

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

.fx_btn.bdsharebuttonbox a { 
  background: none;
  width: 23px;
  height: 24px !important;
  padding: 0;
  margin: 0 5px 0 0;
  float: none;
}
.fx_btn.bdsharebuttonbox a.bds_weixin { 
  background: url(../images/fx_icon1.jpg) no-repeat center center;
}
.fx_btn.bdsharebuttonbox a.bds_tsina { 
  background: url(../images/fx_icon2.jpg) no-repeat center center;
}
.fx_btn.bdsharebuttonbox a.bds_sqq { 
  background: url(../images/fx_icon3.jpg) no-repeat center center;
}
.fx_btn.bdsharebuttonbox a.bds_qzone { 
  background: url(../images/fx_icon4.jpg) no-repeat center center;
}

/**2018-8-7**/
.search_box {
  position: absolute;
  left: 50%;
  top: 395px;
  margin-left: -310px;
  max-width: 620px;
  width: 100%;
}
.search_box .search_con {
  background: #fff;
  height: 54px;
}
.search_box .search_con .text_t {
  float: left;
  width: 70%;
  height: 54px;
  border: none;
  font-size: 16px;
  padding: 0 16px;
  -webkit-appearance: none;
  border-radius: none;
}
.search_box .search_con .btn {
  float: right;
  background: #0366c3;
  width: 142px;
  border: none;
  color: #fff;
  font-size: 22px;
  height: 54px;
  -webkit-appearance: none;
  border-radius: none;
}
.search_box .search_gjc {
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
}
.search_box .search_gjc a {
  display: inline-block;
  color: #fff;
  margin-right: 10px;
}
.search_news {
  padding-top: 30px;
}
.search_news .news_list {
  margin-top: 0;
}
.search_news .news_list ul {
  margin-bottom: 0;
}
.search_problem {
  padding-top: 10px;
  padding-bottom: 50px;
}
.search_problem .problem_list ul {
  margin-bottom: 0;
}
.search_img {
  position: relative;
}
.search_img .img {
  line-height: 0;
}
.search_img p {
  position: absolute;
  left: 44%;
  top: 55%;
  color: #666666;
  font-size: 20px;
}
.search_img p span {
  color: #ff0000;
}
/*2018.8.22修改*/
.pop_video {
			display:none;
			z-index: 999;
			position: fixed;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.5);
}
		
.pop_video .box {
			width: 50%;
			height: 500px;
			background: #fff;
			position: relative;
			left: 50%;
			top: 50%;
			transform: translate(-50%, -50%);
			-webkit-transform: translate(-50%, -50%);
			-moz-transform: translate(-50%, -50%);
			-o-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
}
.pop_video .box .shut {
		position: absolute;
		right: 1px;
		top: -38px;
		line-height: 0;
		width: 38px;
		cursor: pointer;
}

/*2018.8.29底部样式*/
@font-face {
  font-family: "AGENCYB";
  src: url("../fonts/AGENCYB.svg");
  src: url("../fonts/AGENCYB.eot");
  src: url("../fonts/AGENCYB.otf");
  src: url("../fonts/AGENCYB.ttf");
  src: url("../fonts/AGENCYB.woff");
}


.dibu{
 padding-bottom: 30px;	
}

.footer .left_t{
	width: 68.142%;
	float: left;
	margin-top: 40px;
}

.footer .right_t{
	width: 31.85%;
	float: left;
	margin-top: 37px;
	border-left: 1px solid #283a55;
	padding-left: 7%;
}

.footer .right_t h4{
	color: #afb6c1;
	font-size: 22px;
	margin-top: 3px;
	margin-bottom: 15px;
}

.footer .right_t p{
	color: #ffffff;
	font-size: 14px;
	line-height: 28px;
	

}

.footer .right_t h2{
	color: #ffffff;
	font-size: 24px;
	margin-top: 15px;
	font-family: "AGENCYB";
}
.footer .right_t .fenxiang{
	padding-bottom: 80px;
	margin-top: 25px;
  margin-left: 20px;
}

.footer .right_t .fenxiang a{
	margin-right: 10px;
	width: 45px;
	height: 45px !important;
	background-position: 0;
	display: inline-block;	
}


.footer .left_t ul li{
	float: left;
	margin-right: 7%;
}

.footer .left_t ul li span a{
	font-size: 14px;
	color: #fff;
}



.footer .left_t ul li .lianjie{
	margin-top: 10px;
}
.footer .left_t ul li .lianjie a{
	display: block;
	color: #a8bfdf;
	font-size: 12px;
	line-height: 28px;
}

.banquan .link_youlian{
	text-align: center;
}

.banquan .link_youlian span{
	color: #ffffff;
	font-size: 14px;
}

.banquan .link_youlian a{
	color: #8799b2;
	font-size: 14px;
	padding-right: 10px;
}

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

.banquan .beianhao p{
	color: #8799b2;
	font-size: 14px;
	display: inline-block;
}

.banquan .beianhao a{
	color: #8799b2;
	font-size: 14px;
	padding-left: 10px;
	
}

/*2018.9.5底部修改*/
.banquan .link_youlian .dizhi p{
	color: #8799b2;
    font-size: 14px;
	display:inline-block;
	margin-right:15px;
}

 .fx_btn.bdsharebuttonbox .xiaotong{
	margin-top:15px;
}

.fx_btn.bdsharebuttonbox .xiaotong a{
	width: 45px;
    height: 45px !important;
    display: inline-block;
    background-position: 0;
    margin: 0;
}
/*2018.9.11样式修改*/
#videoplay{
	background: rgba(0, 0, 0, 0.15);
}

.proshow_box2 .tables_procon .proshow_con .cpjs  p{
	line-height:30px;
}

.proshow_box2 .tables_procon .cpjs .zhibiao table tr:nth-child(2) td:nth-child(1){
	width:26%;
}
/**2018-9-18**/
.side_box{
	position: fixed;
	right: 0;
	top: 40%;
	width: 61px;
	z-index: 99;
	
}
.side_box ul li{
	float: left;
	width: 100%;
	margin-bottom: 1px;
	position: relative;
	border: 1px solid rgba(204, 204, 204, 0.44);
}
.side_box ul li .icon{
	line-height: 0;
	width: 100%;
}
.side_box ul li .box_qq,
.side_box ul li .box_qq2{
	position: fixed;
	right: 0;
	/*bottom: 0;*/
	bottom: 20%;
	width: 204px;
	background: #fff;
	z-index: 999;
	display: none;
	    margin-bottom: 20px;
}
.side_box ul li .box_qq2{
	bottom: auto;
	top: 35%;
}
.side_box ul li .box_qq .top,
.side_box ul li .box_qq2 .top{
	background: #0c5194;
	padding: 10px 20px;
	position: relative;
}
.side_box ul li .box_qq .top h3,
.side_box ul li .box_qq2 .top h3{
	float: left;
	color: #ffffff;
	font-size: 18px;
}
.side_box ul li .box_qq .top .guanbi,
.side_box ul li .box_qq2 .top .guanbi{
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -13px;
	cursor: pointer;
	width: 26px;
	line-height: 0;
}
.side_box ul li .box_qq .top .jt_btn{
	display: block;
	width: 26px;
	height: 26px;
	background: url(../images/jiantou_you.png) no-repeat center center/cover;
}

.side_box ul li .box_qq2 .top .jt_btn{
	display: block;
	width: 26px;
	height: 26px;
	background: url(../images/jiantou_you.png) no-repeat center center/cover;
}

.side_box ul li .box_qq .top .jt_btn.cur{
	transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}


.side_box ul li .box_qq ol li,
.side_box ul li .box_qq2 ol li{
	float: left;
	width: 100%;
	border-bottom: 1px solid #ededed;
	font-size: 14px;
	line-height: 24px;
	padding: 9px 20px;
}
.side_box ul li .box_qq ol li a,
.side_box ul li .box_qq2 ol li a{
	color: #333;
}
.side_box ul li .text{
	position: absolute;
	right: 61px;
	top: 0;
	width: 150px;
	display: none;
}
.side_box ul li:hover .text{display: block;}

#bdshare_weixin_qrcode_dialog{
	min-height:315px;
	min-width: 250px;
}

.qqtubiao{
	display: block;
  float: left;
  margin-top: 10px;
  padding-right: 10px;
}

.case_text{
	margin:15px 0;
}

.case_text p{
	color: #333333;
	font-size: 18px;
	text-indent:2em;
}

/* .down_con .tables table tr td pre{
	    color: #333333;
			font-size: 16px;
			line-height: 24px;
			font-family: 微软雅黑;
			white-space:pre-wrap; 
			white-space:-moz-pre-wrap;
			 white-space:-pre-wrap; 
			 white-space:-o-pre-wrap;
				word-wrap:break-word; 
} */

.t_more{
	float: right;
	font-family: arial;
	color: #333333;
	text-transform: uppercase;
	    font-size: 16px;
}

.t_more2{
	text-transform: uppercase;
	border: 1px #ccc solid; 
	font-family: arial;
	font-size: 16px;
	padding: 6px 14px;
margin-top: 3px;
	color: #ededed;
	float: left;
	margin-left: 15px;
}

.t_more2:hover{
	background: #0c5194;
	color: #fff;
}

/**2018-12-10**/
.solution_box {
  padding: 50px 0 40px;
}
.solution_box ol li {
  float: left;
  width: 32%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 2%;
  margin-right: 2%;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}
.solution_box ol li:nth-child(3n) {
  margin-right: 0;
}
.solution_box ol li .img {
  overflow: hidden;
  line-height: 0;
}
.solution_box ol li .img img {
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}
.solution_box ol li .text {
  padding: 20px 75px 20px 20px;
  position: relative;
}
.solution_box ol li .text:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 30px;
  width: 41px;
  height: 41px;
  background: url(../images/solution_btn.png) no-repeat center center / cover;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.solution_box ol li .text h3 {
  color: #333333;
  font-size: 18px;
  font-weight: normal;
}
.solution_box ol li .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.solution_box ol li:hover {
  background: #0c5194;
}
.solution_box ol li:hover .img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.solution_box ol li:hover .text h3,
.solution_box ol li:hover .text p {
  color: #fff;
}
.solution .navlist ul li {
  cursor: pointer;
}
.solution .navlist ul li .i1 {
  background: url(../images/solution_pic1.png) no-repeat center center / cover;
}
.solution .navlist ul li .i2 {
  background: url(../images/solution_pic2.png) no-repeat center center / cover;
}
.solution .navlist ul li .i3 {
  background: url(../images/solution_pic3.png) no-repeat center center / cover;
}
.solution .navlist ul li .i4 {
  background: url(../images/solution_pic4.png) no-repeat center center / cover;
}
.solution .navlist ul li:hover,
.solution .navlist ul li.cur {
  color: #fff;
}
.solution .navlist ul li:hover .i1,
.solution .navlist ul li.cur .i1 {
  background-image: url(../images/solution_Hpic1.png);
}
.solution .navlist ul li:hover .i2,
.solution .navlist ul li.cur .i2 {
  background-image: url(../images/solution_Hpic2.png);
}
.solution .navlist ul li:hover .i3,
.solution .navlist ul li.cur .i3 {
  background-image: url(../images/solution_Hpic3.png);
}
.solution .navlist ul li:hover .i4,
.solution .navlist ul li.cur .i4 {
  background-image: url(../images/solution_Hpic4.png);
}
.solution_text {
  padding: 35px 0 60px;
}
.solution_text .left {
  float: left;
  width: 72%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 30px;
}
.solution_text .left .fatd h3 {
  color: #0c5194;
  font-size: 22px;
  font-weight: normal;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 12px;
}
.solution_text .left .fatd h4 {
  color: #0c5194;
  font-size: 18px;
  font-weight: normal;
}
.solution_text .left .fatd .t {
  margin-top: 10px;
  color: #333333;
  font-size: 14px;
  line-height: 24px;
}
.solution_text .left .cgal li {
  float: left;
  width: 32%;
  margin-right: 2%;
  background: #fff;
  margin-bottom: 2%;
  border: 1px solid #e7e8e7;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: relative;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}
.solution_text .left .cgal li:nth-child(3n) {
  margin-right: 0;
}
.solution_text .left .cgal li .img {
  line-height: 0;
  overflow: hidden;
}
.solution_text .left .cgal li .img img {
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}
.solution_text .left .cgal li .text {
  text-align: center;
  padding: 10px 20px;
}
.solution_text .left .cgal li .text h3 {
  color: #2e2d2d;
  font-size: 14px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.solution_text .left .cgal li .text p {
  display: none;
  margin-top: 5px;
  color: #f4f6f9;
  font-size: 12px;
  line-height: 20px;
  height: 40px;
  text-overflow: inherit;
  overflow: hidden;
  white-space: inherit;
  text-align: left;
}
.solution_text .left .cgal li:hover .img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.solution_text .left .cgal li:hover .text {
  position: relative;
  z-index: 2;
  margin-top: -45px;
  text-align: left;
  background: #0c5194;
}
.solution_text .left .cgal li:hover .text h3 {
  color: #fff;
}
.solution_text .left .cgal li:hover .text p {
  display: block;
}
.solution_text .left .xgcp li {
  float: left;
  width: 32%;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 2%;
  margin-right: 2%;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}
.solution_text .left .xgcp li:nth-child(3n) {
  margin-right: 0;
}
.solution_text .left .xgcp li .img {
  line-height: 0;
  overflow: hidden;
}
.solution_text .left .xgcp li .img img {
  width: 100%;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}
.solution_text .left .xgcp li .text {
  color: #333333;
  font-size: 16px;
  line-height: 58px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.solution_text .left .xgcp li:hover {
  background: #0c5194;
}
.solution_text .left .xgcp li:hover .img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.solution_text .left .xgcp li:hover .text {
  color: #fff;
}
.solution_text .right {
  float: right;
  width: 25%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.solution_text .right h3 {
  background: #ededed;
  color: #333333;
  font-size: 22px;
  font-weight: normal;
  line-height: 56px;
 /* padding: 0 130px;*/
 text-align: center;
}
.solution_text .right ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #f7f8fa;
  line-height: 52px;
  font-size: 16px;
  padding: 0 50px;
}
.solution_text .right ul li a {
  display: block;
  color: #333333;
}
.solution_text .right ul li:hover a,
.solution_text .right ul li.cur a {
  color: #0c5194;
}

@media (max-width:768px) {
	.solution_box ol li,
	.solution_text .left .cgal li,
	.solution_text .left .xgcp li{
		width: 49%;
		margin-right: 0;
	}
	.solution_box ol li:nth-child(2n),
	.solution_text .left .cgal li:nth-child(2n),
	.solution_text .left .xgcp li:nth-child(2n){
		float: right;
	}
	.solution_box ol li .text h3{
		font-size: 14px;
	}
	.solution_box ol li .text p{
		font-size: 12px;
		margin-top: 5px;
	}
	.solution_box ol li .text{
		padding: 15px 50px 15px 15px;
	}
	.solution_box ol li .text:before{
		width: 30px;
		height: 30px;
		right: 15px;
		top: 21px;
	}
	.solution_text .left{
		width: 100%;
		padding: 0;
		box-shadow: none;
	}
	.solution_text .right{
		width: 100%;
		margin-top: 20px;
	}
	.solution_text .right h3{
		padding: 0 15px;
	}
	.solution_text .right ul li{
		padding: 0 15px;
	}
	.solution_text .left .xgcp li .text{
		line-height: 46px;
	}
}
@media (max-width:480px){
	.solution_box{
		padding: 20px 0 30px;
	}
	.solution_text{
		padding: 20px 0 30px;	
	}
	.solution_text .left .fatd h3,.solution_text .right h3{
		font-size: 18px;
	}
	.solution_text .left .fatd h4{
		font-size: 16px;
	}
	.solution_text .right ul li {
		font-size: 14px;
		line-height: 40px;
	}
	.solution_text .left .xgcp li .text{
		font-size: 14px;
		line-height: 34px;
	}
}
@media (max-width:1900px) {
/*.solution_text .right h3 {
    padding: 0 122px;
}*/
}
@media (max-width:1800px) {
/*.solution_text .right h3 {
    padding: 0 111px;
}*/
}
@media (max-width:1700px) {
/*.solution_text .right h3 {
    padding: 0 101px;
}*/
}
@media (max-width:1600px) {
/*.solution_text .right h3 {
    padding: 0 98px;
}*/
}
@media (max-width:1500px) {
  .solution_text .right ul li{
        padding: 0 30px;
  }
/*  .solution_text .right h3{
        padding: 0px 91px;
  }*/
  .technical_box .text .box .d{
    overflow: overlay;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
  }
}
@media (max-width:1400px) {
/*.solution_text .right h3 {
    padding: 0 86px;
}*/
}
@media (max-width:1300px) {
/*.solution_text .right h3 {
    padding: 0 78px;
}*/
}
@media (max-width:1200px) {
/*.solution_text .right h3 {
    padding: 0 67px;
}*/
}
@media (max-width:1100px) {
/*.solution_text .right h3 {
    padding: 0 61px;
}*/
}
.technical_box .text .box .d::-webkit-scrollbar{
        width: 10px; 
        height: 1px;
}

.technical_box .text .box .d::-webkit-scrollbar-thumb{
        border-radius: 10px;
         -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        background: #e7eded;
}

/*2021-0910服务T支持*/

.faq_list{
  padding: 14px 16px;
}


.faq_list .box{
  
}

.faq_list .box .bt{
  border-bottom: 1px solid #f2f2f2;
  padding: 20px;
  font-size: 17px;
  color: #0d5295;
  position: relative;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.faq_list .box .bt:before{
  width: 4px;
  height: 4px;
  position: absolute;
  border-radius: 100%;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: #0d5295;
  content: "";
}

.faq_list .box .bt:after{
  width: 10px;
  height: 6px;
  position: absolute;
  border-radius: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/xia.jpg) center center/cover;
  content: "";
}

.faq_list .box .nr{display: none;}
.faq_list .box .nr a{
  display: block;
  margin: 24px 0;
  font-size: 15px;
  color: #999999;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
  padding-left: 17px;
  position: relative;
}

.faq_list .box .nr a:before{
  width: 2px;
  height: 2px;
  position: absolute;
  left: 6px;
  top: 50%;
  background: #999999;
  transform: translateY(-50%);
  content: "";
}

.faq_list .box .nr a:hover,.faq_list .box .nr a.cur{color: #a12b27;}
.faq_list .box .nr a:hover:before,.faq_list .box .nr a.cur:before{background: #a12b27;}

.faq_list .box:last-child .bt{border-bottom: none;}

.faq_list .box.cur .nr{display: block;}
.faq_list .box .bt.cur:after{
    background: url(../images/shang.jpg) center center/cover;
}

@media(max-width: 1024px){
  .t_zhichi02 .mian_box .right_con{
    display: block !important;
    width: 100%;
    margin-top: 30px;
  }
  .faq_list{
    padding: 10px;
  }
  .faq_list .box .bt{
    font-size: 16px;
    padding: 10px 20px;
  }
  .faq_list .box .nr a{
    font-size: 14px;
    margin: 16px 0;
  }

}















/**2021-12-27**/
.xydfnA .swiper-container-lxwmC{
  margin-top: 44px;
}

.xydfnA .swiper-container-lxwmC .swiper-wrapper .swiper-slide a{
  display: block;
  color: #0c5194;
  height: 51px;
  font-size: 16px;
  line-height: 48px;
  border: 1px solid #b6cadf;
  border-radius: 5px;
  text-align: center;
}

.xydfnA .swiper-container-lxwmC .swiper-wrapper .cur a{
  background: #0c5194;
  color: #fff;
  border: 1px solid #0c5194;
}

.xydfnA .wxrb{
  position: relative;
}

.xydfnA .wxrb .swiper-button-next-lxwmC{
  background: url(../images/lxwmC-next.png);
  width: 11px;
  height: 17px;
  top: 50%;
  right: -37px;
  margin-top: auto;
  transform: translateY(-50%);
}

.xydfnA .wxrb .swiper-button-prev-lxwmC{
  background: url(../images/lxwmC-prev.png);
  width: 11px;
  top: 50%;
  margin-top: auto;
  height: 17px;
  left: -37px;
  transform: translateY(-50%);
}

.xydfnA .wxrb .swiper-button-next-lxwmC:after{
  opacity: 0;
}

.xydfnA .wxrb .swiper-button-prev-lxwmC:after{
  opacity: 0;
}

.xydfnA .wxrb .swiper-button-disabled{
  opacity: 1;
}

.xydfnA .xydfnA-b {
  margin-top: 45px;
}

.xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-wrapper .swiper-slide a{
  background: #f8f8f8;
  display: block;
  text-align: center;
  padding: 18px 18px 33px 18px;
}

.xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-wrapper .swiper-slide a .xydfn-wz{
  color: #333333;
  margin-top: 14px;
  font-size: 16px;
}

.xydfnA .xydfnA-b .box .swiper-container-xydfn{
  padding-bottom: 62px;
}

.xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-pagination-xydfn{
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*.xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-pagination-xydfn .swiper-pagination-bullet{
  width: 43px;
  height: 6px;
  border: 1px solid #dfdfdf;
  background: #fff;
  border-radius: 0;
  opacity: 1;
  margin: 0 7px 0 0;
}

.xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-pagination-xydfn .swiper-pagination-bullet-active{
  background: #dfdfdf;
}*/

.xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-pagination-xydfn .swiper-pagination-bullet{
  width: 43px;
  height: 30px;
  background: #fff;
  border-radius: 0;
  opacity: 1;
  margin: 0 7px 0 0;
  position: relative;
}

.xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-pagination-xydfn .swiper-pagination-bullet:before{
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  border: 1px solid #dfdfdf;
}

.xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-pagination-xydfn .swiper-pagination-bullet-active:before{
    background: #dfdfdf;
}

.xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-pagination-xydfn .swiper-pagination-bullet:last-child{
  margin-right: 0;
}

.xydfnA .wxrbA{
  display: none;
  margin-top: 20px;
}

.xydfnA .wxrbA ul li{
  float: left;
  width: 32%;
  margin-bottom: 2%;
  margin-right: 2%;
}

.xydfnA .wxrbA ul li:nth-child(3n){
  margin-right: 0;
}

.xydfnA .wxrbA ul li a{
  display: block;
  color: #0c5194;
  height: 43px;
  font-size: 15px;
  line-height: 41px;
  border: 1px solid #b6cadf;
  border-radius: 5px;
  text-align: center;
}


@media(max-width: 1024px) {
  .xydfnA .wxrb .swiper-button-prev-lxwmC{
    opacity: 0;
  }

  .xydfnA .wxrb .swiper-button-next-lxwmC{
    opacity: 0;
  }

  .home_pro {
    margin-top: 0px;
  }

  .wxrb{
    display: none;
  }

  .xydfnA .wxrbA{
    display: block;
  }

  .xydfnA .xydfnA-b{
    margin-top: 10px;
  }

  .xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-pagination-xydfn .swiper-pagination-bullet{
    width: 40px;
  }

  .xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-wrapper .swiper-slide a .xydfn-wz {
    font-size: 15px;
    margin-top: 10px;
  }

  .xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-wrapper .swiper-slide a {
    padding: 18px 18px 25px 18px;
  }
}

@media(max-width: 768px) {
  .xydfnA .wxrbA ul li a{
    height: 43px;
    font-size: 14px;
    line-height: 41px;
  }

  .xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-wrapper .swiper-slide a .xydfn-wz{
    font-size: 14px;
  }

  .xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-wrapper .swiper-slide a {
    padding: 18px 18px 20px 18px;
  }
}

@media(max-width:450px) {
  .xydfnA .wxrbA ul li{
    width: 49%;
  }

  .xydfnA .wxrbA ul li:nth-child(3n){
    margin-right: 2%;
  }

  .xydfnA .wxrbA ul li:nth-child(2n){
    margin-right: 0 ;
  }

  .home_pro {
    padding: 20px 0 25px;
  }

}

@media(max-width: 310px) {
  .xydfnA .wxrbA ul li{
    width: 100%;
  }

  .xydfnA .xydfnA-b .box .swiper-container-xydfn .swiper-pagination-xydfn .swiper-pagination-bullet {
    width: 29px;
  }

  .xydfnA .xydfnA-b .box .swiper-container-xydfn {
    padding-bottom: 31px;
  }
}




/**2021/12/28**/
.sqcxA {
  background:url(../images/sqcxA.jpg) no-repeat center center/cover;
  text-align: center;
  padding: 250px 0 438px;
}

.sqcxA .sqcxA-a{
  color: #333333;
  font-size: 30px;
}

.sqcxA .sqcxA-b {
  display: inline-block;
}

.sqcxA .sqcxA-b .sqcxA-b1{
  float: left;
}

.sqcxA .sqcxA-b .sqcxA-b1 select{
  color: #333333;
  width: 241px;
  height: 72px;
  border: 0;
  font-size: 18px;
  border-radius: 5px;
  background: #fff;
  padding-left: 50px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/select-icon.png) no-repeat scroll 200px center #fff;
}

.sqcxA .sqcxA-b .sqcxA-b1 select::-ms-expand{
	display: none;
}

.sqcxA .sqcxA-b{
  position: relative;
  margin-top: 58px;
}

.sqcxA .sqcxA-b .sqcxA-b2{
  float: left;
  margin-left: 10px;
}

.sqcxA .sqcxA-b .sqcxA-b2 .inp{
  width: 738px;
  height: 72px;
  background: #fff;
  border: 0;
  font-size: 18px;
  padding-left: 50px;
  border-radius: 5px;
  line-height: 72px;
  color: #333;
}

.sqcxA .sqcxA-b .sqcxA-b2 .inp::-webkit-input-placeholder{
     color:#dcdcdc;
}

.sqcxA .sqcxA-b .sqcxA-b2 .inp::-moz-placeholder{   /* Mozilla Firefox 19+ */
     color:#dcdcdc;
}

.sqcxA .sqcxA-b .sqcxA-b2 .inp:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
     color:#dcdcdc;
}

.sqcxA .sqcxA-b .sqcxA-b2 .inp:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
     color:#dcdcdc;
}    

.sqcxA .sqcxA-b .sqcxA-b2 .sub{
  position: absolute;
    top: 0;
    right: 0;
    background: url(../images/ggthb.png) no-repeat 74px center #0c5194;
    width: 175px;
    color: rgba(255,255,255,0);
    cursor: pointer;
    height: 72px;
    border:0;
  border-radius:0 5px 5px 0;
}

@media (max-width:1236px) {
  .sqcxA .sqcxA-b .sqcxA-b1 {
    width: 24%;
    margin-right: 1%;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1 select{
    width: 100%;
  }
  
  .sqcxA .sqcxA-b{
    width: 100%;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b2{
    margin-left: 0;
    width: 70%;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b2 .inp{
    width: 100%;
  }
  
}

@media (max-width:1300px) {
	.sqcxA .sqcxA-b .sqcxA-b1 select {
	    padding-left: 30px;
	}
}

@media (max-width:1250px) {
	.sqcxA .sqcxA-b .sqcxA-b1 select {
	    background: url(../images/select-icon.png) no-repeat scroll 190px center #fff;
	}
}

@media (max-width:1150px) {
	.sqcxA .sqcxA-b .sqcxA-b1 select {
	    background: url(../images/select-icon.png) no-repeat scroll 170px center #fff;
	}
}

@media (max-width:1024px) {
  .sqcxA{
    padding: 100px 0 250px;
  }
  
  .sqcxA .sqcxA-a{
    font-size: 25px;
  }
  
  .sqcxA .sqcxA-b {
      margin-top: 28px;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1 select{
    font-size: 16px;
    height: 65px;
    text-align: left;
    padding-left: 20px;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1:before {
      right: 8%;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b2 .inp{
    font-size: 16px;
    height: 65px;
    line-height: 65px;
    padding-left: 40px;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b2 .sub{
    height: 65px;
    width: 140px;
    background: url(../images/ggthb.png) no-repeat 57px center rgb(12 81 148);
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1 select {
      background: url(../images/select-icon.png) no-repeat scroll 200px center #fff;
  }

}

@media (max-width:950px) {
	.sqcxA .sqcxA-b .sqcxA-b1 select {
	    background: url(../images/select-icon.png) no-repeat scroll 180px center #fff;
	}
}

@media (max-width:880px) {
	.sqcxA .sqcxA-b .sqcxA-b1 select {
	    background: url(../images/select-icon.png) no-repeat scroll 160px center #fff;
	}
}

@media (max-width:768px) {
  .sqcxA .sqcxA-a {
      font-size: 22px;
  }
  
  .sqcxA {
      padding: 100px 0 200px;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b2 .inp{
    font-size: 15px;
    padding-left: 20px;
    height: 55px;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1 select{
    font-size: 15px;
    height: 55px;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b2 .sub {
      background: url(../images/ggthb1.png) no-repeat 42px center rgb(12 81 148);
    height: 55px;
    width: 105px;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1:before {
      right: 15%;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1 {
      width: 28%;
  }
  

}

@media (max-width:680px) {
	.sqcxA .sqcxA-b .sqcxA-b1 select {
	    background: url(../images/select-icon.png) no-repeat scroll 150px center #fff;
	}
}

@media (max-width:640px) {
	.sqcxA .sqcxA-b .sqcxA-b1 select {
	    background: url(../images/select-icon.png) no-repeat scroll 130px center #fff;
	}
}


@media (max-width:580px) {
  .sqcxA .sqcxA-b .sqcxA-b2 {
      float: right;
      width: 65%;
  }
  
  
  .sqcxA .sqcxA-b .sqcxA-b1{
    width: 100%;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b2{
    width: 100%;
    margin-top: 20px;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b2 .sub{
    bottom: 0;
    top: auto;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1:before {
      right: 36%;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1:before {
      right: 3%;
  }
  
  .sqcxA {
      padding: 40px 0 80px;
  }
  
  .sqcxA .sqcxA-b .sqcxA-b1 select {
      background: url(../images/select-icon.png) no-repeat scroll 97% center #fff;
  }
}



.sqcxdebA{
  padding: 108px 0 120px;
}

.sqcxdebA .sqcxdebA-a .sqcxdebA-a1{
  font-size: 24px;
  color: #333333;
  margin-top: 68px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e3e3e3;
}

.sqcxdebA .sqcxdebA-a .sqcxdebA-b{
  display: inline-block;
  margin-top: 51px;
}

.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b1{
  float: left;
}
.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b1 img{
	width: 317px;
}

.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2{
  float: left;
/*  text-align: left;*/
  margin-top: 66px;
  margin-left: 103px;
}

.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2a{
  font-size: 18px;
  color: #666666;
}

.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2b{
  font-size: 18px;
  color: #666666;
  margin-top: 32px;
}

.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2c{
  color: #0c5194;
  font-size: 16px;
  margin-top: 34px;
  margin-bottom: 50px;
}
.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2d{
  margin-left: 64px;
}
.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2e{
  color: #0c5194;
  font-size: 18px;
  margin-top: 43px;
}


.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2d a{
  display: block;
  color: #fff;
  font-size: 14px;
  width: 165px;
  height: 41px;
  line-height: 40px;
  text-align: center;
  background: #0c5194;
  border-radius: 5px;
}


.sqcxdsbA-djj{
  padding: 107px 0 300px;
}

.sqcxdebA .sqcxdebA-a .sqcxdsbA .sqcxdsbA-a{
  font-size: 18px;
  color: #666666;
  margin: 46px 0 41px;
}

.sqcxdebA .sqcxdebA-a .sqcxdsbA .sqcxdsbA-b{
  font-size: 18px;
  color: #0c5194;
  font-weight: bold;
}

.sqcxdwbA .sqcxdwbA-a{
  font-size: 18px;
  color: #666666;
  margin-top: 45px;
}

.sqcxdwbA .sqcxdwbA-b{
  font-size: 18px;
  color: #666666;
  margin-top: 13px;
}

.sqcxdwbA .sqcxdwbA-c{
  font-size: 18px;
  color: #0c5194;
  margin-top: 35px;
  font-weight: bold;
}

.sqcxdlbA .sqcxdlbA-zi{
  font-size: 18px;
  color: #666666;
}

.sqcxdlbA .sqcxdlbA-a{
  margin-top: 48px;
}

.sqcxdlbA .sqcxdlbA-b{
  margin-top: 14px;
}

.sqcxdlbA .sqcxdlbA-c{
  color: #999999;
  margin-top: 26px;
}

.sqcxdlbA .sqcxdlbA-d{
  color: #0c5194;
  font-weight: bold;
  margin-top: 44px;
}



@media (max-width: 1024px){
  .sqcxdsbA-djj{
    padding: 100px 0 250px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdsbA .sqcxdsbA-a {
    font-size: 16px;
     margin: 25px 0 40px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdsbA .sqcxdsbA-b{
    font-size: 16px;
  }

  .sqcxdwbA .sqcxdwbA-a {
    font-size: 16px;
    margin-top: 24px;
  }

  .sqcxdwbA .sqcxdwbA-b {
    font-size: 16px;
    margin-top: 13px;
  }

  .sqcxdwbA .sqcxdwbA-c{
    font-size: 16px;
    margin-top: 20px;
  }

  .sqcxdlbA .sqcxdlbA-zi{
    font-size: 16px;
  }

}



@media(max-width: 769px) {
  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 {
    margin-left: 55px;
  }


  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2a{
    font-size: 15px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2b{
    font-size: 15px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2c {
    margin-top: 24px;
    margin-bottom: 55px;
  }

  .sqcxdebA{
    padding: 30px 0 40px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdebA-a1 {
    margin-top: 20px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2c {
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2b {
    font-size: 14px;
    margin-top: 6px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2a{
    font-size: 14px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdebA-b {
    margin-top: 25px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdsbA .sqcxdsbA-a {
    font-size: 16px;
    margin: 15px 0 16px;
  }

  .sqcxdlbA .sqcxdlbA-a {
    margin-top: 25px;
  }

  .sqcxdlbA .sqcxdlbA-zi{
    font-size: 16px;
  }

  .sqcxdlbA .sqcxdlbA-d {
    margin-top: 15px;
  }

  .sqcxdlbA .sqcxdlbA-c {
    margin-top: 12px;
  }

}

@media(max-width: 598px) {
  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b1{
    width: 100%;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-left: 0;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2d a{
    display: inline-block;
  }
  .sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .sqcxdebA-b2d{
    margin-left: 0px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdsbA .sqcxdsbA-a{
    font-size: 14px;
  }

  .sqcxdebA .sqcxdebA-a .sqcxdsbA .sqcxdsbA-b{
    font-size: 15px;
  }

  .sqcxdwbA .sqcxdwbA-a {
    font-size: 14px;
    margin-top: 22px;
  }

  .sqcxdwbA .sqcxdwbA-b{
    font-size: 14px;
  }

  .sqcxdwbA .sqcxdwbA-c{
    font-size: 14px;
    margin-top: 10px;
  }

  .sqcxdlbA .sqcxdlbA-zi{
    font-size: 14px;
  }


}


.navlist ul li{
	width: 16.6% !important;
}


@media(max-width: 1024px) {
  .navlist ul li {
   	width: 33.3% !important;
   	border-bottom: 1px solid #f1f1f1;
  }

  .navlist ul li:nth-child(4){
  	border-left: 0;
  }
}


@media(max-width: 480px) {
	.navlist ul li i.i6{
		display: none;
	}
}




/**2022-1-13新增**/
.home_news .xydfnA{
	margin-top: 25px;
}


.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper .swiper-slidea a{
	display: block;
	color: #0c5194;
	height: 51px;
	font-size: 16px;
	line-height: 48px;
	border: 1px solid #b6cadf;
	border-radius: 5px;
	text-align: center;
	padding: 0 55px;
}

.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper .swiper-slidea{
	margin-right: 14px;
}

.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper .cur a{
	background: #0c5194;
	color: #fff;
	border: 1px solid #0c5194;
}

@media (max-width:1100px) {
	.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper {
		width: 100%;
	}
	
	.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper .swiper-slidea{
		width: 25%;
		margin-right: 1%;
	}
	
	.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper .swiper-slidea:last-child{
		margin-right: 0;
	}
	
	.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper .swiper-slidea a{
		padding: 0;
	}
}

@media (max-width:1024px) {
	.home_news .xydfnA .wxrb{
		display: block;
	}
}


@media (max-width:768px) {
	.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper .swiper-slidea a{
		height: 43px;
		font-size: 14px;
		line-height: 41px;
	}
	
	.home_news .xydfnA {
	    margin-top: 20px;
	}
	
	.home_news .home_news_box {
	    margin-top: 23px;
	    padding-bottom: 40px;
	}
	
	.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper .swiper-slidea{
		width: 49%;
		margin-right: 2%;
		float: left;
		margin-bottom: 2%;
	}
	
	.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper .swiper-slidea:nth-child(2n){
		margin-right: 0;
	}
	
	.home_news .xydfnA .wxrb .xydfnA-a .swiper-wrapper {
		display: block;
	}
	
	.home_news .home_news_box{
		padding-bottom: 0;
		margin-top: 10px;
		overflow: initial;
		display: inline-block;
	}

  .swiper-container-xydfn .swiper-pagination-xydfn{
    display: none;
  }
}



















/**2022-3-7新增**/
.header .xy-head .logo{
  float: left;
}

.header .xy-head .logo .sj{
  display: none;
}

.header .xy-head .logo a{
  padding: 21px 0 22px;
  display: block;
}

.header .xy-head .head-a{
  float: left;
  margin-left: 95px;
}

.header .xy-head .head-a ul li{
  float: left;
  margin-right: 40px;
}

.header .xy-head .head-a ul li:last-child{
  margin-right: 0;
}

.header .xy-head .head-a ul li a{
  display: block;
  font-size: 18px;
  color: #666666;
  padding: 29px 0 30px;
}

.header .xy-head .head-a ul li a:hover{
 color: #0c5194;
 }
.header .xy-head .head-a ul .cur a{
  color: #0c5194;
}

.header .xy-head .head-b{
  float: right;
}

.header .xy-head .head-b .head-b1{
  float: left;
  position: relative;
  padding: 30px 0 26px 0;
}

.header .xy-head .head-b .head-b1 span{
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../images/fdj.png) no-repeat center center/cover;
}

.header .xy-head .head-b .head-b1 .searchbox{
  position: absolute;
  background: url(../images/alskhd.png) no-repeat;
  width: 377px;
  height: 40px;
  left: -28px;
  margin-left: -130px;
  top: 79px;
  z-index: 7;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  display: none;
}


.header .xy-head .head-b .head-b1 .searchbox:before{
  position: absolute;
  content: "";
  left: 50%;
  width: 17px;
  top: -9px;
  z-index: 9;
  height: 9px;
  transform: translateX(-50%);
  background: url(../images/wzflmm.png) no-repeat center center/cover #fff;
}

.header .xy-head .head-b .head-b1 .searchbox .searchin{
    height: 39px;
    padding: 0 8px 0 14px;
    width: 270px;
    border: 0;
    float: left;
    font-size: 14px;
    color: #999999;
     border-radius: 4px;
}

.header .xy-head .head-b .head-b1 .searchbox .searchbt{
    float: right;
    height: 40px;
    width: 42px;
    cursor: pointer;
    border: 0;
    background: rgba(255, 255, 255, 0);
}

.header .xy-head .head-b .head-b2{
  float: right;
  padding-top: 27px;
  margin: 0 0 0 24px;
}

.header .xy-head .head-b .head-b2 a{
  display: block;
  width: 52px;
  height: 31px;
  background: url(../images/lsxyc.png) no-repeat center center/cover;
}

.header .xy-head .head-b .head-b3{
  float: left;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  padding: 9px 30px 9px 32px;
  position: relative;
  margin-top: 21px;
  margin-left: 30px;
}

.header .xy-head .head-b .head-b3 span{
    display: block;
    color: #666666;
    padding: 0 10px 0 25px;
    position: relative;
}


.header .xy-head .head-b .head-b3 span:before{
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: url(../images/xdq.png) no-repeat center center/cover;
}

.header .xy-head .head-b .head-b3 span:after{
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 6px;
  height: 5px;
  transform: translateY(-50%);
  background: url(../images/xdqe.png) no-repeat center center/cover;
}


.header .xy-head .head-b .head-b3 .b3-a{
  position: absolute;
  text-align: center;
  height: auto;
  background: #fff;
  z-index: 9;
  left: -1px;
  border: 1px solid #d1d1d1;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  top: 36px;
  display: none;
  width: calc(100% + 2px);
}

.header .xy-head .head-b .head-b3:hover .b3-a{
  display: block;
}

.header .xy-head .head-b .head-b3 .b3-a a{
  width: 100%;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #d1d1d1;
}

.header .xy-head .head-b .head-b3 .b3-a a:last-child {
  border-bottom: none;
}

.header .xy-head .head-b .head-b1 .searchbox .gba{
    width: 40px;
    float: right;
    height: 39px;
    background: url(../images/ss_gb.png) center no-repeat #fff;
    background-size: 24px auto;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}


@media(max-width: 1830px) {
  .header .xy-head .head-a {
    margin-left: 80px;
  }
}

@media(max-width: 1750px) {
  .header .xy-head .head-a {
    margin-left: 50px;
  }

  .header .xy-head .head-a ul li{
    margin-right: 25px;
  }
}

@media(max-width: 1480px) {
  .header .xy-head .head-a{
    margin-left: 25px;
  }
}



@media(max-width: 1450px) {
  .header .xy-head .logo{
    width: 200px;
  }
}


@media(max-width: 1400px){
  .header .xy-head .head-a ul li a{
    font-size: 15px;
  }

  .header .xy-head .logo {
    width: 178px;
  }

  .header .xy-head .head-b .head-b3 {
    padding: 7px 23px 7px 23px;
    margin-top: 20px;
  }

  .header .xy-head .head-b .head-b2 a {
    width: 42px;
    height: 27px;
  }
}


@media(max-width: 1250px) {
  .header .xy-head .head-a ul li {
    margin-right: 15px;
  }
}


@media(max-width: 1170px) {
  .header .xy-head .head-b .head-b2 {
    padding-top: 27px;
    margin: 0 15px 0 15px;
  }
}

@media(max-width: 1140px) {
  .header .xy-head .head-b .head-b3 {
    padding: 7px 14px 7px 14px;
    margin-top: 20px;
  }
}

@media(max-width: 1100px) {
  .header .xy-head .logo {
    width: 128px;
  }

  .header .xy-head .head-a ul li a {
    font-size: 13px;
  }

  .header .xy-head .head-a ul li a {
    padding: 24px 0 24px;
  }

  .header .xy-head .head-b .head-b1 span{
    width: 15px;
    height: 15px;
  }

  .header .xy-head .head-b .head-b3 span {
    font-size: 12px;
  }

  .header .xy-head .head-b .head-b3 span:before {
    width: 14px;
    height: 14px;
  }

  .header .xy-head .head-b .head-b2 a {
    width: 27px;
    height: 17px;
  }

  .header .xy-head .head-b .head-b1 {
    padding: 27px 0 19px 0;
  }
}


@media(max-width:1024px) {
  .header .xy-head .head-a{
    display: none;
  }

  .header .xy-head .head-b{
    display: none;
  }

  .header .xy-head .logo .sj{
    display: block;
  }

  .header .xy-head .logo .pc{
    display: none;
  }

.header .xy-head .logo {
    width: 188px;
}
}

@media(max-width:750px) {
  .header .xy-head .logo {
    width: 148px;
}
}
/*.header .xy-head .head-a ul li.cur > a,.header .xy-head .head-a ul li:hover > a{
  color: #e70014 !important;
}*/










/**2022-3-9新增修改**/
@media (max-width:920px) {
	.down_con .tables{
		overflow: scroll;
	}
	
	.down_con .tables table{
		min-width: 1000px;
	}
}


@media (max-width:480px){
  .news_box .news_tit a:nth-child(3n){
      margin-right: 0;
  }

   .news_box .news_tit a{
        margin-bottom: 10px !important;
   }
}



/**2023-4-12新增修改**/
.sqcxdebA .sqcxdebA-a .sqcxdebA-b .sqcxdebA-b2 .wszsh{
  font-size: 18px;
  color: #0c5194;
  margin-top: 32px;
}