/*
    ----------------------------------- 
            方法变量    
                     
    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-initialized .slick-slide img {
    min-width: 100%;
}

.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: #368bd0;
  border-radius: 25px;
  /*border-radius: 0;*/
}
.slick-dots li.slick-active button {
  background: #fff;
}
/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
.mm-hidden {
  display: none !important;
}
.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}
.mm-menu,
.mm-menu > .mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.mm-menu {
  box-sizing: border-box;
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}
.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-panel.mm-opened {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
.mm-panel.mm-highest {
  z-index: 1;
}
.mm-menu > .mm-panel {
  background: inherit;
  border-color: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 20px;
}
.mm-menu > .mm-panel.mm-hasnavbar {
  padding-top: 40px;
}
.mm-menu > .mm-panel:before,
.mm-menu > .mm-panel:after {
  content: '';
  display: block;
  height: 20px;
}
.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}
.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}
.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent;
}
.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
  display: block;
}
.mm-vertical .mm-listview > li > .mm-next,
.mm-listview > li.mm-vertical > .mm-next {
  height: 40px;
  bottom: auto;
}
.mm-vertical .mm-listview > li > .mm-next:after,
.mm-listview > li.mm-vertical > .mm-next:after {
  top: 16px;
  bottom: auto;
}
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after,
.mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.mm-navbar > * {
  display: block;
  padding: 10px 0;
}
.mm-navbar a,
.mm-navbar a:hover {
  text-decoration: none;
}
.mm-navbar .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.mm-navbar .mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
}
.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0;
}
.mm-navbar .mm-btn:last-child {
  text-align: right;
  padding-right: 20px;
  right: 0;
}
.mm-panel .mm-navbar {
  display: none;
}
.mm-panel.mm-hasnavbar .mm-navbar {
  display: block;
}
.mm-listview,
.mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}
.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px;
}
.mm-listview a,
.mm-listview a:hover {
  text-decoration: none;
}
.mm-listview > li {
  position: relative;
}
.mm-listview > li,
.mm-listview > li:after,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next:before {
  border-color: inherit;
}
.mm-listview > li > a,
.mm-listview > li > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0;
}
.mm-listview > li > a.mm-arrow,
.mm-listview > li > span.mm-arrow {
  padding-right: 50px;
}
.mm-listview > li:not(.mm-divider):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.mm-listview > li:not(.mm-divider):after {
  left: 20px;
}
.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.mm-listview .mm-next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
  margin-right: 50px;
}
.mm-listview .mm-next.mm-fullsubopen {
  width: 100%;
}
.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none;
}
.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0;
}
.mm-menu > .mm-panel > .mm-listview {
  margin: 20px -20px;
}
.mm-menu > .mm-panel > .mm-listview:first-child,
.mm-menu > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px;
}
.mm-listview .mm-inset {
  list-style: inside disc;
  padding: 0 10px 15px 40px;
  margin: 0;
}
.mm-listview .mm-inset > li {
  padding: 5px 0;
}
.mm-listview .mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}
.mm-listview .mm-spacer {
  padding-top: 40px;
}
.mm-listview .mm-spacer > .mm-next {
  top: 40px;
}
.mm-listview .mm-spacer.mm-divider {
  padding-top: 25px;
}
.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px;
}
.mm-next:after,
.mm-arrow:after {
  border-top: none;
  border-left: none;
  right: 20px;
}
.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-navbar > *,
.mm-menu .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-navbar .mm-btn:before,
.mm-menu .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu .mm-listview > li .mm-next:after,
.mm-menu .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.5);
}
.mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu .mm-divider {
  background: rgba(0, 0, 0, 0.05);
}
/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative;
}
.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-opened {
  overflow: hidden;
  position: relative;
}
html.mm-opened body {
  overflow: hidden;
}
html.mm-background .mm-page {
  background: inherit;
}
#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}
.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}
.mm-menu.mm-current {
  display: block;
}
.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
}
html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0);
  }
}
/*
	jQuery.mmenu autoHeight addon CSS
*/
.mm-menu.mm-top.mm-autoheight,
.mm-menu.mm-bottom.mm-autoheight {
  max-height: 80%;
}
.mm-menu.mm-top.mm-autoheight.mm-fullscreen,
.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
  max-height: 100%;
}
.mm-menu.mm-measureheight > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}
/*
	jQuery.mmenu counters addon CSS
*/
em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%;
}
em.mm-counter + a.mm-next {
  width: 90px;
}
em.mm-counter + a.mm-next + a,
em.mm-counter + a.mm-next + span {
  margin-right: 90px;
}
em.mm-counter + a.mm-fullsubopen {
  padding-left: 0;
}
.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0;
}
.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px;
}
.mm-nosubresults > .mm-counter {
  display: none;
}
.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu dividers addon CSS
*/
.mm-divider > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}
.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-collapsed:not(.mm-uncollapsed) {
  display: none;
}
.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-fixeddivider:after {
  content: none !important;
  display: none !important;
}
.mm-hasdividers .mm-fixeddivider {
  display: block;
}
.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05);
}
/*
	jQuery.mmenu dragOpen addon CSS
*/
html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/*
	jQuery.mmenu iconpanels addon CSS
*/
.mm-iconpanel .mm-panel {
  -webkit-transition-property: -webkit-transform, left, right;
  -moz-transition-property: -moz-transform, left, right;
  -ms-transition-property: -ms-transform, left, right;
  -o-transition-property: -o-transform, left, right;
  transition-property: transform, left, right;
}
.mm-iconpanel .mm-panel.mm-opened {
  border-left: 1px solid;
  border-color: inherit;
}
.mm-iconpanel .mm-panel.mm-subopened {
  overflow-y: hidden;
  left: -40px;
  right: 40px;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-iconpanel .mm-panel.mm-iconpanel-0 {
  left: 0px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-1 {
  left: 40px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-2 {
  left: 80px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-3 {
  left: 120px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-4 {
  left: 160px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-5 {
  left: 200px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-6 {
  left: 240px;
}
.mm-subblocker {
  background: inherit;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.mm-subopened .mm-subblocker {
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -100000px;
  left: 0;
  z-index: 3;
}
/*
	jQuery.mmenu navbars addon CSS
*/
.mm-menu > .mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-navbar-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom: none;
  top: auto;
  bottom: 0;
}
.mm-navbar-top ~ .mm-navbar-top {
  border-bottom: none;
}
.mm-navbar-bottom ~ .mm-navbar-bottom {
  border-top: none;
}
.mm-navbar.mm-hasbtns {
  padding: 0 40px;
}
.mm-close:after {
  content: 'x';
}
.mm-navbar[class*="mm-navbar-content-"] > * {
  box-sizing: border-box;
  display: block;
  float: left;
}
.mm-navbar > .mm-breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px;
}
.mm-navbar > .mm-breadcrumbs > * {
  display: inline-block;
  padding: 10px 3px;
}
.mm-navbar > .mm-breadcrumbs > a {
  text-decoration: underline;
}
.mm-navbar.mm-hasbtns .mm-breadcrumbs {
  margin-left: -40px;
}
.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs {
  margin-left: 0;
  padding-left: 0;
}
.mm-navbar-top-1 {
  top: 0px;
}
.mm-hasnavbar-top-1 .mm-panel {
  top: 40px;
}
.mm-hasnavbar-top-1 .mm-indexer {
  top: 50px;
}
.mm-hasnavbar-top-1 .mm-fixeddivider {
  top: 40px;
}
.mm-navbar-top-2 {
  top: 40px;
}
.mm-hasnavbar-top-2 .mm-panel {
  top: 80px;
}
.mm-hasnavbar-top-2 .mm-indexer {
  top: 90px;
}
.mm-hasnavbar-top-2 .mm-fixeddivider {
  top: 80px;
}
.mm-navbar-top-3 {
  top: 80px;
}
.mm-hasnavbar-top-3 .mm-panel {
  top: 120px;
}
.mm-hasnavbar-top-3 .mm-indexer {
  top: 130px;
}
.mm-hasnavbar-top-3 .mm-fixeddivider {
  top: 120px;
}
.mm-navbar-top-4 {
  top: 120px;
}
.mm-hasnavbar-top-4 .mm-panel {
  top: 160px;
}
.mm-hasnavbar-top-4 .mm-indexer {
  top: 170px;
}
.mm-hasnavbar-top-4 .mm-fixeddivider {
  top: 160px;
}
.mm-navbar-bottom-1 {
  bottom: 0px;
}
.mm-hasnavbar-bottom-1 .mm-panel {
  bottom: 40px;
}
.mm-hasnavbar-bottom-1 .mm-indexer {
  bottom: 50px;
}
.mm-navbar-bottom-2 {
  bottom: 40px;
}
.mm-hasnavbar-bottom-2 .mm-panel {
  bottom: 80px;
}
.mm-hasnavbar-bottom-2 .mm-indexer {
  bottom: 90px;
}
.mm-navbar-bottom-3 {
  bottom: 80px;
}
.mm-hasnavbar-bottom-3 .mm-panel {
  bottom: 120px;
}
.mm-hasnavbar-bottom-3 .mm-indexer {
  bottom: 130px;
}
.mm-navbar-bottom-4 {
  bottom: 120px;
}
.mm-hasnavbar-bottom-4 .mm-panel {
  bottom: 160px;
}
.mm-hasnavbar-bottom-4 .mm-indexer {
  bottom: 170px;
}
.mm-navbar-size-2 {
  height: 80px;
}
.mm-navbar-size-3 {
  height: 120px;
}
.mm-navbar-size-4 {
  height: 160px;
}
.mm-navbar-content-2 > * {
  width: 50%;
}
.mm-navbar-content-3 > * {
  width: 33.33%;
}
.mm-navbar-content-4 > * {
  width: 25%;
}
.mm-navbar-content-5 > * {
  width: 20%;
}
.mm-navbar-content-6 > * {
  width: 16.67%;
}
/*
	jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box;
}
.mm-search {
  height: 40px;
  padding: 7px 10px 0 10px;
}
.mm-search input {
  border: none;
  border-radius: 26px;
  font: inherit;
  font-size: 14px;
  line-height: 26px;
  outline: none;
  display: block;
  width: 100%;
  height: 26px;
  margin: 0;
  padding: 0 10px;
}
.mm-search input::-ms-clear {
  display: none;
}
.mm-panel > .mm-search {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mm-panel.mm-hassearch {
  padding-top: 40px;
}
.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 80px;
}
.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px;
}
.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0;
}
.mm-noresults .mm-noresultsmsg {
  display: block;
}
.mm-noresults .mm-indexer {
  display: none !important;
}
li.mm-nosubresults > a.mm-next {
  display: none;
}
li.mm-nosubresults > a.mm-next + a,
li.mm-nosubresults > a.mm-next + span {
  padding-right: 10px;
}
.mm-menu .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu sectionIndexer addon CSS
*/
.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -ms-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.85%;
}
.mm-indexer ~ .mm-panel.mm-hasindexer {
  padding-right: 40px;
}
.mm-hasindexer .mm-indexer {
  right: 0;
}
.mm-hasindexer .mm-fixeddivider {
  right: 20px;
}
.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu toggles addon CSS
*/
input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}
label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
}
label.mm-toggle:before,
label.mm-check:before {
  content: '';
  display: block;
}
label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px;
}
label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}
input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right;
}
label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px;
}
label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
input.mm-check:checked ~ label.mm-check:before {
  opacity: 1;
}
li.mm-vertical label.mm-toggle,
li.mm-vertical label.mm-check {
  bottom: auto;
  margin-top: 0;
}
li.mm-vertical label.mm-toggle {
  top: 5px;
}
li.mm-vertical label.mm-check {
  top: 5px;
}
label.mm-toggle,
label.mm-check {
  right: 20px;
}
label.mm-toggle + a,
label.mm-toggle + span {
  padding-right: 80px;
}
label.mm-check + a,
label.mm-check + span {
  padding-right: 60px;
}
a.mm-next + label.mm-toggle,
a.mm-next + label.mm-check {
  right: 60px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span,
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  margin-right: 50px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span {
  padding-right: 70px;
}
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  padding-right: 50px;
}
em.mm-counter + a.mm-next + label.mm-toggle,
em.mm-counter + a.mm-next + label.mm-check {
  right: 100px;
}
em.mm-counter + a.mm-next + label.mm-toggle + a,
em.mm-counter + a.mm-next + label.mm-toggle + span,
em.mm-counter + a.mm-next + label.mm-check + a,
em.mm-counter + a.mm-next + label.mm-check + span {
  margin-right: 90px;
}
.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu label.mm-toggle:before {
  background: #f3f3f3;
}
.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7);
}
/*
	jQuery.mmenu borderstyle extension CSS
*/
.mm-menu.mm-border-none .mm-listview > li:after,
.mm-listview.mm-border-none > li:after {
  content: none;
}
.mm-menu.mm-border-full .mm-listview > li:after,
.mm-listview.mm-border-full > li:after {
  left: 0 !important;
}
/*
	jQuery.mmenu effects extension CSS
*/
html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}
html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu .mm-menu.mm-effect-slide-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-slide-menu.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
html.mm-effect-slide-menu.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
html.mm-effect-fade-menu .mm-menu.mm-effect-fade-menu {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
html.mm-effect-fade-menu.mm-opening .mm-menu.mm-effect-fade-menu {
  opacity: 1;
}
.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}
.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(1) {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(2) {
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(3) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(4) {
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(5) {
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(6) {
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(7) {
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(8) {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(9) {
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}
html.mm-effect-slide-listitems.mm-opening .mm-menu.mm-effect-slide-listitems .mm-panel.mm-opened .mm-listview > li {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*
	jQuery.mmenu fullscreen extension CSS
*/
.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}
html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}
html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}
.mm-menu.mm-fullscreen.mm-top,
.mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}
html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}
/*
	jQuery.mmenu multiline extension CSS
*/
.mm-menu.mm-multiline .mm-listview > li > a,
.mm-menu.mm-multiline .mm-listview > li > span,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > a,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > span {
  text-overflow: clip;
  white-space: normal;
}
/*
	jQuery.mmenu pageshadow extension CSS
*/
.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
}
.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%;
}
.mm-menu.mm-pageshadow.mm-next:after,
.mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none;
}
.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.mm-menu.mm-right {
  left: auto;
  right: 0;
}
.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}
html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
  }
}
/*
	jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}
.mm-menu.mm-front {
  z-index: 1;
}
.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}
/*
	jQuery.mmenu themes extension CSS
*/
.mm-menu.mm-theme-dark {
  background: #333333;
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-navbar > *,
.mm-menu.mm-theme-dark .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview {
  border-color: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-dark .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark .mm-divider {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333333;
}
.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-white {
  background: white;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-navbar > *,
.mm-menu.mm-theme-white .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-white .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white .mm-divider {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white label.mm-toggle:before {
  background: white;
}
.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-black {
  background: black;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-navbar > *,
.mm-menu.mm-theme-black .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-black .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-divider {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none;
}
.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-toggle:before {
  background: black;
}
.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
/*
	jQuery.mmenu tileview extension CSS
*/
.mm-menu.mm-tileview .mm-listview:after,
.mm-menu .mm-tileview.mm-listview:after {
  content: '';
  display: block;
  clear: both;
}
.mm-menu.mm-tileview .mm-listview > li,
.mm-menu .mm-tileview.mm-listview > li {
  width: 50%;
  height: 0;
  padding: 50% 0 0 0;
  float: left;
  position: relative;
}
.mm-menu.mm-tileview .mm-listview > li:after,
.mm-menu .mm-tileview.mm-listview > li:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-xs,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-s,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-s {
  width: 25%;
  padding-top: 25%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-l,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-l {
  width: 75%;
  padding-top: 75%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-xl,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xl {
  width: 100%;
  padding-top: 100%;
}
.mm-menu.mm-tileview .mm-listview > li > a,
.mm-menu.mm-tileview .mm-listview > li > span,
.mm-menu .mm-tileview.mm-listview > li > a,
.mm-menu .mm-tileview.mm-listview > li > span {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0;
}
.mm-menu.mm-tileview .mm-listview > li > .mm-next,
.mm-menu .mm-tileview.mm-listview > li > .mm-next {
  width: auto;
}
.mm-menu.mm-tileview .mm-listview > li > .mm-next:before,
.mm-menu.mm-tileview .mm-listview > li > .mm-next:after,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:before,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:after {
  content: none;
  display: none;
}
.mm-menu.mm-tileview .mm-panel {
  padding-left: 0;
  padding-right: 0;
}
.mm-menu.mm-tileview .mm-panel:after {
  content: none;
  display: none;
}
.mm-menu.mm-tileview .mm-listview {
  margin: 0;
}
body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 73.6%;
  width: 100%;
}
img {
  max-width: 100%;
}
.page {
  text-align: center;
}
.page a {
  display: inline-block;
  border: 1px solid #d8dce0;
  border-radius: 3px;
  line-height: 40px;
  background: #ffffff;
  padding: 0 20px;
  font-size: 14px;
  color: #666;
}
.page a:hover,
.page a.cur {
  color: #fff;
  background: #3185d9;
  border-color: #3185d9;
}
.header {
  width: 100%;
  height: 94px;
  padding: 0 3.5%;
  position: relative;
  z-index: 3;
}
.header .logo {
  margin-top: 16px;
  float: left;
  line-height: 0;
  display: block;
}
.header .nav {
  float: right;
}
.header .nav ul li {
  line-height: 92px;
  padding: 0 25px;
  float: left;
  border-bottom: 2px solid #fff;
}
.header .nav ul li > a {
  display: block;
  color: #696c70;
  font-size: 16px;
}
.header .nav ul li .nav_box {
  display: none;
  padding-left: 48.55%;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #368bd0;
}
.header .nav ul li .nav_box a {
  display: block;
  float: left;
  line-height: 50px;
  color: #ffffff;
  font-size: 16px;
  padding: 0 25px;
}
.header .nav ul li .nav_box a:hover {
  background: #76aa16;
}
.header .nav ul li:hover {
  background: #e5f1ff;
  border-bottom-color: #215ca4;
}
.header .nav ul li:hover > a {
  color: #215ca4;
}
.header .nav ul li:hover .nav_box {
  display: block;
}
.header .nav ul li.cur {
  background: #e5f1ff;
  border-bottom-color: #215ca4;
}
.header .nav ul li.cur > a {
  color: #215ca4;
}
.header .navbtn {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 4%;
  transform: translateY(-50%);
  overflow: hidden;
  z-index: 999;
  line-height: 0;
  display: none;
}
.banner {
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .slick-dots {
  width: 10px;
  right: 5%;
  top: 50%;
  height: auto;
  bottom: auto;
}
.banner .slick-dots li {
  margin: 10px 0;
}
.banner .slick-dots li button {
  width: 15px;
  height: 15px;
  background: url(../images/ban_icon1.png) no-repeat center center / cover;
}
.banner .slick-dots li.slick-active button {
  background-image: url(../images/ban_icon2.png);
}
/**友链**/
.links {
  background: #181c21;
  padding: 20px 0;
}
.links span {
  float: left;
  color: #babfc6;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
}
.links .text {
  float: left;
  line-height: 24px;
}
.links .text a {
  display: block;
  float: left;
  color: #787e85;
  font-size: 14px;
  margin-right: 20px;
}
/**底部**/
.footer {
  background: #1d2126;
  padding: 40px 0;
}
.footer h3 {
  color: #bbbcbd;
  font-size: 18px;
  margin-bottom: 20px;
}
.footer h3 span {
  font-weight: normal;
  color: #4f5257;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 10px;
}
.footer .left {
  width: 29%;
  float: left;
}
.footer .left .foot_logo {
  line-height: 0;
}
.footer .left .t {
  margin-top: 30px;
  color: #6c7278;
  font-size: 14px;
  line-height: 24px;
}
.footer .left a {
  margin-top: 18px;
  display: block;
  width: 136px;
  line-height: 40px;
  background: #2d3239;
  border-radius: 50px;
  text-align: center;
  color: #6c7278;
  font-size: 16px;
}
.footer .left a i {
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url(../images/icon1.png) no-repeat center center / cover;
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.footer .min {
  width: 32%;
  float: left;
}
.footer .min .t {
  padding-top: 10px;
  color: #6c7278;
  font-size: 14px;
  line-height: 34px;
}
.footer .stop_div {
  width: 20%;
}
.footer .stop_div .t a {
  color: #6c7278;
  font-size: 14px;
  line-height: 34px;
  float: left;
  width: 33.33333333%;
}
.footer .right {
  float: right;
}
.footer .right .foot_ewm {
  margin-top: 10px;
  float: left;
  text-align: center;
  margin-left: 15px;
}
.footer .right .foot_ewm:first-child {
  margin-left: 0;
}
.footer .right .foot_ewm span {
  display: block;
  line-height: 0;
}
.footer .right .foot_ewm p {
  margin-top: 10px;
  color: #787e85;
  font-size: 12px;
}
.banquan {
  border-top: 1px solid #24282c;
  background: #1d2126;
  padding: 20px 0;
  text-align: center;
  color: #6c7278;
  font-family: arial;
  font-size: 14px;
}
/**首页内容**/
.home_box {
  position: relative;
  z-index: 2;
}
.home_box ol {
  margin-top: -205px;
  float: right;
}
.home_box ol li {
  float: left;
  background: #eef6ff url(../images/icon2.png) no-repeat right top;
  border-right: 1px solid #d7e6f7;
  width: 278px;
  min-height: 205px;
  padding: 38px 35px 10px;
}
.home_box ol li:last-child {
  border-right: none;
}
.home_box ol li .icon {
  height: 48px;
  line-height: 0;
}
.home_box ol li .icon em {
  display: none;
}
.home_box ol li .text {
  margin-top: 15px;
}
.home_box ol li .text h3 {
  color: #3d444e;
  font-size: 20px;
}
.home_box ol li .text p {
  margin-top: 5px;
  color: #3d444e;
  font-size: 14px;
  line-height: 20px;
  height: 40px;
  overflow: hidden;
}
.home_box ol li:hover {
  background: #368bd0 url(../images/icon2.png) no-repeat right top;
}
.home_box ol li:hover .icon span {
  display: none;
}
.home_box ol li:hover .icon em {
  display: block;
}
.home_box ol li:hover .text h3,
.home_box ol li:hover .text p {
  color: #fff;
}
.title h3 {
  color: #368bd0;
  font-size: 30px;
}
.title h3 span {
  font-weight: normal;
  color: #7c96c1;
  font-size: 24px;
  font-family: arial;
  display: inline-block;
  margin-left: 10px;
}
.home_tese {
  background: url(../images/home_bg.jpg) no-repeat center top / cover;
  padding-top: 70px;
  padding-bottom: 30px;
}
.home_tese .left {
  width: 22%;
  float: left;
  position: relative;
  z-index: 2;
  background: #368bd0;
}
.home_tese .left ol {
  padding: 30px 25px;
}
.home_tese .left ol li {
  float: left;
  width: 50%;
  margin: 5px 0;
  padding: 35px 0;
  text-align: center;
}
.home_tese .left ol li .icon {
  line-height: 0;
  height: 55px;
}
.home_tese .left ol li p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
}
.home_tese .left ol li:hover,
.home_tese .left ol li.cur {
  background: #307dbb;
}
.home_tese .right {
  float: right;
  width: 78%;
}
.home_tese .right .title {
  margin-left: 35px;
  margin-top: -5px;
}
.home_tese .right .box {
  margin-top: 25px;
  margin-left: -6%;
}
.home_tese .right .box .img_box_tese {
  float: left;
  width: 59.6%;
}
.home_tese .right .box .img_box_tese .slick-prev,
.home_tese .right .box .img_box_tese .slick-next {
  width: 24px;
  height: 46px;
  border: none;
  margin-top: -23px;
}
.home_tese .right .box .img_box_tese .slick-prev {
  background: url(../images/prev.png) no-repeat center center / cover;
  left: 12%;
}
.home_tese .right .box .img_box_tese .slick-next {
  background: url(../images/next.png) no-repeat center center / cover;
  right: 3%;
}
.home_tese .right .box .right_text {
  width: 39%;
  float: right;
}
.home_tese .right .box .right_text .text_box_t h3 {
  color: #368bd0;
  font-size: 22px;
  font-weight: normal;
}
.home_tese .right .box .right_text .text_box_t .t {
  margin-top: 10px;
  color: #898989;
  font-size: 14px;
  line-height: 24px;
}
.home_tese .right .box .right_text .text_box_t a {
  margin-top: 30px;
  color: #909196;
  font-size: 16px;
  border: 2px solid #909196;
  border-radius: 50px;
  display: inline-block;
  line-height: 44px;
  padding: 0 30px;
}
.home_tese .right .box .right_text .home_case {
  margin-top: 11%;
}
.home_tese .right .box .right_text .home_case ol li {
  float: left;
  width: 49%;
  line-height: 0;
  overflow: hidden;
  margin-top: 2%;
  margin-right: 2%;
}
.home_tese .right .box .right_text .home_case ol li:nth-child(2n) {
  margin-right: 0;
}
.home_tese .right .box .right_text .home_case .slick-dots {
  width: 4px;
  right: -15px;
  bottom: 0;
}
.home_tese .right .box .right_text .home_case .slick-dots li {
  margin-top: 5px;
}
.home_tese .right .box .right_text .home_case .slick-dots li button {
  width: 4px;
  height: 15px;
  background: #d3deed;
}
.home_tese .right .box .right_text .home_case .slick-dots li.slick-active button {
  background: #215ca4;
}
/*
.home_team {
  background: url(../images/home_bg2.jpg) no-repeat center bottom;
  padding-top: 40px;
  min-height: 475px;
}
.home_team .team_box {
  margin-top: -50px;
}
.home_team .team_box .team_left {
  float: left;
  width: 22%;
  margin-top: 10%;
}
.home_team .team_box .team_left .box {
  margin: 10px 0;
}
.home_team .team_box .team_left .box .icon {
  float: left;
  width: 77px;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}
.home_team .team_box .team_left .box .icon img {
  border-radius: 50%;
}
.home_team .team_box .team_left .box .text {
  float: right;
  width: 70%;
  padding-top: 5%;
}
.home_team .team_box .team_left .box .text h3 {
  color: #52575d;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_team .team_box .team_left .box .text p {
  margin-top: 5px;
  color: #7d7d7d;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_team .team_box .team_right_box {
  float: right;
  width: 72%;
  position: relative;
}
.home_team .team_box .team_right_box .num {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 58px;
  background: #d8e6f7;
  width: 44%;
  text-align: right;
  line-height: 58px;
  padding-right: 3%;
  color: #7288a2;
}
.home_team .team_box .team_right_box .num span {
  color: #7288a2;
  font-size: 16px;
  font-family: arial;
  position: relative;
  bottom: -1px;
  display: inline-block;
  margin: 0 3px;
}
.home_team .team_box .team_right_box .num .on {
  font-size: 20px;
  color: #368bd0;
  position: relative;
  bottom: -1px;
}
.home_team .team_box .team_right {
  width: 100%;
}
.home_team .team_box .team_right .box {
  position: relative;
}
.home_team .team_box .team_right .box .img_box_team {
  float: left;
  width: 55%;
}
.home_team .team_box .team_right .box .img_box_team .img {
  float: left;
  width: 65%;
  line-height: 0;
}
.home_team .team_box .team_right .box .img_box_team .t {
  float: right;
  width: 32%;
  padding-right: 15px;
  padding-top: 29%;
}
.home_team .team_box .team_right .box .img_box_team .t i {
  display: block;
  width: 50px;
  height: 1px;
  background: #b9c4d6;
  margin-bottom: 10px;
}
.home_team .team_box .team_right .box .img_box_team .t h3 {
  color: #368bd0;
  font-size: 20px;
  margin-bottom: 10px;
}
.home_team .team_box .team_right .box .img_box_team .t p {
  color: #9c9c9c;
  font-size: 16px;
  line-height: 26px;
}
.home_team .team_box .team_right .box .img_box_team .t .more {
  display: none;
  margin-top: 30px;
  width: 166px;
  line-height: 50px;
  text-align: center;
  background: #7dae12;
  border-radius: 3px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  float: right;
}
.home_team .team_box .team_right .box .text_box_team {
  float: right;
  background: #368bd0;
  width: 44%;
  height: 93%;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 55px 40px 0;
  color: #e9efff;
}
.home_team .team_box .team_right .box .text_box_team h3 {
  font-size: 18px;
}
.home_team .team_box .team_right .box .text_box_team .text {
  font-size: 14px;
  line-height: 26px;
}
.home_team .team_box .team_right .box .text_box_team .text p {
  margin-top: 20px;
}
.home_team .team_box .team_right .box .text_box_team .more {
  margin-top: 5px;
  width: 166px;
  display: block;
  line-height: 50px;
  text-align: center;
  background: #7dae12;
  border-radius: 50px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  float: right;
}
.home_team .team_box .team_right .slick-prev,
.home_team .team_box .team_right .slick-next {
  width: 59px;
  height: 58px;
  border: none;
  top: auto;
  bottom: 0;
  margin-top: 0;
}
.home_team .team_box .team_right .slick-prev {
  background: url(../images/prev2.jpg) no-repeat center center / cover;
  left: 56%;
}
.home_team .team_box .team_right .slick-next {
  background: url(../images/next2.jpg) no-repeat center center / cover;
  right: 32.3%;
}
*/
.home_fast {
  padding: 70px 0;
}
.home_fast ul li {
  width: 25%;
  float: left;
  text-align: center;
  padding: 24px 0 20px;
  border-right: 1px solid #ececec;
  border-radius: 10px;
}
.home_fast ul li:last-child {
  border-right: none;
}
.home_fast ul li a {
  display: block;
}
.home_fast ul li .icon {
  display: inline-block;
  line-height: 0;
}
.home_fast ul li .icon em {
  display: none;
}
.home_fast ul li .text {
  margin-left: 8px;
  display: inline-block;
  position: relative;
  top: -13px;
  text-align: left;
}
.home_fast ul li .text h3 {
  color: #4b4b4b;
  font-size: 20px;
}
.home_fast ul li .text p {
  margin-top: 5px;
  color: #a2a2a2;
  font-size: 14px;
  font-family: arial;
  text-transform: capitalize;
}
.home_fast ul li:hover {
  background: #368bd0;
}
.home_fast ul li:hover .icon span {
  display: none;
}
.home_fast ul li:hover .icon em {
  display: block;
}
.home_fast ul li:hover .text h3,
.home_fast ul li:hover .text p {
  color: #fff;
}
.home_news {
  background: #f1f5fb;
  padding: 70px 0;
}
.home_news .top .title {
  float: left;
}
.home_news .top .news_tab {
  line-height: 40px;
  float: right;
}
.home_news .top .news_tab a {
  display: block;
  float: left;
  color: #909090;
  font-size: 16px;
  border-bottom: 1px solid #f1f5fb;
  margin-left: 40px;
}
.home_news .top .news_tab a:first-child {
  margin-left: 0;
}
.home_news .top .news_tab a:hover,
.home_news .top .news_tab a.cur {
  color: #368bd0;
  border-bottom-color: #368bd0;
}
.home_news .home_news_box {
  margin-top: 30px;
}
.home_news .home_news_box .news_img_box {
  float: left;
  width: 52%;
  position: relative;
}
.home_news .home_news_box .news_img_box .img {
  display: block;
  line-height: 0;
}
.home_news .home_news_box .news_img_box .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../images/bg.png);
  padding: 25px 30px;
}
.home_news .home_news_box .news_img_box .text .top {
  color: #ffffff;
  line-height: 26px;
}
.home_news .home_news_box .news_img_box .text .top h3 {
  float: left;
  max-width: 70%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 18px;
}
.home_news .home_news_box .news_img_box .text .top span {
  font-size: 16px;
  float: right;
}
.home_news .home_news_box .news_img_box .text p {
  margin-top: 12px;
  color: #ffffff;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .home_news_box .news_text_box {
  float: right;
  width: 48%;
  margin-top: 20px;
}
.home_news .home_news_box .news_text_box .box {
  padding: 20px 35px;
  float: left;
  width: 100%;
  background: #f8f8f8;
}
.home_news .home_news_box .news_text_box .box .data {
  float: left;
  width: 21%;
  position: relative;
}
.home_news .home_news_box .news_text_box .box .data:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #c1c1c1;
}
.home_news .home_news_box .news_text_box .box .data p {
  float: left;
  color: #525252;
  font-size: 52px;
  font-family: arial;
}
.home_news .home_news_box .news_text_box .box .data .d {
  margin-left: 10px;
  float: left;
  text-align: center;
  padding-top: 4px;
}
.home_news .home_news_box .news_text_box .box .data .d span {
  color: #525252;
  font-size: 14px;
  display: block;
}
.home_news .home_news_box .news_text_box .box .data .d i {
  display: block;
  width: 5px;
  height: 5px;
  background: #525252;
  border-radius: 50px;
  margin: 4px auto;
}
.home_news .home_news_box .news_text_box .box .text {
  float: right;
  width: 75%;
  padding-top: 4px;
}
.home_news .home_news_box .news_text_box .box .text .bt {
  color: #4e4e4e;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .home_news_box .news_text_box .box .text p {
  margin-top: 10px;
  color: #757575;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .home_news_box .news_text_box .box:hover {
  background: #368bd0;
}
.home_news .home_news_box .news_text_box .box:hover .data:before,
.home_news .home_news_box .news_text_box .box:hover .data .d i {
  background: #fff;
}
.home_news .home_news_box .news_text_box .box:hover .data p,
.home_news .home_news_box .news_text_box .box:hover .data .d span {
  color: #fff;
}
.home_news .home_news_box .news_text_box .box:hover .text .bt,
.home_news .home_news_box .news_text_box .box:hover .text p {
  color: #fff;
}
.home_news .home_news_box .news_text_box .slick-prev,
.home_news .home_news_box .news_text_box .slick-next {
  width: 49.9%;
  height: 38px;
  border: none;
  top: auto;
  bottom: -38px;
  margin-top: 0;
}
.home_news .home_news_box .news_text_box .slick-prev {
  background: url(../images/prev3.jpg) no-repeat center center / cover;
  left: 0;
}
.home_news .home_news_box .news_text_box .slick-next {
  background: url(../images/next3.jpg) no-repeat center center / cover;
  right: 0;
}
.nybanner {
  position: relative;
}
.nybanner .img {
  line-height: 0;
}
.nybanner .box {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 12%;
  width: 100%;
  height: 100%;
}
.nybanner .box .text {
  float: left;
  width: 40%;
  color: #fefefe;
  font-size: 48px;
}
.nybanner .box .text p {
  font-family: arial;
}
.nybanner .box .text h3 {
  font-size: 50px;
}
.nybanner .box .text i {
  margin-top: 20px;
  display: block;
  width: 312px;
  height: 3px;
  background: url(../images/pic.png) no-repeat center center / cover;
}
.nybanner .box .text .t {
  font-size: 16px;
  line-height: 30px;
  margin-top: 20px;
}
.nybanner .box .join_right {
  width: 35.5%;
  float: right;
}
.nybanner .box .join_right ol li {
  float: left;
  width: 25%;
  padding-bottom: 20px;
  border-bottom: 2px solid #fff;
  text-align: center;
}
.nybanner .box .join_right ol li .icon {
  line-height: 0;
}
.nybanner .box .join_right ol li .icon img {
  height: 70px;
}
.nybanner .box .join_right ol li p {
  margin-top: 18px;
  color: #ffffff;
  font-size: 16px;
}
.nybanner .box .join_right .text {
  width: 100%;
  padding-top: 25px;
}
.nybanner .box .join_right .text h3 {
  color: #ffffff;
  font-size: 24px;
}
.nybanner .box .join_right .text p {
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
}
.nybanner .box .contact_text {
  float: right;
  width: 60%;
}
.nybanner .box .contact_text ol li {
  float: left;
  width: 50%;
  color: #fff;
	margin-bottom: 30px;
	min-height: 100px;
}
.nybanner .box .contact_text ol li .icon {
  line-height: 0;
	float: left;
	padding-right: 20px;
}
.nybanner .box .contact_text ol li .icon img {
  height: 67px;
}
.nybanner .box .contact_text ol li .text {
  width: auto;
	    max-width: 200px;
			max-height: 70px;
  /*border-top: 2px solid #ffffff;
  padding-top: 20px;
  margin-top: 20px;*/
}
.nybanner .box .contact_text ol li .text h3 {
  color: #fefeff;
  font-size: 20px;
}
.nybanner .box .contact_text ol li .text p {
  margin-top: 10px;
  color: #fefeff;
  font-size: 16px;
}
/**关于我们**/
.about {
  padding: 60px 0 70px;
  background: url(../images/about_bg.jpg) no-repeat center top / cover;
}
.about .left {
  float: left;
  width: 77%;
}
.about .left .text {
  position: relative;
}
.about .left .text .img01 {
  line-height: 0;
  display: block;
}
.about .left .text .con {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 30px 28px 10px;
}
.about .left .text .con h3 {
  font-size: 24px;
  color: #3185d9;
}
.about .left .text .con span {
  display: block;
  margin-top: 5px;
  color: #666666;
  font-size: 18px;
  font-family: arial;
}
.about .left .text .con p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  margin-top: 12px;
}
.about .left .text .con em {
  display: block;
  line-height: 0;
  width: 30px;
  margin-top: 24px;
}
.about .left .top .text {
  float: left;
  width: 35.25%;
}
.about .left .top .img02 {
  margin-left: 0.8%;
  float: left;
  width: 63.2%;
  line-height: 0;
}
.about .left .top02 {
  margin-top: 0.8%;
}
.about .left .top02 .text {
  float: left;
  width: 35.25%;
}
.about .left .top02 .text01 {
  width: 35.25%;
  background: #fff;
  padding-top: 27.8%;
  margin-right: 0.8%;
}
.about .left .top02 .text01 .con {
  padding-top: 50px;
}
.about .left .top02 .text02 {
  margin-left: 0.8%;
  width: 27%;
  background: #fff;
  padding-top: 27.8%;
}
.about .left .top02 .text02 .con {
  padding-top: 50px;
}
.about .img_right {
  float: right;
  line-height: 0;
  width: 23%;
}
/**医院概况**/
.about_qverview {
  padding: 60px 0 70px;
}
.about_qverview .img {
  float: left;
  width: 38.5%;
}
.about_qverview .img span {
  display: block;
  line-height: 0;
  position: relative;
}
.about_qverview .img span img {
  position: relative;
  z-index: 2;
}
.about_qverview .img span:before {
  z-index: 1;
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 98%;
  height: 98%;
  background: #368bd0;
}
.about_qverview .text {
  float: right;
  width: 57%;
}
.about_qverview .text .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.about_qverview .text .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.about_qverview .text .t {
  padding-top: 10px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.about_qverview .text .t p {
  text-indent: 2em;
  margin-top: 15px;
}
/**文化理念**/
.about_idea {
  padding: 60px 0 70px;
  background: #f7f7f7;
}
.about_idea .top .tit {
  float: left;
}
.about_idea .top .tit h3 {
  color: #368bd0;
  font-size: 28px;
}
.about_idea .top .tit p {
  font-size: 18px;
  color: #ccc;
  text-transform: uppercase;
  font-family: arial;
}
.about_idea .top .yw {
  float: right;
  font-size: 72px;
  font-family: arial;
  color: #ededee;
  text-transform: uppercase;
  line-height: 60px;
}
.about_idea ol {
  margin-top: 40px;
}
.about_idea ol li {
  min-height: 522px;
  border-right: 1px solid #e1e1e1;
  float: left;
  width: 33.33333333%;
  background: #fff;
  text-align: center;
  padding: 50px 50px 10px;
}
.about_idea ol li .icon {
  width: 220px;
  line-height: 0;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}
.about_idea ol li .text {
  margin-top: 35px;
}
.about_idea ol li .text h3 {
  color: #368bd0;
  font-size: 24px;
}
.about_idea ol li .text p {
  margin-top: 20px;
  color: #999999;
  font-size: 16px;
  line-height: 30px;
  height: 120px;
  overflow: hidden;
}
.about_idea ol li:hover {
  background: url(../images/idea_bg.jpg) no-repeat center center / cover;
  background-size: 100% 100%;
}

.about_idea ol li:nth-child(2):hover {
  background: url(../images/idea_bg_2.jpg) no-repeat center center / cover;
  background-size: 100% 100%;
}

.about_idea ol li:nth-child(3):hover {
  background: url(../images/idea_bg_3.jpg) no-repeat center center / cover;
  background-size: 100% 100%;
}

.about_idea ol li:hover .text h3,
.about_idea ol li:hover .text p {
  color: #fff;
}
/**医院环境**/
.about_setting {
  padding: 60px 0 70px;
  background: #f7f7f7;
}
.about_setting .tit {
  text-align: center;
}
.about_setting .tit p {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.about_setting .tit h3 {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.about_setting ol {
  margin-top: 40px;
}
.about_setting ol li {
  float: left;
  width: 100%;
  margin-bottom: 0.7%;
}
.about_setting ol li .text {
  width: 65%;
  float: left;
  position: relative;
}
.about_setting ol li .text span {
  display: block;
  line-height: 0;
}
.about_setting ol li .text .box {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url(../images/bg2.png);
  padding: 30px;
}
.about_setting ol li .text .box h3 {
  color: #76aa16;
  font-size: 20px;
  padding-left: 15px;
  position: relative;
}
.about_setting ol li .text .box h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 18px;
  background: #76aa16;
}
.about_setting ol li .text .box p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.about_setting ol li .text:last-child {
  float: right;
  width: 34.3%;
}
.about_setting ol li .text:hover .box {
  display: block;
}
.about_setting ol li:nth-child(2n) .text {
  width: 34.3%;
}
.about_setting ol li:nth-child(2n) .text:last-child {
  float: right;
  width: 65%;
}
/**院长致辞**/
.about_speech .text {
  float: left;
}
.about_speech .text .qm {
  margin-top: 30px;
}
.about_speech .text .qm span {
  display: block;
  float: right;
  line-height: 0;
}
.about_speech .img {
  float: right;
}
/**科室导航**/
.depart_tab ol li {
  float: left;
  width: 12.5%;
  text-align: center;
  padding: 30px 0;
  cursor: pointer;
}
.depart_tab ol li .icon {
  line-height: 0;
  width: 52px;
  margin: 0 auto;
}
.depart_tab ol li .icon em {
  display: none;
}
.depart_tab ol li p {
  margin-top: 10px;
  color: #3185d9;
  font-size: 16px;
}
.depart_tab ol li.cur {
  background: #3185d9;
}
.depart_tab ol li.cur .icon span {
  display: none;
}
.depart_tab ol li.cur .icon em {
  display: block;
}
.depart_tab ol li.cur p {
  color: #fff;
}
.depart_con {
  background: url(../images/bg3.jpg) repeat-x left top;
  padding: 60px 0;
}
.depart_con ul li {
  float: left;
  width: 100%;
}
.depart_con ul li .text {
  float: left;
  width: 45%;
}
.depart_con ul li .text .tit .icon {
  float: left;
  width: 52px;
  line-height: 0;
}
.depart_con ul li .text .tit .d {
  margin-top: -3px;
  float: left;
  margin-left: 15px;
}
.depart_con ul li .text .tit .d h3 {
  color: #3185d9;
  font-size: 28px;
}
.depart_con ul li .text .tit .d p {
  color: #cfcfcf;
  font-size: 16px;
  font-family: arial;
}
.depart_con ul li .text .con {
  padding-top: 10px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.depart_con ul li .text .con p {
  text-indent: 2em;
  margin-top: 20px;
}
.depart_con ul li .img {
  float: right;
  line-height: 0;
  width: 50%;
}
/**专家团队**/
.expert_team {
  background: #f7f7f7;
  padding: 60px 0 70px;
}
.expert_team .left {
  float: left;
  width: 36%;
  min-height: 637px;
  position: relative;
}
.expert_team .left .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.expert_team .left .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.expert_team .left .text {
  padding-top: 10px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.expert_team .left .text p {
  margin-top: 15px;
}
.expert_team .left .img_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #e3e4e5;
  font-size: 70px;
  font-family: arial;
  text-transform: uppercase;
}
.expert_team .right {
  float: right;
  width: 60%;
}
.expert_team .right .expert_tab {
  float: left;
  width: 32%;
}
.expert_team .right .expert_tab li {
  float: left;
  width: 100%;
  line-height: 0;
  position: relative;
  cursor: pointer;
  margin-top: 20px;
}
.expert_team .right .expert_tab li:first-child {
  margin-top: 0;
}
.expert_team .right .expert_tab li:before {
  display: none;
  content: "";
  position: absolute;
  width: 96%;
  height: 96%;
  border: 5px solid #3185d9;
}
.expert_team .right .expert_tab li:after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  margin-top: -12.5px;
  width: 13px;
  height: 25px;
  background: url(../images/jt.png) no-repeat center center / cover;
}
.expert_team .right .expert_tab li.cur:before,
.expert_team .right .expert_tab li.cur:after {
  display: block;
}
.expert_team .right .text_box {
  float: right;
  width: 62%;
  background: #fff;
  min-height: 637px;
  position: relative;
}
.expert_team .right .text_box ul li {
  float: left;
  width: 100%;
  padding: 45px 45px 0;
}
.expert_team .right .text_box ul li h3 {
  color: #3185d9;
  font-size: 28px;
}
.expert_team .right .text_box ul li h3 i {
  display: inline-block;
  width: 22px;
  line-height: 0;
  position: relative;
  top: 4px;
  margin-left: 22px;
}
.expert_team .right .text_box ul li .bt {
  margin-top: 10px;
  color: #666666;
  font-size: 20px;
}
.expert_team .right .text_box ul li .bt span {
  display: block;
  float: left;
  margin-right: 30px;
}
.expert_team .right .text_box ul li .t {
  margin-bottom: 30px;
  color: #999999;
  font-size: 16px;
  line-height: 30px;
}
.expert_team .right .text_box ul li .t p {
  margin-top: 20px;
}
.expert_team .right .text_box ul li .more {
  display: inline-block;
  color: #215ca4;
  font-size: 14px;
}
.expert_team .right .text_box ul li .yuyue {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 45px;
  border-top: 1px solid #e5e5e5;
}
.expert_team .right .text_box ul li .yuyue a {
  display: block;
  width: 142px;
  line-height: 42px;
  background: #3185d9;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  float: right;
}
.expert_sched {
  padding: 60px 0 70px;
}
.expert_sched .tit {
  text-align: center;
}
.expert_sched .tit .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.expert_sched .tit .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.expert_sched .text_box {
  margin-top: 40px;
}
/**新闻资讯**/
.news_box {
  background: #f7f7f7;
  padding-bottom: 60px;
}
.news_box .news_menu {
  float: left;
  width: 23%;
  background: #fff;
}
.news_box .news_menu h3 {
  padding: 40px 30px 25px;
  color: #368bd0;
  font-size: 28px;
  border-bottom: 1px solid #e5e5e5;
}
.news_box .news_menu h3 i {
  display: inline-block;
  width: 38px;
  height: 28px;
  background: url(../images/news_bt.png) no-repeat center center / cover;
  position: relative;
  top: 4px;
  margin-right: 12px;
}
.news_box .news_menu ul {
  padding: 0 30px;
}
.news_box .news_menu ul li {
  float: left;
  width: 100%;
  border-bottom: 1px dotted #e5e5e5;
  font-size: 18px;
  line-height: 60px;
  position: relative;
}
.news_box .news_menu ul li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 8px;
  height: 14px;
  background: url(../images/news_icon1.png) no-repeat center center / cover;
}
.news_box .news_menu ul li a {
  display: block;
  color: #999999;
}
.news_box .news_menu ul li:last-child {
  border-bottom: none;
}
.news_box .news_menu ul li:hover:before,
.news_box .news_menu ul li.cur:before {
  background-image: url(../images/news_icon2.png);
}
.news_box .news_menu ul li:hover a,
.news_box .news_menu ul li.cur a {
  color: #666666;
  font-weight: bold;
}
.news_box .news_list {
  float: right;
  width: 73%;
  background: #fff;
  padding: 42px 30px;
}
.news_box .news_list .tit {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
}
.news_box .news_list .tit .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.news_box .news_list .tit .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.news_box .news_list .recommend {
  margin-top: 30px;
}
.news_box .news_list .recommend .img {
  float: left;
  width: 37%;
  line-height: 0;
}
.news_box .news_list .recommend .text {
  float: right;
  width: 60%;
}
.news_box .news_list .recommend .text h3 {
  color: #333333;
  font-size: 24px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_box .news_list .recommend .text .t {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
}
.news_box .news_list .recommend .text .bottom {
  margin-top: 20px;
  font-size: 15px;
}
.news_box .news_list .recommend .text .bottom a {
  color: #666666;
  display: block;
  float: left;
}
.news_box .news_list .recommend .text .bottom span {
  color: #cccccc;
  float: left;
  margin-left: 30px;
}
.news_box .news_list .ul_list {
  border-top: 1px dotted #e3e3e3;
  margin-bottom: 40px;
}
.news_box .news_list .ul_list li {
  float: left;
  width: 100%;
  border-bottom: 1px dotted #e3e3e3;
  padding: 30px 0;
}
.news_box .news_list .ul_list li .img {
  width: 26%;
}
.news_box .news_list .ul_list li .text {
  width: 71%;
}
/**新闻详细**/
.newsshow_box {
  background: #f7f7f7;
  padding-bottom: 60px;
}
.newsshow_box .box {
  background: #fff;
  padding: 50px 45px;
}
.newsshow_box .box h1 {
  text-align: center;
  color: #333333;
  font-size: 28px;
  font-weight: normal;
}
.newsshow_box .box .data {
  margin-top: 20px;
  text-align: center;
  color: #cccccc;
  font-size: 14px;
}
.newsshow_box .box .data span {
  display: inline-block;
  margin: 0 10px;
}
.newsshow_box .box .text_tj {
  margin-top: 30px;
  background: #f4f9fd;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
  padding: 30px 40px;
}
.newsshow_box .box .detail {
  padding-top: 40px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.newsshow_box .fenye_btn {
  margin-top: 40px;
}
.newsshow_box .fenye_btn a {
  color: #666666;
  font-size: 14px;
  display: inline-block;
  max-width: 45%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/**特色服务**/
.service_box {
  padding: 60px 0 25px;
  position: relative;
  z-index: 1;
}
.service_box .text {
  float: right;
  width: 53.4%;
}
.service_box .text .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.service_box .text .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.service_box .text .t {
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.service_box .text .t p {
  margin-top: 20px;
  text-indent: 2em;
}
.service_box .text ol li {
  margin-top: 30px;
  float: left;
  width: 100%;
}
.service_box .text ol li .icon {
  width: 80px;
  line-height: 0;
  float: left;
}
.service_box .text ol li .d {
  margin-top: 10px;
  float: right;
  width: 87%;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.service_box .img {
  float: left;
  width: 39%;
}
.service_box .img span {
  display: block;
  line-height: 0;
  position: relative;
}
.service_box .img span:before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 80%;
  height: 100%;
  background: #ebebeb;
  z-index: -1;
}
.service_box2 {
  background: url(../images/service_bg.jpg) no-repeat center center / cover;
  padding: 60px 0;
}
.service_box2 .service_text_box {
  margin-left: 13.2%;
}
.service_box2 .service_text_box .text {
  float: left;
  width: 42%;
}
.service_box2 .service_text_box .text .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.service_box2 .service_text_box .text .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.service_box2 .service_text_box .text .t {
  color: #666666;
  font-size: 16px;
  line-height: 30px;
  max-height: 300px;
      padding-right: 10px;
      overflow: auto;
  
}
.service_box2 .service_text_box .text .t p {
  margin-top: 20px;
  text-indent: 2em;
}
.service_box2 .service_text_box .img {
  width: 55%;
  float: right;
  line-height: 0;
}
.service_box2 .service_img_box {
  width: 50%;
  margin-top: -5.1%;
  margin-left: -10px;
}
.service_box2 .service_img_box span {
  display: block;
  margin-left: 10px;
  line-height: 0;
  cursor: pointer;
  position: relative;
}
.service_box2 .service_img_box span:before {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 92%;
  height: 86%;
  border: 5px solid #7dae12;
}
.service_box2 .service_img_box .slick-current span:before {
  display: block;
}
.service_box3 {
  background: url(../images/service_bg2.jpg) repeat-x left bottom;
  padding: 60px 0;
}
.service_box3 .container {
  position: relative;
}
.service_box3 .tit {
  position: absolute;
  left: 50%;
  top: 15px;
}
.service_box3 .tit .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.service_box3 .tit .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.service_box3 .service_case_text .img {
  float: left;
  width: 46.5%;
  line-height: 0;
}
.service_box3 .service_case_text .text {
  margin-top: 120px;
  float: right;
  width: 50%;
}
.service_box3 .service_case_text .text h3 {
  color: #333333;
  font-size: 25px;
  font-weight: normal;
}
.service_box3 .service_case_text .text .t {
  color: #666666;
  font-size: 16px;
  line-height: 30px;
	max-height: 400px;
    overflow: auto;
}
.service_box3 .service_case_text .text .t p {
  margin-top: 20px;
  text-indent: 2em;
}
.service_box3 .service_case_img {
  width: 50%;
  float: right;
  margin-top: -7.8%;
  margin-left: -10px;
}
.service_box3 .service_case_img span {
  display: block;
  margin-left: 10px;
  line-height: 0;
  cursor: pointer;
  position: relative;
}
.service_box3 .service_case_img span:before {
  display: none;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 92%;
  height: 91%;
  border: 5px solid #7dae12;
}
.service_box3 .service_case_img .slick-current span:before {
  display: block;
}
/**就医指南**/
.medical_box {
  background: url(../images/medical_bg.jpg) no-repeat center center / cover;
  padding: 60px 0 70px;
}
.medical_box dl .tit .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.medical_box dl .tit .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.medical_box dl dt,
.medical_box dl dd {
  width: 45%;
}
.medical_box dl dt ol li {
  margin-top: 55px;
  float: left;
  width: 47%;
}
.medical_box dl dt ol li:nth-child(2n) {
  float: right;
}
.medical_box dl dt ol li .icon {
  width: 28%;
  line-height: 0;
  float: left;
}
.medical_box dl dt ol li .text {
  float: right;
  width: 67%;
  padding-top: 5px;
}
.medical_box dl dt ol li .text .bt {
  color: #666666;
  font-size: 16px;
  font-weight: bold;
}
.medical_box dl dt ol li .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.medical_box dl dd .box {
  padding-top: 30px;
}
.medical_box dl dd .box .text {
  margin-top: 26px;
}
.medical_box dl dd .box .text .top {
  line-height: 35px;
}
.medical_box dl dd .box .text .top .icon {
  float: left;
  width: 35px;
  line-height: 0;
}
.medical_box dl dd .box .text .top span {
  margin-left: 15px;
  float: left;
  color: #3185d9;
  font-size: 18px;
  font-weight: bold;
}
.medical_box dl dd .box .text .top p {
  color: #3185d9;
  font-size: 30px;
  float: left;
  font-family: arial;
  margin-left: 15px;
}
.medical_box dl dd .box .text ol li {
  float: left;
  width: 32%;
  margin-top: 16px;
  margin-right: 2%;
}
.medical_box dl dd .box .text ol li:nth-child(3n) {
  margin-right: 0;
}
.medical_box dl dd .box .text ol li input {
  width: 100%;
  line-height: 42px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  float: left;
  padding: 0 10px;
  font-size: 14px;
}
.medical_box dl dd .box .text ol li .keshi_box {
  width: 100%;
  position: relative;
}
.medical_box dl dd .box .text ol li .keshi_box span {
  border-radius: 3px;
  display: block;
  width: 100%;
  line-height: 42px;
  border: 1px solid #e6e6e6;
  font-size: 14px;
  padding: 0 10px;
  position: relative;
}
.medical_box dl dd .box .text ol li .keshi_box span:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
  width: 11px;
  height: 6px;
  background: url(../images/medical_jt.png) no-repeat center center / cover;
}
.medical_box dl dd .box .text ol li .keshi_box .keshi_text {
  display: none;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 100%;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  width: 100%;
  background: #fff;
  padding: 10px;
}
.medical_box dl dd .box .text ol li .keshi_box .keshi_text p {
  width: 50%;
  float: left;
  padding: 5px;
  cursor: pointer;
}
.medical_box dl dd .box .text ol li .btn {
  background: #7dae12;
  border-color: #7dae12;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.medical_box2 {
  position: relative;
}
.medical_box2 .img {
  line-height: 0;
}
.medical_box2 .text {
  position: absolute;
  left: 13.3%;
  top: 15%;
  background: url(../images/bg4.png);
  width: 618px;
  color: #fff;
  padding: 35px;
}
.medical_box2 .text h3 {
  color: #FFFFFF;
  font-size: 24px;
}
.medical_box2 .text h3 span {
  font-size: 18px;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
  font-family: arial;
}
.medical_box2 .text ol li {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.medical_box2 .text ol li .bt {
  line-height: 24px;
}
.medical_box2 .text ol li .bt i {
  display: block;
  float: left;
  width: 24px;
  line-height: 0;
  margin-right: 15px;
}
.medical_box2 .text ol li .bt span {
  float: left;
  font-size: 18px;
}
.medical_box2 .text .gongjiao {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #579be0;
}
.medical_box2 .text .gongjiao .bt {
  line-height: 28px;
}
.medical_box2 .text .gongjiao .bt i {
  display: block;
  float: left;
  width: 24px;
  line-height: 0;
  margin-right: 15px;
}
.medical_box2 .text .gongjiao .bt span {
  float: left;
  font-weight: bold;
  font-size: 20px;
}
.medical_box2 .text .gongjiao .t {
  margin-top: 20px;
  font-size: 14px;
  line-height: 30px;
}
.medical_box3 {
  padding: 60px 0 80px;
}
.medical_box3 .tit {
  text-align: center;
}
.medical_box3 .tit .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.medical_box3 .tit .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.medical_box3 ol {
  margin-top: 40px;
}
.medical_box3 ol li {
  float: left;
  width: 24%;
  text-align: center;
  margin-right: 1.33333%;
  position: relative;
}
.medical_box3 ol li:nth-child(4n) {
  margin-right: 0;
}
.medical_box3 ol li .img {
  line-height: 0;
}
.medical_box3 ol li span a{
  position: absolute;
  left: 50%;
  bottom: -25px;
  background: #3185d9;
  line-height: 50px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  width: 80%;
  margin-left: -40%;
}
/**人力资源**/
.join_box {
  background: #f7f7f7;
  padding: 60px 0 70px;
}
.join_box .title .tit {
  float: left;
}
.join_box .title .tit .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.join_box .title .tit .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.join_box .title .right {
  float: right;
  margin-top: 15px;
}
.join_box .title .right ol li {
  margin-left: 20px;
  float: left;
  min-width: 128px;
  text-align: center;
  padding: 0 10px;
  color: #525e6a;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  border: 2px solid #d4d4d4;
  line-height: 40px;
  border-radius: 50px;
}
.join_box .title .right ol li.cur {
  background: #2a65bd;
  border-color: #2a65bd;
  color: #fff;
}
.join_box .title .right ol li.cur a{
	color: #fff;
}
.join_box .join_icon {
  margin-top: 30px;
}
.join_box .join_icon ol li {
  float: left;
  width: 24.25%;
  line-height: 0;
  margin-right: 1%;
}
.join_box .join_icon ol li:nth-child(4n) {
  margin-right: 0;
}
.join_box .join_icon ol li img {
  width: 100%;
}
.join_box .join_tab {
  margin-top: 30px;
  background: #fff;
  padding: 28px 55px;
}
.join_box .join_tab ol li {
  float: left;
  width: 28%;
  margin-right: 1%;
}
.join_box .join_tab ol li .box {
  width: 100%;
  background: #fcfcfc;
  position: relative;
}
.join_box .join_tab ol li .box span {
  display: block;
  border: 1px solid #f0f0f0;
  height: 52px;
  line-height: 50px;
  color: #979ca4;
  font-size: 16px;
  padding: 0 20px;
  border-radius: 3px;
  position: relative;
}
.join_box .join_tab ol li .box span:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -6px;
  width: 21px;
  height: 12px;
  background: url(../images/join_jt.png) no-repeat center center / cover;
}
.join_box .join_tab ol li .box .text {
  z-index: 2;
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border: 1px solid #f0f0f0;
  background: #fcfcfc;
  border-radius: 3px;
  padding: 10px 20px;
}
.join_box .join_tab ol li .box .text p {
  font-size: 14px;
  color: #666;
  line-height: 28px;
  float: left;
  width: 50%;
}
.join_box .join_tab ol li .t {
  width: 74%;
  border: 1px solid #f0f0f0;
  height: 52px;
  line-height: 50px;
  color: #979ca4;
  font-size: 16px;
  padding: 0 20px;
  border-radius: 3px;
  float: left;
  background: #fcfcfc;
}
.join_box .join_tab ol li .d {
  display: block;
  float: right;
  height: 52px;
  line-height: 52px;
  background: #3185d9;
  color: #fff;
  font-size: 18px;
  border-radius: 3px;
  width: 23%;
  text-align: center;
}
.join_box .join_tab ol li .d i {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../images/btn.png) no-repeat center center / cover;
  position: relative;
  top: 5px;
  margin-right: 8px;
}
.join_box .join_tab ol .last {
  width: 42%;
  margin-right: 0;
}
.join_box .join_list {
  margin-top: 30px;
}
.join_box .join_list table {
  background: #fff;
}
.join_box .join_list table tr th {
  background: #bebebe;
  color: #fff;
  font-size: 20px;
  padding: 22px 0;
}
.join_box .join_list table tr td {
  font-size: 16px;
  color: #666666;
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #ebebeb;
}
.join_box .join_list .btn_more {
  margin-top: 42px;
  text-align: center;
}
.join_box .join_list .btn_more a {
  display: inline-block;
  background: #3185d9;
  font-size: 24px;
  color: #fff;
  line-height: 56px;
  width: 240px;
  border-radius: 50px;
}
.join_group {
  background: url(../images/group_bg.jpg) repeat-x center bottom;
  padding: 60px 0 70px;
}
.join_group .left_group {
  float: left;
  width: 28%;
}
.join_group .left_group .tit .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.join_group .left_group .tit .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.join_group .left_group .t {
  margin-top: 80px;
  color: #666666;
  line-height: 30px;
  font-size: 16px;
  height: 270px;
}
.join_group .left_group a {
  display: block;
  width: 172px;
  line-height: 40px;
  background: #3185d9;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-size: 18px;
}
.join_group .right_group {
  float: right;
  width: 70%;
}
.join_group .right_group .img {
  float: left;
  width: 58%;
  line-height: 0;
}
.join_group .right_group .text {
  padding-top: 50px;
  float: right;
  width: 39%;
  min-height: 468px;
  position: relative;
}
.join_group .right_group .text h3 {
  color: #000000;
  font-size: 24px;
  font-weight: normal;
}
.join_group .right_group .text .t {
  margin-top: 40px;
  color: #666666;
  font-size: 16px;
  line-height: 30px;
}
.join_group .right_group .text .bottom {
  border-top: 1px solid #dedede;
  font-size: 14px;
  padding: 25px 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}
.join_group .right_group .text .bottom span {
  float: left;
  color: #cccccc;
}
.join_group .right_group .text .bottom a {
  float: right;
  color: #336699;
}
.join_group .right_group .slick-prev,
.join_group .right_group .slick-next {
  width: 74px;
  height: 74px;
  border: none;
  margin-top: 0;
  top: auto;
  bottom: 0;
}
.join_group .right_group .slick-prev {
  background: url(../images/prev4.jpg) no-repeat center center / cover;
  left: 43%;
}
.join_group .right_group .slick-next {
  background: url(../images/next4.jpg) no-repeat center center / cover;
  right: 42%;
}
/**联系我们**/
.contact_box {
  background: url(../images/contact_bg.jpg) repeat-x left bottom;
  padding: 60px 0 80px;
}
.contact_box .left {
  float: left;
  width: 50%;
}
.contact_box .left .tit .yw {
  display: block;
  color: #eaebed;
  font-size: 36px;
  font-family: arial;
  text-transform: uppercase;
}
.contact_box .left .tit .bt {
  margin-top: -15px;
  color: #368bd0;
  font-size: 28px;
}
.contact_box .left ol {
  padding-top: 50px;
}
.contact_box .left ol li {
  margin-top: 10px;
  float: left;
  width: 100%;
}
.contact_box .left ol li input,
.contact_box .left ol li textarea {
  float: left;
  width: 100%;
  background: #ffffff;
  line-height: 50px;
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  padding: 0 10px;
  font-family: "微软雅黑";
  font-size: 16px;
}
.contact_box .left ol li textarea {
  height: 158px;
  padding: 5px 10px;
}
.contact_box .left ol li .btn {
  margin-top: 10px;
  background: #3185d9;
  width: 192px;
  border-color: #3185d9;
  line-height: 44px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.contact_box .img {
  float: right;
  width: 47%;
}
.contact_box .img span {
  display: block;
  position: relative;
  line-height: 0;
}
.contact_box .img span:before {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -7%;
  width: 90%;
  height: 90%;
  border: 15px solid #e1e8ef;
}
.contact_box .img span img {
  position: relative;
  z-index: 2;
}
/**移动端**/
.mobile_contact {
  display: none;
  padding: 10px 15px 30px;
}
.mobile_contact ol li {
  padding: 15px 0;
  float: left;
  width: 100%;
  border-bottom: #ccc solid 1px;
}
.mobile_contact ol li:last-child {
  border-bottom: none;
}
.mobile_contact ol li h3 {
  font-size: 18px;
  color: #2d3b49;
}
.mobile_contact ol li h3 em {
  font-style: normal;
  font-size: 12px;
  color: #666;
  font-weight: normal;
  display: inline-block;
  margin-left: 10px;
}
.mobile_contact ol li p {
  font-size: 14px;
  margin-top: 5px;
}
/**2018-9-21**/
.joinshow_box {
  background: #f0f6ff;
  padding: 75px 0;
}
.joinshow_box .left {
  width: 70%;
}
.joinshow_box .left .join_show {
  background: #fff;
  padding: 40px;
}
.joinshow_box .left .join_show h1 {
  color: #2a2e34;
  font-size: 30px;
}
.joinshow_box .left .join_show .data {
  margin-top: 16px;
  line-height: 16px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
}
.joinshow_box .left .join_show .data span {
  float: left;
  display: block;
  color: #b4b4b4;
  font-size: 13px;
}
.joinshow_box .left .join_show .data .fx {
  margin-left: 30px;
  float: left;
}
.joinshow_box .left .join_show .data .fx a {
  display: block;
  float: left;
  line-height: 16px;
  margin-right: 10px;
}
.joinshow_box .left .join_show .detail_con {
  color: #2a2e34;
  font-size: 16px;
  line-height: 30px;
  padding-top: 30px;
}
.joinshow_box .left .join_show .detail_con h3 {
  color: #333;
  font-size: 18px;
  padding-left: 18px;
  position: relative;
}
.joinshow_box .left .join_show .detail_con h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 17px;
  background: url(../images/joinshow.jpg) no-repeat center center / cover;
}
.joinshow_box .right {
  width: 26.5%;
}
.joinshow_box .right .join_right_tp ol li {
  float: left;
  line-height: 0;
  margin-bottom: 2%;
  width: 49%;
}
.joinshow_box .right .join_right_tp ol li:nth-child(2n) {
  float: right;
}
.joinshow_box .right .join_right_text {
  background: #fff;
  margin-top: 20px;
  padding: 25px 25px;
}
.joinshow_box .right .join_right_text h3 {
  color: #333;
  font-size: 18px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 16px;
  padding-left: 18px;
  position: relative;
}
.joinshow_box .right .join_right_text h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 17px;
  background: url(../images/joinshow.jpg) no-repeat center center / cover;
}
.joinshow_box .right .join_right_text ol li {
  float: left;
  width: 100%;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  line-height: 48px;
  padding-left: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  background: url(../images/joinshow_icon01.png) no-repeat left center;
}
.joinshow_box .right .join_right_text ol li a {
  color: #666666;
}

/**/
.expert_team .right .expert_tab {
  float: left;
  width: 35%;
  margin-top: -20px;
}
.expert_team .right .expert_tab .img {
  float: left;
  width: 91%;
  line-height: 0;
  position: relative;
  cursor: pointer;
  margin-top: 20px;
}
.expert_team .right .expert_tab .img:before {
  display: none;
  content: "";
  position: absolute;
  width: 96%;
  height: 96%;
  border: 5px solid #3185d9;
}
.expert_team .right .expert_tab .img:after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  margin-top: -12.5px;
  width: 13px;
  height: 25px;
  background: url(../images/jt.png) no-repeat center center / cover;
}
.expert_team .right .expert_tab .slick-current .img:before,
.expert_team .right .expert_tab .slick-current .img:after {
  display: block;
}
.expert_team .right .text_box {
  float: right;
  width: 62%;
}
.expert_team .right .text_box .box {
  position: relative;
  width: 100%;
  background: #fff;
  min-height: 637px;
  padding: 45px 45px 0;
}
.expert_team .right .text_box .box h3 {
  color: #3185d9;
  font-size: 28px;
}
.expert_team .right .text_box .box h3 i {
  display: inline-block;
  width: 22px;
  line-height: 0;
  position: relative;
  top: 4px;
  margin-left: 22px;
}
.expert_team .right .text_box .box .bt {
  margin-top: 10px;
  color: #666666;
  font-size: 20px;
}
.expert_team .right .text_box .box .bt span {
  display: block;
  float: left;
  margin-right: 30px;
}
.expert_team .right .text_box .box .t {
  margin-bottom: 30px;
  color: #999999;
  font-size: 16px;
  line-height: 30px;
}
.expert_team .right .text_box .box .t p {
  margin-top: 20px;
}
.expert_team .right .text_box .box .more {
  display: inline-block;
  color: #215ca4;
  font-size: 14px;
}
.expert_team .right .text_box .box .yuyue {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 45px;
  border-top: 1px solid #e5e5e5;
}
.expert_team .right .text_box .box .yuyue a {
  display: block;
  width: 142px;
  line-height: 42px;
  background: #3185d9;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  float: right;
}

@media only screen and (max-width:1600px ) {
	.expert_team .right .text_box .box{
		min-height: 627px;
	}
}
@media only screen and (max-width:1440px ) {
	.expert_team .right .text_box .box .t{
		font-size: 14px;
		line-height: 24px;
	}
	.expert_team .right .text_box .box{
		min-height: 567px;
	}
}
@media only screen and (max-width:1366px ) {
	.expert_team .right .text_box .box{
		min-height: 540px;
	}
}
@media only screen and (max-width:1280px ) {
	.expert_team .right .text_box .box{
		min-height: 510px;
	}
}
@media only screen and (max-width:1024px ) {
	.expert_team .right .expert_tab .img{
		width: 100%;
		padding: 0 10px;
		margin-top: 0;
	}
	.expert_team .right .expert_tab .img img{
		width: 100%;
	}
	.expert_team .right .expert_tab  .img:before{
		width: 91%;
	} 
	.expert_team .right .expert_tab .slick-current .img:after{
		display: none;
	}
	.expert_team .right .text_box{
		width: 100%;
		margin-top: 25px;
		min-height: 0;
	}
	.expert_team .right .text_box .box{
		padding: 20px 15px;
		min-height: 0;
	}
	.expert_team .right .text_box .box .yuyue{
		position: relative;
		margin-top: 20px;
	}
	.expert_team .right .text_box .box .yuyue a{
		float: none;
		margin: 0 auto;
	}
}
@media only screen and (max-width:768px ) {
	.expert_team .right .expert_tab  .img:before{
		width: 90%;
		height: 94%;
	} 
	.expert_team .right .text_box .box h3 {
		font-size: 18px;
	}
	.expert_team .right .text_box .box .bt{
		font-size: 16px;
	}
}
@media only screen and (max-width:640px ) {
	.expert_team .right .expert_tab  .img:before{
		width: 86%;
		height: 93%;
	} 
}
@media only screen and (max-width:480px ) {
	.expert_team .right .expert_tab  .img:before{
		width: 84%;
		height: 96%;
		border: 2px solid #3185d9;
	} 
}
@media only screen and (max-width:414px ) {
	.expert_team .right .expert_tab .img{
		padding-left: 0;
		padding-right: 5px;
	}
	.expert_team .right .expert_tab  .img:before{
		width: 93%;
		height: 95%;
		border: 2px solid #3185d9;
	} 
}

/*-----*/
.banner_6 {
    width: 100%;
}

.banner_6 .box_6 {
    position: relative;
}

.banner_6 .box_6 .text_6 {
    position: absolute;
    left: 0;
    top: 0;
    width: 43.54%;
}

.banner_6 .box_6 .text_6 .t {
    margin-top: 28.5%;
    width: 100%;
    margin-left: 28.5%;
    line-height: 0;
}


.banner_6 .box_6 .text_6 .t img{
    width: auto;
    min-width: auto;
}


.bottom_animate{
        transition: all 2s;
        opacity: 0;
        -webkit-transform: translateY(40%);
        -moz-transform:  translateY(40%);
        -ms-transform:  translateY(40%);
        -o-transform: translateY(40%) ;
        transform:  translateY(40%);
    }
    .banner_animate{
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
/*首页专家团队*/
.home_team {
  margin-top: 40px;
}
.home_team .home_team_text {
  background: url(../images/home_bg2.jpg) no-repeat center bottom;
  min-height: 396px;
  margin-top: 20px;
}
.home_team .team_box .text_wb {
  float: left;
  width: 32.5%;
  color: #666666;
  line-height: 36px;
  font-size: 16px;
  margin-top: 40px;
}
.home_team .team_box .text_team {
  float: right;
  width: 62%;
}
.home_team .team_box .team_left {
  margin-top: 18px;
  float: left;
  width: 44%;
}
.home_team .team_box .team_left .box {
  margin: 20px;
}
.home_team .team_box .team_left .box .icon {
  float: left;
  width: 77px;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}
.home_team .team_box .team_left .box .icon img {
  border-radius: 50%;
}
.home_team .team_box .team_left .box .text {
  float: right;
  width: 70%;
  padding-top: 5%;
}
.home_team .team_box .team_left .box .text h3 {
  color: #52575d;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_team .team_box .team_left .box .text p {
  margin-top: 5px;
  color: #7d7d7d;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_team .team_box .team_left .slick-current {
  background: #368bd0;
  border-radius: 10px;
}
.home_team .team_box .team_left .slick-current .box .text h3,
.home_team .team_box .team_left .slick-current .box .text p {
  color: #fff;
}
.home_team .team_box .team_right_box {
  float: right;
  width: 50%;
  margin-top: -62px;
  position: relative;
}
.home_team .team_box .team_right_box .num {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 58px;
  background: #d8e6f7;
  width: 100%;
  text-align: right;
  line-height: 58px;
  padding-right: 3%;
  color: #7288a2;
}
.home_team .team_box .team_right_box .num span {
  color: #7288a2;
  font-size: 16px;
  font-family: arial;
  position: relative;
  bottom: -1px;
  display: inline-block;
  margin: 0 3px;
}
.home_team .team_box .team_right_box .num .on {
  font-size: 20px;
  color: #368bd0;
  position: relative;
  bottom: -1px;
}
.home_team .team_box .team_right {
  width: 100%;
}
.home_team .team_box .team_right .box {
  position: relative;
}
.home_team .team_box .team_right .box .text_box_team {
  float: right;
  background: #368bd0;
  min-height: 458px;
  right: 0;
  bottom: 0;
  padding: 30px 40px 0;
  color: #fff;
}
.home_team .team_box .team_right .box .text_box_team h3 {
  font-size: 18px;
}
.home_team .team_box .team_right .box .text_box_team span {
  margin-top: 5px;
  display: block;
  font-size: 14px;
}
.home_team .team_box .team_right .box .text_box_team .text {
  font-size: 14px;
  line-height: 26px;
     /* max-height: 240px;
      overflow: auto;
      padding-right: 5px; */
}
.home_team .team_box .team_right .box .text_box_team .text p {
  margin-top: 20px;
}
.home_team .team_box .team_right .box .text_box_team .more {
  margin-top: 30px;
  width: 166px;
  display: block;
  line-height: 50px;
  text-align: center;
  background: #7dae12;
  border-radius: 50px;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  float: right;
}
.home_team .team_box .team_right .slick-prev,
.home_team .team_box .team_right .slick-next {
  width: 59px;
  height: 58px;
  border: none;
  top: auto;
  bottom: 0;
  margin-top: 0;
}
.home_team .team_box .team_right .slick-prev {
  background: url(../images/prev2.jpg) no-repeat center center / cover;
  left: 0;
}
.home_team .team_box .team_right .slick-next {
  background: url(../images/next2.jpg) no-repeat center center / cover;
  right: 73%;
}


.header .nav ul li .tese{
	    padding-left: 66.55%;
}
.header .nav ul li .xinwen{
padding-left: 59%;
}

.header .nav ul li .keshi{
  padding-left: 48%;
}

