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

}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-prev,
.slick-next {
  z-index: 20;
  position: absolute;
  display: block;
  height: 60px;
  width: 30px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -30px;
  padding: 0;
  border: none;
  outline: none;
  border: 1px solid red;
}
.slick-prev {
  left: 30px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: 30px;
}
.slick-next {
  right: 30px;
}
[dir="rtl"] .slick-next {
  left: 30px;
  right: auto;
}
.slick-dots {
  position: absolute;
  bottom: 20px;
  height: auto;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  line-height: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  height: 10px;
  width: 10px;
  padding: 0;
  margin: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: #cccccc;
  border-radius: 0px;
}
.slick-dots li.slick-active button {
  background: #333333;
}
/*
	jQuery.mmenu CSS
*/
/*
	jQuery.mmenu oncanvas CSS
*/
.mm-hidden {
  display: none !important;
}
.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}
.mm-menu,
.mm-menu > .mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.mm-menu {
  box-sizing: border-box;
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}
.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-panel.mm-opened {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
.mm-panel.mm-highest {
  z-index: 1;
}
.mm-menu > .mm-panel {
  background: inherit;
  border-color: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 20px;
}
.mm-menu > .mm-panel.mm-hasnavbar {
  padding-top: 40px;
}
.mm-menu > .mm-panel:before,
.mm-menu > .mm-panel:after {
  content: '';
  display: block;
  height: 20px;
}
.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}
.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}
.mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after {
  border-color: transparent;
}
.mm-vertical li.mm-opened > .mm-panel,
li.mm-vertical.mm-opened > .mm-panel {
  display: block;
}
.mm-vertical .mm-listview > li > .mm-next,
.mm-listview > li.mm-vertical > .mm-next {
  height: 40px;
  bottom: auto;
}
.mm-vertical .mm-listview > li > .mm-next:after,
.mm-listview > li.mm-vertical > .mm-next:after {
  top: 16px;
  bottom: auto;
}
.mm-vertical .mm-listview > li.mm-opened > .mm-next:after,
.mm-listview > li.mm-vertical.mm-opened > .mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.mm-navbar > * {
  display: block;
  padding: 10px 0;
}
.mm-navbar a,
.mm-navbar a:hover {
  text-decoration: none;
}
.mm-navbar .mm-title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.mm-navbar .mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
}
.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0;
}
.mm-navbar .mm-btn:last-child {
  text-align: right;
  padding-right: 20px;
  right: 0;
}
.mm-panel .mm-navbar {
  display: none;
}
.mm-panel.mm-hasnavbar .mm-navbar {
  display: block;
}
.mm-listview,
.mm-listview > li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}
.mm-listview {
  font: inherit;
  font-size: 14px;
  line-height: 20px;
}
.mm-listview a,
.mm-listview a:hover {
  text-decoration: none;
}
.mm-listview > li {
  position: relative;
}
.mm-listview > li,
.mm-listview > li:after,
.mm-listview > li .mm-next,
.mm-listview > li .mm-next:before {
  border-color: inherit;
}
.mm-listview > li > a,
.mm-listview > li > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0;
}
.mm-listview > li > a.mm-arrow,
.mm-listview > li > span.mm-arrow {
  padding-right: 50px;
}
.mm-listview > li:not(.mm-divider):after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.mm-listview > li:not(.mm-divider):after {
  left: 20px;
}
.mm-listview .mm-next {
  background: rgba(3, 2, 1, 0);
  width: 50px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.mm-listview .mm-next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.mm-listview .mm-next + a,
.mm-listview .mm-next + span {
  margin-right: 50px;
}
.mm-listview .mm-next.mm-fullsubopen {
  width: 100%;
}
.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none;
}
.mm-listview .mm-next.mm-fullsubopen + a,
.mm-listview .mm-next.mm-fullsubopen + span {
  padding-right: 50px;
  margin-right: 0;
}
.mm-menu > .mm-panel > .mm-listview {
  margin: 20px -20px;
}
.mm-menu > .mm-panel > .mm-listview:first-child,
.mm-menu > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px;
}
.mm-listview .mm-inset {
  list-style: inside disc;
  padding: 0 10px 15px 40px;
  margin: 0;
}
.mm-listview .mm-inset > li {
  padding: 5px 0;
}
.mm-listview .mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}
.mm-listview .mm-spacer {
  padding-top: 40px;
}
.mm-listview .mm-spacer > .mm-next {
  top: 40px;
}
.mm-listview .mm-spacer.mm-divider {
  padding-top: 25px;
}
.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
  content: '';
  border: 2px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px;
}
.mm-next:after,
.mm-arrow:after {
  border-top: none;
  border-left: none;
  right: 20px;
}
.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-navbar > *,
.mm-menu .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-navbar .mm-btn:before,
.mm-menu .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu .mm-listview > li .mm-next:after,
.mm-menu .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.5);
}
.mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu .mm-divider {
  background: rgba(0, 0, 0, 0.05);
}
/*
	jQuery.mmenu offcanvas addon CSS
*/
.mm-page {
  box-sizing: border-box;
  position: relative;
}
.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-opened {
  overflow: hidden;
  position: relative;
}
html.mm-opened body {
  overflow: hidden;
}
html.mm-background .mm-page {
  background: inherit;
}
#mm-blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}
.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}
.mm-menu.mm-current {
  display: block;
}
.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
}
html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(440px, 0);
    -moz-transform: translate(440px, 0);
    -ms-transform: translate(440px, 0);
    -o-transform: translate(440px, 0);
    transform: translate(440px, 0);
  }
}
/*
	jQuery.mmenu autoHeight addon CSS
*/
.mm-menu.mm-top.mm-autoheight,
.mm-menu.mm-bottom.mm-autoheight {
  max-height: 80%;
}
.mm-menu.mm-top.mm-autoheight.mm-fullscreen,
.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
  max-height: 100%;
}
.mm-menu.mm-measureheight > .mm-panel {
  bottom: auto !important;
  height: auto !important;
}
/*
	jQuery.mmenu counters addon CSS
*/
em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%;
}
em.mm-counter + a.mm-next {
  width: 90px;
}
em.mm-counter + a.mm-next + a,
em.mm-counter + a.mm-next + span {
  margin-right: 90px;
}
em.mm-counter + a.mm-fullsubopen {
  padding-left: 0;
}
.mm-vertical > .mm-counter {
  top: 12px;
  margin-top: 0;
}
.mm-vertical.mm-spacer > .mm-counter {
  margin-top: 40px;
}
.mm-nosubresults > .mm-counter {
  display: none;
}
.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu dividers addon CSS
*/
.mm-divider > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}
.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.mm-collapsed:not(.mm-uncollapsed) {
  display: none;
}
.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-fixeddivider:after {
  content: none !important;
  display: none !important;
}
.mm-hasdividers .mm-fixeddivider {
  display: block;
}
.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05);
}
/*
	jQuery.mmenu dragOpen addon CSS
*/
html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/*
	jQuery.mmenu iconpanels addon CSS
*/
.mm-iconpanel .mm-panel {
  -webkit-transition-property: -webkit-transform, left, right;
  -moz-transition-property: -moz-transform, left, right;
  -ms-transition-property: -ms-transform, left, right;
  -o-transition-property: -o-transform, left, right;
  transition-property: transform, left, right;
}
.mm-iconpanel .mm-panel.mm-opened {
  border-left: 1px solid;
  border-color: inherit;
}
.mm-iconpanel .mm-panel.mm-subopened {
  overflow-y: hidden;
  left: -40px;
  right: 40px;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-iconpanel .mm-panel.mm-iconpanel-0 {
  left: 0px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-1 {
  left: 40px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-2 {
  left: 80px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-3 {
  left: 120px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-4 {
  left: 160px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-5 {
  left: 200px;
}
.mm-iconpanel .mm-panel.mm-iconpanel-6 {
  left: 240px;
}
.mm-subblocker {
  background: inherit;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.mm-subopened .mm-subblocker {
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -100000px;
  left: 0;
  z-index: 3;
}
/*
	jQuery.mmenu navbars addon CSS
*/
.mm-menu > .mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-navbar-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom: none;
  top: auto;
  bottom: 0;
}
.mm-navbar-top ~ .mm-navbar-top {
  border-bottom: none;
}
.mm-navbar-bottom ~ .mm-navbar-bottom {
  border-top: none;
}
.mm-navbar.mm-hasbtns {
  padding: 0 40px;
}
.mm-close:after {
  content: 'x';
}
.mm-navbar[class*="mm-navbar-content-"] > * {
  box-sizing: border-box;
  display: block;
  float: left;
}
.mm-navbar > .mm-breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px;
}
.mm-navbar > .mm-breadcrumbs > * {
  display: inline-block;
  padding: 10px 3px;
}
.mm-navbar > .mm-breadcrumbs > a {
  text-decoration: underline;
}
.mm-navbar.mm-hasbtns .mm-breadcrumbs {
  margin-left: -40px;
}
.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs {
  margin-left: 0;
  padding-left: 0;
}
.mm-navbar-top-1 {
  top: 0px;
}
.mm-hasnavbar-top-1 .mm-panel {
  top: 40px;
}
.mm-hasnavbar-top-1 .mm-indexer {
  top: 50px;
}
.mm-hasnavbar-top-1 .mm-fixeddivider {
  top: 40px;
}
.mm-navbar-top-2 {
  top: 40px;
}
.mm-hasnavbar-top-2 .mm-panel {
  top: 80px;
}
.mm-hasnavbar-top-2 .mm-indexer {
  top: 90px;
}
.mm-hasnavbar-top-2 .mm-fixeddivider {
  top: 80px;
}
.mm-navbar-top-3 {
  top: 80px;
}
.mm-hasnavbar-top-3 .mm-panel {
  top: 120px;
}
.mm-hasnavbar-top-3 .mm-indexer {
  top: 130px;
}
.mm-hasnavbar-top-3 .mm-fixeddivider {
  top: 120px;
}
.mm-navbar-top-4 {
  top: 120px;
}
.mm-hasnavbar-top-4 .mm-panel {
  top: 160px;
}
.mm-hasnavbar-top-4 .mm-indexer {
  top: 170px;
}
.mm-hasnavbar-top-4 .mm-fixeddivider {
  top: 160px;
}
.mm-navbar-bottom-1 {
  bottom: 0px;
}
.mm-hasnavbar-bottom-1 .mm-panel {
  bottom: 40px;
}
.mm-hasnavbar-bottom-1 .mm-indexer {
  bottom: 50px;
}
.mm-navbar-bottom-2 {
  bottom: 40px;
}
.mm-hasnavbar-bottom-2 .mm-panel {
  bottom: 80px;
}
.mm-hasnavbar-bottom-2 .mm-indexer {
  bottom: 90px;
}
.mm-navbar-bottom-3 {
  bottom: 80px;
}
.mm-hasnavbar-bottom-3 .mm-panel {
  bottom: 120px;
}
.mm-hasnavbar-bottom-3 .mm-indexer {
  bottom: 130px;
}
.mm-navbar-bottom-4 {
  bottom: 120px;
}
.mm-hasnavbar-bottom-4 .mm-panel {
  bottom: 160px;
}
.mm-hasnavbar-bottom-4 .mm-indexer {
  bottom: 170px;
}
.mm-navbar-size-2 {
  height: 80px;
}
.mm-navbar-size-3 {
  height: 120px;
}
.mm-navbar-size-4 {
  height: 160px;
}
.mm-navbar-content-2 > * {
  width: 50%;
}
.mm-navbar-content-3 > * {
  width: 33.33%;
}
.mm-navbar-content-4 > * {
  width: 25%;
}
.mm-navbar-content-5 > * {
  width: 20%;
}
.mm-navbar-content-6 > * {
  width: 16.67%;
}
/*
	jQuery.mmenu searchfield addon CSS
*/
.mm-search,
.mm-search input {
  box-sizing: border-box;
}
.mm-search {
  height: 40px;
  padding: 7px 10px 0 10px;
}
.mm-search input {
  border: none;
  border-radius: 26px;
  font: inherit;
  font-size: 14px;
  line-height: 26px;
  outline: none;
  display: block;
  width: 100%;
  height: 26px;
  margin: 0;
  padding: 0 10px;
}
.mm-search input::-ms-clear {
  display: none;
}
.mm-panel > .mm-search {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mm-panel.mm-hassearch {
  padding-top: 40px;
}
.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 80px;
}
.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px;
}
.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0;
}
.mm-noresults .mm-noresultsmsg {
  display: block;
}
.mm-noresults .mm-indexer {
  display: none !important;
}
li.mm-nosubresults > a.mm-next {
  display: none;
}
li.mm-nosubresults > a.mm-next + a,
li.mm-nosubresults > a.mm-next + span {
  padding-right: 10px;
}
.mm-menu .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.7);
}
.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu sectionIndexer addon CSS
*/
.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -ms-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.85%;
}
.mm-indexer ~ .mm-panel.mm-hasindexer {
  padding-right: 40px;
}
.mm-hasindexer .mm-indexer {
  right: 0;
}
.mm-hasindexer .mm-fixeddivider {
  right: 20px;
}
.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu toggles addon CSS
*/
input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}
label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
}
label.mm-toggle:before,
label.mm-check:before {
  content: '';
  display: block;
}
label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px;
}
label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}
input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right;
}
label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px;
}
label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
input.mm-check:checked ~ label.mm-check:before {
  opacity: 1;
}
li.mm-vertical label.mm-toggle,
li.mm-vertical label.mm-check {
  bottom: auto;
  margin-top: 0;
}
li.mm-vertical label.mm-toggle {
  top: 5px;
}
li.mm-vertical label.mm-check {
  top: 5px;
}
label.mm-toggle,
label.mm-check {
  right: 20px;
}
label.mm-toggle + a,
label.mm-toggle + span {
  padding-right: 80px;
}
label.mm-check + a,
label.mm-check + span {
  padding-right: 60px;
}
a.mm-next + label.mm-toggle,
a.mm-next + label.mm-check {
  right: 60px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span,
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  margin-right: 50px;
}
a.mm-next + label.mm-toggle + a,
a.mm-next + label.mm-toggle + span {
  padding-right: 70px;
}
a.mm-next + label.mm-check + a,
a.mm-next + label.mm-check + span {
  padding-right: 50px;
}
em.mm-counter + a.mm-next + label.mm-toggle,
em.mm-counter + a.mm-next + label.mm-check {
  right: 100px;
}
em.mm-counter + a.mm-next + label.mm-toggle + a,
em.mm-counter + a.mm-next + label.mm-toggle + span,
em.mm-counter + a.mm-next + label.mm-check + a,
em.mm-counter + a.mm-next + label.mm-check + span {
  margin-right: 90px;
}
.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu label.mm-toggle:before {
  background: #f3f3f3;
}
.mm-menu input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7);
}
/*
	jQuery.mmenu borderstyle extension CSS
*/
.mm-menu.mm-border-none .mm-listview > li:after,
.mm-listview.mm-border-none > li:after {
  content: none;
}
.mm-menu.mm-border-full .mm-listview > li:after,
.mm-listview.mm-border-full > li:after {
  left: 0 !important;
}
/*
	jQuery.mmenu effects extension CSS
*/
html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}
html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-effect-zoom-menu {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu .mm-menu.mm-effect-slide-menu {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}
html.mm-effect-slide-menu.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}
html.mm-effect-slide-menu.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}
html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-effect-slide-menu {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
html.mm-effect-fade-menu .mm-menu.mm-effect-fade-menu {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -moz-transition: opacity 0.4s ease;
  -ms-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
html.mm-effect-fade-menu.mm-opening .mm-menu.mm-effect-fade-menu {
  opacity: 1;
}
.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}
.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}
.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(1) {
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(2) {
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(3) {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(4) {
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(5) {
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(6) {
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(7) {
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(8) {
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}
html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview > li:nth-child(9) {
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}
html.mm-effect-slide-listitems.mm-opening .mm-menu.mm-effect-slide-listitems .mm-panel.mm-opened .mm-listview > li {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
/*
	jQuery.mmenu fullscreen extension CSS
*/
.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}
html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}
html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}
.mm-menu.mm-fullscreen.mm-top,
.mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}
html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}
/*
	jQuery.mmenu multiline extension CSS
*/
.mm-menu.mm-multiline .mm-listview > li > a,
.mm-menu.mm-multiline .mm-listview > li > span,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > a,
.mm-listview.mm-multiline > li .mm-listview > li.mm-multiline > span {
  text-overflow: clip;
  white-space: normal;
}
/*
	jQuery.mmenu pageshadow extension CSS
*/
.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
}
.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%;
}
.mm-menu.mm-pageshadow.mm-next:after,
.mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none;
}
.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
/*
	jQuery.mmenu position extension CSS
*/
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.mm-menu.mm-right {
  left: auto;
  right: 0;
}
.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}
html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}
@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}
@media all and (min-width: 550px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-440px, 0);
    -moz-transform: translate(-440px, 0);
    -ms-transform: translate(-440px, 0);
    -o-transform: translate(-440px, 0);
    transform: translate(-440px, 0);
  }
}
/*
	jQuery.mmenu z-position extension CSS
*/
html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}
.mm-menu.mm-front {
  z-index: 1;
}
.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.mm-menu.mm-top,
.mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}
/*
	jQuery.mmenu themes extension CSS
*/
.mm-menu.mm-theme-dark {
  background: #333333;
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-navbar > *,
.mm-menu.mm-theme-dark .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview {
  border-color: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-dark .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-dark .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark .mm-divider {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05);
}
.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}
.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333333;
}
.mm-menu.mm-theme-dark input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-white {
  background: white;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-navbar > *,
.mm-menu.mm-theme-white .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview {
  border-color: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-white .mm-listview > li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview > li.mm-selected > span {
  background: rgba(0, 0, 0, 0.05);
}
.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-white .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white .mm-divider {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03);
}
.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}
.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}
.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}
.mm-menu.mm-theme-white label.mm-toggle:before {
  background: white;
}
.mm-menu.mm-theme-white input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
.mm-menu.mm-theme-black {
  background: black;
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-navbar > *,
.mm-menu.mm-theme-black .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-listview > li .mm-next:after,
.mm-menu.mm-theme-black .mm-listview > li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview > li.mm-selected > span {
  background: rgba(255, 255, 255, 0.3);
}
.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview > li.mm-opened > .mm-panel,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > a.mm-next,
.mm-menu.mm-theme-black .mm-listview > li.mm-opened.mm-vertical > .mm-panel {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black .mm-divider {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none;
}
.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}
.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}
.mm-menu.mm-theme-black label.mm-toggle:before {
  background: black;
}
.mm-menu.mm-theme-black input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963;
}
/*
	jQuery.mmenu tileview extension CSS
*/
.mm-menu.mm-tileview .mm-listview:after,
.mm-menu .mm-tileview.mm-listview:after {
  content: '';
  display: block;
  clear: both;
}
.mm-menu.mm-tileview .mm-listview > li,
.mm-menu .mm-tileview.mm-listview > li {
  width: 50%;
  height: 0;
  padding: 50% 0 0 0;
  float: left;
  position: relative;
}
.mm-menu.mm-tileview .mm-listview > li:after,
.mm-menu .mm-tileview.mm-listview > li:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-xs,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-s,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-s {
  width: 25%;
  padding-top: 25%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-l,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-l {
  width: 75%;
  padding-top: 75%;
}
.mm-menu.mm-tileview .mm-listview > li.mm-tile-xl,
.mm-menu .mm-tileview.mm-listview > li.mm-tile-xl {
  width: 100%;
  padding-top: 100%;
}
.mm-menu.mm-tileview .mm-listview > li > a,
.mm-menu.mm-tileview .mm-listview > li > span,
.mm-menu .mm-tileview.mm-listview > li > a,
.mm-menu .mm-tileview.mm-listview > li > span {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0;
}
.mm-menu.mm-tileview .mm-listview > li > .mm-next,
.mm-menu .mm-tileview.mm-listview > li > .mm-next {
  width: auto;
}
.mm-menu.mm-tileview .mm-listview > li > .mm-next:before,
.mm-menu.mm-tileview .mm-listview > li > .mm-next:after,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:before,
.mm-menu .mm-tileview.mm-listview > li > .mm-next:after {
  content: none;
  display: none;
}
.mm-menu.mm-tileview .mm-panel {
  padding-left: 0;
  padding-right: 0;
}
.mm-menu.mm-tileview .mm-panel:after {
  content: none;
  display: none;
}
.mm-menu.mm-tileview .mm-listview {
  margin: 0;
}
@font-face {
  font-family: "DINEngschriftStd";
  src: url("../fonts/DINEngschriftStd.svg");
  src: url("../fonts/DINEngschriftStd.eot");
  src: url("../fonts/DINEngschriftStd.ttf");
  src: url("../fonts/DINEngschriftStd.woff");
}
.page {
  text-align: center;
}
.page a {
  display: inline-block;
  border: 1px solid #e4e4e4;
  line-height: 40px;
  color: #666666;
  font-size: 14px;
  margin: 0 1px;
  transition: all .5s;
  padding: 0 16px;
}
.page a:hover,
.page a.cur {
  background: #364799;
  border-color: #364799;
  color: #fff;
}
body {
  /*max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  */
}



.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 1230px) {
  .container {
    width: 1230px;
  }
}
img {
  max-width: 100%;
}
.header_box {
  background: #fff;
  width: 100%;
}
.header_box .top {
  border-bottom: 1px solid #f6f6f6;
  line-height: 30px;
}
.header_box .top span {
  color: #cccccc;
  font-size: 14px;
}
.header_box .top .fx {
  float: right;
  background: url(../images/top3.jpg) no-repeat right center;
  padding-right: 13px;
  margin-right: 15px;
}
.header_box .top .fx span {
  float: left;
}
.header_box .top .fx a {
  display: block;
  float: left;
  height: 13px;
  line-height: 13px;
  margin: 10px 5px 0;
}
.header_box .top .contact_btn {
  float: right;
  color: #cccccc;
}
.header_box .head {
  padding: 20px 0;
}
.header_box .head .f-l .logo {
  display: block;
  float: left;
  line-height: 0;
}
.header_box .head .f-l .t {
  float: left;
  line-height: 0;
}
.header_box .head .text .icon {
  float: left;
  line-height: 0;
  display: block;
}
.header_box .head .text .t {
  float: left;
  margin-left: 12px;
}
.header_box .head .text .t p {
  margin-top: -2px;
  color: #666666;
  font-size: 16px;
}
.header_box .head .text .t span {
  color: #999999;
  font-size: 14px;
}
.header_box .head .tel {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid #e9e9e9;
}
.header_box .head .tel .icon {
  float: left;
  line-height: 0;
  display: block;
}
.header_box .head .tel .t {
  float: left;
  margin-left: 12px;
}
.header_box .head .tel .t p {
  margin-top: -2px;
  color: #666666;
  font-size: 16px;
}
.header_box .head .tel .t span {
  color: #999999;
  font-size: 14px;
}
.header_box .nav {
  background: #364799;
}
.header_box .nav ul li {
  float: left;
 /* width: 16.66666667%; */
  width: 12.5%;
  line-height: 56px;
  border-bottom: 2px solid transparent;
  text-align: center;
  font-size: 16px;
  transform-origin: center left 0;
  transition: all 0.4s ease-in-out 0s;
  position: relative;
}
.header_box .nav ul li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background: url(../images/nav1.jpg) no-repeat center center;
}
.header_box .nav ul li a {
  display: block;
  width: 100%;
  color: #d6ddfe;
  transition: all 0.4s ease-in-out 0s;
}
.header_box .nav ul li:last-child:before {
  display: none;
}
.header_box .nav ul li:hover,
.header_box .nav ul li.cur {
  background: #26327a;
  border-bottom-color: #de1910;
}
.header_box .nav ul li:hover:before,
.header_box .nav ul li.cur:before {
  display: none;
}
.header_box .nav ul li:hover a,
.header_box .nav ul li.cur a {
  color: #ffffff;
}
.header_box .navbtn {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 4%;
  margin-top: -2%;
  overflow: hidden;
  z-index: 999;
  line-height: 0;
  display: none;
}
.footer {
  background: #364799;
  padding: 25px 0 15px;
}
.footer .img {
  width: 140px;
  display: block;
  line-height: 0;
  float: left;
  margin-top: -66px;
	z-index: 999;
 position: relative;
}
.footer .t {
  margin-top: -5px;
  margin-left: 15px;
  float: left;
  display: inline-block;
}
.footer .t p {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}
.footer .t span {
  font-size: 28px;
  color: #4b58a0;
  line-height: 26px;
}
.footer .tel_input {
  margin-left: 90px;
  float: left;
  display: inline-block;
}
.footer .tel_input .text {
  float: left;
  width: 241px;
  height: 42px;
  background: #fff;
  border: none;
  padding: 0 10px;
}
.footer .tel_input .btn {
  float: left;
  margin-left: 6px;
  background: #de1910;
  width: 108px;
  height: 42px;
  line-height: 42px;
  color: #ffffff;
  font-size: 16px;
  border: none;
}
.footer .tel {
  margin-top: -8px;
  float: left;
  display: inline-block;
  margin-left: 40px;
}
.footer .tel p {
  color: #ffffff;
  font-size: 18px;
}
.footer .tel span {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
}
.footer .return-top {
  float: right;
  width: 51px;
  line-height: 0;
  cursor: pointer;
}
.banner {
  position: relative;
  width: 100%;
  z-index: 1;
 /* text-align: center;*/
}
.banner img {
  width: 100%;
/*  display: inline-block;*/
}
.banner .slick-dots {
  bottom: 120px;
}
.banner .slick-dots li button {
  width: 14px;
  height: 14px;
  background: url(../images/banner_icon.png) no-repeat center center;
  border-radius: 50%;
}
.banner .slick-dots li.slick-active button {
  background: #de1910;
}
.home_box {
  z-index: 2;
  position: relative;
  margin-top: -100px;
}
.home_box ol {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.home_box ol li {
  float: left;
  width: 25%;
  height: 208px;
  position: relative;
  background: #fff;
  text-align: center;
}
.home_box ol li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 162px;
  background: #e9e9e9;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.home_box ol li .text {
  padding: 26px 10% 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 208px;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
}
.home_box ol li .text .img {
  width: 28%;
  margin: 0 auto;
}
.home_box ol li .text .img span {
  display: block;
}
.home_box ol li .text .img em {
  display: none;
}
.home_box ol li .text h3,.home_box ol li .text .t {
  margin-top: 12px;
  color: #333333;
  font-size: 18px;
  padding-bottom: 12px;
  position: relative;
  font-weight: bold;
}
.home_box ol li .text h3:before,.home_box ol li .text .t:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -15px;
  width: 30px;
  height: 1px;
  background: #c2c7e0;
}
.home_box ol li .text p {
  margin-top: 10px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.home_box ol li:hover .text {
  padding-top: 40px;
  top: -13px;
  width: 100%;
  height: 236px;
  background: url(../images/home_bg2.jpg) no-repeat center center;
  background-size: 100% 100%;
}
.home_box ol li:hover .text .img span {
  display: none;
}
.home_box ol li:hover .text .img em {
  display: block;
}
.home_box ol li:hover .text h3,
.home_box ol li:hover .text .t,
.home_box ol li:hover .text p {
  color: #fff;
}
.home_box ol li:hover .text h3:before,.home_box ol li:hover .text .t:before {
  background: #fff;
}
.title {
  text-align: center;
}
.title h3,.title .t {
  color: #333333;
  font-size: 26px;
  font-weight: bold;
}
.title h3 span,.title .t span {
  color: #e01812;
  font-size: 34px;
}
.title p {
  margin-top: 8px;
  color: #888888;
  font-size: 14px;
  line-height: 24px;
}
.more_btn {
  text-align: center;
  margin-top: 40px;
}
.more_btn a {
  display: inline-block;
  width: 170px;
  line-height: 42px;
  background: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: #666666;
  transition: all 0.5s ease-in-out 0s;
  font-size: 15px;
}
.more_btn a:hover {
  background: #364799;
  color: #fff;
  border-color: ##364799;
}
.home_about {
  background: url(../images/home_bg.jpg) no-repeat center top;
  min-height: 712px;
  margin-top: -122px;
  padding-top: 140px;
}
.home_about .title {
  position: relative;
  padding-top: 90px;
}
.home_about .title .tit {
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  font-size: 146px;
  font-weight: bold;
  color: #fefeff;
  width: 100%;
}
.home_about .title h3,
.home_about .title .t,
.home_about .title p {
  position: relative;
  z-index: 2;
}
.home_about .box {
  text-align: center;
  color: #666666;
  font-size: 14px;
  margin-top: 22px;
}
.home_about .box p {
  line-height: 24px;
  padding: 0 160px;
}
.home_about .box .video_btn {
  margin-top: 38px;
}
.home_about .box .video_btn a {
  display: block;
  line-height: 0;
  width: 72px;
  margin: 0 auto;
}
.home_xiaoyuan {
  background: url(../images/home_bg3.png) no-repeat center bottom;
  min-height: 333px;
  margin-top: -98px;
}
.home_xiaoyuan ol {
  padding-top: 98px;
}
.home_xiaoyuan ol li {
  float: left;
  width: 25%;
  text-align: center;
  padding-top: 60px;
  position: relative;
}
.home_xiaoyuan ol li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 30px;
  width: 2px;
  height: 180px;
  background: url(../images/home_icon1.jpg) repeat-y center top;
}
.home_xiaoyuan ol li .t {
  display: inline-block;
  color: #ffffff;
  font-size: 67px;
  font-family: "DINEngschriftStd";
  position: relative;
  line-height: 50px;
}
.home_xiaoyuan ol li .t span {
  font-size: 18px;
  font-family: "微软雅黑";
  position: absolute;
  right: -30px;
  top: 0;
  line-height: 18px;
}
.home_xiaoyuan ol li h3,.home_xiaoyuan ol li .tt {
  margin-top: 15px;
  color: #ffffff;
  font-size: 21px;
  font-weight: normal;
}
.home_xiaoyuan ol li p {
  margin-top: 10px;
  color: #d4dafb;
  font-size: 14px;
}
.home_xiaoyuan ol li:last-child:before {
  display: none;
}
.tables_tit {
  margin-top: 32px;
  text-align: center;
}
.tables_tit a {
  display: inline-block;
  background: #fff;
  line-height: 40px;
  min-width: 120px;
  color: #666666;
  font-size: 14px;
  border: 1px solid #e5e5e5;
}
.tables_tit a:hover,
.tables_tit a.cur {
  background: #364799;
  color: #fff;
  border-color: #364799;
}
.home_ziyuan {
  background: url(../images/home_bg4.jpg) no-repeat center top;
  padding: 60px 0 50px;
}
.home_ziyuan .tables_con {
  margin-top: 12px;
}
.home_ziyuan .tables_con ul {
  margin-bottom: 50px;
}
.home_ziyuan .tables_con ul li {
  margin-top: 25px;
  float: left;
  width: 31.5%;
  background: #ffffff;
  border-bottom: 3px solid #e5e5e5;
  margin-right: 2.75%;
  transition: all .5s;
}
.home_ziyuan .tables_con ul li .img {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.home_ziyuan .tables_con ul li .img img {
  transition: all 1.2s;
}
.home_ziyuan .tables_con ul li .text {
  padding: 16px 20px;
}
.home_ziyuan .tables_con ul li .text h3,.home_ziyuan .tables_con ul li .text .t {
  color: #2d3c89;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: all .5s;
}
.home_ziyuan .tables_con ul li .text p {
  margin-top: 6px;
  color: #999999;
  font-size: 15px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
  transition: all .5s;
}
.home_ziyuan .tables_con ul li:nth-child(3n) {
  margin-right: 0;
}
.home_ziyuan .tables_con ul li:hover {
  background: #de1910;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-bottom-color: #de1910;
}
.home_ziyuan .tables_con ul li:hover .text h3,
.home_ziyuan .tables_con ul li:hover .text .t,
.home_ziyuan .tables_con ul li:hover .text p {
  color: #fff;
}
.home_ziyuan .tables_con ul li:hover .img img {
  transform: scale(1.2);
}
.home_team {
  padding: 60px 0 0;
  background: url(../images/home_bg5.jpg) no-repeat center top;
}
.home_team .qh_team {
  margin-top: 30px;
}
.home_team .qh_team .box {
  width: 100%;
  height: 484px;
  text-align: center;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: all 0.4s ease-in-out 0s;
}
.home_team .qh_team .box .img {
  display: block;
  line-height: 0;
  transition: all 0.2s ease-in-out 0s;
  transform-style: center top 0;
}
.home_team .qh_team .box .text {
  position: relative;
  top: 60px;
  height: 0;
  padding: 35px 0;
  transform-origin: center top 0;
  transition: all 0.4s ease-in-out 0s;
  opacity: 0;
}
.home_team .qh_team .box .text .subtitle {
  color: #333333;
}
.home_team .qh_team .box .text h3 {
  margin-top: 5px;
  color: #333399;
  font-size: 22px;
  font-weight: normal;
}
.home_team .qh_team .box .text .t {
  width: 64%;
  margin: 15px auto 0;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}
.home_team .qh_team .box:hover {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-top: 5px solid #e01812;
  border-bottom: 5px solid #e01812;
}
.home_team .qh_team .box:hover .img {
  margin-top: -10px;
}
.home_team .qh_team .box:hover .text {
  opacity: 1;
  height: 170px;
  top: -60px;
  background-color: #fff;
}
.home_team .qh_team .slick-prev,
.home_team .qh_team .slick-next {
  width: 54px;
  height: 54px;
  margin-top: 0;
  transform: translateY(-50%);
  border: none;
}
.home_team .qh_team .slick-prev {
  left: -88px;
  background: url(../images/prev.png) no-repeat center center;
  background-size: 100% 100%;
}
.home_team .qh_team .slick-next {
  right: -88px;
  background: url(../images/next.png) no-repeat center center;
  background-size: 100% 100%;
}
.home_circuit {
  background: url(../images/home_bg06.jpg) no-repeat center top;
  padding-top: 30px;
  padding-bottom: 70px;
}



.home_circuit ol {
  margin-top: 65px;
}
.home_circuit ol li {
  width: 11%;
  float: left;
  text-align: center;
  margin-right: 6.8%;
}
.home_circuit ol li:last-child {
  margin-right: 0;
}
.home_circuit ol li .img {
  background: url(../images/home_icon10.png) no-repeat center top;
  background-size: 100% 100%;
  width: 77px;
  height: 92px;
  margin: 0 auto;
  transition: all .5s;
}
.home_circuit ol li .img img {
  margin-top: 20px;
  width: 40px;
  height: 36px;
}
.home_circuit ol li .icon {
  display: block;
  width: 26px;
  height: 26px;
  background: url(../images/home_icon8.png) no-repeat center center;
  background-size: 100% 100%;
  margin: 20px auto 0;
  transition: all .5s;
}
.home_circuit ol li h3 {
  margin-top: 28px;
  color: #333399;
  font-size: 26px;
}
.home_circuit ol li .bt {
  margin-top: 10px;
  color: #999999;
  font-size: 17px;
	opacity: 1;
}
.home_circuit ol li p {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
	opacity: 0;
	transition: all .5s;
}

.home_circuit ol li:hover p {
opacity: 1;
}
.home_circuit ol li:hover .img {
  background: url(../images/home_icon11.png) no-repeat center center;
  background-size: 100% 100%;
}
.home_circuit ol li:hover .icon {
  background: url(../images/home_icon9.png) no-repeat center center;
  background-size: 100% 100%;
}
.home_news {
  background: url(../images/home_bg7.jpg) no-repeat center top;
  padding: 70px 0 90px;
}
.home_news .ol_list {
  margin-top: 45px;
}
.home_news .ol_list li {
  width: 31.5%;
  float: left;
  background: #fcfcfc;
  padding: 10px 10px 20px;
  transition: all .5s;
  transform: translateY(0);
  margin-right: 2.75%;
}
.home_news .ol_list li:last-child {
  margin-right: 0;
}
.home_news .ol_list li .img {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.home_news .ol_list li .img img {
  transition: all 1.2s;
}
.home_news .ol_list li .text {
  padding-top: 12px;
}
.home_news .ol_list li .text .bt {
  color: #333333;
  font-weight: normal;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .ol_list li .text .data {
  margin-top: 8px;
  color: #666666;
  font-size: 14px;
}
.home_news .ol_list li .text p {
  margin-top: 8px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}
.home_news .ol_list li:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: #fff;
  transform: translateY(-15px);
}
.home_news .ol_list li:hover .img img {
  transform: scale(1.1);
}
.home_news .ol_list li:hover .text .bt {
  color: #364799;
}
.nybanner img {
  width: 100%;
  float: left;
}
.contact {
  padding: 50px 0 60px;
}
.contact .box {
  /* margin-top: 40px; */
  border-bottom: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
 border-right: 1px solid #e5e5e5;
  padding: 20px 25px;
}

.contact .tab {
	margin-top: 40px;
	border-bottom: 1px solid #e5e5e5;
	border-top: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	background: #f5f5f5;
}
.contact .tab a{
	font-size: 20px;
	color: #cccccc;
	font-weight: initial;
	padding: 0px 32px;
	line-height: 46px;
	float: left;
	/* width: 102px; */

}

.contact .tab a::after{
	content: "";
	border-right: 1px solid #dedede;
	height: 35px;
	position: relative;
 top: 50%;
  left: 33px;
	z-index: 1;

}

.contact .tab a.cur{
	background: url(../images/t_lxwm_icon.png) center center/cover;
	/* width: 101px; */
	height: 45px;
	color: #fff;
	position: relative;
	z-index: 9;
}

.contact .tab a.cur::after {
	display: none;
}



.contact .box .text_con {
  padding-top: 10px;
  width: 540px;
  float: left;
}
.contact .box .text_con h3 {
  color: #364799;
  font-size: 20px;
  margin-bottom: 12px;
}
.contact .box .text_con p {
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  padding-left: 22px;
  margin-top: 8px;
}
.contact .box .text_con p span {
  color: #666666;
}
.contact .box .text_con .d1 {
  background: url(../images/contact1.jpg) no-repeat left 4px;
}
.contact .box .text_con .d2 {
  background: url(../images/contact2.jpg) no-repeat left 6px;
}
.contact .box .text_con .d3 {
  background: url(../images/contact3.jpg) no-repeat left 2px;
}
.contact .box .text_con .ewm {
  margin-top: 25px;
}
.contact .box .text_con .ewm .t {
  float: left;
  text-align: center;
  margin-right: 25px;
}
.contact .box .text_con .ewm .t span {
  margin: 0 auto;
  width: 106px;
  display: block;
  background: #f4f4f4;
  padding: 9px;
  line-height: 0;
}
.contact .box .text_con .ewm .t em {
  font-style: normal;
  color: #cccccc;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}
.contact .box .map {
  float: right;
  width: 605px;
}
.contact .box .map #map ,.contact .box .map #map_1{
  width: 100%;
  height: 335px;
}
.contact_div2 {
  background: url(../images/contact_bg.jpg) no-repeat center top;
  background-size: 100% 100%;
  padding: 55px 0 60px;
}
.contact_div2 .title2 {
  text-align: center;
}
.contact_div2 .title2 h3 {
  color: #ffffff;
  font-size: 30px;
  padding-bottom: 20px;
  position: relative;
}
.contact_div2 .title2 h3:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -35px;
  width: 70px;
  height: 1px;
  background: #7f8abb;
}
.contact_div2 .title2 p {
  width: 700px;
  margin: 15px auto 0;
  color: #bcc8ff;
  font-size: 14px;
  line-height: 24px;
}
.contact_div2 ol {
  margin-top: 10px;
}
.contact_div2 ol li {
  margin-top: 2%;
  float: left;
  width: 49%;
  padding: 26px 25px;
  min-height: 146px;
  background: #fff;
}
.contact_div2 ol li:nth-child(2n) {
  float: right;
}
.contact_div2 ol li h3 {
  color: #333333;
  font-size: 18px;
  padding-bottom: 12px;
  position: relative;
}
.contact_div2 ol li h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  background: #bfbfbf;
}
.contact_div2 ol li p {
  margin-top: 12px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.contact_message {
  padding: 50px 0 80px;
}
.contact_message ol {
  margin-top: 40px;
}
.contact_message ol li {
  float: left;
  background: #fff;
  width: 32%;
  position: relative;
  border: 1px solid #d1d1d1;
  margin-bottom: 1.5%;
  margin-right: 2%;
}
.contact_message ol li:nth-child(3),
.contact_message ol li:nth-child(4),
.contact_message ol li:last-child {
  margin-right: 0;
}
.contact_message ol li:nth-child(4) {
  width: 100%;
}
.contact_message ol li:last-child {
  border: none;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
.contact_message ol li span {
  position: absolute;
  left: 10px;
  top: 19px;
  width: 25px;
  line-height: 0;
}
.contact_message ol li input {
  border: none;
  background: none;
  width: 100%;
  padding: 0 10px 0 45px;
  -webkit-appearance: none;
  height: 64px;
  line-height: 64px;
  font-family: "微软雅黑";
  font-size: 16px;
}
.contact_message ol li textarea {
  width: 100%;
  border: none;
  background: none;
  height: 150px;
  font-family: "微软雅黑";
  -webkit-appearance: none;
  font-size: 16px;
  padding: 20px 10px 20px 45px;
}
.contact_message ol li .btn {
  float: none;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  background: #364799;
  border-color: #364799;
  color: #fff;
  font-size: 20px;
  font-family: "微软雅黑";
  border-radius: 3px;
}
.case {
  padding: 40px 0 80px;
}
.case .title p {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.menu {
  margin-top: 30px;
  text-align: center;
}
.menu a {
  display: inline-block;
  border: 1px solid #e5e5e5;
  min-width: 120px;
  line-height: 40px;
  color: #666666;
}
.menu a:hover,
.menu a.cur {
  background: #364799;
  color: #fff;
  border-color: #364799;
}
.case_box ol {
  margin-bottom: 60px;
}
.case_box ol li {
  position: relative;
  float: left;
  width: 32%;
  height: 288px;
  text-align: center;
  margin-top: 3%;
  margin-right: 2%;
}
.case_box ol li:nth-child(3n) {
  margin-right: 0;
}
.case_box ol li .img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
  width: 30%;
  margin: 0 auto;
}
.case_box ol li .img img {
  border-radius: 50%;
  width: 100%;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
}
.case_box ol li .text {
  position: absolute;
  left: 0;
  bottom: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  height: 238px;
  background: #fff;
  border: 1px solid #ededed;
  padding: 90px 15px 0;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
.case_box ol li .text:before {
  content: "";
  position: absolute;
  left: 2%;
  top: 2.5%;
  width: 96%;
  height: 94%;
  border: 1px solid #fff;
}
.case_box ol li .text h3,.case_box ol li .text .tt {
  font-weight: normal;
  color: #353535;
  font-size: 16px;
}
.case_box ol li .text h3 span,.case_box ol li .text .tt span {
  color: #353535;
  font-size: 20px;
}
.case_box ol li .text .xuexiao {
  margin-top: 5px;
  color: #999999;
  font-size: 16px;
}
.case_box ol li .text .t {
  margin-top: 10px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.case_box ol li:hover .img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.case_box ol li:hover .text {
  bottom: -10px;
  height: 258px;
  background: #df1910;
}
.case_box ol li:hover .text h3,
.case_box ol li:hover .text .tt,
.case_box ol li:hover .text p {
  color: #fff;
}
.case_box ol li:hover .text h3 span,
.case_box ol li:hover .text .tt span,
.case_box ol li:hover .text p span {
  color: #fff;
}
.case_box ol li:hover .text .t {
  height: 72px;
}
.news {
  padding: 40px 0 80px;
  background: #fafafa;
}
.news .news_box {
  margin-top: 20px;
}
.news .news_box ol {
  margin-bottom: 50px;
}
.news .news_box ol li {
  margin-top: 20px;
  float: left;
  width: 100%;
  border: 1px dotted #e6e6e6;
  padding: 20px;
  background: #fff;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
.news .news_box ol li .img {
  display: block;
  float: left;
  width: 26%;
  line-height: 0;
  overflow: hidden;
}
.news .news_box ol li .img img {
  width: 100%;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
}
.news .news_box ol li .text {
  float: left;
  width: 54%;
  margin-left: 3%;
  padding-top: 1.4%;
}
.news .news_box ol li .text .bt {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #666666;
  font-size: 16px;
  font-weight: normal;
}
.news .news_box ol li .text p {
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  margin-top: 2%;
}
.news .news_box ol li .text .bottom {
  margin-top: 4%;
  font-size: 13px;
}
.news .news_box ol li .text .bottom a {
  display: block;
  float: left;
  margin-left: 23px;
  padding-left: 17px;
  color: #999999;
}
.news .news_box ol li .text .bottom a:first-child {
  margin-left: 0;
}
.news .news_box ol li .text .bottom span {
  display: none;
}
.news .news_box ol li .text .bottom .a1 {
  background: url(../images/news_icon1.jpg) no-repeat left center;
  padding-left: 19px;
}
.news .news_box ol li .text .bottom .a2 {
  background: url(../images/news_icon2.jpg) no-repeat left center;
}
.news .news_box ol li .text .bottom .a3 {
  background: url(../images/news_icon3.jpg) no-repeat left center;
}
.news .news_box ol li .right {
  float: right;
  text-align: right;
  padding-top: 1.4%;
}
.news .news_box ol li .right span {
  display: block;
  color: #999999;
  font-size: 18px;
}
.news .news_box ol li .right a {
  margin-top: 8%;
  background: url(../images/news_icon.png) no-repeat right center;
  line-height: 40px;
  height: 40px;
  display: block;
  width: 120px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
.news .news_box ol li .right a span {
  display: none;
}
.news .news_box ol li:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.news .news_box ol li:hover .img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.news .news_box ol li:hover .text .bt {
  color: #0058ad;
}
.news .news_box ol li:hover .right a {
  display: block;
  text-align: center;
  background: #0058ad url(../images/news_icon4.jpg) no-repeat right center;
}
.news .news_box ol li:hover .right a span {
  display: block;
  color: #f6f6f6;
  font-size: 16px;
  text-transform: uppercase;
}
.newsshow {
  padding: 45px 0 80px;
}
.newsshow .left {
  width: 838px;
}
.newsshow .left h1 {
  font-weight: normal;
  color: #333333;
  font-size: 26px;
}
.newsshow .left .data {
  margin-top: 12px;
  color: #999999;
  font-size: 13px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}
.newsshow .left .data span {
  margin-left: 20px;
  display: block;
  float: left;
  padding-left: 20px;
}
.newsshow .left .data span:first-child {
  margin-left: 0;
}
.newsshow .left .data .s1 {
  background: url(../images/newsshow_icon1.jpg) no-repeat left center;
}
.newsshow .left .data .s2 {
  background: url(../images/newsshow_icon2.jpg) no-repeat left center;
}
.newsshow .left .data .s3 {
  background: url(../images/newsshow_icon3.jpg) no-repeat left center;
}
.newsshow .left .data .s4 {
  background: url(../images/newsshow_icon4.jpg) no-repeat left center;
}
.newsshow .left .detail {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  padding: 20px 0;
}
.newsshow .right {
  width: 312px;
}
.newsshow .right .tit {
  line-height: 50px;
  color: #333333;
  font-size: 12px;
  background: #f8f8f8;
  padding: 0 12px;
}
.newsshow .right .tit h3,.newsshow .right .tit h2 {
  background: url(../images/news_icon5.jpg) no-repeat left 16px;
  padding-left: 25px;
  font-weight: normal;
  float: left;
  max-width: 100%;
}
.newsshow .right .tit .more {
  float: right;
  color: #cacaca;
  font-size: 12px;
  text-transform: uppercase;
}
.newsshow .right .list_nav {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.newsshow .right .list_nav ul {
  padding: 0 12px;
}
.newsshow .right .list_nav ul li {
  float: left;
  width: 100%;
  border-top: 1px solid #f8f8f8;
  line-height: 40px;
  padding-left: 14px;
  position: relative;
}
.newsshow .right .list_nav ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 4px;
  height: 4px;
  background: #c9c9c9;
  border-radius: 50px;
}
.newsshow .right .list_nav ul li a {
  display: block;
  color: #999999;
  font-size: 16px;
}
.newsshow .right .list_nav ul li:hover:before,
.newsshow .right .list_nav ul li.cur:before {
  background: #364799;
}
.newsshow .right .list_nav ul li:hover a,
.newsshow .right .list_nav ul li.cur a {
  color: #364799;
}
.newsshow .right .list_nav2 {
  margin-top: 15px;
  border: 1px solid #f8f8f8;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.newsshow .right .list_nav2 ul li {
  float: left;
  width: 100%;
  line-height: 40px;
  font-size: 16px;
  border-top: 1px solid #f8f8f8;
  padding: 0 12px;
}
.newsshow .right .list_nav2 ul li a {
  display: block;
  color: #999999;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 14px;
}
.newsshow .right .list_nav2 ul li h3 { font-size: 16px;font-weight: normal; }
.newsshow .right .list_nav2 ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 4px;
  height: 4px;
  background: #c9c9c9;
  border-radius: 50px;
}
.newsshow .right .list_nav2 ul li:hover a {
  color: #364799;
}
.newsshow .right .list_nav2 ul li:hover a:before {
  background: #364799;
}
.newsshow .right .list_nav3 ul li {
  float: left;
  width: 100%;
  margin-top: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.newsshow .right .list_nav3 ul li .img {
  width: 100%;
  line-height: 0;
}
.newsshow .right .list_nav3 ul li .text {
  color: #333333;
  font-size: 18px;
  padding: 12px 0 12px 14px;
  position: relative;
  background: #f8f8f8;
}
.newsshow .right .list_nav3 ul li .text:before {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -3.5px;
  width: 33px;
  height: 7px;
  background: url(../images/newsshow_icon5.png) no-repeat center center;
}
.fy_btn ul li {
  margin-top: 12px;
  float: left;
  border: 1px solid #e9e9e9;
  width: 100%;
  padding: 10px 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #666666;
  font-size: 16px;
}
.fy_btn ul li a {
  color: #666666;
}
.fy_btn ul li:hover a {
  color: #0058ad;
}
.japan_school {
  padding: 40px 0 50px;
}
.japan_school ul {
  margin-top: 30px;
}
.japan_school ul li {
  float: left;
  margin-bottom: 18px;
  margin-right: 21px;
  width: 386px;
  overflow: hidden;
  position: relative;
}
.japan_school ul li .img {
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.japan_school ul li .img img {
  width: 100%;
  transition: all 1.2s;
}
.japan_school ul li .text {
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 92%;
  margin-left: -46%;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 25px;
  transition: all 0.8s;
}
.japan_school ul li .text .digital {
  color: #eeecfb;
  font-size: 65px;
  font-weight: bold;
  font-family: arial;
  position: absolute;
  right: 25px;
  bottom: 10px;
  line-height: 44px;
}
.japan_school ul li .text h3 {
  color: #333333;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.japan_school ul li .text .name {
  margin-top: 5px;
  color: #999999;
  font-size: 12px;
  line-height: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.japan_school ul li .text p {
  margin-top: 10px;
  display: none;
  color: #eaeeff;
  font-size: 14px;
  line-height: 22px;
}
.japan_school ul li .text_div{
	display: none;
	transition: all 0.8s;
}
.japan_school ul li .text_div .con {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.japan_school ul li .text_div .con a {
 /* display: block;*/
  color: #ffffff;
  font-size: 12px;
  margin-top: 20px;
  width:50%;
  float:left;
}
.japan_school ul li .text_div .con a:hover {
  text-decoration: underline;
}
.japan_school ul li .text_div .con a:first-child,
.japan_school ul li .text_div .con a:nth-child(2) {
  margin-top: 0;
}
.japan_school ul li:first-child {
  width: 695px;
  margin-right: 0;
}
.japan_school ul li:first-child .text {
  width: 95%;
  margin-left: -47.5%;
}
.japan_school ul li:first-child + li {
  width: 486px;
  float: right;
  margin-right: 0;
}
.japan_school ul li:last-child {
  margin-right: 0;
}
.japan_school ul li:hover .img img {
  transform: scale(1.2);
}
.japan_school ul li:hover .text {
  /*width: 100%;
  margin-left: 0;
  left: 0;
  height: 100%;
  bottom: 0;
  background: rgba(54, 71, 153, 0.9);*/
  display: none;
}
.japan_school ul li:hover .text_div{
	position: absolute;
	width: 100%;
	margin-left: 0;
	left: 0;
	height: 100%;
	bottom: 0;
	background: rgba(54, 71, 153, 0.9);
	display: block;
}
/*.japan_school ul li:hover .text .digital {
  display: none;
}
.japan_school ul li:hover .text h3 {
  display: none;
}
.japan_school ul li:hover .text .name {
  display: none;
}*/
.japan_school2 {
  background: #f4f7fe;
  padding: 50px 0 100px;
}
.japan_school2 .box {
  margin-top: 35px;
  position: relative;
}
.japan_school2 .box .left {
  position: absolute;
  z-index: 2;
  width: 600px;
  left: 0;
  top: 20px;
  line-height: 0;
}
.japan_school2 .box .right {
  width: 864px;
  background: #364799;
  height: 396px;
  float: right;
  padding-left: 302px;
  padding-right: 40px;
  padding-top: 80px;
  position: relative;
}
.japan_school2 .box .right h3,
.japan_school2 .box .right .t {
  font-weight: bold;
  color: #ffffff;
  font-size: 30px;
}
.japan_school2 .box .right h3 span,
.japan_school2 .box .right .t span {
  font-weight: normal;
  font-size: 24px;
}
.japan_school2 .box .right .name {
  color: #ffffff;
  font-size: 14px;
  padding-bottom: 18px;
  position: relative;
}
.japan_school2 .box .right .name:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: #df1810;
}
.japan_school2 .box .right p {
  margin-top: 15px;
  color: #ffffff;
  font-size: 14px;
  line-height: 22px;
}
.japan_school2 .box .right .bottom {
  margin-top: 30px;
}
.japan_school2 .box .right .bottom a {
  width: 154px;
  height: 44px;
  display: block;
  float: left;
  border-radius: 50px;
  text-align: center;
  line-height: 44px;
  border: 1px solid #828dc0;
  color: #d0d8ff;
  font-size: 16px;
  margin-left: 35px;
}
.japan_school2 .box .right .bottom a:first-child {
  margin-left: 0;
  background: #f3f4f9;
  border: none;
  color: #364799;
}
.japan_school2 .box .right .bottom a i {
  width: 22px;
  height: 22px;
  display: inline-block;
  position: relative;
  top: 6px;
  margin-right: 8px;
}
.japan_school2 .box .right .bottom a i.i1 {
  background: url(../images/school_icon1.png) no-repeat center center;
}
.japan_school2 .box .right .bottom a i.i2 {
  background: url(../images/school_icon2.png) no-repeat center center;
}
.japan_school2 .box .right .img {
  position: absolute;
  right: -98px;
  bottom: -78px;
  width: 309px;
  line-height: 0;
}
.japan_school3 {
  padding: 50px 0 60px;
}
.japan_school3 .title p {
  width: 700px;
  margin: 8px auto 0;
}
.japan_school3 .case_box ol {
  margin-bottom: 0;
}
.japan_school4 {
  background: url(../images/school_bg.jpg) no-repeat center center;
  background-size: 100% 100%;
  padding: 50px 0 60px;
}
.japan_school4 .title p {
  width: 700px;
  margin: 8px auto 0;
}
.japan_school4 .box {
  margin-top: 35px;
  background: #32428e;
}
.japan_school4 .box .left {
  float: left;
  width: 41.25%;
  line-height: 0;
}
.japan_school4 .box .left img {
  width: 100%;
}
.japan_school4 .box .right {
  float: right;
  width: 58.75%;
}
.japan_school4 .box .right .wenda ul li {
  width: 100%;
  float: left;
  border-bottom: #3a4b9b solid 1px;
  padding: 0 20px;
}
.japan_school4 .box .right .wenda ul li .bt {
  color: #b1b1b1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 30px;
  color: #ffffff;
  font-size: 16px;
  line-height: 55px;
  cursor: pointer;
  background: url(../images/school_icon4.png) no-repeat left center;
  position: relative;
}
.japan_school4 .box .right .wenda ul li .bt:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
  width: 20px;
  height: 12px;
  background: url(../images/school_icon8.png) no-repeat center center;
}
.japan_school4 .box .right .wenda ul li .text {
  display: none;
  color: #cee3ff;
  font-size: 14px;
  padding-left: 30px;
  background: url(../images/school_icon06.png) no-repeat left top;
  padding-bottom: 20px;
}
.japan_school4 .box .right .wenda ul li.cur .bt {
  background: url(../images/school_icon6.png) no-repeat left center;
}
.japan_school4 .box .right .wenda ul li.cur .bt:before {
  background: url(../images/school_icon7.png) no-repeat center center;
}
.japan_news {
  background: none;
  padding-top: 50px;
}
.japan_news .ol_list ol li {
  background: #fcfcfc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.words_school {
  background: url(../images/words_bg.jpg) no-repeat center top;
  min-height: 134px;
}
.words_school ol li {
  float: left;
  padding: 25px 0 0 30px;
  width: 338px;
}
.words_school ol li .img {
  float: left;
  width: 68px;
  height: 68px;
  line-height: 0;
  margin-right: 15px;
}
.words_school ol li .text {
  float: left;
  width: 195px;
}
.words_school ol li .text h3,.words_school ol li .text .t {
  color: #f3f5ff;
  font-size: 18px;
  font-weight: normal;
}
.words_school ol li .text p {
  margin-top: 4px;
  color: #d7deff;
  font-size: 14px;
  line-height: 22px;
}
.words_school ol li:first-child {
  width: 524px;
  padding-left: 0;
}
.words_school ol li:first-child .text {
  width: 410px;
}
.words_school ol li:nth-child(2n) {
  padding-right: 0;
  padding-left: 60px;
}
.words_school2 {
  padding: 60px 0 60px;
}
.words_school2 .words_box {
  margin-top: 40px;
  background: url(../images/words_bg2.jpg) no-repeat center top;
  padding: 17px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.words_school2 .words_box .box .img {
  float: left;
  width: 47.75%;
  line-height: 0;
}
.words_school2 .words_box .box .img img {
  width: 100%;
}
.words_school2 .words_box .box .text {
  background: #fff;
  min-height: 395px;
  padding-top: 80px;
  float: right;
  width: 52.25%;
  padding-left: 25px;
}
.words_school2 .words_box .box .text .dz {
  color: #000000;
  font-size: 14px;
}
.words_school2 .words_box .box .text h3,.words_school2 .words_box .box .text .t {
  font-weight: bold;
  color: #364799;
  font-size: 20px;
}
.words_school2 .words_box .box .text .name {
  color: #cccccc;
  font-size: 16px;
  font-family: arial;
  border-bottom: 1px solid #f0f5ff;
  padding-bottom: 15px;
}
.words_school2 .words_box .box .text P {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}
.words_school2 .words_box .box .text .bottom {
  margin-top: 40px;
  font-size: 14px;
}
.words_school2 .words_box .box .text .bottom a {
  display: block;
  float: left;
  text-align: center;
  margin-left: 16px;
  border-radius: 50px;
  width: 138px;
  height: 42px;
  line-height: 42px;
  border: 1px solid #e5e5e5;
  color: #666666;
}
.words_school2 .words_box .box .text .bottom a:first-child {
  margin-left: 0;
  color: #364799;
  border: 1px solid #e9efff;
}
.words_school2 .words_box .box .text .bottom a i {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 5px;
  width: 20px;
  height: 20px;
}
.words_school2 .words_box .box .text .bottom a i.i1 {
  background: url(../images/words_icon4.png) no-repeat center center;
}
.words_school2 .words_box .box .text .bottom a i.i2 {
  background: url(../images/words_icon5.png) no-repeat center center;
}
.words_school2 .words_box .slick-prev,
.words_school2 .words_box .slick-next {
  width: 14px;
  height: 26px;
  border: none;
  margin-top: -13px;
  opacity: 0;
}
.words_school2 .words_box .slick-prev {
  background: url(../images/left.png) no-repeat center center;
  left: 30px;
}
.words_school2 .words_box .slick-next {
  background: url(../images/right.png) no-repeat center center;
  right: 30px;
}
.words_school2 .words_box:hover .slick-prev,
.words_school2 .words_box:hover .slick-next {
  opacity: 1;
}
.words_school3 {
  background: #f4f7fe;
  padding: 60px 0;
}
.words_school3 .box {
  margin-top: 35px;
}
.words_school3 .box .left {
  padding-top: 20px;
  width: 50%;
}
.words_school3 .box .left h3,.words_school3 .box .left .tt {
  color: #364799;
  font-size: 18px;
  font-weight: bold;
}
.words_school3 .box .left .name {
  color: #999999;
  font-size: 14px;
  margin-top: 3px;
}
.words_school3 .box .left .t {
  margin-top: 25px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.words_school3 .box .img {
  width: 48%;
  line-height: 0;
}
.words_school3 ol {
  margin-top: 10px;
}
.words_school3 ol li {
  margin-top: 2%;
  float: left;
  width: 23.5%;
  margin-right: 2%;
  padding: 20px 10px;
  background: #f7f9ff;
  box-shadow: 0 0 10px rgba(0, 75, 251, 0.2);
  transition: all .5s;
  border: 1px solid #c0cce8;
}
.words_school3 ol li:nth-child(4n) {
  margin-right: 0;
}
.words_school3 ol li a {
  display: block;
}
.words_school3 ol li h3 {
  transition: all .5s;
  color: #666666;
  font-size: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 10px;
  position: relative;
}
.words_school3 ol li h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: #9ca4cc;
  transition: all .5s;
}
.words_school3 ol li p {
  transition: all .5s;
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}
.words_school3 ol li:hover {
  background: #e01812;
}
.words_school3 ol li:hover h3,
.words_school3 ol li:hover p {
  color: #fff;
}
.words_school3 ol li:hover h3:before {
  background: #fff;
}
.spec_school {
  position: relative;
  background: #f4f7fe;
  padding-bottom: 60px;
}
.spec_school .fuwu {
  margin-top: 50px;
}
.spec_school .fuwu .box {
  margin-top: 35px;
}
.spec_school .fuwu .box .left {
  width: 47%;
}
.spec_school .fuwu .box .left .bt {
  color: #9ca8e3;
  font-size: 14px;
  padding-bottom: 15px;
  position: relative;
}
.spec_school .fuwu .box .left .bt:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background: #848fc3;
}
.spec_school .fuwu .box .left h3,.spec_school .fuwu .box .left .t {
  margin-top: 11px;
  color: #364799;
  font-size: 20px;
}
.spec_school .fuwu .box .left .name {
  margin-top: 5px;
  color: #333333;
  font-size: 14px;
}
.spec_school .fuwu .box .left .t {
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}
.spec_school .fuwu .box .left .t p {
  margin-top: 15px;
}
.spec_school .fuwu .box .left a {
  margin-top: 25px;
  display: inline-block;
  color: #2e3d8d;
  font-size: 14px;
  font-family: arial;
  background: url(../images/spec_icon4.png) no-repeat left 4px;
  padding-left: 32px;
}
.spec_school .fuwu .box .right {
  width: 51%;
  line-height: 0;
}
.spec_school .fuwu ul {
  margin-top: 10px;
}
.spec_school .fuwu ul li {
  float: left;
  width: 32%;
  padding: 35px 22px;
  box-shadow: 2px 2px 5px rgba(0, 75, 251, 0.3);
  margin-top: 20px;
  margin-right: 2%;
}
.spec_school .fuwu ul li:nth-child(3n) {
  margin-right: 0;
}
.spec_school .fuwu ul li a {
  display: block;
}
.spec_school .fuwu ul li .bt {
  color: #666666;
  font-size: 14px;
  padding-bottom: 15px;
  position: relative;
}
.spec_school .fuwu ul li .bt:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background: #848fc3;
}
.spec_school .fuwu ul li h3 {
  color: #666666;
  font-size: 20px;
  font-weight: normal;
  margin-top: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.spec_school .fuwu ul li p {
  margin-top: 5px;
  color: #999999;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}
.spec_school .fuwu ul li:hover {
  background: url(../images/spec_bg2.jpg) no-repeat center center;
  background-size: 100% 100%;
}
.spec_school .fuwu ul li:hover .bt,
.spec_school .fuwu ul li:hover h3,
.spec_school .fuwu ul li:hover p {
  color: #fff;
}
.spec_school .fuwu ul li:hover .bt:before {
  background: #fff;
}
.ol_spec li {
  margin-top: -65px;
  float: left;
  width: 33.33333333%;
  height: 294px;
  background: url(../images/spec_bg.jpg) no-repeat center center;
  background-size: 100% 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 45px 30px 0;
}
.ol_spec li .img {
  width: 59px;
  height: 56px;
  margin: 0 auto;
}
.ol_spec li .img span {
  display: block;
}
.ol_spec li .img em {
  display: none;
}
.ol_spec li .text {
  margin-top: 15px;
}
.ol_spec li .text h3,.ol_spec li .text .t {
  color: #333333;
  font-size: 18px;
  font-weight: normal;
}
.ol_spec li .text .name {
  color: #999999;
  font-size: 14px;
  margin-top: 5px;
  padding-bottom: 18px;
  position: relative;
}
.ol_spec li .text .name:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -22px;
  width: 44px;
  height: 1px;
  background: #4b5aa4;
}
.ol_spec li .text p {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}
.ol_spec li:hover {
  background: #e01812;
}
.ol_spec li:hover .img span {
  display: none;
}
.ol_spec li:hover .img em {
  display: block;
}
.ol_spec li:hover .text h3,
.ol_spec li:hover .text .name,
.ol_spec li:hover .text p {
  color: #fff;
}
.ol_spec li:hover .text .name:before {
  background: #fff;
}
.spec_box {
  padding: 195px 0 190px;
  border-bottom: 1px solid #e7e7e7;
  background: #fafafa;
}
.spec_box .box {
  position: relative;
}
.spec_box .box .img {
  width: 40.5%;
  margin: 0 auto;
  line-height: 0;
}
.spec_box .box ol {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 493px;
}
.spec_box .box ol li {
  width: 358px;
  height: 120px;
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 22px 17px 0;
  position: absolute;
}
.spec_box .box ol li h1,.spec_box .box ol li .t1 {
  display: none;
}
.spec_box .box ol li h3,.spec_box .box ol li .t3 {
  color: #26327a;
  font-size: 18px;
  font-weight: bold;
}
.spec_box .box ol li p {
  margin-top: 5px;
  color: #999999;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}
.spec_box .box ol li:first-child {
  left: 50%;
  top: -132px;
  margin-left: -179px;
}
.spec_box .box ol li:first-child + li {
  left: 0;
  top: 62px;
}
.spec_box .box ol li:first-child + li + li {
  right: 0;
  top: 62px;
}
.spec_box .box ol li:first-child + li + li + li {
  left: 0;
  bottom: 62px;
}
.spec_box .box ol li:first-child + li + li + li + li {
  right: 0;
  bottom: 62px;
}
.spec_box .box ol li:last-child {
  left: 50%;
  bottom: -132px;
  margin-left: -179px;
}
.kfxx_box {
  padding: 50px 0 60px;
}
.kfxx_box ol {
  margin-top: 25px;
  position: relative;
  min-height: 504px;
}
.kfxx_box ol li {
  float: left;
  width: 32.5%;
  margin-right: 1.25%;
  line-height: 0;
  margin-top: 1.25%;
  overflow: hidden;
}
.kfxx_box ol li:nth-child(3n){
	margin-right: 0;
}
.zy_sys {
  padding: 50px 0 60px;
  background: url(../images/spec_bg3.jpg) no-repeat center top;
}
.zy_sys .title p {
  width: 700px;
  margin: 8px auto 0;
}
.zy_sys .box {
  margin-top: 35px;
  position: relative;
}
.zy_sys .box .left {
  width: 508px;
  height: 390px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 70px 0 0 40px;
}
.zy_sys .box .left h3,.zy_sys .box .left .tt {
  color: #333;
  font-size: 24px;
}
.zy_sys .box .left h3 span,.zy_sys .box .left .tt span {
  color: #df1910;
}
.zy_sys .box .left .name {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}
.zy_sys .box .left .t {
  margin-top: 20px;
  color: #666666;
  font-size: 18px;
  line-height: 32px;
}
.zy_sys .box .right {
  width: 65.9%;
  line-height: 0;
}
.zy_sys ol {
  margin-top: 10px;
}
.zy_sys ol li {
  float: left;
  width: 23.5%;
  text-align: center;
  margin-top: 2%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-right: 2%;
}
.zy_sys ol li:nth-child(4n) {
  margin-right: 0;
}
.zy_sys ol li .img {
  line-height: 0;
  overflow: hidden;
}
.zy_sys ol li .img img {
  width: 100%;
}
.zy_sys ol li .text {
  line-height: 42px;
  color: #666666;
  font-size: 14px;
}
.zy_sys ol li:hover .text {
  color: #364799;
}
.cglx_box {
  padding: 50px 0 60px;
}
.cglx_box .cglx_text {
  margin-top: 35px;
}
.cglx_box .cglx_text .box .img {
  float: left;
  width: 27.25%;
  line-height: 0;
}
.cglx_box .cglx_text .box .img img {
  width: 100%;
}
.cglx_box .cglx_text .box .text {
  float: right;
  width: 72.75%;
  background: #364799;
  height: 336px;
  margin-top: 21px;
  padding: 25px 58px 0;
}
.cglx_box .cglx_text .box .text .bt {
  position: relative;
}
.cglx_box .cglx_text .box .text .bt span {
  color: #3f4f9e;
  font-size: 65px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: arial;
}
.cglx_box .cglx_text .box .text .bt h3 {
  color: #fbfcff;
  font-size: 24px;
  position: relative;
  margin-top: -47px;
}
.cglx_box .cglx_text .box .text .bt .name {
  margin-top: 5px;
  color: #cfd7fe;
  font-size: 14px;
}
.cglx_box .cglx_text .box .text p {
  margin-top: 12px;
  color: #e9edff;
  font-size: 14px;
  line-height: 22px;
  height: 88px;
  overflow: hidden;
}
.cglx_box .cglx_text .box .text a {
  margin-top: 35px;
  display: block;
  width: 156px;
  line-height: 44px;
  text-align: center;
  color: #364799;
  border-radius: 50px;
  background: #ffffff;
  font-size: 14px;
}
.cglx_box .cglx_text .box .text a i {
  display: inline-block;
  position: relative;
  top: 6px;
  width: 24px;
  height: 21px;
  margin-right: 5px;
  background: url(../images/cglx_icon.jpg) no-repeat center center;
}
.cglx_box .cglx_text .slick-prev,
.cglx_box .cglx_text .slick-next {
  width: 14px;
  height: 26px;
  border: none;
  margin-top: -13px;
}
.cglx_box .cglx_text .slick-prev {
  background: url(../images/left.png) no-repeat center center;
  left: 347px;
}
.cglx_box .cglx_text .slick-next {
  background: url(../images/right.png) no-repeat center center;
  right: 22px;
}
.cglx_box .cglx_dx {
  margin-top: 15px;
  margin-left: -10px;
  width: 1218px;
}
.cglx_box .cglx_dx .text_box {
  background: #26327a;
  padding: 5px 10px;
  margin: 0 10px;
  border-bottom: 3px solid #26327a;
}
.cglx_box .cglx_dx .text_box .img {
  float: left;
  width: 64px;
  height: 70px;
  line-height: 0;
}
.cglx_box .cglx_dx .text_box .text {
  padding-top: 8px;
  margin-left: 10px;
  float: left;
  width: 182px;
}
.cglx_box .cglx_dx .text_box .text h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.cglx_box .cglx_dx .text_box .text p {
  margin-top: 5px;
  color: #eaeeff;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.cglx_box .cglx_dx .slick-current .text_box {
  border-color: #e6212d;
}
.shengxue {
  padding: 50px 0 60px;
}
.shengxue .box {
  margin-top: 40px;
}
.shengxue .box .shengxue_text {
  width: 49%;
}
.shengxue .box .shengxue_text .top {
  background: #e5e5e5;
  line-height: 60px;
}
.shengxue .box .shengxue_text .top span {
  color: #364799;
  font-size: 16px;
  font-weight: bold;
  display: block;
  padding: 0 40px;
  float: left;
}
.shengxue .box .shengxue_text .top span:first-child {
  width: 35%;
  border-right: 1px solid #f0f0f0;
}
.shengxue .box .shengxue_text .dongxiao {
  position: relative;
  width: 100%;
  height: 307px;
  overflow: hidden;
}
.shengxue .box .shengxue_text ul {
  border: 1px solid #f0f0f0;
}
.shengxue .box .shengxue_text ul li {
  float: left;
  width: 100%;
  line-height: 60px;
  border-top: 1px solid #f0f0f0;
}
.shengxue .box .shengxue_text ul li span {
  color: #666666;
  font-size: 14px;
  display: block;
  padding: 0 40px;
  float: left;
}
.shengxue .box .shengxue_text ul li span:first-child {
  width: 35%;
  border-right: 1px solid #f0f0f0;
}
.shengxue .box .shengxue_text ul li:nth-child(2n) {
  background: #f8f8f8;
}
.ziyuan_box {
  padding: 50px 0 60px;
}
.ziyuan_box .ziyuan_img {
  margin-top: 35px;
}
.ziyuan_box .ziyuan_img .ziyuan_bt {
  float: left;
  width: 22%;
  background: #364799;
}
.ziyuan_box .ziyuan_img .ziyuan_bt .bt {
  line-height: 69px;
  color: #e4e9ff;
  font-size: 16px;
  border-bottom: 1px solid #32418d;
  border-top: 1px solid #4655a1;
  padding: 0 40px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.ziyuan_box .ziyuan_img .ziyuan_bt .slick-current .bt {
  background: #26327a;
  border-bottom: 1px solid #df1810;
}
.ziyuan_box .ziyuan_img .ziyuan_text {
  float: right;
  width: 78%;
  background: #f4f7fe;
  padding: 14px 18px;
}
.ziyuan_box .ziyuan_img .ziyuan_text .box .img {
  float: left;
  width: 545px;
  line-height: 0;
}
.ziyuan_box .ziyuan_img .ziyuan_text .box .text {
  float: right;
  width: 335px;
  padding-top: 60px;
}
.ziyuan_box .ziyuan_img .ziyuan_text .box .text h3,.ziyuan_box .ziyuan_img .ziyuan_text .box .text .t {
  color: #26327a;
  font-size: 18px;
  font-weight: normal;
  padding-bottom: 18px;
  position: relative;
}
.ziyuan_box .ziyuan_img .ziyuan_text .box .text h3:before,.ziyuan_box .ziyuan_img .ziyuan_text .box .text .t:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: #26327a;
}
.ziyuan_box .ziyuan_img .ziyuan_text .box .text p {
  margin-top: 15px;
  color: #666666;
  font-size: 13px;
  line-height: 22px;
  height: 88px;
  overflow: hidden;
}
.ziyuan_box .ziyuan_img .ziyuan_text .box .text a {
  margin-top: 30px;
  width: 154px;
  height: 44px;
  display: block;
  border-radius: 50px;
  text-align: center;
  line-height: 44px;
  border: 1px solid #364799;
  color: #364799;
  font-size: 16px;
}
.ziyuan_box .ziyuan_img .ziyuan_text .box .text a i {
  width: 22px;
  height: 22px;
  display: inline-block;
  position: relative;
  top: 6px;
  margin-right: 8px;
  background: url(../images/school_icon1.png) no-repeat center center;
}
.liuxue_box {
  padding: 50px 0 60px;
  background: url(../images/liuxue_bg.jpg) no-repeat center top;
}
.liuxue_box .fuwu_top {
  margin-top: 35px;
  position: relative;
  padding-bottom: 50px;
}
.liuxue_box .fuwu_top .text_t {
  width: 84.5%;
  background: #fff;
  min-height: 395px;
  padding: 0 26px 0 326px;
}
.liuxue_box .fuwu_top .text_t ul {
  padding-top: 40px;
}
.liuxue_box .fuwu_top .text_t ul li {
  float: left;
  width: 100%;
  margin-top: 25px;
}
.liuxue_box .fuwu_top .text_t ul li .icon {
  float: left;
  width: 68px;
  line-height: 0;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(54, 71, 153, 0.2);
}
.liuxue_box .fuwu_top .text_t ul li .icon img {
  border-radius: 50%;
  width: 100%;
}
.liuxue_box .fuwu_top .text_t ul li .text {
  float: right;
  width: 570px;
}
.liuxue_box .fuwu_top .text_t ul li .text h3 {
  color: #364799;
  font-size: 20px;
  font-weight: normal;
}
.liuxue_box .fuwu_top .text_t ul li .text p {
  color: #666666;
  font-size: 14px;
  margin-top: 2px;
}
.liuxue_box .fuwu_top .img {
  position: absolute;
  left: 0;
  top: 32px;
  width: 40.5%;
  line-height: 0;
}
.liuxue_box .fuwu_top .img img {
  width: 100%;
}
.liuxue_box .kecheng ul {
  margin-top: 15px;
  margin-bottom: 50px;
}
.liuxue_box .kecheng ul li {
  float: left;
  width: 49%;
  margin-top: 2%;
  min-height: 168px;
  box-shadow: 0 0 10px rgba(54, 71, 153, 0.2);
  padding: 35px 15px 0;
  background: #fff;
}
.liuxue_box .kecheng ul li:nth-child(2n) {
  float: right;
}
.liuxue_box .kecheng ul li a {
  display: block;
  width: 100%;
}
.liuxue_box .kecheng ul li .icon {
  float: left;
  width: 82px;
  height: 82px;
  line-height: 0;
  border-radius: 50%;
  border: 1px solid #f4f4f4;
}
.liuxue_box .kecheng ul li .icon img {
  border-radius: 50%;
}
.liuxue_box .kecheng ul li .text {
  float: right;
  width: 452px;
}
.liuxue_box .kecheng ul li .text h3,.liuxue_box .kecheng ul li .text .t {
  font-weight: normal;
  color: #364799;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.liuxue_box .kecheng ul li .text p {
  margin-top: 5px;
  color: #626262;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}
.liuxue_box .kecheng .bottom {
  text-align: center;
}
.liuxue_box .kecheng .bottom a {
  width: 154px;
  height: 44px;
  display: inline-block;
  border-radius: 50px;
  text-align: center;
  line-height: 44px;
  border: 1px solid #e5e6e9;
  color: #666666;
  font-size: 16px;
  margin-left: 35px;
}
.liuxue_box .kecheng .bottom a:first-child {
  margin-left: 0;
  border-color: #364799;
  color: #364799;
}
.liuxue_box .kecheng .bottom a i {
  width: 22px;
  height: 22px;
  display: inline-block;
  position: relative;
  top: 6px;
  margin-right: 8px;
}
.liuxue_box .kecheng .bottom a i.i1 {
  background: url(../images/school_icon1.png) no-repeat center center;
}
.liuxue_box .kecheng .bottom a i.i2 {
  background: url(../images/g_school_icon6.png) no-repeat center center;
}
.kcqh_box {
  background: url(../images/kcqh_bg.jpg) no-repeat center top;
  padding-bottom: 60px;
  background-size: 100% 100%;
}
.kcqh_box .kcqh_top {
  position: relative;
}
.kcqh_box .kcqh_top .text {
  width: 84%;
  background: #fff;
  height: 402px;
  margin-top: -155px;
  padding: 82px 30px 0 327px;
  box-shadow: 0 0 10px rgba(54, 71, 153, 0.2);
}
.kcqh_box .kcqh_top .text h3 {
  color: #364799;
  font-size: 24px;
  font-weight: normal;
}
.kcqh_box .kcqh_top .text .name {
  margin-top: 2px;
  color: #364799;
  font-size: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6e6e6;
}
.kcqh_box .kcqh_top .text p {
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  margin-top: 16px;
}
.kcqh_box .kcqh_top .text .bottom {
  margin-top: 40px;
  font-size: 14px;
}
.kcqh_box .kcqh_top .text .bottom a {
  display: block;
  float: left;
  text-align: center;
  margin-left: 16px;
  border-radius: 50px;
  width: 138px;
  height: 42px;
  line-height: 42px;
  border: 1px solid #e5e5e5;
  color: #666666;
}
.kcqh_box .kcqh_top .text .bottom a:first-child {
  margin-left: 0;
  color: #364799;
  border: 1px solid #e9efff;
}
.kcqh_box .kcqh_top .text .bottom a i {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 5px;
  width: 20px;
  height: 20px;
}
.kcqh_box .kcqh_top .text .bottom a i.i1 {
  background: url(../images/words_icon4.png) no-repeat center center;
}
.kcqh_box .kcqh_top .text .bottom a i.i2 {
  background: url(../images/words_icon5.png) no-repeat center center;
}
.kcqh_box .kcqh_top .img {
  position: absolute;
  left: 0;
  top: -120px;
  width: 40.5%;
  line-height: 0;
  overflow: hidden;
}
.kcqh_box .kcqh_top .img img {
  width: 100%;
}
.kcqh_bottom {
  padding-top: 50px;
}
.kcqh_bottom .kcqh_text {
  min-height: 397px;
  margin-top: 40px;
  background: url(../images/kcqh_img2.png) no-repeat center top;
}
.kcqh_bottom .kcqh_text ol {
  padding-top: 10px;
}
.kcqh_bottom .kcqh_text ol li {
  float: left;
  margin-top: 32px;
  width: 402px;
}
.kcqh_bottom .kcqh_text ol li:nth-child(2n) {
  float: right;
}
.kcqh_bottom .kcqh_text ol li span {
  display: block;
  float: left;
  width: 52px;
  border-radius: 50%;
  line-height: 0;
  background: #fff;
  box-shadow: 0 0 10px rgba(54, 71, 153, 0.2);
}
.kcqh_bottom .kcqh_text ol li span img {
  border-radius: 50%;
}
.kcqh_bottom .kcqh_text ol li .text {
  float: right;
  width: 335px;
}
.kcqh_bottom .kcqh_text ol li .text h3 {
  color: #364799;
  font-size: 18px;
}
.kcqh_bottom .kcqh_text ol li .text p {
  color: #626262;
  font-size: 14px;
  line-height: 22px;
  margin-top: 5px;
}
.kcqh_bottom .bottom {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
}
.kcqh_bottom .bottom a {
  display: inline-block;
  text-align: center;
  margin: 0 16px;
  border-radius: 50px;
  width: 138px;
  height: 42px;
  line-height: 42px;
  border: 1px solid #e5e5e5;
  color: #666666;
}
.kcqh_bottom .bottom a:first-child {
  color: #364799;
  border: 1px solid #e9efff;
}
.kcqh_bottom .bottom a i {
  display: inline-block;
  margin-right: 8px;
  position: relative;
  top: 5px;
  width: 24px;
  height: 21px;
}
.kcqh_bottom .bottom a i.i1 {
  background: url(../images/cglx_icon.jpg) no-repeat center center;
}
.kcqh_bottom .bottom a i.i2 {
  background: url(../images/g_school_icon6.png) no-repeat center center;
}
.nxts_box {
  padding: 50px 0 60px;
}
.nxts_box .ol_spec li {
  margin-top: 40px;
}
.kaike {
  background: url(../images/kcqh_bg2.jpg) no-repeat center top;
  min-height: 478px;
}
.kaike .box {
  padding: 120px 0 0 500px;
}
.kaike .box h3 {
  color: #ffffff;
  font-size: 24px;
}
.kaike .box h3 span {
  font-size: 30px;
}
.kaike .box .name {
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
}
.kaike .box ol {
  margin-left: -15px;
  margin-top: 50px;
}
.kaike .box ol li {
  float: left;
  text-align: center;
  width: 130px;
  margin-right: 100px;
}
.kaike .box ol li:last-child {
  margin-right: 0;
}
.kaike .box ol li .img {
  width: 93px;
  height: 93px;
  margin: 0 auto;
}
.kaike .box ol li .t {
  color: #fff;
  margin-top: 5px;
}
.kcsz_box {
  padding: 50px 0 60px;
  border-bottom: 1px solid #e8e8e8;
}
.kcsz_box ol {
  margin-top: 40px;
}
.kcsz_box ol li {
  float: left;
  width: 378px;
  border: 1px solid #e5e5e5;
  border-bottom-width: 3px;
  margin-right: 33px;
}
.kcsz_box ol li:nth-child(3n) {
  margin-right: 0;
}
.kcsz_box ol li .img {
  width: 100%;
  line-height: 0;
}
.kcsz_box ol li .text {
  padding: 20px 15px;
}
.kcsz_box ol li .text h3 {
  color: #2d3c89;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.kcsz_box ol li .text .t {
  margin-top: 5px;
  color: #999999;
}
.kcsz_box ol li:hover {
  background: #de1910;
  border-bottom-color: #de1910;
}
.kcsz_box ol li:hover .text h3,
.kcsz_box ol li:hover .text p {
  color: #fff;
}
.xxsh_box {
  padding-top: 50px;
  height: 715px;
}
.slide {
  margin-top: -30px;
  width: 100%;
  min-height: 570px;
  overflow: hidden;
  position: relative;
}
.slide .img {
  overflow: hidden;
  position: absolute;
  transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s, z-index 0.4s;
}
.slide .img img {
  width: 100%;
}
.slide .img1 {
  width: 40%;
  height: 40%;
  top: 30%;
  left: -50%;
  z-index: 1;
}
.slide .img2 {
  width: 50%;
  height: 50%;
  top: 20%;
  left: -20%;
  z-index: 2;
}
.slide .img3 {
  width: 70%;
  height: 70%;
  top: 11%;
  left: 15%;
  z-index: 3;
}
.slide .img4 {
  width: 50%;
  height: 50%;
  top: 20%;
  left: 60%;
  z-index: 2;
}
.slide .img5 {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 110%;
  z-index: 1;
}
.shaixun_box {
  background: #f4f7fe;
  padding: 20px 0;
}
.shaixun_box ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #eaeef9;
  padding: 15px 0 10px;
}
.shaixun_box ul li span {
  color: #364799;
  float: left;
  background: url(../images/sx_bg.png) no-repeat center center;
  width: 96px;
  height: 30px;
  line-height: 30px;
  padding-left: 24px;
}
.shaixun_box ul li .text {
  float: right;
  width: 1090px;
}
.shaixun_box ul li .text a {
  margin: 0 5px 5px;
  display: block;
  float: left;
  line-height: 30px;
  color: #333333;
  border-radius: 3px;
  font-size: 14px;
  padding: 0 8px;
}
.shaixun_box ul li .text a:hover,
.shaixun_box ul li .text a.cur {
  background: #de1910;
  color: #fff;
}
.shaixun_box ul li:last-child {
  border-bottom: none;
}
.list_box {
  padding: 30px 0 80px;
}
.list_box .list {
  width: 70%;
}
.list_box .list ul {
  margin-bottom: 50px;
}
.list_box .list ul li {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(54, 71, 153, 0.1);
}
.list_box .list ul li .img {
  float: left;
  display: block;
  width: 228px;
  line-height: 0;
}
.list_box .list ul li .text {
  padding-top: 13px;
  float: right;
  width: 585px;
}
.list_box .list ul li .text .bt {
  color: #364799;
  font-size: 18px;
  font-weight: bold;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.list_box .list ul li .text .t {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
}
.list_box .list ul li .text .t p {
  padding-left: 20px;
}
.list_box .list ul li .text .t .d1 {
  background: url(../images/sx_icon1.jpg) no-repeat left 4px;
}
.list_box .list ul li .text .t .d2 {
  background: url(../images/sx_icon2.jpg) no-repeat left 5px;
}
.list_box .list ul li .text .t .d3 {
  background: url(../images/sx_icon3.jpg) no-repeat left 5px;
}
.list_box .list ul li .text .t .d4 {
  background: url(../images/sx_icon4.jpg) no-repeat left 4px;
}
.list_box .list ul li .text .bottom {
  margin-top: 16px;
}
.list_box .list ul li .text .bottom a {
  display: block;
  float: left;
  width: 104px;
  height: 34px;
  border: 1px solid #e7eeff;
  line-height: 32px;
  text-align: center;
  color: #4c59a1;
  margin-right: 16px;
  background: #f4f7fe;
}
.list_box .list ul li .text .bottom a:hover {
  background: #de1910;
  color: #fff;
  border-color: #de1910;
}
.list_box .list ul li:last-child {
  margin-bottom: 0;
}
.list_box .right {
  width: 27%;
  box-shadow: 0 0 10px rgba(54, 71, 153, 0.1);
}
.list_box .right h3 {
  color: #de1910;
  font-size: 18px;
  background: #f8f8f8 url(../images/sx_icon5.jpg) no-repeat 10px center;
  font-weight: normal;
  line-height: 50px;
  padding: 0 10px 0 34px;
}
.list_box .right .f_menu {
  margin-bottom: 20px;
}
.list_box .right .f_menu ul li {
  padding: 10px;
}
.list_box .right .f_menu ul li .img {
  line-height: 0;
  overflow: hidden;
}
.list_box .right .f_menu ul li .img img {
  width: 100%;
}
.list_box .right .f_menu ul li .t {
  color: #666666;
  font-size: 16px;
  line-height: 40px;
  padding-left: 15px;
  background: #f7f7f7;
  position: relative;
}
.list_box .right .f_menu ul li .t:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -3.5px;
  width: 33px;
  height: 7px;
  background: url(../images/sx_icon6.jpg) no-repeat center center;
}
.list_box .right .f_menu ul li:hover .t {
  color: #fff;
  background: #de1910;
}
.list_box .right .f_menu ul li:hover .t:before {
  background: url(../images/sx_icon7.jpg) no-repeat center center;
}
.list_show {
  width: 70%;
}
.list_show .bt {
  color: #636363;
  font-size: 18px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 15px;
  margin-top: 20px;
}
.list_show .bt i {
  display: inline-block;
  width: 22px;
  height: 22px;
  position: relative;
  top: 5px;
  margin-right: 10px;
}
.list_show .text {
  margin-top: 15px;
  color: #636363;
  font-size: 14px;
  line-height: 24px;
}
.list_show .text_box1 h1 {
  color: #de1910;
  font-size: 26px;
}
.list_show .text_box1 .name {
  margin-top: 6px;
  color: #364799;
  font-size: 18px;
}
.tskc_box {
  background: url(../images/tskc_bg.jpg) no-repeat center center;
  background-size: 100% 100%;
  padding: 50px 0 60px;
}
.tskc_box .tskc_list {
  margin-top: 35px;
  margin-left: -15px;
  width: 1230px;
}
.tskc_box .tskc_list .box {
  margin: 0 15px;
}
.tskc_box .tskc_list .box a {
  display: block;
  background: #f9f9f9;
  padding: 8px;
}
.tskc_box .tskc_list .box .img {
  line-height: 0;
  overflow: hidden;
}
.tskc_box .tskc_list .box .img img {
  width: 100%;
}
.tskc_box .tskc_list .box .text {
  padding: 15px 0;
}
.tskc_box .tskc_list .box .text h3,.tskc_box .tskc_list .box .text .t {
  font-weight: bold;
  color: #000000;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.tskc_box .tskc_list .box .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}
.tskc_box .tskc_list .box:hover a {
  background: #e01c17;
}
.tskc_box .tskc_list .box:hover .text h3,
.tskc_box .tskc_list .box:hover .text p {
  color: #fff;
}
.tskc_box .tskc_list .slick-prev {
  background: url(../images/left3.png) no-repeat center center;
  left: -80px;
}
.tskc_box .tskc_list .slick-next {
  background: url(../images/right3.png) no-repeat center center;
  right: -80px;
}
.tskc_box .tskc_list .slick-prev,
.tskc_box .tskc_list .slick-next {
  border: none;
  width: 62px;
  height: 62px;
  margin-top: -31px;
}
.tskc_box .bottom {
  margin-top: 40px;
  text-align: center;
}
.tskc_box .bottom a {
  display: inline-block;
  width: 156px;
  line-height: 46px;
  background: #ffffff;
  border-radius: 50px;
  color: #666666;
}
.tskc_box .bottom a i {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/tskc_icon1.jpg) no-repeat center center;
  background-size: 100% 100%;
  position: relative;
  top: 5px;
  margin-right: 10px;
}
.phone_box {
  display: none;
  margin-top: 30px;
}
.phone_box ul li {
  float: left;
  width: 100%;
  border-top: 1px solid #3a4b9b;
}
.phone_box ul li .bt {
  color: #b1b1b1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 15px;
  color: #ffffff;
  font-size: 16px;
  line-height: 55px;
  cursor: pointer;
  background: #32418d;
  position: relative;
}
.phone_box ul li .bt:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -6px;
  width: 20px;
  height: 12px;
  background: url(../images/school_icon8.png) no-repeat center center;
  background-size: 100% 100%;
}
.phone_box ul li .text {
  margin-top: 15px;
  padding-bottom: 20px;
  display: none;
}
.phone_box ul li .text img {
  width: 100%;
}
.phone_box ul li .text h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #666;
}
.phone_box ul li .text p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 18px;
}
.phone_box ul li .text a {
  display: inline-block;
  margin-top: 10px;
}
.foot_bottm {
    background: #334391;
    color: #cccccc;
    font-size: 14px;
    padding: 16px 0;
}
.w1200 {
    width: 1200px;
    margin: 0 auto;
}
.foot_bottm span {
    display: block;
    /*float: left;*/
	text-align:center;
}
.foot_bottm .fnav a {
    color: #fff;
}

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

.pop_box{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(../images/pop_bg.png);
}
.pop_box .img{
	width: 296px;
	margin: 0 auto;
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
/**2018-4-12**/
.words_school_text .slick-prev,
.words_school_text .slick-next {
  border: none;
}
.words_school_con {
  margin-top: 10px;
  margin-left: -5px;
  width: 1208px;
}
.words_school_con .text {
  padding: 20px 10px;
  background: #f7f9ff;
  transition: all .5s;
  border: 1px solid #c0cce8;
  cursor: pointer;
  margin: 0 5px;
}
.words_school_con .text h3,.words_school_con .text .t {
  transition: all .5s;
  color: #666666;
  font-size: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 10px;
  position: relative;
}
.words_school_con .text h3:before,.words_school_con .text .t:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 1px;
  background: #9ca4cc;
  transition: all .5s;
}
.words_school_con .text p {
  transition: all .5s;
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}
.words_school_con .slick-current .text {
  background: #e01812;
}
.words_school_con .slick-current .text h3,
.words_school_con .slick-current .text .t,
.words_school_con .slick-current .text p {
  color: #fff;
}
.words_school_con .slick-current .text h3:before,.words_school_con .slick-current .text .t:before {
  background: #fff;
}
.fuwu_div_text {
  margin-top: 30px;
  margin-left: -10px;
}
.fuwu_div_text .text {
  padding: 35px 22px;
  border: 1px solid #c0cce8;
  margin: 0 10px;
}
.fuwu_div_text .text .bt {
  color: #666666;
  font-size: 14px;
  padding-bottom: 15px;
  position: relative;
}
.fuwu_div_text .text .bt:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background: #848fc3;
}
.fuwu_div_text .text h3,.fuwu_div_text .text .t {
  color: #666666;
  font-size: 20px;
  font-weight: normal;
  margin-top: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.fuwu_div_text .text p {
  margin-top: 5px;
  color: #999999;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
}
.fuwu_div_text .slick-current .text {
  background: url(../images/spec_bg2.jpg) no-repeat center center / cover;
}
.fuwu_div_text .slick-current .text .bt,
.fuwu_div_text .slick-current .text h3,
.fuwu_div_text .slick-current .text .t,
.fuwu_div_text .slick-current .text p {
  color: #fff;
}
.fuwu_div_text .slick-current .text .bt:before {
  background: #fff;
}
.zy_sys_text {
  margin-top: 30px;
  margin-left: -10px;
}
.zy_sys_text .text {
  text-align: center;
  border: 1px solid #d7d6d6;
  margin: 0 10px;
}
.zy_sys_text .text .img {
  line-height: 0;
  overflow: hidden;
}
.zy_sys_text .text .img img {
  width: 100%;
}
.zy_sys_text .text .t {
  line-height: 42px;
  color: #666666;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.zy_sys_text .slick-current .text .t {
  color: #364799;
}

/**2018-4-18**/
.pop_video {
  display: none;
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.pop_video .box {
  width: 50%;
  height: 500px;
  background: #fff;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.pop_video .box .shut {
  position: absolute;
  right: 1px;
  top: -38px;
  line-height: 0;
  width: 38px;
  cursor: pointer;
}

/*侧边*/
.sidebar-box{
    position: fixed;
    right:0;
   /* bottom:0;*/
    transform: translateY(-50%);
    -ms-transform:translateY(-50%); /* IE 9 */
    -moz-transform:translateY(-50%);    /* Firefox */
    -webkit-transform:translateY(-50%); /* Safari 和 Chrome */
    -o-transform:translateY(-50%);
    z-index:1000;
	top:45%;
}
.sidebar li{
    width:50px;
    height:50px;
    background-color: #EAEAEA;
    /*padding: 15px;*/
    position:relative;
    text-align:right;
    border-bottom: 1px solid #DBDBDB;
    transition:all 0.5s ease-in-out;
}
.sidebar li+li{

}
.sidebar li i{
    width:50px;
    height:49px;
    position: absolute;
    right:0;
    top:0;
    z-index:1100;
    background-color: #EAEAEA;
    transition:all 0.5s ease-in-out;
}

.sidebar li a{
    display:block;
    width:100%;
}
.sidebar li .text{
    width:220px;
    font-size:14px;
    color:#181818;
    font-weight: 600;
    position:absolute;
    left:50px;
    top:50%;
    transform: translateY(-50%);
    -ms-transform:translateY(-50%); /* IE 9 */
    -moz-transform:translateY(-50%);    /* Firefox */
    -webkit-transform:translateY(-50%); /* Safari 和 Chrome */
    -o-transform:translateY(-50%);
    text-align:left;
    z-index:10;
}
.sidebar li .icon01{
    background:url('../images/aside-img01.png') no-repeat center #EAEAEA;
}
.sidebar li .icon02{
    background:url('../images/aside-img02.png') no-repeat center #EAEAEA;
}
.sidebar li .icon03{

}
.sidebar li .icon04{
    background:url('../images/aside-img04.png') no-repeat center #EAEAEA;
}
.sidebar li .icon05{
    background:url('../images/aside-img05.png') no-repeat center #EAEAEA;
}
.sidebar li .icon06{
    background:url('../images/aside-img06.png') no-repeat center #EAEAEA;
}



.sidebar:hover li{
    width: 250px;
}
.sidebar:hover li .text{
    left:30px;
}
.sidebar li:hover{
    background-color: #181818;
}
.sidebar li:hover .text{
    color: #FFFFFF;
}
.sidebar li:hover .icon01{
    background:url('../images/aside-img001.png') no-repeat center #181818;
}
.sidebar li:hover .icon02{
    background:url('../images/aside-img002.png') no-repeat center #181818;
}
.sidebar li:hover .icon04{
    background:url('../images/aside-img004.png') no-repeat center #181818;
}
.sidebar li:hover .icon05{
    background:url('../images/aside-img005.png') no-repeat center #181818;
}
.sidebar li:hover .icon06{
    background:url('../images/aside-img006.png') no-repeat center #181818;
}
/**/
.cebian{
	height: 413px;
    width:127px;
	background:url('../images/fudong2.png') no-repeat center;
	}
	.bottom1{
		  padding-top:172px;
		  width:92px;
		  margin: 0 auto;
		text-align: center;
		    margin-left: auto;
    margin-right: 17%;
		  
		    }	
	.bottom1 ul li {
		    font-size:14px;
			
			padding-top:9px;
		   	
	}
	
	.bottom1 ul li a{
		      color:#fff;
	}
	.bottom1 ul li p{
		font-size:13px;
		color:#fff;
	}
	
	
	
	
/*联系我们增加内容2018.8.6*/
.xinzeng{
			margin-top: 25px;
		}
		
		
		.xinzeng li{
			float: left;
			width: 32%;
			margin-right: 2%;
			padding-bottom: 30px;
		}
		
		.xinzeng li:nth-child(3n){
			margin: 0;
		}
		
		.xinzeng li .gongjiao{
			font-size: 16px;
			color: #fff;
		}
		
		.xinzeng li div{
			margin-top: 10px;
			line-height: 15px;
		}
		
		.xinzeng li div h5{
			float: left;
			line-height: 15px;
			font-size: 14px;
			font-weight: initial;
			color: #fff;
			    margin-top: 3px;
		}
		
		.xinzeng li div span{
			float: left;
			padding: 3px;
			color: #fff;
			border: 1px solid #d3d3d3;
			line-height: 15px;
			margin-right:5px;
			font-size: 14px;
			    margin-bottom: 5px;
		}
		/*.xinzeng li div span:nth-last-child {
			margin: 0;
		}*/
		.contact_div2{
			    padding: 55px 0 40px;
		}
		@media (max-width: 640px){
			.xinzeng li {
			   
			    width: 48%;
			    margin-right: 1%;
			}
			.xinzeng li:nth-child(2n) {
			       float: right;
			    margin: 0;
			}
			.xinzeng li:nth-child(3) {
			   
			    margin-left: 1%;
			}
		}
		@media (max-width: 480px){
			.xinzeng li {
			   
			    width: 100%;
			}
		}	
		
/**2019-4-23**/
.course_tb {
  border-bottom: 1px solid #e5edff;
}
.course_tb ul li span {
  padding-left: 15px;
}
.course_box {
  padding: 30px 0 70px;
}
.course_box .tab_btn li {
  float: left;
  background: #364799;
  line-height: 40px;
  color: #fff;
  font-size: 15px;
  border-radius: 5px;
  padding: 0 22px;
}
.course_box .tab_btn li i {
  display: inline-block;
  width: 18px;
  height: 10px;
  margin-left: 10px;
  background: url(../images/Gcourse_icon1.png) no-repeat center center / cover;
}
.course_box .course_list {
  margin-top: 30px;
  margin-bottom: 15px;
}
.course_box .course_list li {
  float: left;
  width: 23.5%;
  box-shadow: 0 0 10px rgba(54, 71, 153, 0.1);
  margin-bottom: 2%;
  margin-right: 2%;
}
.course_box .course_list li:nth-child(4n) {
  margin-right: 0;
}
.course_box .course_list li .img {
  line-height: 0;
  overflow: hidden;
}
.course_box .course_list li .img img {
  transition: all 1.2s;
}
.course_box .course_list li .text {
  line-height: 56px;
  padding: 0 55px 0 20px;
  position: relative;
}
.course_box .course_list li .text:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -7px;
  width: 23px;
  height: 14px;
  background: url(../images/Gcourse_icon2.png) no-repeat center center / cover;
}
.course_box .course_list li .text h3 {
  color: #333333;
  font-size: 15px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.course_box .course_list li:hover .img img {
  transform: scale(1.2);
}
.course_list .course_list_item {
  float: left;
  width: 23.5%;
  box-shadow: 0 0 10px rgba(54, 71, 153, 0.1);
  margin-bottom: 2%;
  margin-right: 2%;
}
.course_list .course_list_item:nth-child(4n) {
  margin-right: 0;
}
.course_list .course_list_item .img {
  line-height: 0;
  overflow: hidden;
}
.course_list .course_list_item .img img {
  transition: all 1.2s;
}
.course_list .course_list_item .text {
  line-height: 56px;
  padding: 0 55px 0 20px;
  position: relative;
}
.course_list .course_list_item .text:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -7px;
  width: 23px;
  height: 14px;
  background: url(../images/Gcourse_icon2.png) no-repeat center center / cover;
}
.course_list .course_list_item .text h3 {
  color: #333333;
  font-size: 15px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.course_list .course_list_item:hover .img img {
  transform: scale(1.2);
}
.courseshow_box {
  padding: 60px 0;
}
.courseshow_box .img {
  float: left;
  width: 50%;
  line-height: 0;
}
.courseshow_box .text {
  float: right;
  width: 46%;
  padding-top: 1vw;
}
.courseshow_box .text h3 {
  color: #364799;
  font-size: 24px;
  font-weight: normal;
  border-bottom: 1px solid #dedede;
  padding-bottom: 20px;
}
.courseshow_box .text .t {
  margin-top: 24px;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}
.courseshow_box .text .t p {
  margin-top: 10px;
}
.courseshow_box .text .ewm {
  margin-top: 30px;
}
.courseshow_box .text .ewm img {
  width: 126px;
  float: left;
}
.courseshow_box .text .ewm span {
  float: left;
  color: #333333;
  font-size: 12px;
  line-height: 20px;
  margin-left: 28px;
  padding-top: 2vw;
}
.courseshow_box2 {
  background: url(../images/courseshow_bg.jpg) no-repeat center center / cover;
  padding: 50px 0 60px;
}
.courseshow_box2 .title h3,
.courseshow_box2 .title .t,
.courseshow_box2 .title p {
  color: #fff;
}
.courseshow_box2 .title h3 span,
.courseshow_box2 .title .t span,
.courseshow_box2 .title p span {
  color: #fff;
}
.courseshow_box2 .box {
  margin-top: 35px;
  background: #fff;
}
.courseshow_box2 .box .img {
  float: right;
  width: 49%;
  line-height: 0;
}
.courseshow_box2 .box .text {
  float: left;
  width: 47%;
 /* padding: 2vw 0 0 2.5vw; */ 
 padding: 2vw  2.5vw;
}
.courseshow_box2 .box .text h3 {
  color: #364799;
  font-size: 24px;
  font-weight: normal;
  border-bottom: 1px solid #dedede;
  padding-bottom: 20px;
}
.courseshow_box2 .box .text .t {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  margin-top: 16px;
}

.courseshow_box2 .box .text .t img{
	max-width: 100%;
	min-width: 100%;
}

.courseshow_box2 .box .text a {
  margin-top: 40px;
  display: inline-block;
  background: #364799;
  color: #fff;
  line-height: 38px;
  font-size: 12px;
  padding: 0 15px;
}
.courseshow_box2 .box .text a i {
  display: inline-block;
  width: 15px;
  height: 8px;
  background: url(../images/Gcourse_icon3.png) no-repeat center center / cover;
  position: relative;
  top: -1px;
  margin-left: 10px;
}
.courseshow_box3 {
  padding: 50px 0 60px;
}
.courseshow_box3 .box {
  position: relative;
  top: -10px;
}
.courseshow_box3 .box .slide {
  width: 100%;
  min-height: 180px;
  overflow: hidden;
  position: relative;
}
.courseshow_box3 .box .slide .img {
  overflow: hidden;
  position: absolute;
  transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s, z-index 0.4s;
}
.courseshow_box3 .box .slide .img .btn_video {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  opacity: 0;
}
.courseshow_box3 .box .slide .img img {
  width: 100%;
}
.courseshow_box3 .box .slide .img1 {
  width: 40%;
  height: 40%;
  top: 30%;
  left: -50%;
  z-index: 1;
}
.courseshow_box3 .box .slide .img2 {
  width: 54%;
  height: 52%;
  top: 22%;
  left: -20%;
  z-index: 2;
}
.courseshow_box3 .box .slide .img3 {
  width: 61%;
  height: 70%;
  top: 13%;
  left: 19.5%;
  z-index: 3;
}
.courseshow_box3 .box .slide .img3 .btn_video {
  opacity: 1;
}
.courseshow_box3 .box .slide .img4 {
  width: 54%;
  height: 52%;
  top: 22%;
  left: 60%;
  z-index: 2;
}
.courseshow_box3 .box .slide .img5 {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 110%;
  z-index: 1;
}
.courseshow_box3 .box .slide-bt {
  position: absolute;
  left: 50%;
  bottom: 9%;
  z-index: 10;
}
.courseshow_box3 .box .slide-bt span {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #b3b3b3;
  float: left;
  margin: 12px;
  border-radius: 50%;
}
.courseshow_box3 .box .slide .slide-bt .on {
  background: #b3b3b3;
  border-color: #b3b3b3;
}
.courseshow_box3 .box .btn {
  z-index: 11;
}
.courseshow_box3 .box .btn button {
  border: none;
  cursor: pointer;
  width: 17px;
  height: 33px;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.courseshow_box3 .box .btn button.f-l {
  left: -60px;
  background: url(../images/course_left.jpg) no-repeat center center / cover;
}
.courseshow_box3 .box .btn button.f-r {
  right: -60px;
  background: url(../images/course_right.jpg) no-repeat center center / cover;
}
.courseshow_box4 {
  background: url(../images/courseshow_bg2.jpg) no-repeat center center / cover;
  padding: 50px 0 60px;
  margin-top: -80px;
}
.courseshow_box4 .title h3,
.courseshow_box4 .title .t,
.courseshow_box4 .title p {
  color: #fff;
}
.courseshow_box4 .title h3 span,
.courseshow_box4 .title .t span,
.courseshow_box4 .title p span {
  color: #fff;
}
.courseshow_box4 .course_list {
  margin-top: 35px;
  padding-bottom: 50px;
}
.courseshow_box4 .course_list ol {
  background: #fff;
  border-top: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
}
.courseshow_box4 .course_list ol li {
  float: left;
  width: 25%;
  border-bottom: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  position: relative;
  padding: 12px 12px 40px 60px;
}
.courseshow_box4 .course_list ol li .num {
  color: #e01813;
  font-size: 30px;
  opacity: 0.3;
  text-align: right;
  display: block;
  font-style: oblique;
  font-family: arial;
  font-weight: bold;
}
.courseshow_box4 .course_list ol li h3 {
  color: #333333;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 5px;
}
.courseshow_box4 .course_list ol li p {
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}
.courseshow_box4 .course_list .slick-arrow {
  width: 17px;
  height: 33px;
  border: none;
  transform: translateY(-50%);
  margin-top: 0;
}
.courseshow_box4 .course_list .slick-prev {
  background: url(../images/course_left2.png) no-repeat center center / cover;
  left: -60px;
}
.courseshow_box4 .course_list .slick-next {
  background: url(../images/course_right2.png) no-repeat center center / cover;
  right: -60px;
}
.courseshow_box4 .course_list .slick-dots {
  bottom: 0;
}
.courseshow_box4 .course_list .slick-dots li button {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50px;
  background: none;
}
.courseshow_box4 .course_list .slick-dots li.slick-active button {
  background: #fff;
}
.courseshow_box5 {
  padding: 50px 0 60px;
}
.courseshow_box5 ol {
  margin-top: 40px;
}
.courseshow_box5 ol li {
  float: left;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.courseshow_box5 ol li:nth-child(3),
.courseshow_box5 ol li:nth-child(4),
.courseshow_box5 ol li:last-child {
  margin-right: 0;
}
.courseshow_box5 ol li:nth-child(4),
.courseshow_box5 ol li:last-child {
  width: 100%;
}
.courseshow_box5 ol li input {
  border: 1px solid #d1d1d1;
  background: none;
  width: 100%;
  padding: 15px 15px;
  -webkit-appearance: none;
  font-family: "微软雅黑";
  font-size: 14px;
}
.courseshow_box5 ol li textarea {
  width: 100%;
  border: 1px solid #d1d1d1;
  background: none;
  height: 90px;
  font-family: "微软雅黑";
  -webkit-appearance: none;
  font-size: 14px;
  padding: 15px;
}
.courseshow_box5 ol li a, .courseshow_box5 ol li button{
  margin: 0 auto;
  width: 300px;
  display: block;
  line-height: 40px;
  background: #364799;
  color: #fff;
  font-size: 14px;
  text-align: center;
	border: none;
}
.courseshow_box5 ol li a i {
  display: inline-block;
  background: url(../images/Gcourse_icon4.png) no-repeat center center / cover;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  position: relative;
  top: 4px;
}

/* 弹出样式
.pop_video {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99;
}
.pop_video .box {
  width: 1160px;
  margin: 10% auto 0;
  position: relative;
}
.pop_video .box .guanbi {
  position: absolute;
  top: -68px;
  right: 0;
  line-height: 0;
  cursor: pointer;
}
.pop_video .box .shipin {
  margin-top: 68px;
  line-height: 0;
} */

/*19-5-6首页流程t*/
.home_circuit .t_liucheng{
	 margin-top: 30px;
}

.home_circuit .t_liucheng li{
	 width: 23.57%;
	 float: left;
	 border: 1px solid #cccccc;
	 border-radius: 15px;
	 padding-left: 30px;
	 padding-bottom: 22px;
	 padding-right: 15px;
	 background: #fff;
	 margin-right: 1.9%;
	 margin-bottom: 20px;
	 position: relative;
}

.home_circuit .t_liucheng li:before{
	content: "";
	background: url(../images/t_liucheng_jt.png) center center/cover;
	background-repeat: no-repeat;
	width: 10px;
	height: 20px;
	position: absolute;
	right: -6%;
  top: 45%;
}

.home_circuit .t_liucheng li:nth-child(4n):before{
	background: none;
}
.home_circuit .t_liucheng li:nth-child(4n){
	margin-right: 0;
}
.home_circuit .t_liucheng li i{
	font-size: 22px;
	color: #acaccf;
	display: block;
	font-weight: initial;
	text-align: right;
	margin-top: 15px;
	
}

.home_circuit .t_liucheng li .t_icon{
	line-height: 0;
	margin-top: -10px;
}

.home_circuit .t_liucheng li  h2,.home_circuit .t_liucheng li  .t{
	color: #333399;
	font-size: 18px;
	font-weight: initial;
	margin: 15px 0 10px;
}
.home_circuit .t_liucheng li p{
	color: #a4a4a4;
	font-size: 14px;
	font-weight: initial;
	height: 56px;
	overflow: hidden;
}
.course_box .tab_btn li{
	position: relative;
	cursor: pointer;
}
.course_box .tab_btn li .paixu{
	position: absolute;
	z-index: 2;
	left: 0;
	top: 100%;
	width: 100%;
	background: #fff;
	border: 1px solid #e5edff; 
	text-align: center;
	padding: 5px 10px;
	display: none;
}
.course_box .tab_btn li .paixu a{
	display: block;
	color: #364799;
	font-size: 14px;
	line-height: 35px;
	border-bottom: 1px solid #e5edff;
}
.course_box .tab_btn li .paixu a:last-child{
	border-bottom: none;
}
.course_box .tab_btn li .paixu a:hover{
	color: #de1910;
}


/*查找学校*/

.location {border-bottom:1px solid #f1f1f1; width: 100%; background: #fff; padding:10px 0; }
.location a { font-size: 16px;color:#999999; }
.location a.cur { color:#333; }
.location p { float: left; font-size: 16px;color:#999999; line-height: 36px; }
.location .home { background: url(../images/location.png) no-repeat left center; padding-left:28px; }
.location a.back {display: none; float: right; width: 120px; height: 36px; line-height: 36px; text-align: center; font-size: 14px; color:#fff; background: #4356b3; border-radius: 3px; }



.a-a { background: #fafafa; padding:20px 0 150px; }
.a-b { box-sizing: border-box; }
.a-ba { float: left; width: 880px; }
.a-baa { background: #fff; width: 100%; box-sizing: border-box; padding:19px; border:1px solid #f1f1f1; }
.a-baa .pic {float: left; width: 421px;}
.a-baa .con {float: right; width: 390px; padding-top:70px;}
.a-baa .con .t1 { font-size: 24px;color:#364799; margin-bottom:3px; }
.a-baa .con .t2 { font-size: 18px;color:#333333; line-height: 1.8; }
.a-baa .con .t2 .t_pcz_2{
	color: #4356b3;
	    font-size: 20px;
}
.a-bb { float: right; width: 300px; }
.a-bb .htit { height: 50px; line-height: 50px; background: url(../images/a7.png) no-repeat 14px center #4a59a1; padding-left:50px; font-size: 16px; color:#fff; }
.a-bba { border:1px solid #f1f1f1; border-top:none; background: #fff; padding:15px 15px 0; box-sizing: border-box; }
.a-bba ul li { padding-bottom:20px; border-bottom:1px dashed #f1f1f1; margin-bottom:20px;}
.a-bba ul li .con .t { font-size: 18px;color:#364799; margin:6px 0 5px; }
.a-bba ul li .con .c { font-size: 14px;color:#666666; }
.a-bba ul li.sign3 { border-bottom:none;margin-bottom:0; }
.a-bab { margin-top:20px; }
.a-bab .hd { height: 50px; line-height: 50px; background: #4a59a1; }
.a-bab .hd ul li {float: left; width: 16.6666666%; text-align: center; cursor: pointer; font-size: 16px;color:#fff; }
.a-bab .hd ul li:hover,.a-bab .hd ul li.on,.a-bab .hd ul li.cur { background: #df160c; }
.a-bab .hd span { display: none; }
.a-bab .bd { background: #fff; padding:21px 18px 51px; border:1px solid #f1f1f1; border-top:none; }
.a-bab .bd ul li {display: none;}
.a-bab .bd ul li.show { display: block; }
.a-bac .pic1 { float: left; width: 420px; overflow: hidden; }
.a-bac .pic2 { float: left; width: 170px; padding:8px; border:1px solid #eee; margin:58px 10px 0 22px; overflow: hidden; }
.a-bac .con { float: left; width: 210px; padding-top:100px; }
.a-bac .con .t p { font-size: 16px;color:#333333; line-height: 1.6; }
.a-bac .con .c { font-size: 14px;color:#666; }
.a-bad {text-align: center; margin-top:60px; border-top:1px solid #f1f1f1;  }
.a-bad a.prev { float: left; max-width: 360px; overflow: hidden; }
.a-bad a.next { float: right; max-width: 360px; overflow: hidden; }
.a-bad a { display: inline-block; margin-top:35px; line-height: 28px; font-size: 16px; color:#666;  }
.a-bad a:hover { color:#4a59a1; border-bottom:1px solid #4a59a1; }

/*学校概况*/
.a-bae .pic { float: left;width: 420px; }
.a-bae .con { float: right; width: 400px; overflow: auto;max-height: 302px;}

/*学部学科*/
.a-baf {  }
.a-baf dl dd { margin-bottom:10px; }
.a-baf dl dd .t { box-shadow: 0px 2px 4px 0px rgba(102, 102, 102, 0.14); font-size: 16px;color:#333333; line-height: 50px; padding-left:28px; border-left:2px solid #4a59a1; background: #f4f7fe; }
.a-baf dl dd .c { box-shadow: 0px 2px 4px 0px rgba(102, 102, 102, 0.14); font-size: 14px;color:#333333; background: #fff; padding: 20px 20px 20px 30px; }

/*入室情报*/
.a-bag {  }
.a-baga { padding-bottom:20px; border-bottom:1px solid #f2f2f2; margin-bottom:30px; }
.a-baga p { font-size: 16px;color:#333; line-height: 2.4; }
.a-bagb .tit { font-size: 18px;color:#333; margin-bottom:20px; }
.a-bagc { float: left; width: 32%; }
.a-bagd {background: #364799;}
.a-bagc span { cursor: pointer; position: relative; display: block; padding:24px 0 24px 50px; box-sizing: border-box; line-height: 1; border-bottom:1px solid #4655a1; font-size: 16px;color:#ffffff;  }
.a-bage { float: right; width: 68%; box-sizing: border-box; padding:30px 22px 35px 25px; background: #f4f7fe; }
.a-bagf .t { font-size: 18px; color:#26327a; padding-bottom:12px; position: relative; margin-bottom:20px; }
.a-bagf .t:after { content:''; width: 56px; height: 2px; background: #26327a; position: absolute; left:0; bottom:0; }
.a-bagf {display: none;}
.a-bage .show { display: block; }
.a-bagc span:hover:after,.a-bagc span.on:after { content:''; width: 100%; height: 2px; background: #df1810; position: absolute; left:0; bottom:-1px; }
.a-bagc span:hover,.a-bagc span.on { background: #26327a; }

/*課程*/
.a-bahb {margin-bottom:2%; width: 49%; float: left; box-sizing: border-box; border:1px solid #f2f2f2; }
.a-baha .sign { float: right; }
.a-bahb .con { float: left; padding:60px 0 0 24px; }
.a-bahb .con .t1 { font-size: 18px;color:#333333; margin-bottom:3px; }
.a-bahb .con .c { font-size: 16px; line-height: 1.8; color:#666666; }
.a-bahb .pic { float: right; width: 260px; text-align: right; }
.a-bahb .pic img { width: 100%; vertical-align: top; }

/*大学列表*/
.b-b { padding:25px 0; box-shadow: 0px 11px 27px 0px rgba(236, 236, 236, 0.69); }
.b-b .select { float: left; width: 24%; }

.t_pailie{text-align: right;width: 146px;float: right;}
.t_pailie button{
	cursor: pointer;
	border:none;
	height: 36px;
	line-height: 36px;
	text-align: center;
	font-size: 14px;
	color: #fff;
	background: #4356b3;
	border-radius: 3px;
	width:146px;
	margin-bottom:10px;
}
.t_pailie button:nth-child(3){
	margin-bottom:0;
}
.b-b .select4 { float: right; width: 23%;}
.b-b .select p { line-height: 50px; font-size: 16px;color:#666666; float: left; }
.b-b .select .sel-con {height: 50px; line-height: 48px;padding-left:10px; position: relative; box-sizing: border-box; border:1px solid #efefef; width: 210px; float: left; }
.b-b .select4 .sel-con {width: 100%;}
.b-b .select .sel-con .t .val { font-size: 16px;color:#666; }
.b-b .select .sel-con .t { cursor: pointer; position: relative; }
.b-b .select .sel-con .t span { position: absolute; display: block; width: 48px; height: 48px; background: url(../images/b1.jpg) no-repeat center; border-left:1px solid #efefef; top:0; right:0; }
.b-b .select .sel-con ul { display: none; padding: 10px 0; width: 100%; position: absolute; left:0; top:48px; background: #fff; z-index: 100; /*max-height: 230px;overflow: auto;*/}
.b-b .select .sel-con ul li { font-size: 14px;color:#666; line-height: 36px; padding-left:10px; border-bottom:1px solid #efefef; }

.b-b .select .selectx { float: left; }
.b-b .select .selectx a { margin-right:28px; padding-right:21px; background: url(../images/c11.png) no-repeat right center; font-size: 16px;color:#666; display: inline-block; line-height: 50px; vertical-align: top; }
.b-b .select .selectx a:hover,.b-b .select .selectx a.cur { background: url(../images/c10.png) no-repeat right center;color:#364799; }


/* 2020-7-13 */
.b-b .select {
  width: 20%;
}
.b-b .select3 { float: left; width: 25%; }
.b-b .select .sel-con {
  width: 170px;
}

.b-b .select02 {
  width: 28%;
}

.b-b .select4 {
  float: left;
  width: 17%;
}

.b-b .select4 .sel-con {
  width: 100%;
}

.b-b .select5 {
  width: 14%;
  float: right;
}

.val0 {
  color: #666;
  font-size: 16px;
}


.b-b .select .select {
  width: 38%;
}

.b-b .select .select .sel-con {
  max-width: 210px;
  width: 100%;
}


.b-c { padding:40px 0 130px; background: #fafafa; width: 100%; }

.b-c ul li { background: #fff; padding:18px; box-sizing: border-box; margin-bottom:20px;position: relative;}
.b-c ul li .pic { float: left; width: 353px; overflow: hidden; }
.b-c ul li .con { /*padding-top:25px;*/padding-top:2px; float: right; width: 765px; margin-right:10px;}
.b-c ul li .con .t1 { font-size: 24px;color:#333; line-height: 1;}
.b-c ul li .con .t1 a{
	color:#333;
}
.b-c ul li .con .t2 .t_pcz{
	color: #4356b3;
	font-size: 20px;
}
.b-c ul li .con .t2 { font-size: 18px;color:#333; line-height: 1; margin:15px 0;}
.b-c ul li .con .t2 span { display: inline-block; margin-right:30px;margin-bottom: 5px;}
.b-c ul li .con .c { font-size: 16px;color:#666; line-height: 2; }
.b-c ul li .con .t1 span { font-size: 18px; display: inline-block; margin-left:20px; color:#666; }
.b-c ul li .con a.more { display: inline-block; margin-top:20px; font-size: 16px;color:#666666; width: auto;/* position: absolute; */bottom: -1px;}
.b-c ul li:hover .con a.more { width: auto; border-bottom:1px solid #364799; color:#364799; }
.b-c ul li:hover .con .t1 { color:#364799; }
.b-c ul li:hover { box-shadow: 0px 0px 21px 0px rgba(102, 102, 102, 0.17); }

/*高中详情页*/
.c-a .hd ul li {width: 20%;}
.c-aa {}
.c-aa .pic { float: left; width: 420px;position: relative;}
.c-aa .pic .bofang{position: absolute;top: 38%;left: 43%;width: 60px;}
.c-aa .con {float: right; width: 400px;}
.c-aa .con .t { font-size: 18px; color:#333333; }
.c-aa .con .c { font-size: 14px; color:#666666; line-height: 2; margin-top:5px; }
.c-ab { margin-top:40px; }
.c-ab a {background: #4a59a1; border-radius: 6px; display: inline-block; padding:15px 42px; margin-right:20px; border:1px solid #efefef; font-size: 16px;/* color:#666; */color:#fff;}
.c-ab a:hover {  border:1px solid #4a59a1; background: #4a59a1;color:#fff; }
.c-ac { font-size: 14px;color:#999; margin-top:20px; }


.c-bb { margin-bottom:15px; }
.c-bb .t { position: relative; line-height: 50px; font-size: 16px;color:#333333; padding-left:26px; border-left:2px solid #4a59a1; background: #f4f7fe; }
.c-bb .t span { display: block; width: 30px; height: 50px; position: absolute; right:17px; top:0; background: url(../images/c3.png) no-repeat center; }
.c-ba .cur .t span { background: url(../images/c2.png) no-repeat center; }
.c-ba .cur .t { border-left:2px solid #df160c; }
.c-bb .c { display: none; box-shadow: 0px 0px 13px 0px rgba(102, 102, 102, 0.22); padding:20px 20px 15px 40px; }
.c-bb .c p { font-size: 14px;color:#666; line-height: 2; margin-bottom:8px; }
.c-bb .c p span { color:#000000; font-style: 16px; font-family: "微软雅黑"; }
.c-bc .tit { margin:15px 0 20px; font-size: 18px;color:#333; }
.c-bc .c p { font-size: 14px;color:#666; line-height: 2; }
.c-bc .c p span { color:#333; }
.c-bc a.btn {display: block; width: 170px; height: 48px; line-height: 48px; text-align: center; font-size: 16px;color:#fff; background: #4a59a1; border-radius:2px; margin-top:25px;}

.c-c img { max-width: none!important; }
#allmap { width: 100%; height: 320px; }
.c-cc { float: left; width: 430px; }
.c-cb .pic { float: right; width: 396px; box-sizing: border-box; border-right:6px solid #fafafa; }
.c-cb .pic img { width: 100%; }
.c-cc .t {font-size: 18px;color:#333; margin-bottom:10px;}
.c-cb {margin-bottom:20px; padding-bottom:20px; border-bottom:1px solid #e2e2e2;}
.c-cc .c { font-size: 14px;color:#666; line-height: 2; }
.c-cc .c p span { color:#333; }

.c-d {}
.c-f .t { font-size: 18px;color:#333; margin-bottom:10px; }
.c-d p { font-size: 14px;color:#666; line-height: 2; }
.c-f .c-d { padding-bottom:20px; border-bottom:1px solid #e2e2e2; margin-bottom:20px; }


/*高中搜索*/
input { -webkit-appearance:none;}
.d-a { height: 677px; box-sizing: border-box; overflow: hidden; padding:50px 0 120px; width: 1920px; position: relative; left:50%; top:0; margin-left:-960px; background: url(../images/c7.jpg) no-repeat center #fafafa; }
.d-a {  }
.d-ba {border-radius: 8px;box-shadow: 0px 3px 9px 0px rgba(51, 51, 51, 0.08); float: left; width: 590px; background: #fff; box-sizing: border-box; padding:25px 0 46px;  }
.d-ba .t {padding: 5px 0; font-size: 24px;color:#333333; padding-left:78px; background: url(../images/c8.png) no-repeat 36px center; }
.d-bb { border-bottom:1px solid #e2e2e2; box-sizing: border-box; padding-left:18px; }
.d-bb ul li { cursor: pointer; position: relative; line-height: 60px; float: left; margin: 0 18px;font-size: 18px; }
.d-bb ul li span { display: none; width: 100%; height: 2px; background: #e01a11; position: absolute; left:0; bottom:-1px; }
.d-bb ul li:hover span,.d-bb ul li.cur span { display: block; }
.d-bb ul li:hover,.d-bb ul li.cur { color:#e01a11; }
.d-bc { padding:22px 40px 0 35px;  }
.d-bc li {float: left; width: 100%; margin-bottom:18px; position: relative; }
.d-bc li span { float: left; display: inline-block; width: 75px; line-height: 50px; font-size: 16px;color:#666666; }
.d-bc li.sign1 select { position: relative;z-index: 5;background: none;float: right; -webkit-appearance: none; appearance: none; font-size: 16px;color:#333; padding-left:10px; width: 436px; height: 50px; box-sizing: border-box;  border:1px solid #ebebeb; border-radius: 4px; }
.d-bc li.sign4 input { float: right; -webkit-appearance: none; appearance: none; font-size: 16px;color:#333; padding-left:10px; width: 436px; height: 50px; box-sizing: border-box;  border:1px solid #ebebeb; border-radius: 4px; }
.d-bc li.sign2 { float: left; width: 277px; }
.d-bc li.sign3 { float: right; width: 198px; }
.d-bc li .relative { position: relative; }
.d-bc li.sign2 select { float: right; -webkit-appearance: none; appearance: none; font-size: 16px;color:#666; padding-left:10px; width: 198px; height: 50px; box-sizing: border-box;  border:1px solid #ebebeb; border-radius: 4px; position: relative;z-index: 9;background: none;}
.d-bc li.sign3 select { float: right; -webkit-appearance: none; appearance: none; font-size: 16px;color:#666; padding-left:10px; width: 198px; height: 50px; box-sizing: border-box;  border:1px solid #ebebeb; border-radius: 4px; position: relative;z-index: 9;background: none;}
.d-bc li.sign3 i { position: absolute; width: 20px; height: 1px; background: #ebebeb; position: absolute; left:-30px; top:50%; }
.d-bc li em {background: url(../images/c9.png) no-repeat center; display: block; width: 48px; border-left:1px solid #ebebeb; position: absolute; right:0; top:1px; height: 48px; }
.d-bc li i {float: left; position: relative; font-size: 16px; color:#666; line-height: 50px; font-style: normal; }
.d-ba .d-bc li.sign5 label { font-size: 16px;color:#666666; line-height: 50px; }
.d-bc li.sign5 input { background: url(../images/c11.png) no-repeat center; }
.d-bc li i  b { font-weight: normal; }
.d-ba .d-bc li.sign5 input[type="radio"] {width: 30px;height: 20px;opacity: 0;}
.d-ba .d-bc li.sign5 label {position: absolute;left: 35px;top: 50%;margin-top:-7px;width: 15px;height: 15px;border: 1px solid #999;}
.d-ba .d-bc li.sign5 input:checked+label {background-color: #364799;border: 1px solid #364799;}
.d-ba .d-bc li.sign5 input:checked+label::after {position: absolute;content: "";width: 5px;height: 10px;top: -1px;left: 4px;border: 2px solid #fff;border-top: none;border-left: none;transform: rotate(45deg)}
.d-bc li.sign6 input { -webkit-appearance:none; width: 100%; background: #4255b2; border: none; font-size: 16px;color:#fff; height: 52px; cursor: pointer; border-radius: 10px; }
.d-bd { position: relative; float: right; width: 560px; }
.d-bd ul { width: 100%; position: relative; height: 536px; }
.d-bd ul li { position: absolute; }
.d-bd ul li.sign1 { left:316px; top:320px; }
.d-bd ul li.sign2 { left:265px; top:385px; }
.d-bd ul li.sign3 { left:222px; top:318px; }
.d-bd ul li.sign4 { left:55px; top:383px; }
.d-bd ul li.sign5 { left:400px; top:310px; }
.d-bd ul li.sign6 { left:405px; top:275px; }
.d-bd ul li.sign7 { left:160px; top:345px; }
.d-bd ul li span { display: inline-block; width: 13px; height: 13px; background: url(../images/c12.png) no-repeat center; }
.d-bd ul li.cur span {
	-webkit-animation: godown 1.5s infinite;
	animation: godown 1.5s infinite;
	box-sizing: border-box;
}
@-webkit-keyframes godown {
	0% {-webkit-transform: translate(0, 0);opacity: 0;}
	50% {opacity: 1;}
	100% {-webkit-transform: translate(0, 5px);opacity: 0;}
}
@keyframes godown {
	0% {transform: translate(0, 0);opacity: 0;}
	50% {opacity: 1;}
	100% {transform: translate(0, 5px);opacity: 0;}
}
.d-bd ul li.sign1 span { position: absolute; right:-15px; top:5px; }
.d-bd ul li.sign2 span { position: absolute; left:-15px; top:-18px; }
.d-bd ul li.sign3 span { position: absolute; right:-10px; top:26px; }
.d-bd ul li.sign4 span { position: absolute; right:-11px; top:24px; }
.d-bd ul li.sign5 span { position: absolute; left:-26px; top:3px; }
.d-bd ul li.sign6 span { position: absolute; left:-20px; top:3px; }
.d-bd ul li.sign7 span { position: absolute; right:-15px; top:16px; }
.d-bd ul li i { font-size: 16px;color:#364799; font-style: normal; }
.d-bd ul li.cur i { color:#de1910; }
.g-in { width: 1200px; margin: 0 auto; }
@media(max-width:1250px){
	.g-in { width: 90%; }
}

/*地域搜索*/
.e-a {position: relative; z-index: 10; margin-top:0px; background: url(../images/c13.png) repeat-x center; }
.e-a ul li { line-height: 62px; width: 33.3333%; float: left; }
.e-a ul li:hover,.e-a ul li.cur { background: #364799; }
.e-a ul li a { display: block; font-size: 18px;color:#333333; width: 100%; text-align: center; }
.e-a ul li:hover a,.e-a ul li.cur a{ color:#fff; }
.e-b{ height: 797px; box-sizing: border-box; overflow: hidden; padding:34px 0 0; width: 1920px; position: relative; left:50%; top:0; margin-left:-960px; background: url(../images/c14.png) no-repeat center #fafafa; }
.e-ba {border-radius: 8px; width: 590px; float: left; background: #fff;box-shadow: 0px 3px 9px 0px rgba(51, 51, 51, 0.08); }
.e-ba ul li { padding-left:20px; border-bottom:1px solid #e2e2e2; padding-top: 18px; }
.e-ba ul li:last-child{
	border-bottom: none; 
	    padding-bottom: 10px;
}
.e-ba ul li .t { font-size: 18px;color:#364799; font-weight: bold;}
.e-ba ul li .c a { display: inline-block; float: left; line-height: 36px; padding-bottom:2px; position: relative; font-size: 16px;color:#666; margin-right: 35px; }
.e-ba ul li .c a.cur,.e-ba ul li .c a:hover { color:#e01a11; }
.e-ba ul li .c a.cur:after,.e-ba ul li .c a:hover:after { content:''; width: 100%; height: 2px; background: #e01a11; position: absolute; left:0; bottom:-1px; }
.e-bb { float: right; width: 600px; height: 650px; }
.e-bb ul { width: 100%; height: 100%; position: relative; }
.e-bb ul li {position: absolute;/* width: 145px; */padding: 0 25px; height: 38px; line-height: 38px; box-sizing: border-box; border:1px solid #ebebeb; border-radius: 8px;  text-align: center; font-size: 16px;color:#364799; background: #f4f7fe;}
.e-bb ul li.sign1 { /* left:266px; top:85px; */ left: 282px;top: 112px;}
.e-bb ul li.sign2 { /* left:490px; top:175px; */left: 482px;top: 308px; }
.e-bb ul li.sign3 { /* left:235px; top:205px; */left: 270px;top: 248px; }
.e-bb ul li.sign4 { /* left:196px; top:285px; */left: 201px;top: 331px; }
.e-bb ul li.sign5 { /* left:490px; top:370px; */left: 468px;top: 398px; }
.e-bb ul li.sign6 { /* left:60px; top:370px; */ left: 92px;top: 435px; }
.e-bb ul li.sign7 { /* left:380px; top:460px; */left: 380px;top: 467px;}
.e-bb ul li.sign8 { /* left:255px; top:540px; */left: 279px;top: 499px; }
.e-f { margin-top:100px; }
.e-f .d-bc li span { width: 85px; }
.e-f .d-bc li.sign1 select { width: 420px; }
.e-f .d-bc li.sign2 select { width: 182px; }
.e-f .d-bc li.sign3 select { width: 182px; }
.e-f .d-bc li.sign3 i {left:-25px;}
.e-f .d-bc li.sign4 input { width: 420px; border-radius: 4px; }
.e-f .d-bc li.sign5 { position: relative; }
.e-f .d-bc li.sign5 input[type="radio"] {width: 30px;height: 20px;opacity: 0;position: absolute;}
.e-f .d-bc li.sign5 label {margin: 0 5px 0 9px; left:0; font-size: 16px;color:#666666; letter-spacing: 3px; position: relative; top:0%; height: 50px; line-height: 48px; text-align: center; box-sizing: border-box; border: 1px solid #ebebeb; float: left; display: inline-block; width: 130px; }
.e-f .d-bc li.sign5 .valc { float: right; margin:0; }
.e-f .d-ba .d-bc li.sign5 label { float: left; position: absolute;left: 0;top: 50%;margin-top:-10px;width: 20px;height: 20px;border: 1px solid #999;}
.RadioStyle input {display: none}
.RadioStyle label {/*border: 1px solid #CCC;*/font-size: 16px;border: 1px solid #ebebeb;color: #666;padding: 10px 10px 10px 5px;line-height: 28px;width: 24%;text-align: center;float: left;margin: 2px;margin: 0 0px 0 10px;border-radius: 4px}
.RadioStyle label.lab1 { margin-right:10px; }
.RadioStyle label.lab3 { margin-right:0; float: right; margin-left:0; }
.RadioStyle input:checked + label {background: #364799;border: 1px solid #364799;background-size: 21px 21px;color: #fff;}
.RadioStyle label.lab2{
  margin-left: 21px;
}
@media(max-width:1300px){
	.e-bb ul li { width: 110px; }
}

@media(max-width:1250px){
	.a-bb { display: none; }
	.a-ba { width: 100%; }
	.e-f .d-bc li span { width: 85px; }
	.e-f .d-bc li.sign2 select { width: 115px; }
	.e-f .d-bc li.sign3 select { width: 115px; }
	.e-f .d-bc li.sign3 i { left:-23px; }
	.e-f .d-bc li.sign4 input { width: 280px; }
	.e-f { margin-bottom:50px; }
	.a-baa .pic,.a-bae .pic { width: 50%; }
	.a-baa .pic img,.a-bae .pic img { width: 100%; }
	.a-baa { position: relative; }
	.a-baa .con { width: 48%; padding-top:0; height: 98px; position: absolute; top:50%; margin-top:-49px; right:0; }	
	.a-baa_sign .con { position: absolute; top:50%; margin-top:-65px; height: 130px;  }
	.a-bae .con { width: 48%; }
	.e-b { width: 100%; left:0; margin-left:0; height: auto; background-position: center top; -webkit-background-size: 100% auto;background-size: 100% auto; }
	.d-a { width: 100%; left:0; margin-left:0; height: auto; background-position: -175px 70px; -webkit-background-size: 1600px auto;background-size: 1600px auto; background-image: url(../images/c7bg.jpg); }
	.d-bd { display: none; }
	.e-bb { height: 410px; }
	.e-f { margin-top:20px; }
	.d-ba { width: 450px; }
	.RadioStyle label { width: 21.5%; }
	.e-f .d-bc li.sign1 select { width: 280px; }
	.e-bb ul li { font-size: 14px; height: 32px; line-height: 30px; }
	.e-bb ul li.sign1 { left:210px; top:15px; }
	.e-bb ul li.sign2 { left:380px; top:65px; }
	.e-bb ul li.sign3 { left:185px; top:95px; }
	.e-bb ul li.sign4 { left:160px; top:145px; }
	.e-bb ul li.sign5 { left:380px; top:185px; }
	.e-bb ul li.sign6 { left:70px; top:190px; }
	.e-bb ul li.sign7 { left:320px; top:250px; }
	.e-bb ul li.sign8 { left:235px; top:300px; }
	.d-bb ul li { margin: 0 12px; }
	.d-bc li.sign1 select,.d-bc li.sign4 input { width: 296px; }
	.d-bc li.sign2 { width: 209px; }
	.d-bc li.sign3 { width: 130px; }
	.d-bc li.sign2 select,.d-bc li.sign3 select { width: 130px; }
	.d-bc li.sign3 i { left:-28px; }
	.d-bd  { position: absolute; right:0; }
	.d-bd ul li.sign1 { left:290px; top:320px; }
	.d-bd ul li.sign2 { left:260px; top:385px; }
	.d-bd ul li.sign3 { left:222px; top:318px; }
	.d-bd ul li.sign4 { left:80px; top:376px; }
	.d-bd ul li.sign5 { left:400px; top:310px; }
	.d-bd ul li.sign6 { left:405px; top:275px; }
	.d-bd ul li.sign7 { left:160px; top:345px; }
	.e-ba { width: 460px; }
	.e-ba ul li { padding-top:5px; }
	.e-ba ul li .t { font-size: 16px; }
	.e-ba ul li .c a { font-size: 14px; margin-right:30px; line-height: 20px; }
	.b-c ul li .pic { width: 30%; }
	.b-c ul li .pic img { vertical-align: top; }
	.b-c ul li .con { width: 68%; margin-right:0; }
	.b-c ul li .con a.more { display: none; }
	.b-c_sign ul li { position: relative; }
	/*.b-c_sign ul li .con { height: 104px; position: absolute; right:0; padding-top:0;/* top:50%;*/ top:30%; margin-top:-52px; }*/
	.b-c_sign ul li .con .t1 span { display: block; margin-left:0; margin-top:8px; }
	.b-c_sign ul li .con .c { display: block; margin-top: 8px;max-height: 94px;overflow: hidden;}
/*	.b-c_sign ul li .con .t2 { margin: 8px 0 0; }*/
  .b-c_sign ul li .con .t2 { margin: 20px 0 0; }
	.b-c_sign ul li .con a.more { display: inline-block; margin-top:8px; }
	.c-aa .pic { width: 50%; }
	.c-aa .con { width: 48%; }
	.c-aa .pic img { width: 100%; }
	.c-cc { float: left; width: 50%; }
	.c-cb .pic { float: right; width: 45%; box-sizing: border-box; border-right:6px solid #fafafa; }
}
@media(max-width:1200px){
	.b-b .select { width: 25%; }
	.b-b .select4 { width: 22%; }
	.b-b .select p { font-size: 14px; }
	.b-b .select .sel-con .t .val { font-size: 14px; }
	.b-b .select .sel-con { width: 200px; }
}
@media(max-width:1180px){
	.b-b .select .sel-con { width: 180px; }
	.e-bb { width: 500px; height: 410px; }
	.e-bb ul li.sign1 { left:110px; top:15px; }
	.e-bb ul li.sign2 { left:280px; top:65px; }
	.e-bb ul li.sign3 { left:85px; top:95px; }
	.e-bb ul li.sign4 { left:60px; top:145px; }
	.e-bb ul li.sign5 { left:280px; top:185px; }
	.e-bb ul li.sign6 { left:-30px; top:190px; }
	.e-bb ul li.sign7 { left:220px; top:250px; }
	.e-bb ul li.sign8 { left:135px; top:300px; }
}
@media(max-width:1100px){
	.d-bc li.sign1 select, .d-bc li.sign4 input { height: 40px; }
	.d-bc li em { height: 38px; }
	.e-f .d-bc li span { line-height: 40px; font-size: 14px; width: 75px; }
	.d-bb ul li { margin: 0 10px; }
	.d-bc li.sign1 select, .d-bc li.sign4 input { width: 245px; }
	.d-bc li { margin-bottom:10px; }
	.d-bc li.sign2 { width: 180px; }
	.d-bc li.sign2 select, .d-bc li.sign3 select { height: 40px; width: 100px; }
	.d-bc li.sign6 input { height: 40px; }
	.d-bc li.sign3 i { left:-3px; }
	.e-f .d-bc li.sign3 i { left:-3px; }
	.RadioStyle label.lab1,.RadioStyle label.lab2,.RadioStyle label.lab3 { padding: 5px 10px 5px 5px; }
	.e-f .d-bc li.sign2 select,.e-f .d-bc li.sign3 select { width: 100px; }
	.e-f .d-bc li.sign4 input { width: 245px; }
	.b-b .select p { font-size: 12px; }
	.b-b .select .sel-con .t .val { font-size: 12px; }
	.b-b .select .sel-con { width: 170px; }
	.g-in { width: 96%; }
	.d-ba { width: 400px; }
	.RadioStyle label { width: 19.6%; }
	.e-f .d-bc li.sign1 select { width: 245px; }
	.e-bb { width: 500px; height: 410px; }
	.e-bb ul li.sign1 { left:110px; top:15px; }
	.e-bb ul li.sign2 { left:280px; top:65px; }
	.e-bb ul li.sign3 { left:85px; top:95px; }
	.e-bb ul li.sign4 { left:60px; top:145px; }
	.e-bb ul li.sign5 { left:280px; top:185px; }
	.e-bb ul li.sign6 { left:-30px; top:190px; }
	.e-bb ul li.sign7 { left:220px; top:250px; }
	.e-bb ul li.sign8 { left:135px; top:300px; }
	.e-ba { width: 440px; }
	.e-ba ul li { padding-top:5px; }
	.e-ba ul li .t { font-size: 14px; }
	.e-ba ul li .c a { font-size: 12px; margin-right:25px; line-height: 18px;  }
	.d-bcx li span { height: 40px; line-height: 40px; }
	.d-bc li i { line-height: 40px; }
.b-c ul li .con a.more{position: initial;}
}
@media(max-width:1050px){
	.b-b .select .sel-con { width: 180px; }
}
@media(max-width:1000px){
	.e-f .d-bc li span {  }
	.d-bc li.sign2 {width: 45%;}
	.e-f .d-bc li.sign2 select, .e-f .d-bc li.sign3 select { width: 71%; }
	.d-bc li.sign3 { width: 45%; }
	.e-f .d-bc li.sign4 input { width: 87%; }
	.location { display: none; }
	.b-b { border-radius: 8px; width: 96%; margin:-60px auto 0; position: relative; z-index: 100;background: #fff; }
	.b-b .select { width: 100%; margin-bottom:10px; }
	.b-b .select_sign { float: left; width: 50%; }
	.b-b .select p { text-align: justify;text-align: justify;text-align-last: justify; width: 10%; font-size: 16px; }
	.b-b .select_sign p { width: 20%; }
	.b-b .select .sel-con .t .val { font-size: 16px; }
	.b-b .select .sel-con { width: 90%; }
	.b-b .select4 { width: 220px; background: #364799; color:#fff; border-radius: 28px; border:none; }
	.b-b .select4 .sel-con { border:none; }
	.b-b .select4 .sel-con { width: 100%; }
	.b-b .select4 .sel-con .t .val { color:#fff; }
	.b-b .select4 .sel-con .t span { border:none; background: url(../images/b1bg.png) no-repeat center; }
	.e-ba { width:100%; margin-bottom:60px; }
	.e-ba ul li { padding-top:10px; }
	.e-ba ul li .t { font-size: 18px; }
	.e-ba ul li .c a { font-size: 16px; margin-right:30px; line-height: 30px; }
	.e-b { background-image: none; }
	.e-bb { display: none; }
	.e-f .d-bc li span { width: 12%; }
	.e-f .d-bc li.sign2 span { width: 26.666666%; }
	.RadioStyle label { margin: 0 1.3%; width: 27%; }
	.e-f .d-bc li.sign1 select {width: 87%;}
	.d-a { padding: 30px 0 50px; }
	.d-ba { width: 100%; margin-bottom:50px; margin-top:0; }
	.e-a { border-radius: 27px; overflow: hidden; margin: 0px auto 0; width: 96%; background: #fff; }
	.e-a .container { padding: 0;  }
	.e-a ul li { height: 54px; line-height: 54px; }
	.c-bb .t { padding-left:15px; line-height: 40px; font-size: 14px; }
	.c-bb .t span { height: 40px; }
	.c-bb .c { padding: 15px 15px 20px; }
	.d-bcx li span { width: 12%; }
	.d-bcx li.sign2 span { width: 26.66666%; }
	.d-bc li.sign2 select, .d-bc li.sign3 select { width: 71%; }
  .d-bcx li.sign1 select, .d-bc li.sign4 input { width: 87%; }
  
  .b-b .select5{
    width: 50%;
  }
}
@media(max-width:900px){
	.a-bahb .pic { width: 240px; }
	.a-bae .pic { width: 40%; }
	.a-bae .con { width: 58%; margin-top:20px; }
	.b-b .select p {  width: 14%; }
	.b-b .select_sign p { width: 28%; }
	.b-b .select .sel-con { width: 85%; }
	.b-b .select4 .sel-con { width: 100%; }
	.c-cc { width: 55%; }
	.c-cb .pic { width: 42%; }
	.c-cc .c { font-size: 13px; }
  .b-c ul li .con .t2 span{margin-bottom: 0;}
}
@media(max-width:800px){
	.t_pailie button,.t_pailie{
		width: 100%;
	}
	.b-c ul li .con .t2 span:nth-child(2){
		overflow: hidden;
		text-overflow:ellipsis;
		white-space: nowrap;
    display: block;
	}
	.b-c { padding:30px 0 50px; }
	.b-c_sign ul li { padding:12px; }
	.b-c_sign ul li .con { width: 66%; }
	.a-bahb .pic { width: 60%; }
	.a-bahb .clearfix { position: relative; }
	.a-bahb .con { height: 64px; position: absolute; left:0; top:50%; margin-top:-32px; padding: 0 0 0 12px; }
	.a-bahb .con .t1 { font-size: 14px; }
	.a-bahb .con .c { font-size: 12px; }
	.a-bagc { width: 100%; }
	.a-bagc span { float: left; width: 33.3333%; text-align: center; padding-left:0; }
	.a-bage { width: 100%; }
	.a-bae .pic { width: 100%; }
	.a-bae .con { width: 100%; }
	.b-c ul li .con { padding-top:10px; }
	.b-c ul li .con .c { font-size: 12px; height: 48px; overflow: hidden; }
	.b-c ul li .con .t1 { font-size: 18px; }
	.b-c ul li .con .t1 span { font-size: 16px; }
	.b-c ul li .con .t2 { font-size: 16px; }
	.e-f .d-bc li span { width: 15%; }
	.e-f .d-bc li.sign2 span { width: 33.333333%; }
	.RadioStyle label { margin: 0 1.3%; width: 26%; }
	.e-f .d-bc li.sign1 select {width: 84%;}
	.e-f .d-bc li.sign2 select, .e-f .d-bc li.sign3 select { width: 64%; }
	.e-f .d-bc li.sign4 input { width: 84%; }
	.c-aa .pic { width: 45%; }
	.c-aa .con { width: 52%; }
	.c-ab { margin-top:14px; }
	.c-aa .con .c { line-height: 1.8; }
	.c-ab a { padding: 10px 30px; }
}
@media(max-width:750px){
	.c-aa .pic { width: 100%; }
	.c-aa .con { width: 100%; margin-top:15px; }
	.c-ab { margin-top:14px; }
	.c-ab a { padding: 10px 0; width: 150px; text-align: center; }
	.c-cc { width: 100%; }
	.c-cb .pic { width: 100%; margin-top:10px; }
	.c-cc .c { font-size: 14px; }
	.a-bab .hd { padding: 0 20px; position: relative; }
	.a-bab .hd span { text-align: left; font-size: 16px;color:#fff; display: block; background: url(../images/b1bg.png) no-repeat center right; }
	.a-bab .hd ul {z-index: 100000; display: none; }
	.a-bab .hd ul { width: 100%; background: #fff; border:1px solid #eee; position: absolute;left:0; top:50px;  }
	.a-bab .hd ul li { width: 100%; text-align: center;  font-size: 16px;color:#333;}
	.a-bab .hd ul li.on { background: #fff; color:#333; }
}
@media(max-width:640px){
	.b-c_sign ul li .con .t1 { font-size: 16px; }
	.b-c_sign ul li .con .t2 { font-size: 14px; line-height: 2; }
	.b-c_sign ul li .con a.more { display: none; }
	.b-b .select .sel-con .t .val { font-size: 14px; }
	.d-bc li.sign2 { width: 53%; }
	.d-bc li.sign3 { width: 46%; }
	.e-f .d-bc li.sign2 span { width: 33.9%; }
	.e-f .d-bc li.sign2 select { width: 64%; }
	 .e-f .d-bc li.sign3 select { width: 73.4%; }
	.e-f .d-bc li.sign4 input { width: 81.5%; }
	.e-f .d-bc li.sign3 i { left:8%; }
	.a-baa { padding: 10px; }
	.a-baf dl dd .t { padding-left:10px; }
	.a-baf dl dd .c { padding: 12px 10px; }
	.a-bab .bd { border:none; padding: 20px 8px 30px; }
	.a-bad { padding-top:20px; }
	.a-bad a.prev,.a-bad a.next {margin:5px 0; max-width: 100%; text-align: left; display: block; width: 100%; }
	.a-bad a.back { display: none; }
	.a-baf dl dd .t { padding-left:10px; }
	.a-baf dl dd .c { padding:10px; }
	.a-bage { padding: 20px 10px 30px; }
	.a-baa .con { height: auto; margin-top:-39px; height: 78px; }
	.a-baa_sign .con { margin-top:-51px; height: 102px;  }
	.a-baa .con .t1 { font-size: 18px; }
	.a-baa .con .t2 { font-size: 14px; }
	.a-baa { padding: 6px; }
	.b-c { padding-bottom:60px; }
	.b-c ul li { padding: 10px; }
	.b-c ul li .pic { width: 45%; }
	.b-c ul li .con .c { display: none; }
	.b-c ul li .con { width: 52%; padding-top:0; position: relative; top:50%; margin-top:30px; height: 64px; }
	.b-c ul li .con .t1 span { display: block; margin: 12px 0 0 0; }
	.b-b .select p {  width: 17%; }
	.b-b .select_sign p { width: 34%; }
	.b-b .select .sel-con { width: 82%; }
	.b-b .select4 .sel-con { width: 100%; }
	.b-b .select4 { width: 170px; }
	.e-ba ul li .t { font-size: 16px; }
	.e-ba ul li .c a { font-size: 14px; margin-right:25px; line-height: 30px; }
	.e-a { border-radius: 20px; overflow: hidden; margin: 0px auto 0; width: 96%; background: #fff; }
	.e-a .container { padding: 0;  }
	.e-a ul li { height: 40px; line-height: 40px; }
	.e-a ul li a { font-size: 16px; }
	.e-f .d-bc li span { width: 18%; }
	.RadioStyle label { margin: 0 1.3%; width: 25%; }
	.e-f .d-bc li.sign1 select {width: 81%;}
	.d-bcx li span { width: 14%; }
	.d-bcx li.sign2 span { width: 26%; }
	.d-bcx li.sign1 select, .d-bc li.sign4 input { width: 85%; }
	.d-bc li.sign2 select, .d-bc li.sign3 select { width: 71.5%; }
	.d-bc li.sign3 select { width: 80.5%; }
	.d-bc li.sign3 i { left:10px; }
  .c-aa .pic .bofang {
    position: absolute;
    top: 38%;
    left: 46%;
    width: 60px;
  }
}
@media(max-width:540px){
	.a-bahb { width: 100%; }
	.a-bahb .con { height: 64px; position: absolute; left:0; top:50%; margin-top:-32px; padding: 0 0 0 12px; }
	.a-bahb .con .t1 { font-size: 16px; }
	.a-bahb .con .c { font-size: 14px; }
	.a-bagc span { padding: 12px 0; font-size: 12px; }
	.b-c ul li .con  { margin-top:25px; }
	.b-b .select p,.b-b .select .sel-con .t .val { line-height: 40px;  font-size: 14px; }
	.b-b .select .sel-con { height: 40px; line-height: 40px; }
	.b-b .select .sel-con .t span { height: 38px; }
	.d-bc li span { font-size: 14px; }
	.d-bc { padding: 20px 16px 0 15px; }
	.b-b .select .selectx a { height: 40px; line-height: 40px; }
	.b-b .select .selectx a:hover, .b-b .select .selectx a.cur { line-height: 40px;height: 40px; }
	.b-c_sign ul li .con .t1 span { font-size: 14px; margin-top:3px; }
	.b-c_sign ul li .con { margin-top:15px; }
	.b-c_sign ul li .con .t1 { font-size: 14px; }
	.b-c_sign ul li .con .t2 { font-size: 12px; line-height: 1.6; }
	.a-baa_sign .con { margin-top:0; top:0; position: relative; height: auto; padding-top:15px;  }
}
@media(max-width:500px){
	.b-c ul li .con  { margin-top:8px; }
	.e-ba ul li .c a { margin-right:20px; }
	.e-a ul li a { font-size: 14px; }
}
@media(max-width:480px){
	.b-b .select p {  width: 20%; }
	.b-b .select_sign { width: 60%; }
	.b-b .select4 { width: 38%; }
	.b-b .select p, .b-b .select .sel-con .t .val { font-size: 13px; }
	.b-b .select_sign p { width: 32.6%; }
	.b-b .select .sel-con { width: 79%; }
	.b-b .select4 .sel-con { width: 100%; }
	.a-baa_sign .con .t1 { font-size: 14px; }
	.a-baa_sign .con .t2 { font-size: 12px; }
	.a-baa_sign .con { padding-top:5px; }	
	.d-bcx li span { width: 16%; }
	.d-bcx li.sign2 span { width: 30%; }
	.d-bcx li.sign1 select, .d-bc li.sign4 input { width: 83%; }
	.d-bc li.sign2 select, .d-bc li.sign3 select { width: 67.5%; }
	.d-bc li.sign3 select { width: 80.5%; }
	.d-bc li.sign3 i { left:8px; }
  .b-c ul li .con .t2 span {
    margin-right: 0;
  }
  .b-c_sign ul li .con .t2{
    margin-top: 10px;
  }
}
@media(max-width:440px){
	.e-f .d-bc li.sign4 input { width: 78%; }
	.e-f .d-bc li.sign2 span { width: 40.7%; }
	.e-f .d-bc li.sign2 select { width: 58.5%; }
	.e-f .d-bc li.sign3 select { width: 72.4%; }
	.b-c ul li .con  { margin-top:15px; }
	.b-c ul li .con .t1 { font-size: 14px; }
	.b-c ul li .con .t1 span { font-size: 13px; }
	.b-c ul li .con .t2 { font-size: 13px; }
	.b-c_sign ul li .con .t2 { font-size: 12px; }
	.e-ba ul li .t { font-size: 14px; }
	.e-ba ul li .c a { font-size: 12px; margin-right:15px; line-height: 24px; }
	.RadioStyle label { padding: 5px 10px 5px 5px; }
	.d-bc li span { line-height: 40px; font-size: 13px; }
	.d-bc li.sign1 select { height: 40px; }
	.d-bc li em { height: 38px; }
	.d-bc li.sign6 input { height: 40px; }
	.d-ba { padding-bottom:20px; }
	.e-f .d-bc li span { width: 21.6%; }
	.RadioStyle label { margin: 0 0.6%; width: 24%; }
	.e-f .d-bc li.sign1 select {width: 78%;}
	.RadioStyle label.lab1 { margin-right:-3.5%; }
  .c-aa .pic .bofang {
    position: absolute;
    top: 38%;
    left: 42%;
    width: 60px;
  }
}

@media(max-width:400px){
	.b-b .select_sign { width: 100%; }
	.b-b .select4 { width: 60%; }
	.b-b .select p, .b-b .select .sel-con .t .val { font-size: 14px; }
	.b-b .select p {  width: 24%; }
	.b-b .select .sel-con { width: 75%; }
	.b-b .select4 .sel-con { width: 100%; }
	.c-ab a { font-size: 14px; padding: 10px 0; width: 120px; margin-right:15px; }
	.d-bb ul li { font-size: 12px; margin: 0 5px; line-height: 36px; }
	.d-bcx li span { width: 16%; }
	.d-bcx li.sign2 span { width: 30%; }
	.d-bcx li.sign1 select, .d-bc li.sign4 input { width: 83%; }
	.d-bc li.sign2 select, .d-bc li.sign3 select { width: 67.5%; }
	.d-bc li.sign3 select { width: 80.5%; }
	.d-bc li.sign3 i { left:5px; }

}
@media(max-width:380px){
	.e-f .d-bc li span { font-size: 12px; }
	.b-c ul li .pic { width: 50%; }
	.b-c ul li .con { width: 47%;}
	.d-bcx li span { font-size: 12px; }
  .b-c ul li .con  { margin-top:5px; }
}
@media(max-width:350px){
	.b-b .select p {  width: 26%; }
	.b-b .select .sel-con { width: 73%; }
	.b-b .select4 .sel-con { width: 100%; }
	.d-bc li span { line-height: 40px; font-size: 12px; }
	.b-c_sign ul li .con { margin-top:10px; }

	.d-bcx li span { width: 20%; }
	.d-bcx li.sign2 span { width: 38%; }
	.d-bcx li.sign1 select, .d-bc li.sign4 input { width: 76%; }
	.d-bc li.sign2 select, .d-bc li.sign3 select {width: 54.5%;}
	.d-bc li.sign3 select {width: 63.5%;}
	.d-bc li.sign3 i { left:12px; }
}


@media(max-width:640px){
	.a-bab .hd { height: 40px; line-height: 40px; }
	.a-bab .hd ul li {font-size: 12px;}
}
@media(max-width:360px){
	.a-baa .con .t2 { font-size: 12px; }
}


/*落地页样式*/
.ldy1 { padding:60px 0 160px; background:url(../images/ld2.png) no-repeat center; -webkit-background-size: cover;background-size: cover; }
.ldy1b { margin: 0 auto; width: 970px; text-align: center; }
.ldy1b .t h1 { font-size: 30px;color:#343434; font-weight: normal; }
.ldy1b .t h1 span { font-size: 34px;color:#e01813; font-weight: bold; }
.ldy5 .t h1 { font-size: 30px;color:#343434; font-weight: normal; }
.ldy5 .t h1 span { font-size: 34px;color:#e01813; font-weight: bold; }
.ldy1b .c { margin-top:6px; font-size: 16px;color:#666666; line-height: 2; }
.ldy1a { margin-top:40px; text-align: center; }
.ldy1a .pic { position: relative; display: inline-block; padding: 17px 19px; background: url(../images/ld19.png) no-repeat center; -webkit-background-size: cover;background-size: cover; }
.ldy1a .pic .video_btn { cursor: pointer; display: block; width: 88px; height: 88px; background: url(../images/ld18.png) no-repeat center; position: absolute; left:50%; top:50%; margin-top:-44px; margin-left:-44px; }
.ldy2 {box-shadow: 15px 6px 7px 2px rgba(43, 60, 143, 0.07); width: 1920px; position: relative; left:50%; margin-left:-960px; }
.ldy2a { float: right; margin-right:35px; width: 580px; }
.ldy2a { padding-top:45px; }
.ldy2a ul li { padding-left:81px; position: relative; }
.ldy2c { display: inline-block; padding:8px 30px 8px 8px;box-shadow: 0px 0px 13px 0px rgba(58, 105, 176, 0.05);border-radius: 3px;}
.ldy2c .pic {float: left; box-shadow: 0px 0px 13px 0px rgba(58, 105, 176, 0.05); }
.ldy2c .con {float: left; margin-left:16px;padding-top:30px;}
.ldy2c .con .t { font-size: 16px;color:#666666; }
.ldy2c .con .c { font-size: 14px;color:#999999; margin-top:5px; }
.ldy2a ul li .icon { position: absolute; left:0; top:6px; display: block; width: 67px; height: 67px; border-radius: 50%; box-shadow: 0px 0px 16px 0px rgba(20, 80, 170, 0.11);  }
.ldy2a ul li.sign1 .icon { background: url(../images/ld4.png) no-repeat center; }
.ldy2a ul li.sign2 .icon { background: url(../images/ld5.png) no-repeat center; }
.ldy2a ul li.sign3 .icon { background: url(../images/ld6.png) no-repeat center; }
.ldy2a ul li .t { font-size: 20px;color:#2b3c8f; }
.ldy2a ul li .c { font-size: 14px;color:#666666; line-height: 2; margin-top:6px; margin-bottom:35px; }
.ldy2b { float: right; width: 949px; }
.ldy2b img { width: 100%; vertical-align: top; }
.ldy3 { padding:80px 0 50px; background: #f8fafd; }
.ldy4 { padding:0px 0 50px; background: #f8fafd; border-bottom:1px solid #eee; }
.ldy3 .hd .t { font-size: 30px;color:#333333; margin-bottom:20px; }
.ldy3a ul li { cursor: pointer; position: relative; width: 24.32%; float: left; margin-right:0.9%; margin-bottom:.9%; }
.ldy3a ul li label {  cursor: pointer; display: block; width: 100%; padding:45px 125px 30px 20px; box-sizing: border-box; position: relative; }
.ldy3b .t1 { line-height: 30px; font-size: 18px;color:#364799; }
.ldy3b .t2 { line-height: 30px; font-size: 18px;color:#364799; }
.ldy3b .c { line-height: 1.5; font-size: 14px;color:#b5c0cf; }
.ldy3b .p  { font-size: 14px;color:#d93b44; margin-top:10px; }
.ldy3b .p del { font-size: 20px;color:#d93b44; }
.ldy3a ul li .ldy3c { position: absolute; bottom:0; right:0; }
.ldy3a ul li .ldy3c img { vertical-align: top; }
.ldy3a ul li.sign { margin-right:0; float: right; }
.ldy3a ul li:nth-child(4n) { float: right; margin-right:0; }
.ldy3a ul li label { background: url(../images/ld15.jpg) no-repeat center; -webkit-background-size: cover;background-size: cover; }
.ldy3e { border:1px solid #f6f6f6; padding:18px 25px 18px 15px; line-height: 1; }
.ldy3e span { font-size: 16px;color:#666666; }
.ldy3a ul li input { width: 16px; height: 16px; }
.ldy5 { padding:45px 0 75px; background: #f1f4f9; }
.ldy5a { text-align: center; }
.ldy3 .get_more { cursor: pointer; display: block; text-align: center; margin: 30px auto 0; border-radius: 20px; width: 160px; height: 40px; line-height: 40px; font-size: 16px;color:#fff; background: #364799; }
.ldy3 .get_more:hover { background: #de1910; } 
.ldy5b { margin-top:25px; }
.ldy5b ul li {float: left; width: 24.25%; margin-right:1%; }
.ldy5b ul li input { width: 100%; height: 47px; box-sizing: border-box; padding-left:11px; border:1px solid #eee; font-size: 16px;color:#666666; }
.ldy5b ul li.sign3,.ldy5b ul li.sign4 { margin-right:0; }
.ldy5b ul li.sign4 { float: right; }
.ldy5b ul li.sign5 { margin-top:13px; float: left; width: 100%; }
.ldy5b ul li.sign5 textarea { border:1px solid #eee; box-sizing: border-box; padding-left:11px; width: 100%; height: 173px; line-height: 46px; font-size: 16px;color:#999; }
.ldy5b ul li input::-webkit-input-placeholder {
    color: #666;
}
.ldy5b ul li input:-moz-placeholder {
    color: #666;
    opacity: 1;
}
.ldy5b ul li input::-moz-placeholder {
    color: #666;
    opacity: 1;
}
.ldy5b ul li input:-ms-input-placeholder {
    color: #666;
}
.ldy5b ul li textarea::-webkit-input-placeholder {
    color: #ppp;
}
.ldy5b ul li textarea:-moz-placeholder {
    color: #ppp;
    opacity: 1;
}
.ldy5b ul li textarea::-moz-placeholder {
    color: #ppp;
    opacity: 1;
}
.ldy5b ul li textarea:-ms-input-placeholder {
    color: #ppp;
}
.ldy5b ul li button{
	width: 100%;
	    background: #4255b2;
	    border: none;
	    font-size: 16px;
	    color: #fff;
	    height: 52px;
	    cursor: pointer;
}
.ldy5b ul li:last-child{
	width: 100%;
}
@media(max-width:1250px){
	.ldy2a { width: 500px; }
	.ldy2a ul li .c { font-size: 13px; }
	.ldy3a ul li .ldy3c { width: 115px; }
	.ldy3a ul li label { padding:30px 100px 30px 20px; }
}
@media(max-width:1150px){
	.ldy3a ul li .ldy3c { width: 100px; }
	.ldy3a ul li label { padding:30px 85px 20px 12px; }
}
@media(max-width:1100px){
	.ldy2 { width: 100%; left:0; margin-left:0; }
	.ldy2a,.ldy2b { width: 100%; margin:0; }
	.ldy2a { padding: 20px 2% 30px; }
	.ldy2a ul li .c { font-size: 14px; }
}
@media(max-width:1000px){
	.ldy3a ul li { width: 49%; margin-right:2%; }
	.ldy3a ul li label { padding:50px 200px 40px 30px; }
	.ldy3a ul li .ldy3c { width: 155px; }
	.ldy3a ul li:nth-child(2n) { float: right; margin-right:0; }
	.ldy1b { width: 100%; }
	.ldy1b .c p { display: inline; }
}
@media(max-width:800px){
	.ldy5 { padding: 30px 0 40px; }
	.ldy5b ul li { width: 49%; margin-right:0; margin-top:13px; }
	.ldy5b ul li.sign3,.ldy5b ul li.sign4 { float: left; margin-right:0; }
	.ldy5b ul li.sign2,.ldy5b ul li.sign4 { float: right; }
	.ldy3a ul li label { padding:40px 120px 20px 20px; }
	.ldy3a ul li .ldy3c { width: 115px; }
}
@media(max-width:640px){
	.ldy5b ul li input { height: 36px; font-size: 14px; }
	.ldy5b ul li.sign5 textarea { font-size: 14px; line-height: 36px; height: 100px; }
	.ldy5b ul li { margin-top:8px; }
	.ldy2a ul li .c { margin-bottom:15px; }
	.ldy1 { padding:30px 0 60px;}
	.ldy1b .t h1 { font-size: 20px; }
	.ldy1b .t h1 span { font-size: 22px; }
	.ldy5 .t h1 { font-size: 20px; }
	.ldy5 .t h1 span { font-size: 22px; }
	.ldy1b .c { font-size: 14px; }
	.ldy1a { margin-top:20px;}
	.ldy1a .pic { padding: 13px 16px; }
}
@media(max-width:600px){
	.ldy3e { padding:12px 10px 12px; }
	.ldy3b .t1 { line-height: 24px; font-size: 16px; }
	.ldy3b .t2 { line-height: 24px; font-size: 16px; }
	.ldy3b .c { line-height: 1.5; font-size: 13px; }
	.ldy3b .p  { font-size: 13px; margin-top:5px; }
	.ldy3b .p del { font-size: 18px; }
	.ldy3a ul li label { padding:20px 100px 20px 12px; }
	.ldy3a ul li .ldy3c { width: 100px; }
}
@media(max-width:500px){
	.ldy5b ul li.sign5 { margin-top:8px; }
	.ldy3e span { font-size: 12px; }
	.ldy3b .t1 { line-height: 20px; font-size: 14px; }
	.ldy3b .t2 { line-height: 20px; font-size: 14px; }
	.ldy3b .c { line-height: 1.5; font-size: 12px; }
	.ldy3b .p  { font-size: 12px; margin-top:5px; }
	.ldy3b .p del { font-size: 16px; }
	.ldy3a ul li label { padding:20px 80px 15px 12px; }
	.ldy3a ul li .ldy3c { width: 75px; }
}
@media(max-width:480px){
	.ldy2a ul li .t { font-size: 16px; }
	.ldy2a ul li .c { font-size: 12px;}
	.ldy1a .pic { padding: 12px 16px; }
}
@media(max-width:420px){
	.ldy1a .pic { padding: 10px 14px; }
}
@media(max-width:400px){
	.ldy3b .t1 { font-size: 13px; }
	.ldy3b .t2 { font-size: 13px; }
	.ldy3b .p del { font-size: 14px; }
	.ldy3a ul li label { padding:20px 50px 15px 12px; }
	.ldy3a ul li .ldy3c { width: 55px; }
	.ldy2c .pic img { width: 100px; }
	.ldy2c .con { margin-left:8px; }
	.ldy2c .con .t { font-size: 13px; }
	.ldy2c .con .c { font-size: 12px; }
}
@media(max-width:340px){
	.ldy2c { padding-right:8px; }
}

.t_daxue {
	padding: 80px 0 80px;
	border-bottom: 1px solid #f2f2f2;
}
.t_daxue  .t_daxue_ny{
	margin-top: 28px;
}
.t_daxue  .t_daxue_ny ul li{
	width: 49%;
	float: left; 
	margin-right: 2%;
	background: url(../images/t_daxue_bg.jpg)center center/cover;
	padding: 30px 35px 30px 24px;
	border: 1px solid #f6f6f6; 
	border-radius: 6px;
	margin-bottom: 15px;
}

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

.t_daxue  .t_daxue_ny ul li .img{
	width: 30%;
	float: left;
	text-align: center;
}

.t_daxue  .t_daxue_ny ul li .text{
	width: 70%;
	float: left;
	
}

.t_daxue  .t_daxue_ny ul li .text h3,.t_daxue  .t_daxue_ny ul li .text .t{
	font-size: 24px;
	color: #333333;
	font-weight: initial;
}

.t_daxue  .t_daxue_ny ul li .text p{
	font-size: 14px;
	color: #545454;
	line-height: 28px;
	margin-top: 8px;
	max-height: 56px;
	overflow: hidden;
}

.t_lnkt .t_lnkt_li{
	padding: 18px;
	margin-bottom: 20px;
	border: 1px solid #f2f2f2;
	background: #ffffff;
	transition: all 1s;
	-o-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-webkit-transition: all 1s;
}

.t_lnkt .t_lnkt_li:last-child{
	margin-bottom: 0;
}

.t_lnkt .t_lnkt_li .img{
	float: left;
	width: 36.31%;
}

.t_lnkt .t_lnkt_li .text{
	float: left;
	width: 63.69%;
	padding: 22px 0 16px 25px;
}

.t_lnkt .t_lnkt_li .text h3{
	color: #333333;
	font-size: 18px;
	font-weight: initial;
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis;
}

.t_lnkt .t_lnkt_li .text .time{
	color: #666666;
	font-size: 14px;
	display: block;
	margin: 8px 0 14px;
}

.t_lnkt .t_lnkt_li .text .jianshu{
	color: #666666;
	font-size: 14px;
	line-height: 26px;
	max-height:46px;
	overflow: hidden;
}

.t_lnkt .t_lnkt_li .text .more{
	color: #666666;
	font-size: 16px;
	margin-top: 28px;
	display: inline-block;
	border-bottom: 1px solid #dedede;
	padding-bottom: 8px;
}

.t_lnkt .t_lnkt_li:hover{
	background: #fff;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.3);
	transition: all 1s;
	-o-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-webkit-transition: all 1s;
}

.t_lnkt .t_lnkt_li:hover .text h3{
	color: #364799;
}

.t_lnkt .t_lnkt_li:hover .text .more{
	color: #364799;
	border-bottom: 1px solid #364799;
}

@media(max-width:1024px){
	.t_lnkt .t_lnkt_li .text{
		padding-left: 10px;
	}
}

@media(max-width:768px){
	.t_lnkt .t_lnkt_li .text{
		padding-top: 0;
		padding-bottom: 4px;
	}
	.t_lnkt .t_lnkt_li{
		padding-top: 6px;
		padding-bottom: 4px;
	}
	.t_lnkt .t_lnkt_li .text h3{
		font-size: 16px;
	}
	.t_lnkt .t_lnkt_li .text .more{
		margin-top: 15px;
		font-size: 14px;
	}
	.t_lnkt .t_lnkt_li .text .jianshu{
		line-height: 20px;
		    max-height: 36px;
	}
}

@media(max-width:480px){
	.t_lnkt .t_lnkt_li .text .time{
		margin: 4px 0 4px;
	}
	.t_lnkt .t_lnkt_li .text .jianshu {
	    max-height: 16px;
	}
	.t_lnkt .t_lnkt_li .text .more{
		margin-top: 8px;
		font-size: 12px;
	}
}

@media(max-width:414px){
	.t_lnkt .t_lnkt_li .img{
		text-align: center;
	}
	.t_lnkt .t_lnkt_li .text,.t_lnkt .t_lnkt_li .img{
		float: none;
		width: 100%;
	}
}

.t_lnkt_xq .t_lnkt_xq_ny h2{
	font-size: 24px;
	color: #364799;
	font-weight: initial;
}
.t_lnkt_xq .t_lnkt_xq_ny .data{
	    margin-top: 12px;
	    color: #999999;
	    font-size: 13px;
	    border-bottom: 1px solid #eeeeee;
	    padding-bottom: 15px;
		
}
.t_lnkt_xq .t_lnkt_xq_ny .data span{
	    margin-left: 20px;
	    display: block;
	    float: left;
	    padding-left: 20px;
}

.t_lnkt_xq .t_lnkt_xq_ny .data span:first-child{
	    margin-left: 0;
}

.t_lnkt_xq .t_lnkt_xq_ny .data .s1{
	background: url(../images/shijian.png) no-repeat left center;
}

.t_lnkt_xq .t_lnkt_xq_ny .data .s4{
	    background: url(../images/newsshow_icon1.jpg) no-repeat left center;
}

.t_lnkt_xq .t_lnkt_xq_ny .text{
	color: #666666;
	font-size: 14px;
	line-height: 30px;
	padding: 4px 0 20px;
	border-bottom: 1px solid #e9e9e9;
}
.t_lnkt_xq .fy_btn .shang{
	margin-top: 12px;
}
.t_lnkt_xq .fy_btn .shang a{
	border-bottom: 1px solid #e9e9e9;
	padding: 10px 15px 10px 0;
	font-size: 14px;
	color: #666666;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: inline-block;
}
.t_lnkt_xq .fy_btn .xia{
	margin-top: 0;
}
.t_lnkt_xq .fy_btn .xia a{
	border-bottom: none;
}
.t_lnkt_xq .fy_btn .shang:hover a{
	border-bottom: 1px solid #4a59a1;
}
.t_lnkt_xq .fy_btn .xia:hover a{
	border-bottom:none;
}
@media(max-width:768px){
	.t_lnkt_xq .t_lnkt_xq_ny h2{
		font-size: 18px;
	}
	.t_lnkt_xq .t_lnkt_xq_ny .text{
		    padding: 10px 0 0;
	}
}
.t_xcz {background: #364799;padding: 8px 15px;border-radius: 8px;margin-right: 24px;margin-top: -5px;}
.t_xcz .img{float: left;}

.t_xcz .text{float: left;font-size: 16px;color: #fefefe;margin-left: 8px;margin-top: 5px;}

.d-bc li.sign5 .RadioStyle .Block label{
      /* border: 1px solid #CCC; */
    font-size: 16px;
    border: 1px solid #ebebeb;
    color: #666;
    padding: 10px 10px 10px 5px;
    line-height: 28px;
    width: 25%;
    text-align: center;
    float: left;
    margin: 2px;
    margin: 0 0px 0 10px;
    border-radius: 4px;
    position: initial;
    height: auto;
}

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

.a-bag dl dd .t{
      box-shadow: 0px 2px 4px 0px rgba(102, 102, 102, 0.14);
    font-size: 16px;
    color: #333333;
    line-height: 50px;
    padding-left: 28px;
    border-left: 2px solid #4a59a1;
    background: #f4f7fe;
}

.a-bag dl dd .c {
    box-shadow: 0px 2px 4px 0px rgba(102, 102, 102, 0.14);
    font-size: 14px;
    color: #333333;
    background: #fff;
    padding: 20px 20px 20px 30px;
}

.b-b .select #selectx_gaozhong a{
 /* border: 1px solid #CCC; */
    font-size: 16px;
    border: 1px solid #ebebeb;
    color: #666;
    padding: 10px 15px 10px 15px;
    line-height: 28px;
  /*  width: 18%;*/
    text-align: center;
    float: left;
    margin: 2px;
    margin: 0 0px 0 10px;
    border-radius: 4px;
    background: none;
}

.b-b .select #selectx_gaozhong a.cur{
  background: #364799;
   border: 1px solid #364799;
   color: #fff;
}

.b-b .select #selectx_gaozhong a:nth-child(1){
  margin-left: 0;
}



@media (max-width: 480px){
  .b-b .select_sign{
    width: 100%;

  }
  .b-b .select_sign p{
    width: 20%;
  }
  .b-b .select #selectx_gaozhong a{
    padding: 5px 15px 5px 15px;
    font-size: 12px;
  }
}

@media (max-width: 400px){
  .b-b .select_sign p{
    width: 24%;
  }
}

.t_d-bc .RadioStyle label{
	width: 18%;
}
@media (max-width: 1100px){
	.t_d-bc .RadioStyle label.lab4 {
			padding: 5px 10px 5px 5px;
	}
	.t_d-bc .RadioStyle label{
		width: 19%;
	}
}
@media (max-width: 640px){
	.t_d-bc .RadioStyle label{
		width: 18%;
	}
}
@media (max-width: 400px){
	.t_d-bc .RadioStyle label{
		font-size: 14px;
	}
}
@media (max-width: 360px){
	.t_d-bc .RadioStyle label{
		font-size: 12px;
	}
}

.newsshow .left .detail iframe{
	width: 100%;
	height: 500px;
}

@media (max-width: 1068px){
	.newsshow .left .detail iframe{
		width: 100%;
		height: 500px;
		text-align: center;
		
	}
}
@media (max-width: 768px){
	.newsshow .left .detail iframe{
		width: 100%;
		height: 300px;
	}
}
@media (max-width: 680px){
	.newsshow .left .detail iframe{
		width: 100%;
		height: 300px;
	}
}
@media (max-width: 640px){
	.newsshow .left .detail iframe{
		width: 100%;
		height: 300px;
	}
}
@media (max-width: 589px){
	.newsshow .left .detail iframe{
		width: 100%;
		height: 300px;
	}
}
@media (max-width: 330px){
	.newsshow .left .detail iframe{
		width: 100%;
		height: 150px;
	}
}

@media (max-width: 480px) {
  .b-b .select4{
    width: 44%;
  }
  .b-b .select5 .sel-con{
    width: 100%;
  }
}

@media (max-width: 400px) {
  .b-b .select4 {
    width: 52%;
  }
  .b-b .select5{
    width: 44%;
  }
  .b-b .select5 .sel-con{
    width: 100%;
  }
  .val0{
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .b-b .select02 .select_sign{
    width: 33%;
  }
}

.b-b .select #selectx_gaozhong a:nth-child(1){display: none;}

.header_box .head .text {
  position: relative;
}

.header_box .head .text .piancz{
  position: absolute;
  top: 100%;
  left: auto;
  z-index:999999;
  right: auto;
  display:none;
}
.header_box .head .text:hover .piancz{
  display:block;
}




.mbx .home{padding-left: 25px;position: relative;}
.location { position: relative; z-index: 100; }
.mbx .home:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(../images/mbx.png)center center/cover;
    width: 15px;
    height: 15px;
    content: "";
}
.hf_jjfa1 .g-in { padding: 0 44px; margin-bottom: 40px; }
.hf_jjfa1 { padding-top: 10px; }
.g-in { margin: 0 auto; width: 1220px; }
.mbx { padding: 0px 0; }
.mbx a {
    color: #999999;
    font-size: 16px;
}

.mbx a.cur {
    color: #333333;
}

.bgNone { background: none; }
.mbx a span.songti {
    font-family: 宋体;
    font-weight: bold;
    display: inline-block;
    margin: 0 4px;
}
@media(max-width:  1000px){
  .location { display: block; }
  .mbx { padding: 0px 0; }
}








/**2022-11-4**/
.gban{
  background: url(../images/close.png)no-repeat center center/cover;
  width: 20px;
  height: 20px;
  float: right;
  margin-bottom: 20px;
  cursor: pointer;
}

/*2023-2-24*/
.nr{
  width: 100%;
}
.nr .container{
  width: 85%;
  margin: 0 auto;
}
.nr .container{
  font-size: 20px;
  color: #000;
  padding: 150px 0;
}
.nr .container .bt{
  font-size: 30px;
  color: #000;
  text-align: center;
}
.nr .container .nr1{
  line-height: 1.6;
  margin-top: 60px;
}
.nr .container p{
  margin-bottom: 5px;
}
.nr .container .nr1 h3{
  margin-bottom: 20px;
}
.nr .container .bt2{
  margin: 30px 0;
}
.foot{
  text-align: center;
  padding: 20px 0;
}




/**小慢**/
.wzfml{
  padding: 5vw 0 7vw;
}

.wzfml .bt{
  color: #333;
  text-align: center;
  font-size: 25px;
  margin-bottom: 50px;
}

.wzfml .nr .nra{
  margin-bottom: 20px;
}

.wzfml .nr .nra .zwl{
  float: left;
  color: #333333;
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
  width: 72px;
}

.wzfml .nr .nra .zwr{
  float: left;
  font-size: 18px;
  line-height: 1;
  color: #666666;
  margin-left: 30px;
}

.wzfml .nr .nra .zwr p{
  margin-bottom: 10px;
}

.wzfml .nr .nra .zwr p:last-child{
  margin-bottom: 0;
}

.wzfml .nr .xmjj{
  margin-bottom: 50px;
}

.bah{
  text-align: center;
  background: #333;
}

.bah a{
  display: inline-block;
  color: #fff;
  font-size: 12px;
  padding: 5px 0;
}

@media(max-width: 1024px) {
  .wzfml{
    padding: 35px 0 45px;
  }

  .wzfml .container{
    padding: 0 4%;
  }

  .wzfml .bt{
    font-size: 18px;
    margin-bottom: 25px;
  }

  .wzfml .nr .nra .zwl{
    font-size: 16px;
    font-weight: bold;
  }

  .wzfml .nr .nra .zwr{
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

  .wzfml .nr .xmjj {
      margin-bottom: 25px;
  }
}