﻿  @charset "utf-8";
  /* 此文件作为总入口，引入所有less文件，之后会编译为all.css */
  /*CSS Document*/
  /*init BEGIN*/
  
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  hr,
  p,
  blockquote,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  pre,
  fieldset,
  lengend,
  button,
  input,
  textarea,
  th,
  td {
      margin: 0;
      padding: 0;
      outline: none;
  }
  
  .wow {
      visibility: hidden;
  }
  /*清除内外边距*/
  
  a:focus {
      -moz-outline-style: none;
  }
  /*IE不支持这个*/
  
  a:focus {
      outline: none;
  }
  /*很多网站都会加的属性*/
  
  body,
  button,
  input,
  select,
  textarea {
      /*for ie*/
      /*font:12px/1 Tahoma,Helvetica,Arial,"宋体",sans-serif;*/
      font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
      /*用 ascii 字符表示，使得在任何编码下都无问题*/
  }
  /*设置默认字体*/
  
  address,
  cite,
  dfn,
  em,
  var {
      font-style: normal;
  }
  /*将斜体扶正*/
  
  code,
  kbd,
  pre,
  samp,
  tt {
      font-family: "Courier New", Courier, monospace;
  }
  /*统一等宽字体*/
  
  small {
      font-size: 12px;
  }
  /*小于 12px 的中文很难阅读，让 small 正常化*/
  
  ul,
  ol {
      list-style: none;
  }
  /*重置列表元素*/
  
  a {
      text-decoration: none;
  }
  /*重置文本格式元素*/
  
  abbr[title],
  acronym[title] {
      /*注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果*/
      border-bottom: 1px dotted;
      cursor: help;
  }
  
  q:before,
  q:after {
      content: '';
  }
  /*重置表单元素*/
  
  legend {
      color: #000;
  }
  /*for ie6*/
  
  fieldset,
  img {
      border: none;
  }
  /*img 搭车：让链接里的 img 无边框*/
  /*注：optgroup 无法扶正*/
  
  button,
  input,
  select,
  textarea {
      font-size: 100%;
      /*使得表单元素在 ie 下能继承字体大小*/
  }
  
  table {
      border-collapse: collapse;
      border-spacing: 0;
  }
  /*重置表格元素*/
  
  hr {
      border: none;
      height: 1px;
  }
  /*重置 hr*/
  
  html {
      overflow-y: scroll;
  }
  
  @font-face {
      src: url('../public/DINCond-Medium.otf') format('truetype');
  }
  /*让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁*/
  /*清除float BEGIN*/
  
  .clearfix:after {
      content: ".";
      display: block;
      height: 0;
      clear: both;
      visibility: hidden;
  }
  
  .clearfix {
      display: inline-block;
      display: block;
      zoom: 1;
  }
  /*清除float END*/
  /*init END*/
  /*banner BEGIN*/
  
  .cg_banner {
      width: 100%;
      overflow: hidden;
      position: relative;
  }
  /*子页banner高度*/
  
  .cg_banner,
  .cg_banner_listbox,
  .cg_banner_listbox ul,
  .cg_banner_listbox ul li,
  .cg_banner_listbox ul li a {
      display: block;
      height: 462px;
  }
  /*首页banner高度*/
  
  .cg_banner.cg_index_banner,
  .cg_index_banner .cg_banner_listbox,
  .cg_index_banner .cg_banner_listbox ul,
  .cg_index_banner .cg_banner_listbox ul li,
  .cg_index_banner .cg_banner_listbox ul li a {
      display: block;
      height: 726px;
  }
  
  .cg_banner_listbox {
      position: relative;
      height: 100%;
      z-index: 0;
  }
  
  .cg_banner_listbox ul li {
      zoom: 1;
      vertical-align: middle;
  }
  /*li按钮*/
  
  .cg_banner .hd {
      height: 15px;
      overflow: hidden;
      position: absolute;
      right: 0;
      bottom: 20px;
      z-index: 1;
      width: 100%;
  }
  
  .cg_banner .hd ul {
      overflow: hidden;
      zoom: 1;
      clear: both;
      width: 100%;
      text-align: center;
  }
  
  .cg_banner .hd ul li {
      display: inline-block;
      *zoom: 1;
      *display: inline;
      margin: 0 5px;
      width: 10px;
      height: 10px;
      text-align: center;
      background: #fff;
      cursor: pointer;
      overflow: hidden;
      line-height: 8px;
      color: #fff;
      border-radius: 50%;
  }
  
  .cg_banner .hd ul li.on {
      background: #f93445;
      color: #f93445;
  }
  /*前/后按钮代码*/
  
  .cg_banner .next {
      position: absolute;
      left: -3%;
      top: 50%;
      margin-top: -20px;
      display: block;
      width: 33px;
      height: 40px;
      z-index: 99;
      background-image: url(../images/jt1.png);
      background-position: left center;
      background-repeat: no-repeat;
      transition: .3s;
  }
  
  .cg_banner .prev {
      margin-top: -20px;
      display: block;
      width: 33px;
      height: 40px;
      z-index: 99;
      position: absolute;
      right: -3%;
      top: 50%;
      background-image: url(../images/jt2.png);
      background-position: right center;
      transition: .3s;
      background-repeat: no-repeat;
  }
  
  .cg_banner:hover .prev {
      right: 3%;
  }
  
  .cg_banner:hover .next {
      left: 3%;
  }
  
  .cg_banner .next:hover {
      background-position: right center;
      transition: .3s;
  }
  
  .cg_banner .prev:hover {
      background-image: url(../images/jt2.png);
      background-position: left center;
  }
  
  .cg_banner .prevStop {
      display: none;
  }
  
  .cg_banner .nextStop {
      display: none;
  }
  /*banner END*/
  /*上下篇 BEGIN*/
  
  .sub_updown_hei {
      height: 26px;
      line-height: 26px;
  }
  
  .sub_updown {
      clear: both;
      font-family: "微软雅黑";
      overflow: hidden;
      font-size: 12px;
      padding: 4px 0;
      width: 100%;
  }
  
  .sub_updown div {
      clear: both;
      overflow: hidden;
      margin: 6px 0px;
      height: 26px;
      line-height: 26px;
  }
  
  .sub_updown div a {
      display: block;
      color: #666;
      height: 26px;
      line-height: 26px;
  }
  
  .sub_updown div a[href]:hover {
      color: #06F;
  }
  
  .sub_updown span {
      display: block;
      float: left;
      cursor: pointer;
      height: 26px;
      line-height: 26px;
  }
  /*上下篇 END*/
  /*分页 BEGIN*/
  
  .ql_fenye {
      clear: both;
      width: 100%;
      text-align: center;
      font-family: "微软雅黑";
      font-size: 12px;
      height: 100px;
      padding-top: 50px;
  }
  
  .ql_fenye a {
      display: inline-block;
      width: 35px;
      height: 22px;
      text-align: center;
      line-height: 22px;
      font-size: 14px;
      color: #9f9f9f;
      border-radius: 20px;
      border: 1px solid #e2e5ea;
      margin-left: 8px;
      margin-right: 8px;
  }
  
  .ql_fenye span {
      display: inline-block;
      width: 35px;
      height: 22px;
      text-align: center;
      line-height: 22px;
      font-size: 14px;
      color: #fff;
      border-radius: 20px;
      border: 1px solid #f93445;
      margin-left: 8px;
      margin-right: 8px;
      background: #f93445;
  }
  
  .ql_fenye a:hover {
      background: #f93445;
      border: 1px solid #f93445;
      color: #fff;
  }
  /*选中需要全部important一下*/
  /*分页 END*/
  /*百度地图*/
  
  .iw_poi_title {
      color: #CC5522;
      font-size: 14px;
      font-weight: bold;
      overflow: hidden;
      padding-right: 13px;
      white-space: nowrap;
  }
  
  .iw_poi_content {
      font: 12px arial, sans-serif;
      overflow: visible;
      padding-top: 4px;
      white-space: -moz-pre-wrap;
      word-wrap: break-word;
  }
  
  a[href] * {
      cursor: pointer;
  }
  /*此文件放置共用函数、变量等*/
  /* 手机rem单位字号，与js保持一致 */
  /* 兼容IE7 透明度写法 */
  /* 字体设置 */
  /* 定位属性 */
  /* 遮罩层定位 */
  /* 截字符 */
  
  .ellipsis {
      overflow: hidden;
      white-space: nowrap;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
  }
  /* 公用类 */
  
  body {
      font-size: 12px;
      color: #333;
      line-height: 1.8;
      font-family: "微软雅黑";
  }
  /* 清楚浮动 */
  
  .clearfix {
      zoom: 1;
  }
  
  .clearfix:after {
      content: "\0020";
      display: block;
      height: 0;
      clear: both;
      visibility: hidden;
  }
  
  input {
      background: none;
      font-family: 微软雅黑;
      border: none;
  }
  
  textarea {
      background: none;
      font-family: 微软雅黑;
      border: none;
  }
  
  .hxq_gaba {
      display: inline-block;
      line-height: 26px;
      padding-left: 25px;
      min-height: 20px !important;
      background: url(../images/bah_10.png) no-repeat left center;
  }
  
  .hxq_w1920 {
      position: relative;
      max-width: 1920px;
      width: 100%;
      margin: 0 auto;
  }
  
  .hxq_w1200 {
      width: 1200px;
      margin: 0 auto;
  }
  
  .hxq_w1003 {
      width: 1003px;
      margin: 0 auto;
  }
  /* CSS Document */
  /*以下为公用样式，不可以修改，如涉及到参数请在html页面删除相应的class或id*/
  
  body {
      font-size: 12px;
      line-height: 26px;
      font-family: "微软雅黑";
      white-space: normal;
      word-break: break-word;
  }
  
  .cg_fs {
      font-family: "宋体";
  }
  
  .cg_l {
      float: left;
  }
  
  .cg_r {
      float: right;
  }
  /*width*/
  
  .w1002,
  .w1004,
  .w1100,
  .w1200,
  .w1216,
  .w1280 {
      margin: 0 auto;
  }
  
  .w1002 {
      width: 1002px;
  }
  
  .w1004 {
      width: 1004px;
  }
  
  .w1100 {
      width: 1100px;
  }
  
  .w1200 {
      width: 1200px;
  }
  
  .w1216 {
      width: 1216px;
  }
  
  .w1280 {
      width: 1280px;
  }
  /*height*/
  
  .cg_height5 {
      height: 5px;
  }
  
  .cg_height10 {
      height: 10px;
  }
  
  .cg_height15 {
      height: 15px;
  }
  
  .cg_height20 {
      height: 20px;
  }
  
  .cg_height25 {
      height: 25px;
  }
  
  .cg_height30 {
      height: 30px;
  }
  
  .cg_height35 {
      height: 35px;
  }
  
  .cg_height40 {
      height: 40px;
  }
  
  .cg_height45 {
      height: 45px;
  }
  
  .cg_height50 {
      height: 50px;
  }
  
  .cg_height55 {
      height: 55px;
  }
  
  .cg_height60 {
      height: 60px;
  }
  
  .cg_height65 {
      height: 65px;
  }
  
  .cg_height70 {
      height: 70px;
  }
  
  .cg_height75 {
      height: 75px;
  }
  
  .cg_height80 {
      height: 80px;
  }
  
  .cg_height85 {
      height: 85px;
  }
  
  .cg_height90 {
      height: 90px;
  }
  
  .cg_height95 {
      height: 95px;
  }
  
  .cg_height100 {
      height: 100px;
  }
  
  .cg_height105 {
      height: 105px;
  }
  
  .cg_height110 {
      height: 110px;
  }
  
  .cg_height115 {
      height: 115px;
  }
  
  .cg_height120 {
      height: 120px;
  }
  
  .cg_height125 {
      height: 125px;
  }
  
  .cg_height130 {
      height: 130px;
  }
  
  .cg_height135 {
      height: 135px;
  }
  
  .cg_height140 {
      height: 140px;
  }
  
  .cg_height145 {
      height: 145px;
  }
  
  .cg_height150 {
      height: 150px;
  }
  /*margin*/
  
  .cg_margin_rightno {
      margin-right: 0 !important;
  }
  
  .cg_margin_topno {
      margin-top: 0 !important;
  }
  
  .cg_margin_bottomno {
      margin-bottom: 0 !important;
  }
  
  .cg_margin_leftno {
      margin-left: 0 !important;
  }
  /*padding*/
  
  .cg_padding_leftno {
      padding-left: 0 !important;
  }
  
  .cg_padding_rightno {
      padding-right: 0 !important;
  }
  
  .cg_padding_topno {
      padding-top: 0 !important;
  }
  
  .cg_padding_bottomno {
      padding-bottom: 0 !important;
  }
  /*border*/
  
  .cg_border_topno {
      border-top: none !important;
  }
  
  .cg_border_leftno {
      border-left: none !important;
  }
  
  .cg_border_rightno {
      border-right: none !important;
  }
  
  .cg_border_bottomno {
      border-bottom: none !important;
  }
  /*关键字样式*/
  
  .ql_subpag_about a {
      font-weight: bold;
      color: #000;
  }
  
  .ql_subpag_about a:hover {
      color: #666;
  }
  
  .qgl_mgaba {
      display: inline-block;
      *zoom: 1;
      *display: inline;
      line-height: 26px;
      padding-left: 25px;
      min-height: 20px !important;
      background: url(../images/gaba.png) no-repeat left center;
  }
  /*以上为公用样式，不可以修改，如涉及到参数请在html页面删除相应的class或id*/
  /*头部*/
  
  .top {
      height: 120px;
      width: 100%;
      position: absolute;
      z-index: 999;
  }
  
  .top1 {
      width: 1200px;
      height: 85px;
      margin: 0 auto;
  }
  
  .top.on {
      position: fixed;
      top: 0px;
      left: 0px;
      transition: .3s;
      background: #fe4656;
  }
  
  .logo {
      display: block;
      width: 144px;
      height: 39px;
      float: left;
      margin-top: 28px;
  }
  
  .top1_1 {
      /*width: 163px;*/
      height: 40px;
      float: right;
      margin-top: 45px;
      line-height: 40px;
      color: #fff;
      padding-left: 32px;
      background-image: url(../images/st1.png);
      background-position: left center;
      background-repeat: no-repeat;
      font-size: 14px;
  }
  
  .top1_1 a {
      color: #fff;
  }
  
  .top1_1 a[href]:hover {
      color: #000;
  }
  
  .top1_1 span {
      color: #fff;
      font-size: 12px;
      display: inline-block;
  }
  
  .nav {
      width: 768px;
      height: 40px;
      float: right;
      margin-top: 45px;
  }
  
  .nav ul>li {
      height: 40px;
      float: left;
      margin-right: 50px;
      position: relative;
  }
  
  .nav ul {
      height: 40px;
  }
  
  .nav ul>li>a {
      display: block;
      height: 40px;
      line-height: 40px;
      color: #fff;
      font-size: 16px;
      position: relative;
      overflow: hidden;
      text-align: center;
  }
  
  .nav ul>li>a span {
      display: block;
      height: 40px;
      line-height: 40px;
      border-bottom: 1px solid #fff;
      color: #fff;
      font-size: 16px;
      text-align: center;
      transition: .3s;
  }
  
  .nav ul>li>a em {
      display: block;
      height: 40px;
      line-height: 40px;
      color: #fff;
      font-size: 16px;
      text-align: center;
      transition: .3s;
  }
  
  .nav ul>li>a:hover em {
      margin-top: -41px;
      transition: .3s;
  }
  
  .nav ul>li.on>a em {
      margin-top: -41px;
      transition: .3s;
  }
  
  .sub {
      position: absolute;
      width: 180px;
      background-color: #FFF;
      box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .05);
      height: auto;
      z-index: 199;
      top: 100%;
      left: 0;
      border-top: 2px solid #e40807;
      overflow: hidden;
      visibility: hidden;
      opacity: 0;
      z-index: 999;
      transition: .3s;
  }
  
  .sub ul li {
      width: 100%;
      height: 47px;
  }
  
  .sub ul li a {
      display: block;
      width: 85%;
      height: 47px;
      line-height: 47px;
      color: #9c9c9c;
      text-align: left;
      padding-left: 15%;
      transition: .3s;
      font-size: 12px;
  }
  
  .nav ul>li:hover .sub {
      opacity: 1;
      visibility: visible;
      transition: .3s;
  }
  
  .sub ul li a:hover {
      padding-left: 20%;
      width: 80%;
      transition: .3s;
      background: #f8f8f8;
      color: #464646;
  }
  
  .sub ul li a.on {
      padding-left: 20%;
      width: 80%;
      transition: .3s;
      background: #f8f8f8;
      color: #464646;
  }
  
  .kc {
      height: 416px;
      text-align: center;
  }
  
  .kc ul li {
      width: 477px;
      height: 231px;
      display: inline-block;
      background: #fff;
      margin-top: 100px;
      margin-left: 13px;
      margin-right: 13px;
  }
  
  .kc ul li a {
      display: block;
      width: 100%;
      padding-bottom: 50.28%;
      overflow: hidden;
      position: relative;
      height: 0;
      background-color: #fff;
  }
  
  .kc ul li a img {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
  }
  
  .kctx {
      height: 795px;
      background-position: top center;
      background-repeat: no-repeat;
  }
  
  .kctx1 {
      width: 1200px;
      height: 795px;
      margin: 0 auto;
      overflow: hidden;
  }
  
  .kctx1 h2 {
      text-align: center;
      margin-top: 120px;
  }
  
  .kctx1 h2 a>em {
      font-size: 92px;
      color: #ebecee;
      text-transform: capitalize;
  }
  
  .kctx1 h2 a span {
      display: block;
      width: 100px;
      margin: -20px auto 2px;
      text-align: center;
      font-size: 24px;
      color: #4d3f3f;
      height: 40px;
      line-height: 35px;
      font-weight: normal;
      position: relative;
      transition: .3s;
  }
  
  .kctx1 h2 a span>em {
      display: block;
      width: 48px;
      height: 1px;
      position: absolute;
      bottom: -3px;
      left: 50%;
      margin-left: -24px;
      background: #fe4656;
      transition: .3s;
  }
  
  .kctx1 h2 a:hover span>em {
      width: 100px;
      left: 50%;
      margin-left: -50%;
      transition: .3s;
  }
  
  .kctx1 h2 a:hover span {
      color: #fe4656;
      transition: .3s;
  }
  
  .kctx1 p {
      font-size: 14px;
      color: #666;
      text-align: center;
      margin-top: 15px;
  }
  
  .kctx2 {
      width: 1146px;
      margin: 60px auto 0px;
      overflow: hidden;
  }
  
  .kctx2 .bd ul li {
      width: 347px;
      float: left;
      transition: .3s;
      position: relative;
      padding-bottom: 20px;
      margin-right: 40px;
  }
  
  .kctx2 .bd ul li>a {
      display: block;
      width: 100%;
      overflow: hidden;
      position: relative;
      padding-bottom: 65.41%;
  }
  
  .kctx2 .bd ul li>a img {
      display: block;
      width: 100%;
      height: 100%;
      transition: .3s;
      position: absolute;
      left: 0;
      top: 0;
  }
  
  .kctx2 .bd ul li:hover>a img {
      transform: scale(1.05, 1.05);
      transition: .5s;
  }
  
  .kctx_z {
      min-height: 100px;
      padding-top: 30px;
      padding-left: 10px;
      padding-right: 10px;
  }
  
  .kctx_z h3 a {
      font-size: 18px;
      color: #333;
      width: 100%;
      display: inline-block;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
  }
  
  .kctx_z span {
      font-size: 14px;
      color: #8d8d8d;
      display: block;
      line-height: 30px;
      margin-top: 5px;
      height: 60px;
      overflow: hidden;
  }
  
  .kctx_z em {
      display: block;
      width: 100%;
      text-align: center;
      font-size: 12px;
      color: #333;
      opacity: 0;
  }
  
  .kctx2 .bd ul li:hover .kctx_z em {
      opacity: 1;
      transition: .5s;
      margin-top: -5px;
  }
  
  .kctx2 .bd ul li:hover {
      box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
      margin-top: -10px;
      transition: .5s all;
  }
  
  .gg {
      width: 0px;
      position: absolute;
      left: 50%;
      bottom: 0px;
      height: 1px;
      background: #dadada;
  }
  
  .kctx2 .bd ul li:hover .gg {
      width: 100%;
      height: 1px;
      background: #E2E2E2;
      position: absolute;
      left: 50%;
      bottom: 0px;
      margin-left: -50%;
      transition: .5s;
  }
  
  .kctx2 .hd {
      height: 11px;
      text-align: center;
      margin-top: 40px;
  }
  
  .kctx2 .hd ul li {
      display: inline-block;
      width: 11px;
      height: 11px;
      background-image: url(../images/kc_l1.png);
      background-position: center;
      text-indent: -999px;
      overflow: hidden;
      margin-right: 3px;
      margin-left: 3px;
      cursor: pointer;
  }
  
  .kctx2 .hd ul li.on {
      background-image: url(../images/kc_l2.png);
  }
  
  .gywm1 {
      width: 1200px;
      margin: 0 auto;
      overflow: hidden;
  }
  
  .gywm1 h2 {
      text-align: center;
      margin-top: 70px;
  }
  
  .gywm1 h2 a>em {
      font-size: 92px;
      color: #ebecee;
      text-transform: capitalize;
  }
  
  .gywm1 h2 a span {
      display: block;
      width: 100px;
      margin: 2px auto;
      text-align: center;
      font-size: 24px;
      color: #4d3f3f;
      height: 40px;
      line-height: 35px;
      font-weight: normal;
      position: relative;
      transition: .3s;
  }
  
  .gywm1 h2 a span>em {
      display: block;
      width: 48px;
      height: 1px;
      position: absolute;
      bottom: -3px;
      left: 50%;
      margin-left: -24px;
      background: #fe4656;
      transition: .3s;
  }
  
  .gywm1 h2 a:hover span>em {
      width: 100px;
      left: 50%;
      margin-left: -50%;
      transition: .3s;
  }
  
  .gywm1 h2 a:hover span {
      color: #fe4656;
      transition: .3s;
  }
  
  .gywm_z {
      width: 865px;
      font-size: 14px;
      color: #666;
      margin: 50px auto 0px;
      text-align: center;
      line-height: 30px;
  }
  
  .gywm1>a {
      display: block;
      width: 90px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      border-radius: 20px;
      border: 1px solid #bebebe;
      color: #666;
      font-size: 16px;
      margin: 45px auto;
      transition: .3s;
  }
  
  .gywm1>a:hover {
      background: #fe4656;
      color: #fff;
      border: 1px solid #fe4656;
      transition: .3s;
  }
  
  .sz {
      height: 613px;
      background-position: center;
  }
  
  .sz1 {
      width: 1200px;
      margin: 0 auto;
      overflow: hidden;
  }
  
  .sz1 h2 {
      color: #fff;
      text-align: center;
      font-size: 36px;
      font-weight: normal;
      text-align: center;
      margin-top: 95px;
  }
  
  .sz1 h2 span {
      font-size: 18px;
      color: #fff;
      display: inline-block;
      width: 100%;
      margin-top: 15px;
  }
  
  .sz1_1 {
      height: 335px;
  }
  
  .sz1_1_le {
      width: 400px;
      height: 220px;
      float: left;
      background-image: url(../images/sz2.png);
      background-position: center;
      margin-top: 40px;
  }
  
  .sz1_1_le div {
      width: 50%;
      height: 90px;
      float: left;
      text-align: center;
      padding-top: 20px;
  }
  
  .sz1_1_le div h1 {
      font-size: 36px;
      color: #fff;
      font-weight: normal;
      margin-bottom: 10px;
  }
  
  .sz1_1_le div span {
      font-size: 18px;
      color: #fff;
  }
  
  .sz1_1 img {
      display: block;
      float: right;
      margin-top: -19px;
      margin-right:-3px;
  }
  /*师资力量*/
  
  .szll {
      height: 790px;
      background-image: url(../images/szll1.png);
      background-repeat: no-repeat;
      background-position: center;
      overflow: hidden;
  }
  
  .szll h2 {
      text-align: center;
      margin-top: 85px;
  }
  
  .szll h2 a>em {
      font-size: 92px;
      color: #ebecee;
      text-transform: capitalize;
  }
  
  .szll h2 a span {
      display: block;
      width: 100px;
      margin: 2px auto;
      text-align: center;
      font-size: 24px;
      color: #4d3f3f;
      height: 40px;
      line-height: 35px;
      font-weight: normal;
      position: relative;
      transition: .3s;
  }
  
  .szll h2 a span>em {
      display: block;
      width: 48px;
      height: 1px;
      position: absolute;
      bottom: -3px;
      left: 50%;
      margin-left: -24px;
      background: #fe4656;
      transition: .3s;
  }
  
  .szll h2 a:hover span>em {
      width: 100px;
      left: 50%;
      margin-left: -50%;
      transition: .3s;
  }
  
  .szll h2 a:hover span {
      color: #fe4656;
      transition: .3s;
  }
  
  .szll1 {
      height: 500px;
      margin-top: 50px;
      position: relative;
  }
  
  .szll1 .bd {
      width: 855px;
      height: 370px;
      margin: 0 auto;
      position: relative;
      overflow: visible
  }
  
  .szll1 .bd ul li {
      width: 855px;
      height: 370px;
  }
  
  .szll1 .bd ul li>a {
      display: block;
      width: 165px;
      height: 165px;
      margin: 0 auto;
      border-radius: 50%;
      overflow: hidden;
  }
  
  .szll1 .bd ul li>a img {
      width: 165px;
      height: 165px;
  }
  
  .szll1 .bd ul li>a.szll1_z {
      display: block;
      width: 100%;
      height: 200px;
      background: #f9f9f9;
      border-radius: 5px;
      margin-top: -63px;
      padding-top: 63px;
      text-align: center;
  }
  
  .szll1 .bd ul li>a.szll1_z h3 {
      font-size: 18px;
      color: #fb6069;
      font-weight: normal;
      margin-top: 20px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding-left: 30px;
      padding-right: 30px;
  }
  
  .szll1 .bd ul li>a.szll1_z span {
      display: block;
      width: 615px;
      height: 100px;
      text-align: center;
      margin: 40px auto 0px;
      font-size: 14px;
      color: #666;
      line-height: 30px;
  }
  
  .qq {
      width: 77px;
      height: 77px;
      border-radius: 50%;
      border: 1px solid #fb6069;
      position: absolute;
      left: 22%;
      top: 40px;
  }
  
  .qq1 {
      width: 77px;
      height: 77px;
      border-radius: 50%;
      border: 1px solid #fb6069;
      position: absolute;
      right: 22%;
      bottom: 80px;
  }
  
  .szll1 .hd {
      height: 2px;
      text-align: center;
      margin-top: 80px;
  }
  
  .szll1 .hd ul li {
      height: 2px;
      width: 40px;
      display: inline-block;
      margin-left: 5px;
      margin-right: 5px;
      background: #e6e6e6;
  }
  
  .szll1 .hd ul li.on {
      background: #fb6069;
  }
  
  .szll1 .bd>a {
      display: block;
      width: 55px;
      height: 55px;
  }
  
  .szll1 .bd>a.prev {
      background-image: url(../images/szll3.png);
      background-position: center bottom;
      position: absolute;
      top: 195px;
      left: -200px;
      transition: .3s;
  }
  
  .szll1 .bd>a.prev:hover {
      background-image: url(../images/szll3.png);
      background-position: center top;
      transition: .3s;
  }
  
  .szll1 .bd>a.next {
      background-image: url(../images/szll4.png);
      background-position: center bottom;
      position: absolute;
      top: 195px;
      right: -200px;
      transition: .3s;
  }
  
  .szll1 .bd>a.next:hover {
      background-image: url(../images/szll4.png);
      background-position: center top;
      transition: .3s;
  }
  
  .xw {
      height: 800px;
      overflow: hidden;
      margin-bottom: 60px;
  }
  
  .xw h2 {
      text-align: center;
      margin-top: 85px;
  }
  
  .xw h2 a>em {
      font-size: 92px;
      color: #ebecee;
      text-transform: capitalize;
  }
  
  .xw h2 a span {
      display: block;
      width: 100px;
      margin: 2px auto;
      text-align: center;
      font-size: 24px;
      color: #4d3f3f;
      height: 40px;
      line-height: 35px;
      font-weight: normal;
      position: relative;
      transition: .3s;
  }
  
  .xw h2 a span>em {
      display: block;
      width: 48px;
      height: 1px;
      position: absolute;
      bottom: -3px;
      left: 50%;
      margin-left: -24px;
      background: #fe4656;
      transition: .3s;
  }
  
  .xw h2 a:hover span>em {
      width: 100px;
      left: 50%;
      margin-left: -50%;
      transition: .3s;
  }
  
  .xw h2 a:hover span {
      color: #fe4656;
      transition: .3s;
  }
  
  .xw h2 p {
      font-size: 14px;
      color: #666;
      font-weight: normal;
      margin-top: 17px;
  }
  
  .xw1 {
      width: 1200px;
      height: 800px;
      margin: 0 auto;
      overflow: hidden;
  }
  
  .xw2 {
      height: 445px;
      margin-top: 75px;
  }
  
  .xw2 .bd ul li {
      width: 371px;
      height: 445px;
      float: left;
      margin-right: 40px;
  }
  
  .xw2 .bd ul li>a {
      display: block;
      width: 100%;
      padding-bottom: 65.48%;
      position: relative;
      overflow: hidden;
  }
  
  .xw2 .bd ul li>a img {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      transition: .3s;
  }
  
  .xw2 .bd ul li h3 a {
      display: block;
      height: 144px;
      padding-left: 20px;
      padding-right: 20px;
      position: relative;
      border-bottom: 1px solid #e2e4e6;
  }
  
  .xw2 .bd ul li h3 a strong {
      font-size: 16px;
      color: #333;
      font-weight: normal;
      display: inline-block;
      width: 100%;
      margin-top: 20px;
      transition: .3s;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
  }
  
  .xw2 .bd ul li h3 a span {
      display: block;
      font-size: 14px;
      color: #777;
      font-weight: normal;
      line-height: 30px;
      margin-top: 15px;
      overflow: hidden;
      height: 55px;
  }
  
  .xw2 .bd ul li h3 a em {
      display: block;
      width: 0px;
      height: 1px;
      background: #f93445;
      position: absolute;
      bottom: 0px;
      left: 0px;
      transition: .3s;
  }
  
  .xw2 .bd ul li:hover h3 a em {
      width: 100%;
      transition: .5s;
  }
  
  .xw2 .bd ul li:hover h3 a strong {
      color: #f93445;
      transition: .3s;
  }
  
  .xw2 .bd ul li:hover>a img {
      transform: scale(1.1);
      transition: .3s;
  }
  
  .xw2_1 {
      height: 50px;
      line-height: 50px;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 20px;
      color: #777777;
      font-family: "DINCond-Medium";
      transition: .5s;
      background-position: 290px center;
  }
  
  .xw2 .bd ul li:hover .xw2_1 {
      background-position: 310px;
      background-image: url(../images/xw2_2.png);
      background-repeat: no-repeat;
      transition: .5s;
      color: #f93445;
  }
  
  .xw2 .hd {
      height: 12px;
      text-align: center;
      margin-top: 40px;
  }
  
  .xw2 .hd ul li {
      width: 11px;
      height: 11px;
      display: inline-block;
      margin-left: 8px;
      margin-right: 8px;
      background-image: url(../images/xw3.png);
      text-indent: -999px;
      overflow: hidden;
      cursor: pointer;
  }
  
  .xw2 .hd ul li.on {
      background-image: url(../images/xw4.png);
  }
  
  .st {
      height: auto;
      background-position: top center;
      background-repeat: no-repeat;
      margin-top: 90px;
      overflow: hidden;
  }
  
  .st1 {
      width: 1200px;
      height: auto;
      margin: 0 auto;
      overflow: hidden;
      padding-bottom: 5px;
  }
  
  .st_bt {
      text-align: center;
      padding-top: 120px;
  }
  
  .st_bt span {
      font-size: 18px;
      color: #fff;
  }
  
  .st_bt h2 {
      display: block;
      width: 465px;
      height: 65px;
      margin: 10px auto;
      font-size: 52px;
      color: #fff;
      background-image: url(../images/st3.png);
      background-position: right center;
      background-repeat: no-repeat;
      line-height: 65px;
  }
  
  .st2 {
      height: auto;
      background: #fff;
      width: 1070px;
      margin: 55px auto 0px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
      padding-left: 60px;
      padding-right: 60px;
      padding-top: 120px;
      padding-bottom: 10px;
  }
  
  .st2 ul {
      width: 1200px;
      overflow: hidden;
  }
  
  .st2 ul li {
      width: 340px;
      height: 30px;
      float: left;
      border-bottom: 1px solid #d3d7db;
      line-height: 30px;
      margin-right: 30px;
  }
  
  .st2 ul li span {
      float: left;
      color: #999;
      font-size: 15px;
  }
  
  .st2 ul li input {
      float: left;
      width: 290px;
      height: 30px;
      color: #999;
      font-size: 15px;
      margin-left: 10px;
  }
  
  .st2 ul li.on {
      border-bottom: 1px solid #fe4656;
      transition: .3s;
  }
  
  .st2 ul li.l1 {
      margin-top: 50px;
      width: 1080px;
  }
  
  .st2 ul li.l1 input {
      width: 1030px;
  }
  
  .st2>a {
      display: block;
      width: 180px;
      height: 50px;
      margin: 60px auto;
      border: 1px solid #fe4656;
      ;
      text-align: center;
      line-height: 50px;
      color: #fe4656;
      font-size: 18px;
      transition: .3s;
  }
  
  .st2>a:hover {
      background: #fe4656;
      color: #fff;
      transition: .3s;
  }
  /*END*/
  /*底部*/
  
  .bot {
      background: #2b2b2b;
  }
  
  .bot1 {
      min-height: 220px;
      width: 1200px;
      margin: 0 auto;
      overflow: hidden;
  }
  
  .bot2 {
      background: #191919;
      line-height: 75px;
      text-align: center;
  }
  
  .bot2_2 {
      width: 1200px;
      padding: 15px 15px;
      background: #191919;
      line-height: 24px;
      text-align: center;
      margin: 0 auto;
      font-size: 12px;
      box-sizing: border-box;
      color: #606065;
  }
  
  .bot1_le {
      width: 1000px;
      height: 120px;
      float: left;
      margin-top: 55px;
  }
  
  .bot_logo {
      width: 204px;
      height: 120px;
      float: left;
      border-right: 1px solid #666666;
      overflow: hidden;
  }
  
  .bot_logo img {
      width: 52%;
  }
  
  .bot_le1 {
      width: 705px;
      height: 110px;
      float: left;
      padding-left: 45px;
      line-height: 35px;
      padding-top: 10px;
  }
  
  .bot_le1 p {
      font-size: 14px;
      color: #7f7f7f;
  }
  
  .bot_le1 p a {
      font-size: 14px;
      color: #7f7f7f;
      transition: .3s;
  }
  
  .bot_le1 p a:hover {
      color: #fe4656;
      transition: .5s;
  }
  
  .bot_ri {
      width: 105px;
      height: 120px;
      float: right;
      margin-right: 30px;
      text-align: center;
      margin-top: 55px;
  }
  
  .bot_ri img {
      width: 105px;
      height: 106px;
  }
  
  .bot_ri span {
      display: inline-block;
      font-size: 14px;
      color: #fff;
      margin-top: 10px;
  }
  
  .hz {
      height: 205px;
      margin-top: 80px;
  }
  
  .hz1 {
      width: 1200px;
      height: 205px;
      margin: 0 auto;
      overflow: hidden;
  }
  
  .hz1 .bd {
      height: 115px;
      border-bottom: 1px solid #f0f0f0;
  }
  
  .hz1 .bd ul li {
      width: 200px;
      float: left;
      height: 115px;
      transition: .5s;
      margin-right: 3px;
  }
  
  .hz1 .bd ul li a {
      display: block;
      width: 100%;
      padding-bottom: 56.5%;
      transition: .5s;
      position: relative;
      overflow: hidden;
  }
  
  .hz1 .bd ul li a img {
      display: block;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      position: absolute;
  }
  
  .hz1 .bd ul li:hover {
      box-shadow: 0px 0px 50px #dadada;
      transition: .5s;
      z-index: 3;
      position: relative;
  }
  
  .hz1 .hd {
      text-align: center;
      margin-top: 30px;
  }
  
  .hz1 .hd ul li {
      display: inline-block;
      background-color: #e5e5e5;
      width: 12px;
      height: 12px;
      margin-right: 5px;
      margin-left: 5px;
      border-radius: 50%;
      overflow: hidden;
      text-indent: -999px;
  }
  
  .hz1 .hd ul li.on {
      background-image: url(../images/hz2.png);
      background-color: #fff;
  }
  /*END*/
  /*关于我们*/
  
  .kk {
      /* min-height: 400px; */
      min-height: calc(100vh - 510px);
  }
  
  .gywm {
      width: 1200px;
      margin: 0 auto;
      overflow: hidden;
  }
  
  .mbx {
      height: 60px;
      line-height: 60px;
      color: #828282;
      font-size: 14px;
  }
  
  .mbx a {
      color: #828282;
      font-size: 14px;
  }
  
  .mbx a:hover {
      color: #f93445;
  }
  
  .sub_gywm {
      /* height: 34px; */
      text-align: right;
  }
  
  .sub_gywm ul {
      overflow: hidden;
  }
  
  .sub_gywm ul li {
      width: 110px;
      /* height: 34px; */
      display: inline-block;
      margin-right: 20px;
  }
  
  .sub_gywm ul li a {
      display: block;
      width: 110px;
      /* height: 34px; */
      line-height: 34px;
      text-align: center;
      font-size: 14px;
      color: #828282;
      border: 1px solid #ededed;
      border-radius: 20px;
      transition: .3s
  }
  
  .sub_gywm ul li:hover a {
      background: #f93445;
      border: 1px solid #f93445;
      color: #fff;
      transition: .3s;
  }
  
  .sub_gywm ul li.on a {
      background: #f93445;
      border: 1px solid #f93445;
      color: #fff;
      transition: .3s;
  }
  
  .zh_gywm1 {
      /* height: 340px; */
      font-size: 14px;
      color: #333;
      line-height: 30px;
      width: 1200px;
      margin: 0 auto;
      overflow: hidden;
  }
  
  .zh_gywm1>div {
      text-align: justify;
  }
  
  .zh_gywm1 h2 {
      font-size: 36px;
      color: #ff0d22;
      font-weight: normal;
      text-align: left;
      margin-bottom: 25px;
      margin-top: 22px;
  }
  
  .gywm2 {
      height: 440px;
      background-image: url(../images/gywm1.jpg);
      background-position: center;
  }
  
  .gywm2_1 {
      width: 1200px;
      height: 440px;
      margin: 0 auto;
      overflow: hidden;
  }
  
  .gywm2_1_le {
      width: 600px;
      height: 440px;
      background-image: url(../images/gywm2.png);
      background-position: bottom center;
      background-repeat: no-repeat;
      overflow: hidden;
      float: left;
  }
  
  .gywm2_1_le h2 {
      font-size: 36px;
      color: #ff0d22;
      font-weight: normal;
      margin-top: 60px;
  }
  
  .gywm2_1_ri {
      width: 600px;
      height: 238px;
      float: left;
      margin-top: 135px;
      display: block;
      overflow: hidden;
      overflow-y: scroll;
  }
  
  .gywm2_1_ri::-webkit-scrollbar {
      /*滚动条整体样式*/
      width: 6px;
      background: #dcdcdc;
      border-radius: 10px;
  }
  
  .gywm2_1_ri::-webkit-scrollbar-thumb {
      /*滚动条里面小方块*/
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
      background: rgba(0, 0, 0, 0.2);
  }
  
  .gywm2_1_ri span {
      display: block;
      margin-bottom: 30px;
      /* height: 30px; */
      line-height: 30px;
      padding-left: 40px;
      background-image: url(../images/gywm3.png);
      background-position: left center;
      background-repeat: no-repeat;
      font-size: 14px;
      color: #333;
  }
  
.gywm3 {
    width: 1200px;
    min-height: 390px;
    overflow: hidden;
    margin: 0 auto 20px;
    font-size: 14px;
    color: #333;
}
  
  .gywm3 h2 {
      font-size: 36px;
      color: #ff0d22;
      font-weight: normal;
      margin-top: 60px;
      margin-bottom: 60px;
  }
  
  .gywm3 span {
      display: block;
      /* height: 30px; */
      font-size: 16px;
      color: #666;
      padding-left: 30px;
      background-image: url(../images/gywm4.png);
      background-position: left center;
      background-repeat: no-repeat;
      /* line-height: 30px; */
      margin-bottom: 10px;
      margin-top: 10px;
  }
  /*END*/
  /*大事记*/
  
  .dsj {
      min-height: 300px;
  }
  
  .dsj>span {
      display: block;
      padding-left: 78px;
      font-size: 24px;
      font-family: "DINCond-Medium";
      color: #ed2736;
  }
  
  .dsj>span em {
      font-size: 24px;
      font-family: "微软雅黑";
      color: #ed2736;
  }
  
  .dsj1 {
      overflow: hidden;
      margin-top: 34px;
      margin-bottom: 100px;
  }
  
  .dsj1>img {
      display: block;
      margin-left: 118px;
  }
  
  .dsj2 {
      min-height: 200px;
      background-image: url(../images/dsj2.jpg);
      background-position: 136px center;
      background-repeat: repeat-y;
      padding-top: 30px;
      overflow: hidden;
      padding-right: 5px;
  }
  
  .dsj2 ul li {
      min-height: 52px;
      padding-left: 20px;
      background-image: url(../images/dsj3.png);
      background-position: 129px 22px;
      background-repeat: no-repeat;
      line-height: 52px;
      overflow: hidden;
      padding-top: 4px;
      margin-bottom: 35px;
  }
  
  .dsj2 ul li span {
      float: left;
      font-size: 18px;
      color: #333;
      font-family: "DINCond-Medium";
      border-radius: 50%;
      margin-right:60px;
  }
  
  .dsj2_1 {
      max-width: 960px;
      margin-left: 60px;
      min-height: 50px;
      line-height: 50px;
      font-size: 14px;
      border-radius: 5px;
      box-shadow: 0 0 15px #f3f3f3;
      padding-left: 25px;
      padding-right: 25px;
      display: inline-block;
  }
  /*END*/
  /*师资力量*/
  
  .szl {
      min-height: 300px;
      margin-top: 100px;
  }
  
  .szl ul li {
      width: 258px;
      height: auto;
      float: left;
      text-align: center;
      margin-left: 70px;
      margin-right: 70px;
      margin-bottom: 55px;
  }
  
  .szl ul li>a {
      display: block;
      width: 100%;
      padding-bottom: 100%;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
  }
  
  .szl ul li>a>img {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
  }
  
  .szl ul li>a>img:hover {
      transform: scale(1.2);
  }
  
  .szl ul li h3 a {
      font-size: 18px;
      color: #333;
      display: block;
      margin-top: 20px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
  }
  
  .szl ul li>span {
      display: block;
      font-size: 14px;
      color: #666;
      text-align: center;
      line-height: 30px;
      margin: 30px auto 0px;
      height: 60px;
      overflow: hidden;
  }
  
  .szl ul li em {
      display: none;
      width: 258px;
      height: 258px;
      position: absolute;
      left: 0px;
      top: 0px;
      background-image: url(../images/szl1.png);
      opacity: 0;
      transition: .3s;
  }
  
  .szl ul li em img {
      margin-top: -50px;
      transition: .3s;
  }
  
  .szl ul li:hover em {
      opacity: 1;
      transition: .5s;
  }
  
  .szl ul li em span {
      display: inline-block;
      position: absolute;
      top: 170px;
      left: 0px;
      color: #fff;
      font-size: 16px;
      width: 100%;
  }
  
  .szl ul li:hover em img {
      margin-top: 100px;
      transition: .5s;
  }
  /*END*/
  /*师资力量详细弹窗*/
  
  .zhe {
      width: 100%;
      height: 100%;
      position: fixed;
      left: 50%;
      top: 0;
      background: #000;
      opacity: .5;
      z-index: 99;
      margin-left: -50%;
      display: none;
  }
  
  .szlxx {
      width: 1120px;
      height: 614px;
      position: fixed;
      left: 50%;
      top: -100%;
      margin-left: -560px;
      margin-top: -260px;
      background: #fff;
      z-index: 999;
      transition: .4s;
  }
  
  .szlxx>img {
      float: left;
      display: block;
      margin-top: 22px;
      margin-left: 22px;
  }
  
  .gb {
      width: 90px;
      height: 85px;
      position: absolute;
      right: 0px;
      top: 0px;
      border: 1px solid #e2e5ea;
      cursor: pointer;
  }
  
  .gb>img {
      float: left;
      display: block;
      margin-top: 22px;
      margin-left: 22px;
      transform: rotate(-90deg);
      transition: .3s;
  }
  
  .gb:hover img {
      transform: rotate(90deg);
      transition: .5s;
  }
  
  .szlxx1 {
      width: 410px;
      height: 345px;
      margin-top: 85px;
      float: left;
      margin-left: 65px;
      overflow: hidden;
  }
  
  .szlxx1 h1 {
      font-size: 18px;
      color: #333;
  }
  
  .szlxx1 .content {
      display: block;
      margin-top: 40px;
      font-size: 14px;
      color: #666;
      line-height: 30px;
      height: 200px;
      overflow-y: scroll;
      margin-right: -17px;
      padding-right: 2px;
      -webkit-overflow-scrolling: touch;
  }
  /*END*/
  /*课程体系*/
  
  .kcli {
      width: 1200px;
      min-height: 300px;
      overflow: hidden;
      margin: 45px auto 0px;
  }
  
  .kcli ul {
      width: 1260px;
  }
  
  .kcli ul li {
      width: 347px;
      height: 285px;
      float: left;
      position: relative;
      margin-right: 58px;
      margin-bottom: 30px;
  }
  
  .kcli ul li>a {
      display: block;
      width: 100%;
      padding-bottom: 65.41%;
      position: relative;
      overflow: hidden;
  }
  
  .kcli ul li>a img {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      transition: .3s;
  }
  
  .kcli ul li>a span {
      display: block;
      width: 88px;
      height: 88px;
      position: absolute;
      left: 50%;
      top: 170%;
      margin-top: -44px;
      margin-left: -44px;
      background-image: url(../images/kctx3.png);
      transition: .3s;
  }
  
  .kcli ul li:hover>a span {
      top: 50%;
      transition: .5s;
  }
  
  .kcli ul li:hover>a img {
      transform: scale(1.05, 1.05);
      transition: .5s;
  }
  
  .kcli ul li h3 a {
      display: block;
      width: 100%;
      height: 58px;
      line-height: 58px;
      font-size: 18px;
      color: #666;
      text-align: left;
      transition: .5s;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden;
  }
  
  .kcli ul li:hover h3 a {
      transition: .5s;
      background: #ff2a3b;
      color: #fff;
      padding-left: 10%;
      width: 90%;
  }
  /*END*/
  /*课程详细*/
  
  .kctxx {
      width: 1200px;
      min-height: 300px;
      margin: 60px auto 30px;
      overflow: hidden;
  }
  
  .kctxx1 {
      width: 805px;
      min-height: 300px;
      float: left;
      font-size: 14px;
      color: #333;
      line-height: 30px;
      color: #666;
  }
  
  .kctxx1 img {
      max-width: 100%;
      height: auto !important;
      display: block;
      margin-bottom: 45px;
  }
  /*END*/
  /*新闻资讯*/
  
  .xwzx {
      min-height: 400px;
      overflow: hidden;
      padding-top: 20px;
  }
  
  .xwzx ul {
      width: 100%;
      overflow: hidden;
  }
  
  .xwzx ul li {
      width: 30%;
      height: 445px;
      float: left;
      margin-right: 40px;
      margin-bottom: 20px;
  }
  
  .xwzx ul li>a {
      display: block;
      width: 100%;
      position: relative;
      overflow: hidden;
      padding-bottom: 65.48%;
  }
  
  .xwzx ul li>a img {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      transition: .3s;
  }
  
  .xwzx ul li h3 a {
      display: block;
      height: 144px;
      padding-left: 20px;
      padding-right: 20px;
      position: relative;
      border-bottom: 1px solid #e2e4e6;
  }
  
  .xwzx ul li h3 a strong {
      font-size: 16px;
      color: #333;
      font-weight: normal;
      display: inline-block;
      width: 100%;
      margin-top: 20px;
      transition: .3s;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
  }
  
  .xwzx ul li h3 a span {
      display: block;
      font-size: 14px;
      color: #777;
      font-weight: normal;
      line-height: 30px;
      margin-top: 15px;
      height: 60px;
      overflow: hidden;
  }
  
  .xwzx ul li h3 a em {
      display: block;
      width: 0px;
      height: 1px;
      background: #f93445;
      position: absolute;
      bottom: 0px;
      left: 0px;
      transition: .3s;
  }
  
  .xwzx ul li:hover h3 a em {
      width: 100%;
      transition: .5s;
  }
  
  .xwzx ul li:hover h3 a strong {
      color: #f93445;
      transition: .3s;
  }
  
  .xwzx ul li:hover>a img {
      transform: scale(1.1);
      transition: .3s;
  }
  
  .xw2_1 {
      height: 50px;
      line-height: 50px;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 14px;
      color: #777777;
      font-family: "DINCond-Medium";
      transition: .5s;
      background-position: 290px center;
  }
  
  .xwzx ul li:hover .xw2_1 {
      background-position: 310px;
      background-image: url(../images/xw2_2.png);
      background-repeat: no-repeat;
      transition: .5s;
      color: #f93445;
  }
  /*END*/
  /*新闻详细*/
  
  .xwxx {
      min-height: 400px;
      padding-top: 70px;
  }
  
  .xwxx h1 {
      text-align: center;
      font-size: 30px;
      font-weight: normal;
      line-height: 40px;
  }
  
  .xwxx1 {
      height: 60px;
      text-align: center;
      line-height: 60px;
      font-size: 12px;
      color: #999;
      border-bottom: 1px dotted #dcdcdc;
  }
  
  .xwxx1 img {
      vertical-align: middle;
  }
  
  .xwxx2 {
      min-height: 300px;
      font-size: 14px;
      color: #666;
      line-height: 30px;
      padding-top: 30px;
      padding-bottom: 30px;
  }
  
  .xwxx2 img {
      display: block;
      margin: 0px auto!important;
      max-width: 100%;
      height: auto !important;
  }
  
  .shangxia {
      height: 105px;
      margin-bottom: 30px;
  }
  
  .shangxia a.a1 {
      display: block;
      width: 308px;
      height: 105px;
      float: left;
      margin-right: -1px;
      border: 1px solid #dbd8e1;
      line-height: 105px;
      text-align: center;
      font-size: 16px;
      color: #777;
      background-image: url(../images/xwxx5.png);
      background-repeat: no-repeat;
      background-position: 25px center;
      transition: .3s;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding-left: 60px;
      padding-right: 60px;
  }
  
  .shangxia a.a1:hover {
      background-image: url(../images/xwxx4_4.png);
      background-repeat: no-repeat;
      background-position: 15px center;
      transition: .3s;
      color: #f93445;
  }
  
  .shangxia a.a2 {
      display: block;
      width: 340px;
      height: 105px;
      float: left;
      border: 1px solid #dbd8e1;
      margin-right: -1px;
      text-align: center;
      font-size: 16px;
      color: #777;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
  }
  
  .shangxia a:nth-child(3) {
      background-image: url(../images/xwxx4.png);
      background-repeat: no-repeat;
      background-position: 370px center;
      transition: .3s;
  }
  
  .shangxia a:nth-child(3):hover {
      background-image: url(../images/xwxx6.png);
      background-repeat: no-repeat;
      background-position: 385px center;
      transition: .3s;
      color: #f93445;
  }
  
  .a2:hover .shangxia1 {
      transform: rotate(180deg);
  }
  
  .shangxia1 {
      display: block;
      width: 22px;
      height: 22px;
      margin: 25px auto 10px;
      position: relative;
      transition: all 0.8s;
  }
  
  .shangxia1 em {
      display: block;
      width: 8px;
      height: 8px;
      background: #f93445;
      position: absolute;
      transition: .4s;
  }
  
  .shangxia1 em:nth-child(1) {
      left: 0px;
      top: 0px;
  }
  
  .shangxia1 em:nth-child(2) {
      right: 0px;
      top: 0px;
  }
  
  .shangxia1 em:nth-child(3) {
      left: 0px;
      bottom: 0px;
  }
  
  .shangxia1 em:nth-child(4) {
      right: 0px;
      bottom: 0px;
  }
  
  .xwtj {
      min-height: 100px;
  }
  
  .xwtj_bt {
      height: 65px;
      line-height: 65px;
      border-bottom: 1px dotted #dcdcdc;
      font-size: 24px;
      color: #333;
  }
  
  .xwtj1 {
      min-height: 100px;
      overflow: hidden;
      margin-top: 35px;
      margin-bottom: 40px;
  }
  
  .xwtj1 ul li {
      width: 340px;
      height: 100px;
      padding-top: 25px;
      float: left;
      position: relative;
      margin-right: 100px;
  }
  
  .xwtj1 ul li>em {
      display: block;
      width: 11px;
      height: 2px;
      background: #898989;
      float: left;
      margin-top: 13px;
      transition: all .5s;
  }
  
  .xwtj1_z {
      display: block;
      width: 275px;
      height: 90px;
      float: left;
      margin-left: 10px;
      transition: all .5s;
  }
  
  .xwtj1_z span {
      font-size: 14px;
      color: #777;
      line-height: 30px;
      display: block;
      height: 60px;
      overflow: hidden;
  }
  
  .xwtj1_z em {
      display: block;
      font-size: 12px;
      color: #a0a0a0;
      font-weight: bold;
      transition: all .5s;
  }
  
  .xwtj1_z em img {
      vertical-align: middle;
  }
  
  .xwtj1 ul li>span {
      display: block;
      height: 1px;
      width: 100%;
      background: #d9d9d9;
      position: absolute;
      left: 0px;
      bottom: 0px;
      transition: all .5s;
  }
  
  .xwtj1 ul li:hover>em {
      width: 25px;
      margin-left: 10px;
      background: #f93445;
      transition: .5s;
  }
  
  .xwtj1 ul li:hover .xwtj1_z {
      margin-left: 30px;
      transition: .5s;
  }
  
  .xwtj1 ul li:hover .xwtj1_z span {
      color: #f93445;
  }
  
  .xwtj1 ul li:hover>span {
      background: #f93445;
  }
  
  .xwtj1 .hd {
      height: 32px;
      margin-top: 30px;
      text-align: center;
  }
  
  .xwtj1 .hd a {
      display: inline-block;
      width: 32px;
      height: 32px;
      margin-right: 15px;
      margin-left: 15px;
  }
  
  .xwtj1 .hd a.prev {
      background-image: url(../images/xwtj1.png);
      transition: .5s;
  }
  
  .xwtj1 .hd a.prev:hover {
      background-image: url(../images/xwtj1_1.png);
      transition: .5s;
  }
  
  .xwtj1 .hd a.next:hover {
      background-image: url(../images/xwtj2_2.png);
      transition: .5s;
  }
  
  .xwtj1 .hd a.next {
      background-image: url(../images/xwtj2.png);
      transition: .5s;
  }
  
  .lxwm {
      height: 500px;
      background-image: url(../images/lxwm1.png);
      background-repeat: no-repeat;
      background-position: bottom center;
  }
  
  .lxwm1 {
      width: 1200px;
      height: 500px;
      overflow: hidden;
      margin: 0 auto;
  }
  
  .lxwm1_1 {
      height: 200px;
      margin-top: 70px;
  }
  
  .lxwm1_1z {
      width: 296px;
      height: 170px;
      float: left;
      background-image: url(../images/lxwm2.jpg);
      background-position: right center;
      background-repeat: no-repeat;
      padding-top: 30px;
  }
  
  .lxwm1_1z h1 {
      font-size: 21px;
      color: #656565;
      font-weight: normal;
      margin-bottom: 10px;
  }
  
  .lxwm1_1z span {
      font-size: 24px;
      color: #f93445;
      display: block;
      font-weight: bold;
      margin-bottom: 10px;
  }
  
  .lxwm1_1z em {
      font-size: 12px;
      color: #9f9f9f;
  }
  
  .lxwm1_1z a {
      display: block;
      width: 200px;
      height: 45px;
      line-height: 45px;
      text-align: center;
      font-size: 14px;
      color: #fb3449;
      border: 1px solid #fb3449;
      border-radius: 5px;
      margin-top: 10px;
      transition: .3s;
  }
  
  .lxwm1_1z a:hover {
      background: #fb3449;
      color: #fff;
      transition: .3s;
  }
  
  .lxwm1_1z1 {
      width: 900px;
      height: 200px;
      float: left;
  }
  
  .lxwm1_1z2 {
      width: 600px;
      height: 170px;
      float: left;
      padding-left: 70px;
      padding-top: 30px;
  }
  
  .lxwm1_1z2 h1 {
      font-size: 21px;
      color: #656565;
      font-weight: normal;
      margin-bottom: 10px;
  }
  
  .lxwm1_1z2 p {
      font-size: 14px;
      color: #666;
      line-height: 35px;
  }
  
  .lxwm1_1z1>img {
      display: block;
      float: left;
  }
  
  .lxwm_dt {
      height: 456px;
  }
  
  .lxwm_dt iframe {
      width: 100%;
      height: 456px;
  }
  /*END*/
  /*预约试听*/
  
  .yyst {
      width: 1110px;
      height: 531px;
      margin: -103px auto 147px;
      z-index: 99;
      background: #fff;
      position: relative;
      box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
      padding-left: 45px;
      padding-right: 45px;
      padding-top: 60px;
  }
  
  .xm {
      width: 535px;
      height: 40px;
      line-height: 40px;
      float: left;
      border-bottom: 1px solid #d3d7db;
      line-height: 40px;
      margin-bottom: 30px;
  }
  
  .xm span {
      font-size: 14px;
      color: #8e8e8e;
      float: left;
  }
  
  .xm input {
      width: 435px;
      height: 40px;
      line-height: 40px;
      font-size: 14px;
      color: #8e8e8e;
      float: left;
      padding-left: 10px;
  }
  
  .dh {
      float: right;
  }
  
  .liuyan {
      width: 100%;
  }
  
  .liuyan input {
      width: 90%;
  }
  
  .yanzheng input {
      width: 750px;
  }
  
  .yznzheng1 {
      display: block;
      width: 102px;
      height: 31px;
      float: left;
  }
  
  .yznzheng1 {
      display: block;
      width: 102px;
      height: 31px;
  }
  
  .yanzheng2 {
      float: left;
      color: #f29900;
      font-size: 14px;
      margin-left: 10px;
  }
  
  .yyst_an {
      clear: both;
      display: block;
      width: 180px;
      height: 50px;
      margin: 60px auto;
      text-align: center;
      line-height: 50px;
      border: 1px solid #fb6069;
      color: #fb6069;
      font-size: 16px;
      transition: .3s;
  }
  
  .yyst_an:hover {
      background: #fb6069;
      color: #fff;
      transition: .3s;
  }
  
  .fom {
      overflow: hidden;
  }
  
  .kctxx2 {
      width: 350px;
      min-height: 300px;
      float: right;
  }
  
  .kctxx2 h1 {
      font-size: 24px;
      color: #666;
      margin-top: 50px;
      font-weight: normal;
  }
  
  .kcts {
      height: 50px;
      line-height: 50px;
      border-bottom: 1px dotted #dbdbdb;
      font-size: 14px;
      color: #999;
      margin-top: 10px;
  }
  
  .kcts1 {
      padding-top: 10px;
  }
  
  .kcts1 p {
      font-size: 14px;
      color: #999;
      line-height: 30px;
  }
  
  .kctxx2 a {
      display: block;
      height: 50px;
      background: #5a5a5a;
      margin-top: 30px;
      font-size: 14px;
      color: #fff;
      text-align: center;
      line-height: 50px;
      font-weight: bold;
      transition: .3s;
  }
  
  .kctxx2>a:hover {
      background: #333;
      transition: .3s;
  }
  
  .kcts2 {
      overflow: hidden;
      margin-top: 60px;
  }
  
  .kcts2 ul li {
      width: 158px;
      height: 145px;
      float: left;
      margin-bottom: 10px;
  }
  
  .kcts2 ul li>a {
      margin-top: 0;
      display: block;
      width: 158px;
      height: 102px;
  }
  
  .kcts2 ul li>a img {
      display: block;
      width: 158px;
      height: 102px;
  }
  
  .kcts2 ul li h3 a {
      margin-top: 0;
      display: block;
      height: 43px;
      line-height: 43px;
      font-size: 14px;
      color: #666;
      transition: .3s;
      background-position: right center;
      background: none;
      background: url(../meiyou.png) no-repeat right center;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
  }
  
  .kcts2 ul li:hover h3 a {
      color: #333;
      transition: .3s;
      background-image: url(../images/kctxx3.png);
      background-repeat: no-repeat;
      background-position: right center;
  }
  /*END*/
  /*特色课程*/
  
  .tskc {
      min-height: 300px;
      overflow: hidden;
      margin-top: 30px;
      margin-bottom: 30px;
  }
  
  .tskc ul li {
      display: inline-block;
      width: 509px;
      height: 260px;
      margin-bottom: 30px;
      margin-right: 25px;
      margin-left: 25px;
      vertical-align: middle
  }
  
  .tskc ul li a {
      display: block;
      width: 100%;
      padding-bottom: 50.28%;
      position: relative;
      height: 0;
      overflow: hidden;
  }
  
  .tskc ul li a img {
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      transition: .5s;
  }
  
  .tskc ul li a>span {
      display: block;
      width: 179px;
      height: 260px;
      position: absolute;
      left: 0px;
      top: 0px;
      padding-left: 40px;
  }
  
  .tskc ul li a>span h3 {
      font-size: 16px;
      color: #4a505c;
      font-weight: normal;
      margin-top: 60px;
      transition: .5s;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
  }
  
  .tskc ul li a>span h1 {
      font-size: 30px;
      color: #4a505c;
      margin-top: 15px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      height: 30px;
  }
  
  .tskc ul li a>span em {
      display: block;
      height: 30px;
      margin-top: 30px;
      font-size: 14px;
      color: #4a505c;
      line-height: 30px;
      background-image: url(../images/tskc5.png);
      background-repeat: no-repeat;
      background-position: 95px center;
      transition: .3s;
  }
  
  .tskc ul li a>span em i {
      font-style: normal;
  }
  
  .tskc ul li a:hover img {
      transform: scale(1.05);
      transition: .5s;
  }
  
  .tskc ul li a:hover i {
      display: none;
  }
  
  .tskc ul li a:hover em {
      background-image: url(../images/tskc5.png);
      background-position: 110px center;
      background-repeat: no-repeat;
      transition: .5s;
  }
  
  .tskc ul li a:hover span h3 {
      margin-top: 50px;
      transition: .5s;
  }
  
  .kc ul li {
      display: inline-block;
      width: 509px;
      height: 260px;
      margin-bottom: 30px;
      margin-right: 25px;
      margin-left: 25px;
      vertical-align: middle;
  }
  
  .kc ul li a {
      display: block;
      width: 100%;
      padding-bottom: 50.28%;
      overflow: hidden;
      position: relative;
      height: 0;
      background-color: #fff;
  }
  
  .kc ul li a img {
      position: absolute;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      transition: .5s;
  }
  
  .kc ul li a>span {
      display: block;
      width: 190px;
      height: 260px;
      position: absolute;
      left: 0px;
      top: 0px;
      padding-left: 40px;
      text-align: left
  }
  
  .kc ul li a>span h3 {
      font-size: 16px;
      color: #4a505c;
      font-weight: normal;
      margin-top: 60px;
      transition: .5s;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
  }
  
  .kc ul li a>span h1 {
      font-size: 30px;
      color: #4a505c;
      line-height: 40px;
      margin-top: 15px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      height: 40px;
  }
  
  .kc ul li a>span em {
      display: block;
      height: 30px;
      margin-top: 30px;
      font-size: 14px;
      color: #4a505c;
      line-height: 30px;
      background-image: url(../images/tskc5.png);
      background-repeat: no-repeat;
      background-position: 95px center;
      transition: .3s;
  }
  
  .kc ul li a>span em i {
      font-style: normal;
  }
  
  .kc ul li a:hover img {
      transform: scale(1.05);
      transition: .5s;
  }
  
  .kc ul li a:hover i {
      display: none;
  }
  
  .kc ul li a:hover em {
      background-image: url(../images/tskc5.png);
      background-position: 110px center;
      background-repeat: no-repeat;
      transition: .5s;
  }
  
  .kc ul li a:hover span h3 {
      margin-top: 50px;
      transition: .5s;
  }
  /*END*/
  /*特色课程详细*/
  
  .tskcxx {
      min-height: 300px;
      margin: 50px auto;
      font-size: 16px;
      color: #737373;
  }
  
  .tskcxx h1 {
      text-align: center;
      font-size: 36px;
      color: #737373;
      font-weight: normal;
      line-height: 40px;
  }
  
  .tskcxx1 {
      text-align: center;
      font-size: 16px;
      color: #737373;
      line-height: 30px;
      padding-top: 30px;
      padding-bottom: 30px;
      border-bottom: 1px dotted #e1e1e1;
      margin-bottom: 60px;
  }
  
  .tskcxx1 img {
      display: block;
      margin: 60px auto;
  }
  
  .cd {
      display: none;
  }
  
  .list {
      display: none;
  }
  
  .phone_ban {
      display: none;
  }
  
  .form--label {
      width: 150px;
      float: left;
      text-align: right;
      padding: 10px 12px 10px 0;
  }
  
  .sbyzm {
      width: 100%;
      overflow: hidden;
  }
  
  .form--input {
      float: left;
      width: 500px;
      height: 32px;
      line-height: 32px;
      border: 1px solid #dddee1;
      padding-left: 4px;
  }
  
  .form--input input {
      width: 100%;
      height: 32px;
      line-height: 32px;
  }
  
  .code {
      float: left;
      margin-left: 10px;
  }
  
  .code img {
      float: left;
      width: 70px;
      height: 32px;
  }
  
  .ivu-form-item {}
  
  .in_yzm {
      margin-top: 50px;
  }
  
  .in_yzm input {
      width: 280px !important;
  }
  
  .in_yzm1 {
      border-bottom: 0px solid #d3d7db !important;
      margin-top: 50px;
  }
  
  .in_yzm1 a {
      margin-right: 5px;
      float: left;
  }
  
  .xm em {
      line-height: 40px;
      float: right;
      font-size: 18px;
      color: red;
  }
  
  .st2 ul li em {
      line-height: 40px;
      float: right;
      font-size: 18px;
      color: red;
  }
  
  .swiper-pagination1 {
      display: none;
  }
  
  .swiper-pagination2 {
      display: none;
  }
  
  @media screen and (max-width: 1200px) {
      .xwtj1 ul li>em {
          display: none;
      }
      .top {
          height: auto;
      }
      .top1 {
          width: calc(100% - 60px);
          padding-left: 30px;
          padding-right: 30px;
          height: auto;
          /* overflow: hidden; */
      }
      .top1::after{
          content: '';
          height: 0;
          clear: both;
          display: block;
      }
      .nav {
          width: auto;
          margin-top: 30px;
      }
      .top1_1 {
          display: none;
      }
      .logo {
          width: 10%;
          height: auto;
          margin-top: 25px;
      }
      .logo img {
          width: 72%;
          height: 100%;
      }
      .nav {
          width: 84%;
          padding-left: 4%
      }
      .nav ul>li {
          margin-right: 4%;
      }
      .cd {
          display: none;
      }
      .cg_index_banner {
          display: none !important;
      }
      .phone_ban {
          display: block;
      }
      .phone_ban img {
          width: 100%;
          height: auto;
      }
      .phone_ban span.swiper-pagination-bullet-active {
          background: #f93445;
      }
      .list {
          display: none;
      }
      .kc {
          height: 350px;
      }
      .kc ul li {
          width: 315px;
          height: auto;
          margin-bottom: 15px;
      }
      .kc ul li a img {
          width: 100%;
          height: auto;
      }
      .kc ul li a>span {
          height: auto;
          padding-left: 20px;
      }
      .kc ul li a>span h3 {
          margin-top: 20px;
      }
      .kc ul li a>span h1 {
          margin-top: 5px;
          font-size: 20px;
      }
      .kc ul li a>span em {
          margin-top: 10px;
      }
      .kc ul li a:hover span h3 {
          margin-top: 35px;
          transition: .5s;
      }
      .kctx1 {
          width: calc(100% - 20px);
          padding-left: 10px;
          padding-right: 10px;
          overflow: hidden;
          height: auto;
      }
      .kctx1 h2 a>em {
          font-size: 40px;
      }
      .kctx1 h2 a span {
          font-size: 20px;
      }
      .kctx1 p {
          font-size: 12px;
      }
      .kctx1 .hd {
          display: none;
      }
      .kctx {
          height: auto;
          overflow: hidden;
      }
      .kctx1 .swiper-pagination1 {
          text-align: center;
          width: 100%;
      }
      .kctx1 span.swiper-pagination-bullet-active {
          background: #f93445;
      }
      .kctx2 {
          width: 100%;
      }
      .kctx2 .bd {
          width: 100%;
      }
      .gywm1 {
          width: 100%;
      }
      .gywm {
          width: calc(100% - 20px);
          padding-left: 10px;
          padding-right: 10px;
      }
      .gywm1 h2 a>em {
          font-size: 50px;
      }
      .gywm1 h2 a span {
          font-size: 20px;
      }
      .gywm_z {
          width: calc(100% - 40px);
          padding-left: 20px;
          padding-right: 20px;
      }
      .sz1 {
          width: calc(100% - 40px);
          padding-left: 20px;
          padding-right: 20px;
      }
      .sz1 h2 {
          margin-top: 50px;
          font-size: 30px;
      }
      .sz1_1 img {
          margin-right: 0px;
          width: 300px;
          height: auto;
          margin-top: 50px;
      }
      .sz {
          height: auto;
          background-size: 100% 100%;
          background-repeat: no-repeat;
          padding-bottom: 20px;
      }
      .szll {
          height: auto;
          background-size: 100% auto;
      }
      .szll h2 a>em {
          font-size: 50px;
      }
      .szll h2 a span {
          font-size: 20px;
      }
      .szll1 .bd ul li {
          width: 100%;
      }
      .szll1 .bd ul li>a.szll1_z span {
          width: 70%;
      }
      .szll1 .hd {
          display: none;
      }
      .szll1 .bd {
          width: 100%;
          overflow: hidden;
      }
      .qq {
          left: 15%;
          top: -25px;
      }
      .qq1 {
          right: 15%;
          bottom: 50px;
      }
      .xw1 {
          width: 100%;
      }
      .xw2 .hd {
          display: none;
      }
      .xw1 h2 a>em {
          font-size: 50px;
      }
      .xw1 h2 a span {
          font-size: 20px;
      }
      .xw2 {
          padding-left: 10px;
          padding-right: 10px;
      }
      .xw2 .swiper-pagination2 {
          text-align: center;
          width: 100%;
      }
      .xw2 span.swiper-pagination-bullet-active {
          background: #f93445;
      }
      .xw h2 {
          margin-top: 40px;
      }
      .xwzx ul li{
        width: 48%;
        margin-right: 0px;
        margin-bottom: 20px;
        height: auto;
      }
      .st {
          height: auto;
          margin-top: 0px;
      }
      .st1 {
          width: 100%;
          height: auto;
          padding-bottom: 10px;
      }
      .st2 {
          width: 60%;
          padding-left: 10%;
          padding-right: 10%;
          padding-top: 50px;
          height: auto;
          overflow: hidden;
      }
      .st2 ul {
          width: 100%;
      }
      .st2 ul li {
          width: 100%;
          height: 50px;
          line-height: 50px;
      }
      .st2 ul li input {
          height: 50px;
          line-height: 50px;
      }
      .st2 ul li.l1 {
          width: 100%;
          margin-top: 0px;
      }
      .st2 ul li.l1 input {
          width: 290px;
      }
      .st2>a {
          margin: 30px auto;
      }
      .in_yzm {
          margin-top: 0px;
      }
      .hz {
          margin: 30px auto;
          height: auto;
      }
      .in_yzm1 {
          margin-top: 10px;
      }
      .hz1 {
          width: 100%;
          height: auto;
      }
      .hz1 .hd {
          display: none;
      }
      .hz1 .bd ul li {
          height: auto;
      }
      .hz1 .bd ul li a {
          width: 100%;
          height: auto;
      }
      .hz1 .bd ul li a img {
          width: 100%;
          height: auto;
      }
      .bot {
          min-height: 0px;
      }
      .bot1 {
          width: 100%;
          min-height: auto;
      }
      .bot1_le {
          width: 100%;
          height: auto;
          margin-top: 0px;
          padding-top: 20px;
          padding-bottom: 20px;
      }
      .bot_ri {
          display: none;
      }
      .bot_logo {
          display: none
      }
      .bot2 {
          min-height: auto;
      }
      .bot2_2 {
          width: 100%;
      }
      .bot_le1 {
          width: auto;
          height: auto;
      }
      .cg_banner {
          height: 300px;
      }
      .cg_banner ul li {
          width: auto;
          height: 300px;
          background-size: auto 300px !important;
      }
      .cg_banner ul {
          height: 300px;
      }
      .mbx {
          display: none;
      }
      .tskc ul li {
          width: 43%;
          height: auto;
      }
      .tskc ul li a img {
          width: 100%;
      }
      .tskc ul li a>span {
          height: auto;
          padding-left: 20px;
      }
      .tskc ul li a>span h3 {
          margin-top: 20px;
      }
      .tskc ul li a>span h1 {
          margin-top: 5px;
          font-size: 20px;
      }
      .tskc ul li a>span em {
          margin-top: 10px;
      }
      .tskc ul li a:hover span h3 {
          margin-top: 35px;
          transition: .5s;
      }
      .sub_gywm {
          height: 50px;
          margin-top: 50px;
          text-align: center;
      }
      .kcli {
          min-height: 0px;
          width: 100%;
      }
      .kcli ul {
          width: 100%;
      }
      .kcli ul li {
          width: 48%;
          margin: 0 1% 20px;
      }
      .gywm2_1 {
          width: 100%;
      }
      .gywm2_1_le {
          width: 48%;
          padding-left: 10px;
          box-sizing: border-box;
      }
      .gywm2_1_ri {
          width: 50%;
      }
      .gywm3 {
          width: calc(100% - 30px);
          padding-left: 30px;
      }
      .szl {
          overflow: hidden;
      }
      .szl ul li {
          width: 31.33%;
          margin: 0 1% 30px;
      }
      .szlxx {
          width: calc(90% - 20px);
          padding-left: 10px;
          padding-right: 10px;
          margin-left: -45%;
          overflow-y: auto;
      }
      .szlxx>img {
          float: none;
          width: 100%;
          height: auto;
          margin: 60px auto 0px;
      }
      .gb {
          width: 50px;
          height: 50px;
      }
      .gb>img {
          width: 30px;
          height: 30px;
          margin: 0px;
          margin-top: 10px;
          margin-left: 10px;
      }
      .szlxx1 {
          width: 100%;
          padding: 0px;
          margin: 0px;
          margin-top: 10px;
      }
      .szlxx1 span {
          margin-top: 20px;
      }
      .dsj2_1 {
          width: 70%;
      }
      .xwzx {
          width: 100%;
      }
      .lxwm1 {
          width: calc(100% - 20px);
          padding-left: 10px;
          padding-right: 10px;
          height: auto;
      }
      .lxwm {
          height: auto;
          padding-top: 30px;
          padding-bottom: 30px;
      }
      .lxwm1_1z1 {
          width: 70%;
      }
      .lxwm1_1z1>img {
          display: none
      }
      .lxwm1_1z {
        width: 26%;
        padding-left: 20px;

      }
      .lxwm1_1z2 {
          width: calc(100% - 20px);
          padding-left: 20px;
      }
      .lxwm1_1 {
          height: auto;
          overflow: hidden;
          margin-top: 0px;
      }
      .lxwm_dt {
          height: 300px;
          overflow: hidden;
      }
      .tskcxx1 img {
          width: 100%;
          height: auto;
      }
      .shangxia a.a1 {
          width: 34% !important;
          padding: 0 5% !important;
          text-overflow: ellipsis;
          overflow: hidden;
          white-space: nowrap;
          background: none !important;
      }
      .shangxia a.a2 {
          width: 11%;
          text-overflow: ellipsis;
          overflow: hidden;
          white-space: nowrap;
      }
      .shangxia a:nth-child(3) {
          width: 30%;
          padding-right: 10%;
          padding-left: 0px;
          background-position: 90% center;
      }
      .kctxx {
          width: 100%;
      }
      .kctxx2 {
          display: none;
      }
      .kctxx1 {
          width: 100%;
      }
      .kctxx1 img {
          width: 100%;
          height: auto;
      }
      .xwtj1 .hd {
          display: none;
      }
      .xwtj1_z {
          width: calc(100% - 10px);
          margin: 0px;
          padding-left: 10px;
      }
      .zh_sb {
          padding-left: 15px;
          padding-right: 15px;
      }
      .kk .wow>div:nth-child(3) {
          width: 100%;
          /* margin: 100px auto; */
          padding-left: 10px;
          box-sizing: border-box;
      }
      .zh_gywm1 {
          width: 100%
      }
      .yyst {
          width: calc(80% - 40px);
          padding-left: 20px;
          padding-right: 20px;
          margin: -66px auto 147px;
      }
      .xm {
          width: 100%;
      }
      .xm input {
          width: 80%;
      }
      .yyst {
          height: auto;
          padding-bottom: 20px;
      }
      .yanzheng input {
          width: 40%;
      }
      .swiper-pagination1 {
          display: block;
      }
      .swiper-pagination2 {
          display: block;
      }
      .xw2 .bd ul li h3 a strong {
          margin-top: 0;
      }
      .szlxx1 .content {
          margin-right: 0;
          overflow-y: auto;
          height: auto;
      }
  }
  
  @media screen and (max-width: 750px) {
    .logo img{
        width: 40%;
        height: 40%;
    }
    .kk{
        min-height: calc(100vh - 355px);
    }
      .bot2 {
          display: none;
      }
      .cnzz {
          display: none;
      }
      .footer_tel {
          display: none;
      }
      .pc--pop .cell.icon1 {
          display: none;
      }
      body {
          overflow-x: hidden;
      }
      .swiper-pagination1 {
          display: block;
      }
      .swiper-pagination2 {
          display: block;
      }
      .top {
          height: auto;
      }
      .top1 {
          width: calc(100% - 20px);
          height: auto;
          padding-top: 15px;
          padding-bottom: 15px;
          padding-left: 10px;
          padding-right: 10px;
          position: relative;
      }
      .nav {
          display: none;
      }
      .logo {
          width: 30%;
          height: auto;
          margin-top: 0px;
      }
      .cd {
          display: block;
          margin: 4px 0 0 0;
          width: 24px;
          height: 24px;
          background-image: url(../images/dh.png);
          background-size: 100%;
          float: right;
          transition: .3s;
      }
      .phone_ban {
          height: 200px;
      }
      .phone_ban img {
          width: auto;
          height: 100%;
          position: absolute;
          left: 50%;
          margin-left: -265px;
      }
      .phone_ban .swiper-slide {
          overflow: hidden;
      }
      .list {
          display: block;
          width: calc(50% - 40px);
          min-height: 200px;
          background: #fff;
          position: fixed;
          right: -100%;
          top: 50px;
          z-index: 999;
          box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .05);
          padding: 20px;
          border-radius: 5px;
          transition: .3s;
      }
      .list.on {
          position: fixed;
          right: 10px;
          transition: .3s;
      }
      .list ul li {
          height: 35px;
          line-height: 35px;
          border-bottom: 1px solid #eaeaea;
      }
      .list ul li a {
          display: block;
          width: 100%;
          height: 35px;
          text-align: center;
          font-size: 12px;
          color: #666;
      }
      .list ul li.on {
          border-bottom: 1px solid #fe4656;
      }
      .list ul li.on a {
          background: #fe4656;
          color: #fff;
      }
      .kc ul li a>span h1 {
        margin-top: -4px;
        
    }
    .kc ul li a>span em {
        margin-top: -6px;
    }
      .cd.on {
          background-image: url(../images/dh1.png);
          background-size: 100%;
          transition: .3s;
      }
      .kc ul li {
          margin-top: 0px;
          height: auto;
          width: 100%;
          margin-left: 0px;
          margin-bottom: 0px;
      }
      .kc {
          width: calc(100% - 30px);
          height: auto;
          padding-top: 30px;
          padding-left: 15px;
          padding-right: 15px;
      }
      .kctx2 .bd ul li>a {
          width: 100%;
          height: auto;
          margin-bottom: 10px;
      }
      .kctx2 .bd ul li>a img {
          width: 100%;
          height: auto;
      }
      .kctx1 h2 {
          margin-top: 50px;
      }
      .qq {
          display: none;
      }
      .qq1 {
          display: none;
      }
      .szll1 {
          height: auto;
      }
      .szll1 .bd ul li>a.szll1_z span {
          overflow: hidden;
          margin-top: 20px;
          font-size: 12px;
      }
      .sz1 h2 {
          font-size: 20px;
      }
      .sz1 h2 span {
          font-size: 15px;
      }
      .sz1_1 {
          height: auto;
      }
      .sz1_1_le {
          width: 100%;
      }
      .sz1_1 img {
          margin: 30px auto;
      }
      .xw2 {
          margin-top: 40px;
          padding: 0px;
      }
      .xw1 {
          width: calc(100% - 30px);
          padding-left: 15px;
          padding-right: 15px;
          height: auto;
          padding-bottom: 10px;
      }
      .xw {
          height: auto;
      }
      .xw2 .bd ul li>a {
          width: 100%;
          height: auto;
      }
      .xw2 .bd ul li>a img {
          width: 100%;
          height: auto;
      }
      .st_bt {
          padding-top: 50px;
          padding-left: 15px;
          padding-right: 15px;
      }
      .st_bt h2 {
          width: 100%;
          font-size: 40px;
          background-size: 40px auto;
      }
      .st2 ul li input {
          width: 70%;
      }
      .hz1 .bd ul li {
          height: auto;
      }
      .hz1 .bd {
          height: auto;
      }
      .bot_le1 {
          padding-left: 10px;
          padding-right: 10px;
      }
      .bot_le1 p {
          font-size: 12px;
          text-align: center;
      }
      .bot_le1 p a {
          font-size: 12px;
      }
      .cg_banner {
          height: 200px;
      }
      .cg_banner ul {
          height: 200px;
      }
      .cg_banner ul li {
          width: auto;
          height: 200px;
          background-size: auto 200px !important;
      }
      .cg_banner ul {
          height: 200px;
      }
      .tskc ul li {
          width: 100%;
          margin-left: 0px;
          margin-right: 0px;
      }
      .kcli {
          margin-top: 20px;
      }
      .kcli ul li {
          width: 48%;
          margin: 0 1% 20px;
          height: auto;
          margin-bottom: 15px;
      }
      .kcli ul li>a {
          width: 100%;
          height: auto;
      }
      .kcli ul li h3 a {
          font-size: 15px;
          height: 40px;
          line-height: 40px;
      }
      .sub_gywm {
          margin-top: 30px;
      }
      .sub_gywm ul li {
          width: 80px;
          height: 30px;
      }
      .sub_gywm ul li a {
          width: 80px;
          height: 30px;
          line-height: 30px;
          font-size: 12px;
      }
      .sub_gywm ul{
          height: 33px;
      }
      .zh_gywm1 {
          height: auto;
          margin-bottom: 20px;
      }
      .gywm2_1_le {
          background: none;
          height: auto;
          float: none;
          padding-bottom: 10px;
      }
    
      .gywm2_1_ri {
          float: none;
          margin-top: 0px;
          padding: 0px;
          width: calc(100% - 30px);
          padding-left: 18px;
          margin-top: 30px;
      }
      .gywm2_1_ri span{
          height: auto;
      }
      .gywm2_1_le h2{
          padding-left: 18px;
          box-sizing: border-box;
      }
     
      .kk .wow>div:nth-child(3) {
        width: calc(100% - 30px);
        padding-left: 0;
        margin: 0 auto;
      }
      .szl ul li {
          width: 48%;
      }
      .szl ul li>a {
          width: 100%;
          height: auto;
      }
      .szl ul li>span {
          margin-top: 10px;
      }
      .szl ul li em {
          width: 100%;
          height: 100%;
          background-size: 100%;
      }
      .szl ul li em img {
          width: 30px;
          height: 30px;
      }
      .szl ul li:hover em img {
          margin-top: 70px;
          transition: .5s;
      }
      .szlxx {
          width: calc(90% - 20px);
          padding-left: 10px;
          padding-right: 10px;
          margin-left: -45%;
          overflow-y: auto;
      }
      .szlxx>img {
          float: none;
          width: 100%;
          height: auto;
          margin: 60px auto 0px;
      }
      .gb {
          width: 50px;
          height: 50px;
      }
      .gb>img {
          width: 30px;
          height: 30px;
          margin: 0px;
          margin-top: 10px;
          margin-left: 10px;
      }
      .szlxx1 {
          width: 100%;
          padding: 0px;
          margin: 0px;
          margin-top: 10px;
      }
      .szlxx1 span {
          margin-top: 20px;
      }
      .szl {
          margin-top: 40px;
      }
      .dsj>span {
          padding-left: 30px;
          font-size: 16px;
      }
      .dsj>span em {
          font-size: 16px;
      }
      .dsj1>img {
          width: 30px;
          height: 30px;
          margin-left: 60px;
      }
      .dsj2 ul li {
          padding-left: 0px;
          background-position: 70px 22px;
          background-size: 15px 15px;
      }
      .dsj2 ul li span {
          font-size: 12px;
      }
      .dsj2 {
          background-position: 75px center;
      }
      .dsj2_1 {
          padding-left: 10px;
          padding-right: 10px;
          width: 65%;
          margin-left: 30px;
      }
      .xwzx ul li {
          width: 48%;
          height: auto;
          margin: 0 1% 20px;
      }
      .xwzx ul {
          width: 100%;
      }
      .xwzx ul li>a {
          width: 100%;
          height: auto;
      }
      .xwzx ul li>a img {
          width: 100%;
          height: auto;
      }
      .xwzx ul li h3 a {
          padding-left: 5px;
          padding-right: 5px;
          height: auto;
          padding-bottom: 10px;
      }
      .xwzx ul li h3 a strong {
          font-size: 14px;
          text-overflow: ellipsis;
          overflow: hidden;
          white-space: nowrap;
          margin-top: 10px;
          display: block;
          width: 100%;
      }
      .xwzx ul li h3 a span {
          height: 40px;
          overflow: hidden;
          margin-top: 0px;
          font-size: 12px;
          line-height: 20px;
          display: none;
      }
      .xw2_1 {
          height: 30px;
          line-height: 30px;
          font-size: 13px;
          padding-left: 5px;
          padding-right: 5px;
      }
      .lxwm1_1z {
          float: none;
          width: 100%;
          background: none;
          padding-left: inherit;
      }
      .lxwm1_1z1 {
          width: 100%;
      }
      .lxwm1_1z2 {
          padding-left: 0px;
      }
      .lxwm_dt iframe {
          height: 300px;
      }
      .tskcxx h1 {
          font-size: 20px;
      }
      .tskcxx1 {
          font-size: 13px;
      }
      .tskcxx {
          font-size: 13px;
      }
      .shangxia {
          height: 50px;
      }
      .shangxia a.a1 {
          font-size: 12px;
          height: 50px;
          line-height: 50px !important;
          text-overflow: ellipsis;
          overflow: hidden;
          white-space: nowrap;
      }
      .shangxia a.a2 {
        visibility: hidden;
        height: 0;

      }
      .shangxia1 {
          display: none
      }
      .kctxx1 {
          font-size: 12px;
      }
      .xwxx h1 {
          font-size: 20px;
      }
      .xwxx2 {
          font-size: 12px;
      }
      .xwxx2 img {
          width: 100%;
          height: auto;
      }
      .xm input {
          width: 60%;
      }
      .yznzheng1 {
          margin-top: 10px;
      }
      .fom {
          padding-bottom: 10px;
      }
      .yyst {
          margin: -50px auto 70px;
      }
      .yanzheng2 {
          line-height: 50px;
      }
      .st2 ul li input {
          width: 70% !important;
      }
      .st2 ul li span {
          font-size: 13px;
      }
      .in_yzm1 a {
          width: 30%;
          height: auto;
      }
      .yznzheng1 img {
          width: 100%;
          height: auto
      }
  }
  
  .pc--pop {
      position: fixed;
      bottom: 100px;
      right: 20px;
      z-index: 100;
  }
  
  .pc--pop .cell {
      position: relative;
      margin: 11px 0;
  }
  
  .pc--pop .cell a {
      display: block;
      width: 42px;
      height: 42px;
      border-radius: 6px;
      transition: all .3s 0s;
  }
  
  .pc--pop .cell.icon1 a {
      background: #fe4656 url(../images/pop01.png) no-repeat center / 24px auto;
  }
  
  .pc--pop .cell.icon2 a {
      background: #fe4656 url(../images/pop02.png) no-repeat center / 24px auto;
  }
  
  .pc--pop .cell.icon3 a {
      background: #fe4656 url(../images/pop00.png) no-repeat center / 15px auto;
  }
  
  .pc--pop .pop {
      position: absolute;
      top: 0;
      right: 110%;
      z-index: 10;
      visibility: hidden;
      transform: translate(30px, 0);
      transition: 0s;
      opacity: 0;
  }
  
  .pc--pop .pop img {
      display: block;
  }
  
  .pc--pop .cell:hover .pop {
      visibility: visible;
      opacity: 1;
      transform: translate(0, 0);
      transition: all .3s 0s;
  }
  
  .pc--pop .cell:hover a {
      background-color: #f29900;
  }