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

@font-face {
  font-family: "XXII-DONT-MESS-WITH-VIKINGS";
  src: url("../fonts/xxii-dont-mess-with-vikings.svg") format('svg');
  src: url("../fonts/xxii-dont-mess-with-vikings.eot") format('embedded-opentype');
  src: url("http://www.huishengele.com/templet/mds5011/fonts/XXII-DONT-MESS-WITH-VIKINGS.otf") format('truetype');
  src: url("../font/XXII-DONT-MESS-WITH-VIKINGS.ttf") format('truetype');
  src: url("../fonts/xxii-dont-mess-with-vikings.woff") format('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: #008639;
  border-color: #008639;
  color: #fff;
}
body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 74%;
  width: 100%;
}
img {
  max-width: 100%;
}
.header {
  background: url(../images/bg.png);
  width: 100%;
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}
.header .logo {
  float: left;
  display: block;
  line-height: 0;
}
.header .nav {
  margin-left: 100px;
  float: left;
}
.header .nav ul li {
  float: left;
  position: relative;
  font-size: 16px;
  line-height: 94px;
  width: 110px;
  text-align: center;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: all .5s;
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}
.header .nav ul li a {
  display: block;
  width: 100%;
  color: #dfdfdf;
}
.header .nav ul li a em {
  display: none;
  font-style: normal;
  text-transform: uppercase;
  font-size: 14px;
}
.header .nav ul li:hover,
.header .nav ul li.cur {
  border-bottom-color: #00c152;
  background: #1f1f1f;
}
.header .nav ul li:hover a,
.header .nav ul li.cur a {
  color: #00f166;
}
.header .nav ul li:hover a span,
.header .nav ul li.cur a span {
  display: none;
}
.header .nav ul li:hover a em,
.header .nav ul li.cur a em {
  display: block;
}
.header .icon_btn {
  float: right;
  padding-top: 30px;
}
.header .icon_btn a {
  display: block;
  width: 44px;
  height: 44px;
  float: left;
  margin-left: 15px;
}
.header .icon_btn a:first-child {
  margin-left: 0;
}
.header .navbtn {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 4%;
  margin-top: -2%;
  overflow: hidden;
  z-index: 999;
  line-height: 0;
  display: none;
}

.footer {
  background: url(../images/home_bg6.gif) no-repeat center top / cover;
  padding: 70px 0 45px;
}
.footer .en-title {
  text-align: left;
  color: #fffefe;
  font-size: 25px;
  letter-spacing: 3px;
  font-weight: 600;
}
.footer .en-title strong {padding-bottom: 30px;display: block;}
.footer .en-title strong a{color: white;}
.footer .en-title strong a:hover{color: #008639;}
.footer .left {
  float: left;
  width: 50%;
}
.footer .left em {
  margin-top: 20px;
  color: #ffffff;
  font-size: 38px;
  font-weight: bold;
  font-family: arial;
  display: inline-block;
}
.footer .left .yw {
  color: #999999;
  font-size: 12px;
  font-family: arial;
  text-transform: uppercase;
}
.footer .left .text {
  margin-top: 4px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
}
.footer .left .icon_fx {
  margin-top: 12px;
}
.footer .left .icon_fx a {
  display: block;
  float: left;
  width: 28px;
  line-height: 0;
  margin-right: 12px;
}
.footer .left .ewm {
  margin-top: 20px;
}
.footer .left .ewm span {
  float: left;
  width: 127px;
  display: block;
  line-height: 0;
}
.footer .left .ewm p {
  float: left;
  color: #999999;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  margin-left: 20px;
  padding-top: 45px;
}
.footer .right {
  float: right;
  width: 40%;
}
.footer .right .ewm{
  float: right;
}
.footer .right ul li {
  margin-top: 20px;
  float: left;
  width: 100%;
}
.footer .right ul li input {
  float: left;
  width: 100%;
  border: none;
  border-bottom: 1px solid #686868;
  background: none;
  color: #666666;
  font-size: 14px;
  padding: 17px 0;
  font-family: "微软雅黑";
  -webkit-appearance: none;
  border-radius: initial;
}
.footer .right ul li .btn {
  margin-top: 30px;
  background: #848484;
  color: #000000;
  font-size: 18px;
  border-bottom: none;
  height: 45px;
  padding: 0;
}
.footer .right ul li:hover .btn {

  background: #fff;
  color: #000000;
  
}

.banquan {
  background: #151515;
  color: #7f7f7f;
  font-size: 12px;
  padding: 20px 0;
}
.banquan p {
  float: left;
  text-transform: uppercase;
}
.banquan a {
  float: right;
  display: block;
  color: #7f7f7f;
}
.banquan a:hover {
  text-decoration: underline;
}
.banner_box {
  position: relative;
  z-index: 1;
}
.banner_box .mouse {
  position: absolute;
  left: 50%;
  margin-left: -13px;
  bottom: 100px;
  width: 26px;
  height: 44px;
  z-index: 2;
}
.banner {
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .slick-prev,
.banner .slick-next {
  width: 40px;
  height: 78px;
  margin-top: -39px;
  border: none;
}
.banner .slick-prev {
  background: url(../images/prev.png) no-repeat center center / cover;
  left: 3%;
}
.banner .slick-next {
  background: url(../images/next.png) no-repeat center center / cover;
  right: 3%;
}
.en-title {
  text-align: center;
  color: #000000;
  font-size: 40px;
 font-family: "XXII-DONT-MESS-WITH-VIKINGS";
}
.en-title2 {
  color: #008639;
}
.info-icon {
  width: 99px;
  margin: 10px auto 0;
  line-height: 0;
  display: block;
}
.info-title {
  color: #000000;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
}
.info-title2 {
  color: #7d7d7d;
}
.info-name {
    margin-top: 20px;
    color: #666666;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}
.info-name2 {
  color: #fff;
}
.title {
  margin-top: 15px;
  text-align: center;
}
.home_college {
  position: relative;
  background: url(../images/home_bg.gif) no-repeat center top / cover;
  padding-bottom: 70px;
}
.home_college .box {
  position: relative;
  margin-top: -74px;
  background: #fff;
  z-index: 2;
  padding: 40px 26px 54px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.home_college ol {
  margin-top: 40px;
}
.home_college ol li {
  width: 20%;
  float: left;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}
.home_college ol li .img {
  line-height: 0;
}
.home_college ol li .img span {
  display: block;
}
.home_college ol li .img em {
  display: none;
}
.home_college ol li h3 {
  margin-top: 12px;
  font-weight: normal;
  color: #666666;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_college ol li p {
  margin-top: 8px;
  color: #999999;
  font-size: 12px;
  font-family: arial;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_college ol li:hover .img span {
  display: none;
}
.home_college ol li:hover .img em {
  display: block;
}
.home_college ol li:hover h3 {
  color: #333333;
}
.home_course {
  padding: 60px 0 70px;
}
.home_course ol {
  margin-top: 50px;
}
.home_course ol li {
  float: left;
  width: 24.2%;
  position: relative;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  margin-right: 1.066666666%;
}
.home_course ol li:nth-child(4n) {
  margin-right: 0;
}
.home_course ol li .icon-brand {
  position: absolute;
  left: 13px;
  top: -8px;
  width: 80px;
  line-height: 0;
  z-index: 3;
}
.home_course ol li .img {
  width: 100%;
  line-height: 0;
}
.home_course ol li .img img {
  width: 100%;
}
.home_course ol li .t {
  position: absolute;
  left: 0;
  bottom: 0;
    background: rgba(0, 0, 0, 0.54);
  width: 100%;
  text-align: center;
  padding: 20px 10px;
}
.home_course ol li .t h3 {
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_course ol li .t h3 a{color: #fff;}
.home_course ol li .t p {
    margin-top: -33px;
    padding: 39px 15px 10px;
     color: #eeeeee;
     font-size: 14px;
     overflow: hidden;
     display: none;
    /*text-overflow: ellipsis;
    white-space: nowrap;*/
    background: rgba(0, 0, 0, 0.54);   
    /*height: 160px;*/
}
.home_course ol li .t p a{color: #fff;}
.home_course ol li .text {
  display: none;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 25px;
}
.home_course ol li .text .num {
  text-align: center;
  color: #008639;
  font-size: 72px;
  font-family: arial;
  font-weight: bold;
}
.home_course ol li .text .icon {
  display: block;
  margin: 0 auto;
  width: 1px;
  height: 45%;
  /*background: #5f5f5f;*/
}
.home_course ol li:hover .text {
  display: block;
}
.home_course ol li:hover .t {
  z-index: 3;
  background: none;
  padding-bottom: 45px;
  border-bottom: #008639 solid 4px;
}
.home_course ol li:hover .t h3 {
  color: #fff;
}
.home_course ol li:hover .t p {
  display: block;
}
.home_idea {
  background: url(../images/home_bg2.gif) no-repeat center center / cover;
  min-height: 474px;
}
.home_idea .box {
  position: relative;
  padding-top: 16%;
}
.home_idea .box .btn {
  display: block;
  width: 6%;
  line-height: 0;
  margin-left: 18%;
  cursor: pointer;
}
.home_idea .box .text {
  position: absolute;
  right: 0;
  top: 25px;
  margin-right: -18.5%;
  width: 75%;
  background: url(../images/idea_bg.png) no-repeat right center / cover;
  min-height: 432px;
  text-align: right;
  padding-left: 10%;
  padding-right: 18.5%;
  color: #fff;
  padding-top: 5%;
}
.home_idea .box .text h3 {
  font-size: 42px;
}
.home_idea .box .text .en-bt {
  margin-top: 7px;
  font-size: 48px;
  font-family: XXII-DONT-MESS-WITH-VIKINGS;
}
.home_idea .box .text .en-tit {
  font-size: 60px;
  font-family: XXII-DONT-MESS-WITH-VIKINGS;
}
.home_idea .box .text .t {
  margin-top: 30px;
  font-size: 16px;
  line-height: 24px;
}
.home_team {
  background: url(../images/home_bg3.gif) no-repeat center top / cover;
  padding: 70px 0;
}
.home_team .box {
  position: relative;
}
.home_team .box .team_title {
  position: absolute;
  left: 0;
  top: 0;
}
.home_team .box .team_title .en-title {
  text-align: left;
}
.home_team .box .team_title .info-icon {
  margin: 10px 0 0;
}
.home_team .box .team_title .info-title {
  margin-top: 15px;
  text-align: left;
}
.home_team .box .text_box {
  float: left;
  width: 66%;
}
.home_team .box .text_box .text .left {
  margin-top: 148px;
  float: left;
  width: 40%;
}
.home_team .box .text_box .text .left .text {
  border-top: 1px solid #eeeeee;
  padding-top: 25px;
}
.home_team .box .text_box .text .left .text .name {
  color: #333333;
  font-size: 28px;
}
.home_team .box .text_box .text .left .text .name span {
  color: #999999;
  font-size: 18px;
  position: relative;
  margin-left: 5px;
  bottom: -4px;
}
.home_team .box .text_box .text .left .text .t {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.home_team .box .text_box .text .left .video {
  width: 242px;
  margin-top: 25px;
}
.home_team .box .text_box .text .left .more {
  margin-top: 20px;
  display: inline-block;
  color: #999999;
  font-size: 14px;
  text-transform: uppercase;
  background: url(../images/icon4.png) no-repeat right center;
  padding-right: 40px;
}
.home_team .box .text_box .text .right {
  float: right;
  width: 48%;
  line-height: 0;
  overflow: hidden;
}
.home_team .box .team_list {
  float: right;
  width: 25%;
}
.home_team .box .team_list .text {
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin: 10px 0;
}
.home_team .box .team_list .text .img {
  float: left;
  width: 61px;
  height: 61px;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}
.home_team .box .team_list .text .img img {
  border-radius: 50%;
}
.home_team .box .team_list .text .t {
  float: right;
  width: 75%;
  padding-top: 8px;
}
.home_team .box .team_list .text .t .name {
  color: #333333;
  font-size: 16px;
}
.home_team .box .team_list .text .t .name span {
  display: inline-block;
  color: #666666;
  font-size: 14px;
  margin-left: 5px;
  position: relative;
  top: 1px;
}
.home_team .box .team_list .text .t p {
  color: #999999;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 5px;
}
.home_team .box .team_list .slick-current .text {
  background: #f5b834;
}
.home_team .box .team_list .slick-current .text .t .name {
  color: #fff;
}
.home_team .box .team_list .slick-current .text .t .name span {
  color: #fff;
}
.home_team .box .team_list .slick-current .text .t p {
  color: #fff;
}
.home_student {
  min-height: 532px;
}
.home_student .box {
  position: relative;
}
.home_student .box .student_box {
  width: 100%;
}
.home_student .box .student_box .img_box {
  width: 46.5%;
  float: left;
  line-height: 0;
}
.home_student .box .student_box .text_box {
  float: right;
  width: 50%;
  padding-top: 6%;
}
.home_student .box .student_box .text_box h3 {
  color: #008639;
  font-size: 30px;
  margin-bottom: 5px;
}
.home_student .box .student_box .text_box .en-title {
  text-align: left;
  color: #fff;
}
.home_student .box .student_box .text_box .info-icon {
  margin: 17px 0 0;
}
.home_student .box .student_box .text_box .text {
  margin-top: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid #5f5e5d;
  color: #f4f4f4;
  font-size: 14px;
  line-height: 24px;
}
.home_student .box .student_box .text_box .text h3 {
  font-size: 20px;
}
.home_student .box .student_box .text_box .text .t {
  margin: 15px 0 ;
}
.home_student .box .student_box .text_box .more {
  margin-top: 28px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  background: url(../images/icon3.png) no-repeat right center;
  padding-right: 40px;
}
.home_student .box .student_box .slick-prev,
.home_student .box .student_box .slick-next {
  width: 86px;
  height: 73px;
  border: none;
  top: auto;
  bottom: 0;
  margin-top: 0;
}
.home_student .box .student_box .slick-prev {
  background: url(../images/left2.jpg) no-repeat center center / cover;
  left: 34.3%;
}
.home_student .box .student_box .slick-next {
  background: url(../images/right2.jpg) no-repeat center center / cover;
  left: 40.3%;
}
.home_student .box .num {
  position: absolute;
  left: 25px;
  bottom: 10px;
  z-index: 9;
  width: 100px;
  color: #fff;
  font-size: 23px;
  font-weight: bold;
}
.home_student .box .num span.on {
  color: #008639;
  font-size: 30px;
}
.tables_tit {
  text-align: center;
  margin-top: 35px;
}
.tables_tit span {
  display: inline-block;
  border: 1px solid #d5d5d5;
  line-height: 50px;
  padding: 0 40px;
  color: #666666;
  font-size: 18px;
  cursor: pointer;
  margin: 0 15px;
}
.tables_tit span:hover,
.tables_tit span.cur {
  background: #008639;
  border-color: #008639;
  color: #333333;
}
.home_display {
  padding: 60px 0;
}
.home_display1 {
  padding: 20px 0 60px;
}
.home_display .info-name {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
    text-align: center;
}
.home_display .tables_con {
  margin-top: 32px;
}
.home_display .tables_con ul {
  margin-bottom: 35px;
}
.home_display .tables_con ul li {
  float: left;
  width: 32.5%;
  position: relative;
  margin-bottom: 1.25%;
  margin-right: 1.25%;
}
.home_display .tables_con ul li:nth-child(3n) {
  margin-right: 0;
}
.home_display .tables_con ul li span {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.home_display .tables_con ul li span img {
  width: 100%;
}
.home_display .tables_con ul li .text {
  opacity: 0;
  transition: all .5s;
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 92%;
  margin-left: -46%;
  background: #ffffff;
  text-align: center;
  padding: 20px 0;
}
.home_display .tables_con ul li .text:before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -15px;
  width: 2px;
  height: 59px;
  background: #f89302;
}
.home_display .tables_con ul li .text h3 {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_display .tables_con ul li:hover .text {
  opacity: 1;
}
.home_display .tables_con .more {
  display: block;
  width: 154px;
  line-height: 42px;
  border: 1px solid #e4e4e4;
  margin: 0 auto;
  text-align: center;
  color: #666666;
  font-size: 14px;
  transition: all .5s;
  text-transform: uppercase;
}
.home_display .tables_con .more:hover {
  background: #272727;
  color: #fff;
  border-color: #272727;
}
.title-h3 {
  color: #dddddd;
  font-size: 30px;
  font-weight: normal;
}
.title-h3 span {
  color: #666666;
  font-size: 20px;
  text-transform: uppercase;
}
.home_qa {
  background: url(../images/home_bg5.gif) no-repeat center top / cover;
  padding: 80px 0;
}
.home_qa .box .qa_box {
  margin-top: 40px;
}
.home_qa .box .qa_box ul {
  margin-bottom: 50px;
}
.home_qa .box .qa_box ul li {
  float: left;
  width: 32.5%;
  margin-right: 1.25%;
}
.home_qa .box .qa_box ul li:nth-child(3n) {
  margin-right: 0;
}
.home_qa .box .qa_box ul li .text {
  background: #333333;
  padding: 70px 30px;
  position: relative;
}
.home_qa .box .qa_box ul li .text:before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -10px;
  width: 27px;
  height: 10px;
}
.home_qa .box .qa_box ul li .text .bt {
  color: #eeeeee;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_qa .box .qa_box ul li .text .bt span a {color: #eeeeee;}
.home_qa .box .qa_box ul li .text .t {
  margin-top: 15px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home_qa .box .qa_box ul li .text .t a{color: #eeeeee;}
.home_qa .box .qa_box ul li .name_box {
  margin-top: 30px;
}
.home_qa .box .qa_box ul li .name_box .img {
  float: left;
  width: 15.5%;
  display: block;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}
.home_qa .box .qa_box ul li .name_box .img img {
  border-radius: 50%;
}
.home_qa .box .qa_box ul li .name_box .con {
  float: right;
  width: 80%;
  padding-top: 11px;
}
.home_qa .box .qa_box ul li .name_box .con h3 {
  color: #cccccc;
  font-size: 16px;
  font-weight: normal;
}
.home_qa .box .qa_box ul li .name_box .con h3 span {
  color: #cccccc;
  font-size: 14px;
  font-family: arial;
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: 1px;
}
.home_qa .box .qa_box ul li .name_box .con p {
  margin-top: 5px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
}
.home_qa .box .qa_box ul li:hover .text {
  background: #008639;
}
.home_qa .box .qa_box ul li:hover .text:before {}
.home_qa .box .qa_box ul li:hover .text .bt,
.home_qa .box .qa_box ul li:hover .text .t {
  color: #fff;
}
.home_qa .box .qa_box ul li:hover .con h3 {
  color: #008639;
}
.home_qa .box .qa_box ul li:hover .con h3 span {
  color: #008639;
}
.home_qa .box .qa_box .more {
  display: block;
  width: 154px;
  line-height: 42px;
  border: 1px solid #008639;
  background: #008639;
  margin: 0 auto;
  text-align: center;
  color: #333333;
  font-size: 14px;
  transition: all .5s;
  text-transform: uppercase;
}
.home_qa .box .qa_box .more:hover {
  background: #fff;
  border-color: #fff;
}
.home_news {
  padding: 70px 0;
}
.home_news .box .title-h3 {
  color: #333333;
}
.home_news .box .title-h3 span {
  color: #333333;
}
.home_news .box .h_news_box {
  margin-top: 40px;
}
.home_news .box .h_news_box ul {
  margin-bottom: 60px;
}
.home_news .box .h_news_box ul li {
  float: left;
  width: 32.5%;
  background: #f3f3f3;
  padding: 0 20px 30px;
  transition: all 0.5s;
  margin-right: 1.25%;
}
.home_news .box .h_news_box ul li:nth-child(3n) {
  margin-right: 0;
}
.home_news .box .h_news_box ul li .data {
  margin-top: -12px;
  width: 78px;
  height: 80px;
  background: #2d2d2d;
  color: #fff;
  text-align: right;
  padding: 20px 10px 0;
}
.home_news .box .h_news_box ul li .data .t {
  font-size: 20px;
}
.home_news .box .h_news_box ul li .img {
  margin-top: 25px;
  line-height: 0;
  width: 100%;
  overflow: hidden;
}
.home_news .box .h_news_box ul li .img img {
  width: 100%;
}
.home_news .box .h_news_box ul li .text {
  margin-top: 20px;
}
.home_news .box .h_news_box ul li .text h3 {
  color: #333333;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .box .h_news_box ul li .text h3 a:hover{color: #fff;}
.home_news .box .h_news_box ul li .text p {
  margin-top: 8px;
  color: #333333;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.home_news .box .h_news_box ul li span {
  margin-top: 20px;
  display: inline-block;
  color: #ccc;
  font-size: 14px;
  text-transform: uppercase;
  background: url(../images/icon4.png) no-repeat right center;
  padding-right: 40px;
}
.home_news .box .h_news_box ul li:hover {
  background: #272727;
}
.home_news .box .h_news_box ul li:hover .data {
  background: #008639;
  color: #272727;
}
.home_news .box .h_news_box ul li:hover .text h3,
.home_news .box .h_news_box ul li:hover .text p {
  color: #fff;
}
.home_news .box .h_news_box ul li:hover span {
  color: #008639;
}
.home_news .box .h_news_box .more_btn {
  display: block;
  width: 154px;
  line-height: 42px;
  border: 1px solid #272727;
  background: #272727;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-size: 14px;
  transition: all .5s;
  text-transform: uppercase;
}
.home_news .box .h_news_box .more_btn:hover {
  background: #008639;
  border-color: #008639;
  color: #333;
}
.nybanner img {
  width: 100%;
  float: left;
}
.news_box {
  padding: 50px 0 70px;
}
.news_box .news_tit {
  text-align: center;
}
.news_box .news_tit a {
  display: inline-block;
  width: 150px;
  height: 46px;
  line-height: 46px;
  background: #f1f1f1;
  color: #333333;
  font-size: 16px;
  margin: 0 10px;
}
.news_box .news_tit a:hover,
.news_box .news_tit a.cur {
  background: #008639;
    color: #ffffff;
}
.news_box .news_top {
  margin-top: 40px;
  min-height: 349px;
  background: url(../images/news_bg.jpg) repeat-x left top;
}
.news_box .news_top .box {
  padding: 0 20px;
}
.news_box .news_top .box .img {
  float: left;
  width: 38%;
  line-height: 0;
}
.news_box .news_top .box .text {
  float: right;
  width: 59%;
  padding-top: 58px;
  padding-right: 1%;
}
.news_box .news_top .box .text .bt {
  font-size: 20px;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_box .news_top .box .text .bt a{color: #008639;}
.news_box .news_top .box .text .date {
  margin-top: 10px;
  color: #999999;
  font-size: 14px;
}
.news_box .news_top .box .text p {
  margin-top: 15px;
  color: #cccccc;
  font-size: 14px;
  line-height: 24px;
 /* height: 48px;*/
  overflow: hidden;
}
.news_box .news_top .box .text p a{color: #008639;}
.news_box .news_top .box .text .more {
  margin-top: 26px;
  border: 1px solid #5b5b5b;
  line-height: 40px;
  width: 140px;
  text-align: center;
  color: #999999;
  text-transform: uppercase;
}
.news_box .news_top .slick-prev,
.news_box .news_top .slick-next {
  width: 60px;
  height: 50px;
  margin-top: 0;
  top: auto;
  bottom: 23px;
  border: none;
}
.news_box .news_top .slick-prev {
  background: url(../images/left2.jpg) no-repeat center center / cover;
  left: 29.8%;
}
.news_box .news_top .slick-next {
  background: url(../images/right2.jpg) no-repeat center center / cover;
  right: auto;
  left: 34.08%;
}
.news_box .news_list {
  margin-top: 20px;
}
.news_box .news_list ul {
  margin-bottom: 50px;
}
.news_box .news_list ul li {
  margin-top: 20px;
  float: left;
  width: 100%;
  border: 1px solid #e6e6e6;
  padding: 20px;
  background: #fff;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
.news_box .news_list ul li .img {
  display: block;
  float: left;
  width: 25%;
  line-height: 0;
  overflow: hidden;
}
.news_box .news_list ul li .img img {
  width: 100%;
  -webkit-transition: all 1.2s;
  -moz-transition: all 1.2s;
  -ms-transition: all 1.2s;
  -o-transition: all 1.2s;
}
.news_box .news_list ul li .text {
  float: left;
  width: 54%;
  margin-left: 3%;
  padding-top: 1.4%;
}
.news_box .news_list ul li .text .bt {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #333333;
  font-size: 16px;
  font-weight: normal;
}
.news_box .news_list ul li .text p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  margin-top: 2%;
}
.news_box .news_list ul li .text .bottom {
  margin-top: 3.6%;
  font-size: 13px;
}
.news_box .news_list ul li .text .bottom span {
  display: block;
  float: left;
  margin-left: 23px;
  padding-left: 22px;
  color: #999999;
}
.news_box .news_list ul li .text .bottom span:first-child {
  margin-left: 0;
}
.news_box .news_list ul li .text .bottom span.f-r {
  display: none;
}
.news_box .news_list ul li .text .bottom .a1 {
  padding-left: 19px;
}
.news_box .news_list ul li .text .bottom .a2 {}
.news_box .news_list ul li .text .bottom .a3 {}
.news_box .news_list ul li .right {
  float: right;
  text-align: right;
  padding-top: 1.4%;
}
.news_box .news_list ul li .right span {
  display: block;
  color: #999999;
  font-size: 18px;
}
.news_box .news_list ul li .right .more {
  margin-top: 9%;
  background: url(../images/news_icon.png) no-repeat right center;
  line-height: 40px;
  height: 40px;
  display: block;
  width: 120px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}
.news_box .news_list ul li .right .more span {
  /*display: none;*/
    float: left;
    margin-left: 20%;
}
.news_box .news_list ul li:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.news_box .news_list ul li:hover .img img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.news_box .news_list ul li:hover .right .more {
  display: block;
  text-align: center;
  background: #272727 url(../images/news_icon4.jpg) no-repeat right center;
}
.news_box .news_list ul li:hover .right .more span {
  display: block;
  color: #008639;
  font-size: 16px;
  text-transform: uppercase;
}
.news_box .mian_box {
  margin-top: 45px;
}
.news_box .mian_box .qa_list {
  width: 72%;
  float: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.news_box .mian_box .qa_list ul li {
  float: left;
  width: 100%;
  padding-bottom: 15px;
}
.news_box .mian_box .qa_list ul li .bt {
  background: #ebebeb;
  line-height: 58px;
  padding: 0 38px;
  font-size: 16px;
  cursor: pointer;
}
.news_box .mian_box .qa_list ul li .bt .t {
  float: left;
  max-width: 70%;
  color: #666666;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_box .mian_box .qa_list ul li .bt .d{
	float: right;
}
.news_box .mian_box .qa_list ul li .bt .d span{
	float: right;
	line-height: 58px;
	margin-right: 10px;
	color: #666666;
}
.news_box .mian_box .qa_list ul li .bt .d em{
	display: block;
	float: right;
	width: 32px;
	height: 32px;
	margin-top: 10px;
	border-radius: 50%;
}
.news_box .mian_box .qa_list ul li .bt .d em img{
	border-radius: 50%;
}
.news_box .mian_box .qa_list ul li .text {
	/*display:none;*/
  padding: 0 38px;
  color: #333333;
  line-height: 24px;
  overflow: hidden;
  /*border-bottom: 1px solid #e5e5e5;*/
  margin-top: 15px;
  font-size:15px;
}

.news_box .mian_box .qa_list ul li .text .bottom{
	margin-top: 25px;
	line-height: 24px;
}
.news_box .mian_box .qa_list ul li .text .bottom .dianzan{
	float: right;
}
.news_box .mian_box .qa_list ul li .text .bottom .dianzan a{
	float: left;
	position: relative;
	display: block;
	padding-left: 18px;
	margin-right: 20px;
}
.news_box .mian_box .qa_list ul li .text .bottom .dianzan a:before{
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 12px;
	height: 13px;
}
.news_box .mian_box .qa_list ul li .text .bottom .dianzan .a1:before{
	background: url(../images/dian1.jpg) no-repeat center center/cover;
}
.news_box .mian_box .qa_list ul li .text .bottom .dianzan .a2:before{
	background: url(../images/dian2.jpg) no-repeat center center/cover;
}
.news_box .mian_box .qa_list ul li .text .bottom .fx{
	float: right;
}
.news_box .mian_box .qa_list ul li .text .bottom .fx span{
	float: left;
	color: #666666;
	font-size: 14px;
}
.news_box .mian_box .qa_list ul li .text .bottom .fx a{
	line-height: 0;
	float: left;
}
.news_box .mian_box .qa_list ul li .text .bottom .fx .fx_box{
	float: left;
}
.news_box .mian_box .qa_list ul li .text .bottom .fx_btn.bdsharebuttonbox a{
	margin: 0;
	margin-left: 5px;
}
/*.news_box .mian_box .qa_list ul li:nth-child(2n) .bt {
  background: #fff;
}*/
.news_box .mian_box .qa_list ul li.cur .bt {
  background: #2f2f30;
}
.news_box .mian_box .qa_list ul li.cur .bt .t {
  color: #008639;
}
.news_box .mian_box .qa_list ul li.cur .bt .d span{
	color: #fff;
}
.news_box .mian_box .qa_list ul li.cur .text {
  height: auto;
}
.news_box .mian_box .right_con {
  float: right;
  width: 25%;
}
.news_box .mian_box .right_con .tjkc {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.news_box .mian_box .right_con .tjkc h3 {
  background: #ededed;
  line-height: 58px;
  color: #333333;
  font-size: 22px;
  font-weight: normal;
  padding: 0 20px;
}
.news_box .mian_box .right_con .tjkc ul {
  padding: 20px;
}
.news_box .mian_box .right_con .tjkc ul li {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.news_box .mian_box .right_con .tjkc ul li .img {
  width: 100%;
  line-height: 0;
}
.news_box .mian_box .right_con .tjkc ul li .bt {
  text-align: center;
  color: #666666;
  font-size: 18px;
  line-height: 68px;
}
.news_box .mian_box .newsshow {
  width: 72%;
  float: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 25px 28px;
}
.news_box .mian_box .newsshow h1 {
  color: #333333;
  font-size: 26px;
  font-weight: normal;
}
.news_box .mian_box .newsshow .date {
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}
.news_box .mian_box .newsshow .date span {
  display: block;
  float: left;
  color: #999999;
  margin-right: 50px;
  padding-left: 22px;
}
.news_box .mian_box .newsshow .date .s1 {}
.news_box .mian_box .newsshow .date .s2 {}
.news_box .mian_box .newsshow .date .s3 {}
.news_box .mian_box .newsshow .date .s4 {}
.news_box .mian_box .newsshow .detail {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  padding-top: 20px;
}
.news_box .mian_box .newsshow .fy_bottom {
  margin-top: 40px;
}
.news_box .mian_box .newsshow .fy_bottom ul {
  max-width: 70%;
  float: left;
}
.news_box .mian_box .newsshow .fy_bottom ul li {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 44px;
  border-bottom: 1px solid #eeeeee;
}
.news_box .mian_box .newsshow .fy_bottom ul li:last-child {
  border-bottom: none;
}
.news_box .mian_box .newsshow .fy_bottom ul li a {
  display: block;
  color: #777777;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_box .mian_box .newsshow .fy_bottom ul li a span {
  color: #333333;
}
.news_box .mian_box .newsshow .fy_bottom .fx_box {
  margin-top: 32px;
  float: right;
  max-width: 30%;
  line-height: 24px;
}
.news_box .mian_box .newsshow .fy_bottom .fx_box span {
  display: block;
  float: left;
  padding-left: 20px;
  position: relative;
}
.news_box .mian_box .newsshow .fy_bottom .fx_box span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  width: 14px;
  height: 14px;
}
.news_box .mian_box .newsshow .fy_bottom .fx_box a {
  display: block;
  float: left;
  margin-right: 5px;
}
.contact_div {
  background: #fafafa;
}
.contact_div .contact_top {
  top: -70px;
  background: #fff;
  position: relative;
  z-index: 2;
  padding: 50px 20px 10px;
}
.contact_div .contact_top ul {
  margin-top: 40px;
}
.contact_div .contact_top ul li {
  position: relative;
  margin-left: 2%;
  float: left;
  min-height: 218px;
  width: 32%;
  padding: 3% 2.5%;
  -webkit-box-shadow: 0 0 30px 15px #F6F6F6;
  -moz-box-shadow: 0 0 30px 15px #F6F6F6;
  box-shadow: 0 0 30px 15px #F6F6F6;
}
.contact_div .contact_top ul li:first-child {
  margin-left: 0;
}
.contact_div .contact_top ul li h3 {
  color: #666666;
  font-size: 17px;
  display: inline-block;
  border-bottom: 2px solid #bfbfbf;
  padding-bottom: 10px;
}
.contact_div .contact_top ul li .text {
  position: relative;
  z-index: 2;
  margin-top: 13px;
  color: #646464;
  font-size: 16px;
  line-height: 26px;
}
.contact_div .contact_top ul li i {
  position: absolute;
  right: 30px;
  bottom: 20px;
}
.contact_div .contact_top ul li .bg1 {
  width: 80px;
  height: 78px;
}
.contact_div .contact_top ul li .bg2 {
  width: 72px;
  height: 72px;
}
.contact_div2 {
  background: url(../images/contact_bg.jpg) no-repeat center top;
  padding-top: 65px;
  padding-bottom: 80px;
}
.contact_div2 .title-h3 {
  text-align: center;
  color: #008639;
}
.contact_div2 .title-h3 span {
  color: #ffffff;
  font-size: 30px;
}
.contact_div2 .map {
  margin-top: 60px;
  line-height: 0;
}
.feedback {
  background: #fafafa;
  padding: 70px 0 80px;
}
.feedback ol {
  margin-top: 40px;
}
.feedback ol li {
  float: left;
  background: #fff;
  width: 32%;
  position: relative;
  border: 1px solid #d1d1d1;
  margin-bottom: 1.5%;
  margin-right: 2%;
}
.feedback ol li:nth-child(3),
.feedback ol li:nth-child(4),
.feedback ol li:last-child {
  margin-right: 0;
}
.feedback ol li:nth-child(4) {
  width: 100%;
}
.feedback ol li:last-child {
  border: none;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
}
.feedback ol li span {
  position: absolute;
  left: 10px;
  top: 19px;
  width: 25px;
  line-height: 0;
}
.feedback 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;
}
.feedback ol li textarea {
  width: 100%;
  border: none;
  background: none;
  height: 150px;
  font-family: "微软雅黑";
  -webkit-appearance: none;
  font-size: 16px;
  padding: 20px 10px 20px 45px;
}
.feedback ol li .btn {
  float: none;
  margin: 0 auto;
  width: 100%;
  padding: 0;
  background: #3d3d3d;
  border-color: #3d3d3d;
  color: #fff;
  font-size: 20px;
  font-family: "微软雅黑";
  border-radius: 3px;
}
.about_box .about_present {
  position: relative;
  z-index: 2;
  top: -70px;
  background: #fff;
  padding: 50px 20px 0;
}
.about_box .about_present .box {
  margin-top: 40px;
}
.about_box .about_present .box .text {
  padding-top: 70px;
  float: left;
  width: 44%;
}
.about_box .about_present .box .text h3 {
  color: #333333;
  font-size: 26px;
}
.about_box .about_present .box .text .yw {
  margin-top: 8px;
  color: #666666;
  font-size: 18px;
  font-family: arial;
  text-transform: uppercase;
}
.about_box .about_present .box .text .t {
  margin-top: 8px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.about_box .about_present .box .text .t p{
    text-indent: 2em;
}
.about_box .about_present .box .img {
  float: right;
  width: 50%;
  line-height: 0;
}
.about_idea {
  background: url(../images/about_bg.jpg) no-repeat center top;
  padding-top: 85px;
  padding-bottom: 82px;
}
.about_idea ul {
  margin-top: 50px;
}
.about_idea ul li {
  float: left;
  width: 33.33333333%;
  text-align: center;
}
.about_idea ul li .img {
  line-height: 0;
  width: 100%;
  overflow: hidden;
}
.about_idea ul li .img img {
  width: 100%;
}
.about_idea ul li .text {
  background: #333333;
  min-height: 272px;
  position: relative;
}
.about_idea ul li .text:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -15px;
  margin-left: -15px;
  width: 30px;
  height: 15px;
}
.about_idea ul li .text .con {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.about_idea ul li .text h3 {
  color: #e9e9e9;
  font-size: 18px;
  padding-bottom: 22px;
  position: relative;
}
.about_idea ul li .text h3:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 66px;
  height: 1px;
  background: #939393;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.about_idea ul li .text p {
  margin-top: 16px;
  color: #cccccc;
  font-size: 14px;
  line-height: 24px;
}
.about_idea ul li .text i{
	opacity: 0;
	position: absolute;
	left: 50%;
	bottom: 10%;
	width: 90%;
	height: 80%;
	border: 1px solid #008639;
	transform: translateX(-50%);
  	-o-transform: translateX(-50%);
  	-ms-transform: translateX(-50%);
  	-moz-transform: translateX(-50%);
  	-webkit-transform: translateX(-50%);
  	transition: all 1s;
  	-o-transition: all 1s;
  	-ms-transition: all 1s;
  	-moz-transition: all 1s;
  	-webkit-transition: all 1s;
}

.about_idea ul li:nth-child(2) .img {
  transform: translateY(100%);
  -o-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
}
.about_idea ul li:nth-child(2) .text {
  transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
}
.about_idea ul li:nth-child(2) .text:before {
  content: "";
  position: absolute;
  left: 50%;
  top: auto;
  bottom: -15px;
  margin-left: -15px;
  width: 30px;
  height: 15px;
}
.about_idea ul li:nth-child(2) .text i{
	bottom: auto;
	top: 10%;
}
.about_idea ul li:hover .text h3 {
  color: #008639;
}
.about_idea ul li:hover .text i{
	opacity: 1;
}
.about_dean {
  padding: 80px 0;
}
.about_dean .box {
  margin-top: 50px;
  background: #fafafa;
  padding: 20px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.about_dean .box .video {
  width: 44%;
  line-height: 0;
  float: left;
}
.about_dean .box .text {
  width: 56%;
  float: right;
  padding-left: 2%;
  padding-top: 40px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.about_dean .box .text h3 {
  color: #666666;
  font-size: 16px;
  font-weight: normal;
}
.about_dean .box .text h3 span {
  color: #333333;
  font-size: 24px;
  font-weight: bold;
}
.about_dean .box .text .t {
  margin: 20px 0;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
}
.about_dean .box .text h4 {
  margin-top: 24px;
  color: #333333;
  font-size: 20px;
}
.about_dean .box .text .name {
  margin-top: 15px;
  text-align: right;
  color: #666666;
  font-size: 16px;
}
.about_dean .box .text .name span {
  line-height: 0;
  position: relative;
  bottom: -3px;
}
.about_dean .box .text .dean_img {
  margin-top: 35px;
}
.about_dean .box .text .dean_img ul li {
  float: left;
  width: 230px;
  line-height: 0;
  margin-right: 10px;
}
.about_dean .box .text .dean_img ul li:last-child {
  margin-right: 0;
}
.about_services {
  background: url(../images/about_bg2.jpg) no-repeat center top / cover;
  padding: 70px 0;
}
.about_services ul {
  margin-top: 50px;
}
.about_services ul li {
  float: left;
  width: 19%;
  background: #333333;
  border: 1px solid #666666;
  height: 352px;
  padding: 45px 10px;
  transition: all 0.5s;
  margin-right: 1.25%;
}
.about_services ul li:last-child {
  margin-right: 0;
}
.about_services ul li .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #261f1f;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}
.about_services ul li .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.about_services ul li .icon span {
  display: block;
}
.about_services ul li .icon em {
  display: none;
}
.about_services ul li .text {
  padding-top: 38px;
  text-align: center;
  color: #cccccc;
  font-size: 14px;
  line-height: 24px;
}
.about_services ul li .text .bt {
  margin-bottom: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #008639;
  font-size:16px;
}
.about_services ul li .text p {
  height: 48px;
  transition: all 0.5s;
  overflow: hidden;
}

.about_services ul li .text i {
  display: block;
  width: 50px;
  height: 2px;
  background: #949494;
  margin: 25px auto 0;
  line-height: 2px;
}
.about_services ul li:hover {
  padding-top: 0;
}
.about_services ul li:hover .icon {
  margin-top: -50px;
  background: #008639;
}
.about_services ul li:hover .icon span {
  display: none;
}
.about_services ul li:hover .icon em {
  display: block;
}
.about_services ul li:hover .text i {
  display: none;
}

.about_services ul li:hover .text p {
  height: auto;
  
}

.about_attest {
  background: #fafafa;
  padding: 70px 0;
}
.about_attest .renzheng_box {
  margin-top: 45px;
}
.about_attest .renzheng_box .box {
  float: left;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 430px;
  transition: all 0.5s;
     /* width: 100%;*/
}
.about_attest .renzheng_box .box .img {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.about_attest .renzheng_box .box .text {
  transition: all 0.5s;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 25px 28px 30px;
}
.about_attest .renzheng_box .box .text h3 {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.about_attest .renzheng_box .box .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;

  overflow: hidden;
}
.about_site {
  padding: 70px 0 60px;
}
.about_site .site_box {
  max-width: 1035px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.about_site .site_box img {
  width: 100%;
}
.about_site .site_box .slide {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.about_site .site_box .slide .img {
  overflow: hidden;
  position: absolute;
  transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s, z-index 0.4s;
}
.about_site .site_box .slide .img1 {
  width: 20%;
  height: 50%;
  top: 34%;
  left: -50%;
  z-index: 1;
}
.about_site .site_box .slide .img2 {
  width: 40%;
  height: 70%;
  top: 24%;
  left: -20%;
  z-index: 2;
}
.about_site .site_box .slide .img3 {
  width: 60%;
  height: 90%;
  top: 10%;
  left: 20%;
  z-index: 3;
}
.about_site .site_box .slide .img4 {
  width: 40%;
  height: 70%;
  top: 24%;
  left: 60%;
  z-index: 2;
}
.about_site .site_box .slide .img5 {
  width: 20%;
  height: 50%;
  top: 34%;
  left: 110%;
  z-index: 1;
}
.about_site .site_box button {
  position: absolute;
  top: 50%;
  width: 74px;
  height: 74px;
  border: 0;
  padding: 0;
  display: block;
  z-index: 2;
  background: none;
  margin: -37px auto 0;
}
.about_site .site_box .left {
  left: -112px;
}
.about_site .site_box .right {
  right: -112px;
}
.about_bottom {
  background: url(../images/about_bg3.jpg) no-repeat center top;
  min-height: 474px;
  text-align: center;
  padding-top: 180px;
}
.about_bottom h3 {
  color: #ffffff;
  font-size: 30px;
}
.about_bottom P {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin-top: 17px;
}
.pro_box .pro_course {
  position: relative;
  top: -70px;
  background: #fff;
  padding: 50px 40px 0;
}
.pro_box .pro_course .box {
  margin-top: 45px;
}
.pro_box .pro_course .box .left {
  float: left;
  width: 47.6%;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.pro_box .pro_course .box .left span {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.pro_box .pro_course .box .left span img{
	transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	-webkit-transition: all 1s;
	-ms-transition: all 1s;
}
.pro_box .pro_course .box .left:hover span img{
	transform: scale(1.1);
	-moz-transform: scale(1.1);
  	-o-transform: scale(1.1);
  	-webkit-transform: scale(1.1);
  	-ms-transform: scale(1.1);
}
.pro_box .pro_course .box .left .t {
  position: absolute;
  left: 0;
  bottom: 35px;
  width: 100%;
  padding: 0 40px;
}

.pro_box .pro_course .box .left .t h3 {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.pro_box .pro_course .box .left .t p {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
 /* text-overflow: ellipsis;
  overflow: hidden;
 white-space: nowrap;*/
}
.pro_box .pro_course .box .right {
  float: right;
  width: 49%;
}
.pro_box .pro_course .box .right ul li {
  float: left;
  width: 100%;
  background: #f7f7f7;
  margin-top: 6.5%;
}
.pro_box .pro_course .box .right ul li .img {
  float: left;
  width: 48.5%;
  line-height: 0;
}
.pro_box .pro_course .box .right ul li .text {
  float: left;
  width: 51.5%;
  text-align: center;
  padding: 14% 35px 0;
  min-height: 287px;
  transition: all 0.5s;
  position: relative;
}
.pro_box .pro_course .box .right ul li .text:before {
  opacity: 0;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90%;
  height: 90%;
  border: 2px solid #fff;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.pro_box .pro_course .box .right ul li .text h3 {
  color: #333333;
  font-size: 18px;
  padding-top: 30px;
  position: relative;
}
.pro_box .pro_course .box .right ul li .text h3:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -24px;
  width: 48px;
  height: 1px;
  background: #666666;
}
.pro_box .pro_course .box .right ul li .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
  transition: all 0.5s;
}
.pro_box .pro_course .box .right ul li:first-child {
  margin-top: 0;
}
.pro_box .pro_course .box .right ul li:first-child .img {
  float: right;
}
.pro_box .pro_course .box .right ul li:hover .text {
  padding-top: 11%;
  background: #008639;
  color:#fff;
}
.pro_box .pro_course .box .right ul li:hover .text:before {
  opacity: 1;
}
.pro_box .pro_course .box .right ul li:hover .text h3:before{
  background: #fff;
}
.pro_box .pro_course .box .right ul li:hover .text h3{
    color: #fff;
}
.pro_box .pro_course .box .right ul li:hover .text p {
  height: 88px;
    color: #fff;
}
.pro_box2 {
  background: url(../images/pro_bg.jpg) no-repeat center top;
  min-height: 500px;
  padding: 70px 0;
}
.pro_box2 .teamwork {
  margin-top: 50px;
}
.pro_box2 .teamwork ol li {
  float: left;
  width: 32%;
  background: #ffffff;
  margin-left: 2%;
}
.pro_box2 .teamwork ol li:first-child {
  margin-left: 0;
}
.pro_box2 .teamwork ol li .img {
  overflow: hidden;
  line-height: 0;
  width: 100%;
}
.pro_box2 .teamwork ol li .text {
  padding: 25px 50px 25px 20px;
  position: relative;
}
.pro_box2 .teamwork ol li .text:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 26px;
  height: 15px;
  background: url(../images/teamwork_icon.jpg) no-repeat center center;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.pro_box2 .teamwork ol li .text h3 {
  color: #333333;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.pro_box2 .teamwork ol li .text p {
  font-size: 14px;
  color: #666666;
  margin-top: 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.pro_box2 .teamwork .slick-dots {
  bottom: -56px;
}
.pro_box2 .teamwork .slick-dots li button {
  width: 64px;
  height: 4px;
  background: #fff;
}
.pro_box2 .teamwork .slick-dots li.slick-active button {
  background: #008639;
}
.pro_box3 {
  padding: 70px 0;
  background: #fff;
}
.pro_box3 ul {
  margin-top: 45px;
}
.pro_box3 ul li {
  float: left;
  width: 100%;
}
.pro_box3 ul li .img {
  float: left;
  width: 50%;
  line-height: 0;
}
.pro_box3 ul li .img img {
  width: 100%;
}
.pro_box3 ul li .text {
  float: left;
  width: 50%;
  padding-left: 2%;
  padding-top: 50px;
}
.pro_box3 ul li .text h3 {
  color: #333333;
  font-size: 20px;
}
.pro_box3 ul li .text .t {
  margin-top: 20px;
}
.pro_box3 ul li .text .t b {
  color: #333333;
  font-size: 14px;
}
.pro_box3 ul li .text .t p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.pro_box3 ul li:last-child .img {
  float: right;
}
.pro_box3 ul li:last-child .text {
  padding-left: 0;
  padding-right: 2%;
}
.cert_bottom {
  margin-top: 60px;
  text-align: center;
}
.cert_bottom a {
  display: inline-block;
  border: 1px solid #b5b5b5;
  border-radius: 50px;
  line-height: 42px;
  padding: 0 46px;
  color: #333333;
  transition: all 0.5s;
  margin: 0 30px;
}
.cert_bottom a:hover {
  background: #008639;
  border-color: #008639;
}
.pro_box4 {
  padding: 70px 0;
}
.pro_box4 .info-name {
  max-width: 705px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.pro_box4 .video_tit {
  margin-top: 30px;
  text-align: center;
}
.pro_box4 .video_tit span {
  cursor: pointer;
  display: inline-block;
  border: 1px solid #d5d5d5;
  line-height: 50px;
  padding: 0 45px;
  color: #333333;
  font-size: 16px;
  margin: 0 15px;
  transition: all 0.5s;
}
.pro_box4 .video_tit span:hover,
.pro_box4 .video_tit span.cur {
  background: #008639;
  border-color: #008639;
}
.pro_box4 .video_con {
  margin-top: 40px;
}
.pro_box4 .video_con ul li {
  float: left;
  background: #f6f6f6;
  width: 32%;
  margin-left: 2%;
}
.pro_box4 .video_con ul li:first-child {
  margin-left: 0;
}
.pro_box4 .video_con ul li .img {
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.pro_box4 .video_con ul li .img span {
  width: 72px;
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.pro_box4 .video_con ul li .text {
  text-align: center;
  font-size: 22px;
  line-height: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.pro_box5 {
  background: #f6f6f6;
  padding: 60px 0;
}
.pro_box5 .left {
  width: 23%;
  float: left;
  padding-top: 12.2%;
}
.pro_box5 .left .en-title,
.pro_box5 .left .info-icon,
.pro_box5 .left .title,
.pro_box5 .left .info-title {
  text-align: left;
}
.pro_box5 .left .info-icon {
  margin-left: 0;
  margin-right: 0;
}
.pro_box5 .min_img {
  float: left;
  width: 33%;
  line-height: 0;
}
.pro_box5 .right {
  float: right;
  width: 40%;
}
.pro_box5 .right ul li {
  float: left;
  width: 100%;
  margin-top: 10%;
}
.pro_box5 .right ul li:first-child {
  margin-top: 8%;
}
.pro_box5 .right ul li .icon {
  float: left;
  max-width: 69px;
  line-height: 0;
  width: 100%;
  margin-top: -5px;
}
.pro_box5 .right ul li .text {
  float: right;
  width: 84%;
}
.pro_box5 .right ul li .text h3 {
  color: #333333;
  font-size: 20px;
  font-weight: normal;
}
.pro_box5 .right ul li .text p {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.course_box {
  padding: 70px 0;
  background: #fafafa;
}
.course_box ul {
  margin-top: 45px;
}
.course_box ul li {
  float: left;
  width: 100%;
  background: #f5f5f5;
  margin-top: 50px;
}
.course_box ul li:first-child {
  margin-top: 0;
}
.course_box ul li .img {
  float: left;
  width: 46.2%;
  line-height: 0;
  position: relative;
}
.course_box ul li .img .icon {
  position: absolute;
  left: 13px;
  top: -8px;
  width: 80px;
  line-height: 0;
  z-index: 3;
}
.course_box ul li .text {
  float: left;
  width: 53.8%;
  padding: 40px 3% 0;
}
.course_box ul li .text h3 {
  color: #333333;
  font-size: 24px;
  font-weight: normal;
}
.course_box ul li .text .info {
  color: #666666;
  font-size: 16px;
  font-family: arial;
  text-transform: uppercase;
  margin: 8px 0 12px;
}
.course_box ul li .text p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.course_box ul li .text .t {
  margin-top: 16px;
}
.course_box ul li .text .more {
  margin-top: 30px;
  display: block;
  width: 130px;
  line-height: 36px;
  background: #008639;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-family: arial;
      display: inline-block;
	      margin-right: 30px;
}
.course_box ul li .text .more:hover{
  color: #666666;
}
.course_box ul li .text .bottom {
  margin-top: 35px;
}
.course_box ul li .text .bottom .bottom_t {
  float: left;
  width: 60px;
  text-align: center;
  margin-right: 30px;
}
.course_box ul li .text .bottom .bottom_t .icon {
  line-height: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);

  border-radius: 50%;
}
.course_box ul li .text .bottom .bottom_t p {
  margin-top: 5px;
  color: #999999;
}
.course_box ul li:nth-child(2n) .img {
  float: right;
}
.course_box2 {
  background: url(../images/course_bg.jpg) no-repeat center top / cover;
  padding: 80px 0;
}
.course_box2 ul {
  margin-top: 45px;
}
.course_box2 ul li {
  float: left;
  width: 23.5%;
  background: #fff;
  margin-left: 2%;
}
.course_box2 ul li:first-child {
  margin-left: 0;
}
.course_box2 ul li .img {
  line-height: 0;
  overflow: hidden;
}
.course_box2 ul li .text {
  padding: 10% 7%;
}
.course_box2 ul li .text h3 {
  color: #333333;
  font-size: 20px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.course_box2 ul li .text p {
  margin-top: 8px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.course_box2 ul li .text span {
  margin-top: 25px;
  display: block;
  width: 130px;
  line-height: 36px;
  background: #f9f9f9;
  border: 1px solid #d2d2d2;
  border-radius: 50px;
  text-align: center;
  color: #666666;
  text-transform: uppercase;
  font-family: arial;
  transition: all 0.5s;
}
.course_box2 ul li:hover .text span {
  background: #008639;
  border-color: #008639;
}
.course_box3 {
  padding: 70px 0 180px;
  background: #fff;
}
.course_box3 .subject {
  margin-top: 45px;
}
.course_box3 .subject .box {
  position: relative;
}
.course_box3 .subject .box .info {
  position: absolute;
  left: 4.6%;
  top: 0;
  color: #ebebeb;
  font-size: 50px;
  font-family: XXII-DONT-MESS-WITH-VIKINGS;
  z-index: 0;
}
.course_box3 .subject .box .text {
  position: absolute;
  z-index: 3;
  left: 3px;
  top: 11%;
  width: 38%;
  min-height: 378px;
  background: #fdfdfd;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 0 2.5%;
}
.course_box3 .subject .box .text .icon {
  width: 24%;
  display: block;
  margin-top: -2.5%;
  line-height: 0;
}
.course_box3 .subject .box .text h3 {
  margin-top: 30px;
  color: #000000;
  font-size: 28px;
}
.course_box3 .subject .box .text h3 span {
  font-family: arial;
  font-weight: normal;
  text-transform: uppercase;
  position: relative;
  bottom: -2px;
  display: inline-block;
  margin-left: 5px;
}
.course_box3 .subject .box .text p {
  margin-top: 12px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.course_box3 .subject .box .img {
  position: relative;
  z-index: 2;
  float: right;
  width: 64.8%;
  line-height: 0;
}
.course_box3 .subject .slick-prev,
.course_box3 .subject .slick-next {
  width: 54px;
  height: 46px;
  margin-top: 0;
  top: auto;
  bottom: 52px;
  border: none;
}
.course_box3 .subject .slick-prev {
  background: url(../images/course_left.jpg) no-repeat center center / cover;
  left: 30.5%;
}
.course_box3 .subject .slick-next {
  background: url(../images/course_right.jpg) no-repeat center center / cover;
  right: auto;
  left: 34.35%;
}
.course_box4 {
  background: url(../images/course_bg2.jpg) no-repeat center top / cover;
  min-height: 429px;
  position: relative;
}
.course_box4 .info-title {
  color: #fbe000;
  font-weight: bold;
}
.course_box4 .en-title {
  color: #fff;
  margin-top: 8px;
}
.course_box4 .en-title,
.course_box4 .info-icon,
.course_box4 .info-title {
  text-align: left;
}
.course_box4 .info-icon {
  margin-left: 0;
  margin-right: 0;
}
.course_box4 .left {
  width: 65%;
  float: left;
  padding-top: 75px;
}
.course_box4 .left .text {
  margin-top: 15px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}
.course_box4 .left .more {
  margin-top: 30px;
  display: block;
  width: 130px;
  line-height: 36px;
  background: #008639;
  border-radius: 50px;
  text-align: center;
  color: #666666;
  text-transform: uppercase;
  font-family: arial;
}
.course_box4 .img {
  position: absolute;
  right: 14%;
  bottom: 0;
  width: 18.6%;
  line-height: 0;
}
.teachers_box .box {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.teachers_box .box .video {
  float: right;
}
.teachers_box .box .text {
  padding-left: 0;
  padding-right: 2%;
  padding-top: 10px;
}
.teachers_box .box .text .info {
  margin-top: 5px;
  color: #666666;
  font-size: 16px;
  text-transform: uppercase;
  font-family: arial;
}
.teachers_box .box .text .icon {
  height: 3px;
  line-height: 3px;
  margin-top: 12px;
}
.teachers_box2 {
  background: url(../images/teachers_bg.jpg) no-repeat center top;
  padding: 80px 0 90px;
}
.teachers_box2 ul {
  margin-top: 45px;
}
.teachers_box2 ul li {
  float: left;
  position: relative;
  width: 48.5%;
}
.teachers_box2 ul li:nth-child(2n) {
  float: right;
}
.teachers_box2 ul li .img {
  width: 100%;
  line-height: 0;
}
.teachers_box2 ul li .img img {
  width: 100%;
}
.teachers_box2 ul li .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 20px 4%;
  height: 125px;
  overflow: hidden;
  transition: all 0.5s;
}
.teachers_box2 ul li .text .name {
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.5s;
}
.teachers_box2 ul li .text .t {
  margin-top: 5px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  transition: all 0.5s;
}
.teachers_box2 ul li .text h3,
.teachers_box2 ul li .text .d {
  display: none;
  transition: all 0.5s;
}
.teachers_box2 ul li .text h3 {
  margin-top: 10px;
  color: #0084ce;
  font-size: 20px;
  line-height: 24px;
  transition: all 0.5s;
}
.teachers_box2 ul li .text h3 span {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  margin-left: 5px;
}
.teachers_box2 ul li .text .d {
  transition: all 0.5s;
  margin-top: 5px;
  color: #fff;
  line-height: 24px;
}
.teachers_box2 ul li:hover .text {
  background: rgba(0, 0, 0, 0.8);
  height: auto;
}
.teachers_box2 ul li:hover .text .name {
  color: #0084ce;
}
.teachers_box2 ul li:hover .text .t {
  color: #fff;
}
.teachers_box2 ul li:hover .text .t,
.teachers_box2 ul li:hover .text h3,
.teachers_box2 ul li:hover .text .d {
  height: auto;
  display: block;
}
.teachers_box3 {
  border-bottom: 1px solid #cccccc;
  padding: 70px 0;
}
.teachers_box3 .mxds_box {
  margin-top: 45px;
  padding-top: 10px;
}
.teachers_box3 .mxds_box .box {
  float: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-top: 2%;
  margin-left: 2%;
}
/*.teachers_box3 ul li:first-child {
  margin-left: 0;
}*/
.teachers_box3 .mxds_box .box .img {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.teachers_box3 .mxds_box .box .text {
  padding: 0 5% 30px;
  text-align: center;
}
.teachers_box3 .mxds_box .box .icon {
  width: 37%;
  line-height: 0;
  margin: -15% auto 0;
  border-radius: 50%;
  overflow: hidden;
}
.teachers_box3 .mxds_box .box .text h3 {
  margin-top: 18px;
  color: #333333;
  font-size: 20px;
  font-weight: normal;
}
.teachers_box3 .mxds_box .box .text p {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.teachers_box3 .mxds_box .box .text span {
  margin: 30px auto 0;
  display: block;
  width: 130px;
  line-height: 36px;
  background: #fff;
  border-radius: 50px;
  text-align: center;
  border: 1px solid #cccccc;
  color: #666666;
  text-transform: uppercase;
  font-family: arial;
  transition: all 0.5s;
}
.teachers_box3 .mxds_box .box:hover .text span {
  background: #0084ce;
  border-color: #0084ce;
}
.teachers_box3 .mxds_box .slick-prev{
	background: url(../images/zuo.png) no-repeat center center/cover;
	left: 0;
}
.teachers_box3 .mxds_box .slick-next{
	background: url(../images/you.png) no-repeat center center/cover;
	right: 0;
}
.teachers_box3 .mxds_box .slick-prev,
.teachers_box3 .mxds_box .slick-next{
	width: 30px;
	height: 60px;
	background-size: 100% 100%;
	border: none;
	margin-top: -30px;
	top: 50%;
}



.teachers_box4 {
  padding: 70px 0;
}
.teachers_box4 .box {
  margin-top: 45px;
}
.teachers_box4 .box .left {
  width: 47%;
  float: left;
}
.teachers_box4 .box .left .img_qh {
  width: 100%;
  overflow: hidden;
}
.teachers_box4 .box .left .img_qh .con {
  position: relative;
  width: 100%;
}
.teachers_box4 .box .left .img_qh .con span {
  display: block;
  line-height: 0;
}
.teachers_box4 .box .left .img_qh .con .text {
  width: 92%;
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 4%;
}
.teachers_box4 .box .left .img_qh .con .text h3 {
  color: #0084ce;
  font-size: 20px;
}
.teachers_box4 .box .left .img_qh .con .text p {
  margin-top: 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}
.teachers_box4 .box .left .img_qh .slick-prev,
.teachers_box4 .box .left .img_qh .slick-next {
  border: none;
}
.teachers_box4 .box .left .img_qh .slick-prev {
  background: url(../images/img_left.png) no-repeat center center / cover;
  left: 0;
}
.teachers_box4 .box .left .img_qh .slick-next {
  background: url(../images/img_right.png) no-repeat center center / cover;
  right: 0;
}
.teachers_box4 .box .right {
  float: right;
  width: 50%;
}
.teachers_box4 .box .right .img_btn {
  width: 100%;
  overflow: hidden;
  margin-top: -10px;
}
.teachers_box4 .box .right .img_btn .con {
  width: 100%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  padding: 2.3% 4%;
  margin-top: 10px;
}
.teachers_box4 .box .right .img_btn .con .img {
  float: left;
  width: 14%;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}
.teachers_box4 .box .right .img_btn .con .text {
  float: right;
  width: 83%;
  padding-top: 7px;
}
.teachers_box4 .box .right .img_btn .con .text h3 {
  color: #000000;
  font-size: 20px;
  font-weight: normal;
}
.teachers_box4 .box .right .img_btn .con .text h3 span {
  color: #999999;
  font-size: 16px;
  display: inline-block;
  margin-left: 5px;
}
.teachers_box4 .box .right .img_btn .con .text .date {
  color: #cccccc;
  font-size: 14px;
  line-height: 24px;
}
.teachers_box4 .box .right .img_btn .con .text p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.teachers_box4 .box .right .img_btn .slick-current .con {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}
.teachers_box5 {
  background: #333333;
  padding: 70px 0;
}
.teachers_box5 ul {
  margin-top: 45px;
}
.teachers_box5 ul li {
  float: left;
  width: 23.5%;
  border: 1px solid #666666;
  text-align: center;
  padding: 55px 25px;
  margin-left: 2%;
}
.teachers_box5 ul li:first-child {
  margin-left: 0;
}
.teachers_box5 ul li .icon {
  width: 140px;
  height: 140px;
  background: #261f1f;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.teachers_box5 ul li .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.teachers_box5 ul li .icon span {
  display: block;
}
.teachers_box5 ul li .icon em {
  display: none;
}
.teachers_box5 ul li .text {
  padding-top: 40px;
}
.teachers_box5 ul li .text h3 {
  color: #cccccc;
  font-size: 18px;
}
.teachers_box5 ul li .text p {
  margin-top: 15px;
  color: #999999;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.teachers_box5 ul li .text i {
  display: block;
  width: 62px;
  height: 2px;
  margin: 38px auto 0;
  background: #999999;
}
.teachers_box5 ul li:hover .icon {
  background: #008639;
}
.teachers_box5 ul li:hover .icon span {
  display: none;
}
.teachers_box5 ul li:hover .icon em {
  display: block;
}
.teachers_box5 ul li:hover .text h3,
.teachers_box5 ul li:hover .text p {
  color: #fff;
}
.teachers_box5 ul li:hover .text i {
  background: #fff;
}
.teachers_box6 {
  padding: 70px 0;
}
.teachers_box6 ul {
  margin-top: 45px;
}
.teachers_box6 ul li {
  float: left;
  width: 48.5%;
  border-radius: 100px 0 0 100px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.teachers_box6 ul li:nth-child(2n) {
  float: right;
}
.teachers_box6 ul li .img {
  float: left;
  width: 28%;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}
.teachers_box6 ul li .text {
  float: right;
  width: 72%;
  padding: 28px 4% 0;
}
.teachers_box6 ul li .text h3 {
  color: #666666;
  font-size: 20px;
  font-weight: normal;
}
.teachers_box6 ul li .text .name {
  margin-top: 10px;
  color: #666666;
  font-size: 16px;
  font-family: arial;
  text-transform: uppercase;
  padding-bottom: 15px;
  position: relative;
}
.teachers_box6 ul li .text .name:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 1px;
  background: #666666;
}
.teachers_box6 ul li .text p {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.work_box {
  background: url(../images/work_bg.jpg) no-repeat center top;
  min-height: 743px;
}
.work_box .work_top {
  background: #2d2d2d;
  position: relative;
  top: -70px;
}
.work_box .work_top li {
  text-align: center;
  float: left;
  width: 25%;
  padding: 45px 0;
  position: relative;
}
.work_box .work_top li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 50%;
  background: #424242;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.work_box .work_top li:last-child:before {
  display: none;
}
.work_box .work_top li p {
  color: #999999;
  font-size: 16px;
}
.work_box .work_top li h3 {
  margin-top: 5px;
  font-weight: normal;
  color: #ffffff;
  font-size: 44px;
  font-family: arial;
  display: inline-block;
}
.work_box .work_top li span {
  color: #999999;
  font-size: 16px;
  display: inline-block;
  margin-left: 5px;
}
.work_box .service_div ol {
  margin-top: 60px;
}
.work_box .service_div ol li {
  float: left;
  width: 32%;
  background: #fff;
  min-height: 160px;
  position: relative;
  padding: 58px 25px 10px;
  margin-left: 2%;
}
.work_box .service_div ol li:first-child {
  margin-left: 0;
}
.work_box .service_div ol li .icon {
  position: absolute;
  left: 50%;
  margin-left: -36.5px;
  top: -33px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
  width: 73px;
}
.work_box .service_div ol li p {
  color: #333333;
  font-size: 18px;
}
.work_box .service_div .bottom {
  margin-top: 90px;
  text-align: center;
}
.work_box .service_div .bottom a {
  display: inline-block;
  border: 1px solid #008639;
  line-height: 40px;
  border-radius: 50px;
  padding: 0 22px;
  color: #008639;
  font-size: 14px;
  min-width: 145px;
  margin: 0 20px;
}
.work_box2 {
  padding: 70px 0;
  background: #fafafa;
}
.work_box2 .box {
  margin-top: 50px;
}
.work_box2 .box .left {
  float: left;
  width: 47%;
  line-height: 0;
}
.work_box2 .box .text {
  padding-top: 15px;
  float: right;
  width: 46.7%;
}
.work_box2 .box .text h3 {
  color: #333333;
  font-size: 22px;
  padding-bottom: 18px;
  position: relative;
}
.work_box2 .box .text h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85px;
  height: 1px;
  background: #999999;
}
.work_box2 .box .text p {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.work_box3 {
  background: #333333;
  padding: 70px 0;
}
.work_box3 .text {
  padding-top: 50px;
  float: left;
  width: 47%;
}
.work_box3 .text h3 {
  color: #ffffff;
  font-size: 22px;
  padding-bottom: 18px;
  position: relative;
}
.work_box3 .text h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85px;
  height: 1px;
  background: #999999;
}
.work_box3 .text h3 span {
  color: #ffdf00;
}
.work_box3 .text p {
  margin-top: 15px;
  color: #cccccc;
  font-size: 14px;
  line-height: 24px;
}
.work_box3 .img {
  float: right;
  width: 46.7%;
  line-height: 0;
}
.work_box4 {
  background: #fafafa;
  padding: 70px 0;
}
.work_box4 .img {
  float: left;
  width: 47%;
  line-height: 0;
}
.work_box4 .text {
  padding-top: 50px;
  float: right;
  width: 46.7%;
}
.work_box4 .text h3 {
  color: #333333;
  font-size: 22px;
  padding-bottom: 18px;
  position: relative;
}
.work_box4 .text h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85px;
  height: 1px;
  background: #999999;
}
.work_box4 .text p {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.work_box5 {
  background: #ececec;
  padding: 70px 0;
}
.work_box5 ul {
  margin-top: 45px;
}
.work_box5 ul li {
  float: left;
  width: 23.5%;
  margin-left: 2%;
  background: #fff;
}
.work_box5 ul li:first-child {
  margin-left: 0;
}
.work_box5 ul li .img {
  line-height: 0;
  overflow: hidden;
  width: 100%;
}
.work_box5 ul li img {
  cursor: pointer;
  transition: all 0.6s;
}
.work_box5 ul li img:hover{
  transform: scale(1.2);
}
.work_box5 ul li .text {
  padding: 25px 15px;
}
.work_box5 ul li .text .name {
  color: #323232;
  font-size: 18px;
  font-weight: bold;
}
.work_box5 ul li .text p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.work_box5 ul li .text .wb {
  margin-top: 10px;
  height: 48px;
  overflow: hidden;
}
.work_box5 ul li .text .t {
  margin-top: 12px;
}
.work_box6 {
  padding: 70px 0;
  background: #fafafa;
}
.work_box6 ul {
  margin-top: 45px;
  border: 1px solid #f3f3f3;
}
.work_box6 ul li {
  float: left;
  width: 20%;
  border: 1px solid #f3f3f3;
  line-height: 0;
  text-align: center;
}
.work_box7 {
  background: #fafafa;
  padding-bottom: 70px;
  padding-top: 50px;
}
.work_box7 ul {
  margin-top: 45px;
}
.work_box7 ul li {
  float: left;
  width: 32%;
  margin-right: 2%;
}
.work_box7 ul li:nth-child(3n) {
  margin-right: 0;
}
.work_box7 ul li .img {
  overflow: hidden;
  width: 100%;
  line-height: 0;
}
.work_box7 ul li .text {
  border: 1px solid #cccccc;
  padding: 30px;
}
.work_box7 ul li .text h3 {
  color: #000000;
  font-size: 22px;
  font-weight: normal;
}
.work_box7 ul li .text p {
  margin-top: 10px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}

.work_box7 ul li:nth-child(2) .text{
	transform: translateY(-470px);
	-o-transform: translateY(-470px);
	-ms-transform: translateY(-470px);
	-moz-transform: translateY(-470px);
	-webkit-transform: translateY(-470px);
}
.work_box7 ul li:nth-child(2) .img{
	transform: translateY(150px);
	-o-transform: translateY(150px);
	-ms-transform: translateY(150px);
	-moz-transform: translateY(150px);
	-webkit-transform: translateY(150px);
}


.work_box8 {
  background: url(../images/work_bg3.jpg) no-repeat center top;
  min-height: 400px;
  text-align: center;
  padding-top: 110px;
}
.work_box8 h3 {
  color: #ffffff;
  font-size: 30px;
}
.work_box8 p {
  max-width: 578px;
  width: 100%;
  margin-top: 15px;
  color: #e6e5e5;
  font-size: 14px;
  line-height: 24px;
  margin-left: auto;
  margin-right: auto;
}
.work_box8 a {
  display: block;
  width: 180px;
  line-height: 46px;
  background: #008639;
  border-radius: 50px;
  color: #333333;
  font-size: 16px;
  margin: 36px auto 0;
}
.phone_teamwork {
  display: none;
  margin-top: 30px;
}
.phone_teamwork a {
  display: block;
  width: 100%;
}
.phone_teamwork a .img {
  overflow: hidden;
  line-height: 0;
  width: 100%;
}
.phone_teamwork a .text {
  background: #ffffff;
  padding: 25px 50px 25px 20px;
  position: relative;
}
.phone_teamwork a .text:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 26px;
  height: 15px;
  background: url(../images/teamwork_icon.jpg) no-repeat center center;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.phone_teamwork a .text h3 {
  color: #333333;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.phone_teamwork a .text p {
  font-size: 14px;
  color: #666666;
  margin-top: 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.phone_teamwork .slick-prev,
.phone_teamwork .slick-next {
  width: 60px;
  height: 50px;
  margin-top: 0;
  transform: translateY(-50%);
  border: none;
}
.phone_teamwork .slick-prev {
  background: url(../images/left2.jpg) no-repeat center center / cover;
  left: 0;
}
.phone_teamwork .slick-next {
  background: url(../images/right2.jpg) no-repeat center center / cover;
  right: 0;
}

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

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

.renzheng_box .slick-prev{
	border:0;
	background: url(../images/zuo.png) no-repeat center center / cover;
}
.renzheng_box .slick-next{
	border:0;
	background: url(../images/you.png) no-repeat center center / cover;
}

/**2018-5-15**/
.certificate_banner {
  height: 660px;
  text-align: center;
  padding-top: 252px;
}
.certificate_banner .yw {
  color: #008639;
  font-size: 40px;
  font-family: XXII-DONT-MESS-WITH-VIKINGS;
}
.certificate_banner h3 {
  margin-top: 25px;
  font-weight: normal;
  color: #ffffff;
  font-size: 30px;
}
.certificate_banner p {
  color: #e5e5e5;
  font-size: 18px;
  margin-top: 15px;
}
.certificate_banner .t {
  margin-top: 40px;
}
.certificate_banner .t a {
  display: inline-block;
  width: 150px;
  line-height: 42px;
  color: #333333;
  font-size: 14px;
  background: #008639;
  border-radius: 50px;
  margin: 0 15px;
}
/*.certificate_banner .t a:last-child {
  background: rgba(51, 51, 51, 0.85);
  color: #fff;
}*/
.certificate_banner .t a {
  background: rgba(51, 51, 51, 0.85);
  color: #fff;
}

.certificate_banner .t .cur {
  display: inline-block;
  width: 150px;
  line-height: 42px;
  color: #333333;
  font-size: 14px;
  background: #008639;
  border-radius: 50px;
  margin: 0 15px;
}

.certificate {
  background: #202020;
  padding: 70px 0 50px;
}
.certificate ul li {
  float: left;
  width: 100%;
  background: #333333;
  margin-bottom: 25px;
}
.certificate ul li .img {
  float: left;
  width: 45%;
  line-height: 0;
}
.certificate ul li .text {
  float: right;
  width: 55%;
  padding: 50px 25px 0;
  color: #cccccc;
  font-size: 14px;
  line-height: 24px;
}
.certificate ul li .text h3 {
  color: #008639;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px;
}
.certificate ul li:nth-child(2n) .img {
  float: right;
}
.certificate ul li:nth-child(2n) .text {
  float: left;
}
.honor_box {
  background: #ebebeb;
  padding-bottom: 50px;
}
.honor_box .search_top {
  background: #fff;
  position: relative;
  top: -70px;
  padding: 55px 134px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.honor_box .search_top ul {
  margin-top: 35px;
}
.honor_box .search_top ul li {
  float: left;
  width: 40%;
  margin-right: 2%;
  border: 1px solid #a3a3a3;
}
.honor_box .search_top ul li input {
  height: 56px;
  width: 100%;
  color: #666666;
  font-size: 14px;
  padding: 0 15px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}
.honor_box .search_top ul li .btn {
  background: #ffe419;
  color: #333333;
  font-size: 16px;
}
.honor_box .search_top ul li:last-child {
  border-color: #ffe419;
  width: 16%;
  margin-right: 0;
}
.honor_box .zhengshu_list ul li {
  margin-top: 40px;
  margin-bottom: 50px;
  float: left;
  width: 32%;
  margin-right: 2%;
  background: #fff;
  text-align: center;
  padding: 0 30px 60px;
  min-height: 381px;
}
.honor_box .zhengshu_list ul li:nth-child(3n) {
  margin-right: 0;
}
.honor_box .zhengshu_list ul li .icon {
  margin: -38px auto 0;
  width: 35%;
  line-height: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  overflow: hidden;
}
.honor_box .zhengshu_list ul li .icon img {
  border-radius: 50%;
}
.honor_box .zhengshu_list ul li h3 {
  margin: 24px 0 12px;
  color: #333333;
  font-size: 20px;
  font-weight: normal;
}
.honor_box .zhengshu_list ul li p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.honor_box .zhengshu_list ul li .bottom {
  margin-top: 20px;
}
.honor_box .zhengshu_list ul li .bottom a {
  margin-top: 15px;
  display: block;
  width: 100%;
  line-height: 50px;
  border: 1px solid #cccccc;
  color: #666666;
  font-size: 14px;
  text-transform: uppercase;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.honor_box .zhengshu_list ul li:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.honor_box .zhengshu_list ul li:hover .bottom a {
  background: #ffe419;
  color: #333;
}
.teacshow_box {
  background: #ebebeb;
}
.teacshow_box .teacshow_div {
  position: relative;
  z-index: 2;
  min-height: 210px;
}
.teacshow_box .teacshow_div .box {
  background: #fff;
  padding: 20px;
  width: 100%;
position: absolute;
    left: 0;
    top: -305px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.teacshow_box .teacshow_div .box .img {
  float: left;
  width: 44%;
  line-height: 0;
  height: 589px;
}
.teacshow_box .teacshow_div .box .text {
  float: right;
  width: 54%;
  padding-top: 10px;
}
.teacshow_box .teacshow_div .box .text h3 {
  color: #080103;
  font-size: 30px;
}
.teacshow_box .teacshow_div .box .text .name,
.teacshow_box .teacshow_div .box .text .bt {
  color: #333333;
  font-size: 20px;
  margin-top: 5px;
  display: inline-block;
}
.teacshow_box .teacshow_div .box .text .bt {
  margin-top: 16px;
  font-weight: bold;
}
.teacshow_box .teacshow_div .box .text p {
  margin-top: 3px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
}
.teacshow_box .teacshow_div .box .text p span{
   font-weight: 600;
} 
.teacshow_box .teacshow_div .box .text .con {
  margin-top: 70px;
}
.teacshow_box .teacshow_div .box .text .con .nr {
  text-align: center;
  padding: 0 70px;
  float: left;
  position: relative;
}
.teacshow_box .teacshow_div .box .text .con .nr:before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  width: 1px;
  height: 55px;
  background: #d9d9d9;
}
.teacshow_box .teacshow_div .box .text .con .nr .t {
  color: #333333;
  font-size: 50px;
}
.teacshow_box .teacshow_div .box .text .con .nr .t span {
  font-size: 16px;
}
.teacshow_box .teacshow_div .box .text .con .nr:first-child {
  padding-left: 0;
}
.teacshow_box .teacshow_div .box .text .con .nr:first-child:before {
  display: none;
}
.teacshow_box .teacshow_div .box .text .bottom {
  margin-top: 20px;
    margin-bottom: 20px;
}
.teacshow_box .teacshow_div .box .text .cont{
    border: 1px solid #ccc;
    margin: -1px 0 0 0;
    padding: 10px;
  display: none;
}
.teacshow_box .teacshow_div .box .text .bottom a {
  display: block;
  float: left;
  width: 145px;
  line-height: 38px;
  background: #F3F3F3;
  text-align: center;
  border: 1px solid #e5e5e5;
  color: #666666;
  font-size: 14px;
  margin-right: 3px;
}
.teacshow_box .teacshow_div .box .text a.aon {
  background: #008639;
  border-color: #008639;
  color: #fff;
  margin-right: 15px;
}
.teacshow_box .teacshow_div .box .text a.yb_xz {
    background: url(../images/timg.jpg) no-repeat left;
    background-size: 35px;
    text-indent: 33px;
    border: initial;
    width: 100%;
    text-align: initial;
    margin-top: -20px;
}
.teacshow_con {
  margin-top: 150px;
}
.teacshow_con1 {
  margin-top: 0px;
  padding-bottom: 80px;
}
.teacshow_con .left {
  float: left;
  width: 72%;
}
.teacshow_con .left .teacshow_tit {
  line-height: 60px;
  padding: 0 20px;
}
.teacshow_con .left .teacshow_tit i {
  display: block;
  float: left;
  line-height: 0;
  margin-right: 15px;
  margin-top: 17px;
}
.teacshow_con .left .teacshow_tit h3 {
  display: block;
  float: left;
  color: #080103;
  font-size: 22px;
  font-weight: normal;
}
.teacshow_con .left .daoshi {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.teacshow_con .left .daoshi ul {
  background: #fff;
}
.teacshow_con .left .daoshi ul li {
  float: left;
  width: 100%;
  line-height: 60px;
  color: #333333;
  font-size: 16px;
  padding: 0 20px;
  border-top: 1px solid #ededed;
}
.teacshow_con .left .shijing {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
.teacshow_con .left .shijing ul {
  background: #fff;
  padding: 25px 20px;
}
.teacshow_con .left .shijing ul li {
  float: left;
  width: 32%;
  line-height: 0;
  margin: 5px 2% 5px 0;
}
.teacshow_con .left .shijing ul li:nth-child(3n) {
  margin-right: 0;
}
.teacshow_con .left .xueyuan {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
.teacshow_con .left .xueyuan ul {
  background: #fff;
  padding: 25px 20px;
}
.teacshow_con .left .xueyuan ul li {
  float: left;
  width: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 12px 20px;
  margin-top: 10px;
}
.teacshow_con .left .xueyuan ul li:first-child {
  margin-top: 0;
}
.teacshow_con .left .xueyuan ul li .img {
  float: left;
  width: 88px;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}
.teacshow_con .left .xueyuan ul li .text {
  float: right;
  width: 89%;
  padding-top: 7px;
}
.teacshow_con .left .xueyuan ul li .text h3 {
  color: #000000;
  font-size: 20px;
  font-weight: normal;
}
.teacshow_con .left .xueyuan ul li .text h3 span {
  color: #999999;
  font-size: 16px;
  display: inline-block;
  margin-left: 5px;
}
.teacshow_con .left .xueyuan ul li .text .date {
  color: #cccccc;
  font-size: 14px;
  line-height: 24px;
}
.teacshow_con .left .xueyuan ul li .text p {
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.teacshow_con .right {
  float: right;
  width: 100%;
}
.teacshow_con .right .teacshow_tit {
  line-height: 60px;
  padding: 0 20px;
}
.teacshow_con .right .teacshow_tit h3 {
  display: block;
  float: left;
  color: #080103;
  font-size: 22px;
  font-weight: normal;
}
.teacshow_con .right .changjian {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.teacshow_con .right .changjian ul {
  background: #fff;
}
.teacshow_con .right .changjian ul li {
  float: left;
  width: 100%;
  line-height: 50px;
  border-bottom: 1px solid #f5f5f5;
  padding: 0 20px;
  font-size: 16px;
  position: relative;
}
.teacshow_con .right .changjian ul li:before {
  content: "";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 8px;
  height: 15px;
}
.teacshow_con .right .changjian ul li a {
  display: block;
  color: #666666;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.teacshow_con .right .tjkc {
  margin-top: 70px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.teacshow_con .right .tjkc div.pro_xq{
  padding: 20px;
  background: #fff;
}
.teacshow_con .right .tjkc div.pro_xq p strong{
    font-size: 20px;
}
.teacshow_con .right .tjkc ul {
  padding: 20px;
  background: #fff;
}
.teacshow_con .right .tjkc ul li {
  float: left;
  width: 19%;
  margin-left: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background: #ebebeb;
}
.teacshow_con .right .tjkc ul li .img {
  width: 100%;
  line-height: 0;
}
.teacshow_con .right .tjkc ul li .bt {
  text-align: center;
  color: #666666;
  font-size: 18px;
  line-height: 68px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/**2018-5-17**/
.kecheng_box {
  padding: 70px 0 80px;
}
.kecheng_box .tit {
  text-align: center;
  color: #333333;
  font-size: 30px;
  font-weight: bold;
}
.kecheng_box .tit .icon {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
  width: 88px;
}
.kecheng_box .tit .icon img {
  border-radius: 50%;
}
.kecheng_box .tit h3 {
  display: inline-block;
  position: relative;
  top: -28px;
  margin-left: 10px;
}
.kecheng_box ul {
  margin-top: 30px;
}
.kecheng_box ul li {
  background: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.kecheng_box ul li .text .con {
  border-top: 1px solid #ebebeb;
  padding-top: 8px;
}
.kecheng_box ul li .text .t {
  margin-top: 35px;
}
.kecheng_box ul li .text .t p {
  margin: 10px 0;
  padding-left: 26px;
  position: relative;
}
.kecheng_box ul li .text .t p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
}
.kecheng_box ul li .text .t .d1:before {}
.kecheng_box ul li .text .t .d2:before {}
.kecheng_box ul li .text .t .d3:before {
}
.kecheng_box2 {
  min-height: 634px;
  padding-top: 100px;
  position: relative;
}
.kecheng_box2 .box .left {
  position: absolute;
  top: 100px;
  left: 0;
  width: 57%;
  min-height: 432px;
  padding-left: 248px;
}
.kecheng_box2 .box .left ul {
  padding-top: 80px;
}
.kecheng_box2 .box .left ul li {
  float: left;
  width: 50%;
  padding: 35px 5% 35px 0;
}
.kecheng_box2 .box .left ul li .icon {
  float: left;
  width: 11%;
  line-height: 0;
}
.kecheng_box2 .box .left ul li .text {
  width: 86%;
  float: right;
  margin-top: -4px;
}
.kecheng_box2 .box .left ul li .text h3 {
  color: #333333;
  font-size: 20px;
}
.kecheng_box2 .box .left ul li .text p {
  margin-top: 5px;
  color: #333333;
  font-size: 14px;
  line-height: 22px;
}
.kecheng_box2 .box .right {
  float: right;
  width: 40%;
  padding-top: 70px;
}
.kecheng_box2 .box .right .text {
  padding: 7% 0 8% 15%;
  position: relative;
}
.kecheng_box2 .box .right .text:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 90%;
  border: 5px solid #303030;
}
.kecheng_box2 .box .right .text h3 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 30px;
}
.kecheng_box2 .box .right .text h3 span {
  color: #008639;
}
.kecheng_box2 .box .right .text p {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: #7d7d7d;
  font-size: 14px;
  line-height: 22px;
  text-transform: uppercase;
}
.kecheng_box3 {
  padding: 70px 0;
}
.kecheng_box3 .box .left {
  float: left;
  width: 27%;
}
.kecheng_box3 .box .left .yw {
  color: #666666;
  font-size: 21px;
  text-transform: uppercase;
  font-family: arial;
  margin-bottom: 15px;
}
.kecheng_box3 .box .left .info-icon {
  margin-left: 0;
  margin-right: 0;
}
.kecheng_box3 .box .left .title h3 {
  text-align: left;
}
.kecheng_box3 .box .left .bt {
  margin-top: 10px;
  color: #333333;
  font-size: 20px;
}
.kecheng_box3 .box .left ul li {
  margin-top: 17px;
  float: left;
  width: 100%;
  background: #323232;
  color: #ffffff;
  font-size: 14px;
  line-height: 44px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.kecheng_box3 .box .right {
  float: right;
  width: 70%;
}
.kecheng_box3 .box .right ul li {
  float: left;
  width: 20%;
  position: relative;
}
.kecheng_box3 .box .right ul li img {
  width: 100%;
}
.kecheng_box3 .box .right ul li .img {
  line-height: 0;
  width: 100%;
  overflow: hidden;
}
.kecheng_box3 .box .right ul li .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}
.kecheng_box3 .box .right ul li .text p {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.kecheng_box4 {
  background: #f9f9f9;
  padding: 70px 0;
}
.kecheng_box4 ul {
  margin-top: 60px;
  padding: 0 6%;
}
.kecheng_box4 ul li {
  float: left;
  background: #2b2b2b;
  padding: 0 45px 45px;
  min-height: 272px;
  width: 46%;
}
.kecheng_box4 ul li:nth-child(2n) {
  float: right;
}
.kecheng_box4 ul li .icon {
  margin-top: -42px;
  float: right;
  width: 29%;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
}
.kecheng_box4 ul li .text {
  margin-top: -35px;
  float: left;
  width: 100%;
}
.kecheng_box4 ul li .text h3 {
  color: #008639;
  font-size: 24px;
}
.kecheng_box4 ul li .text .t {
  margin-top: 5px;
  color: #eeeeee;
  font-size: 14px;
  line-height: 24px;
}
.kecheng_box5 {
/*  min-height: 936px;*/
  padding: 70px 0;
}
.kecheng_box5 ul {
  margin-top: 45px;
  border-top: 1px solid #464646;
  border-left: 1px solid #464646;
}
.kecheng_box5 ul li {
  float: left;
  width: 20%;
  border-bottom: 1px solid #464646;
  border-right: 1px solid #464646;
  padding: 40px 20px 20px;
}
.kecheng_box5 ul li .bt {
  color: #cccccc;
  font-size: 18px;
  text-transform: uppercase;
  font-family: arial;
  padding-bottom: 15px;
  position: relative;
}
.kecheng_box5 ul li .bt:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 2px;
  background: #cccccc;
  opacity: 0.5;
}
.kecheng_box5 ul li p {
  margin-top: 13px;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  height: 48px;
}
.kecheng_box6 {
  padding: 70px 0;
}
.kecheng_box6 .box {
  margin-top: 45px;
}
.kecheng_box6 .box img {
  width: 100%;
}
.kecheng_box6 .box ul {
  float: left;
  width: 71.5%;
}
.kecheng_box6 .box ul li {
  float: left;
  width: 49%;
  margin-top: 2%;
  line-height: 0;
}
.kecheng_box6 .box ul li:nth-child(2n) {
  float: right;
}
.kecheng_box6 .box ul li:first-child,
.kecheng_box6 .box ul li:nth-child(2) {
  margin-top: 0;
}
.kecheng_box6 .box .img {
  float: right;
  width: 27%;
}
.kecheng_box7 {
  background: #1e1e1e;
  padding: 70px 0;
}
.kecheng_box7 ul {
  margin-top: 50px;
  padding: 0 15%;
}
.kecheng_box7 ul li {
  background: #333333;
  width: 45%;
  float: left;
}
.kecheng_box7 ul li:nth-child(2n) {
  float: right;
}
.kecheng_box7 ul li .img {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.kecheng_box7 ul li .text {
  padding: 25px 25px;
}
.kecheng_box7 ul li .text h3 {
  color: #f9dc02;
  font-size: 16px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.kecheng_box7 ul li .text p {
  margin-top: 8px;
  color: #f4f4f4;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.kecheng_box8 {
  min-height: 495px;
  padding-top: 170px;
}
.kecheng_box8 .text {
  max-width: 538px;
  width: 100%;
}
.kecheng_box8 .text h3 {
  color: #f9dc02;
  font-size: 30px;
  font-weight: normal;
}
.kecheng_box8 .text p {
  margin-top: 10px;
  color: #e8e8e8;
  font-size: 14px;
  line-height: 24px;
}
.kecheng_box8 .text a {
  margin-top: 35px;
  display: block;
  width: 150px;
  line-height: 40px;
  border-radius: 50px;
  text-align: center;
  background: #008639;
  color: #666666;
  font-size: 14px;
  text-transform: uppercase;
}
/*.fx_btn.bdsharebuttonbox1 a.bshare-qqmb{
	background: url(../images/icon1.png) no-repeat center center;
}*/

.header .icon_btn .fx_btn.bdsharebuttonbox a.bds_qzone1 { 
  background: url(../images/qq.png) no-repeat center center/cover;
}
.header .icon_btn .fx_btn.bdsharebuttonbox a.bds_weixin { 
  background: url(../images/icon2.png) no-repeat center center/cover;
}
.fx_btn.bdsharebuttonbox a { 
  background: none;
  /*height:44px !important;
  width:44px;	*/
  padding: 0;
  margin: 0 5px 0 0;
  float: left;
  cursor: pointer;
}


/*侧边css↓*/


.sidebar-box{
    position: fixed;
    right:0;
	top:50%;
    border: 1px solid #555e63;
   /* 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;
}
.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{}
.sidebar li:hover .icon02{}
.sidebar li:hover .icon03{}
.sidebar li:hover .icon04{}
.sidebar li:hover .icon05{}
.sidebar li:hover .icon06{}
.phone_nav {
  width: 65%;
  height: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  left: auto;
  overflow: hidden;
  background: #332e2e;
  z-index: 99;
}
.phone_nav .nav-title {
  height: 100px;
  padding: 0 30px;
  line-height: 100px;
  position: relative;
}
.phone_nav .nav-title span {
  float: left;
  display: inline-block;
  color: #ffffff;
  font-size: 24px;
}
.phone_nav .nav-title .navclose {
  width: 22px;
  height: 22px;
  display: block;
  font-size: 0;
  line-height: 22px;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -11px;
}
.phone_nav .navlist {
  float: left;
  width: 100%;
}
.phone_nav .navlist ul li {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 44px;
  border-bottom: 1px solid #242020;
}
.phone_nav .navlist ul li a {
  display: block;
  color: #cccccc;
  padding: 0 30px;
}
.phone_nav .navlist ul li.cur {
  background: #272424;
}
.phone_nav .navlist ul li.cur a {
  color: #ffffff;
}

/**2018-5-23**/
.search_result{
	background: none;
	padding: 0;
	margin-top: -40px;
	margin-bottom: 30px;
}
.search_result ul li{
	background: #fff;
}
.search_result ul li .text{
	color: #666666;
}
.search_result ul li .text h3{
	color: #333333;
}
.search_result ul li .text p span{
	display: block;
	color: #999999;
}
.search_result ul li:nth-child(2n) .img{
	float: left;
}
.search_result ul li:nth-child(2n) .text{
	float: right;
}

.news_box .mian_box .qa_list ul li .text .bottom .fx  .bds_qzone{
	    background: url(../images/fx_icon1.jpg) no-repeat top left;
		width:23px;
		height:24px;
}

.news_box .mian_box .qa_list ul li .text .bottom .fx  .bds_tqq{
	      background: url(../images/fx_icon2.jpg) no-repeat top left;
		width:23px;
		height:24px;
}
.news_box .mian_box .qa_list ul li .text .bottom .fx  .bds_tsina{
	        background: url(../images/fx_icon3.jpg) no-repeat top left;
		width:23px;
		height:24px;
}
.news_box .mian_box .qa_list ul li .text .bottom .fx  .bds_more{
	    background: url(../images/fx_icon4.jpg) no-repeat top left;
		width:23px;
		height:24px;
}

.phone_footer{
	position: fixed;
	left: 0;
	bottom: 0;
	display: none;
	width: 100%;
	height: 98px;
	background: #2f2c2c;
	z-index: 999;
}
.phone_footer ul li{
	float: left;
	width: 25%;
	text-align: center;
}
.phone_footer ul li a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px 0;
}
.phone_footer ul li .icon{
	display: block;
	width: 36px;
	line-height: 0;
	margin: 0 auto;
}
.phone_footer ul li .icon span{
	display: block;
}
.phone_footer ul li .icon em{
	display: none;
}
.phone_footer ul li p{
	margin-top: 10px;
	color: #ffffff;
	font-size: 22px;
}

.phone_footer ul li.cur a{
	background: #008639;
}

.phone_footer ul li.cur .icon span{
	display: none;
}

.phone_footer ul li.cur .icon em{
	display: block;
}

.phone_footer ul li.cur p{
	color: #333333;
}

/*
.teacshow_con .left .daoshi ul li:hover{
	float: left;
    width: 50%;
    line-height: 60px;
	height: 10px;
    color: #333333;
    font-size: 16px;
    padding: 0 20px;
    border-right: 1px solid #ededed;
    border-top: 1px solid #ededed;
    text-overflow: initial;
    overflow: initial;
    white-space: initial;
}*/

.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%);
}

.pop_box {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.footer .left .icon_fx  .bdshare-button-style0-16  a.popup_weixin{
	 width:28px;
	 height:28px;
}
/**2018-6-20**/
.show_hzjgbox {
  padding: 70px 0;
}
.show_hzjgbox .box {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
.show_hzjgbox .box .img {
  float: left;
  line-height: 0;
  width: 48%;
}
.show_hzjgbox .box .text {
  float: right;
  width: 52%;
  padding: 100px 34px 0;
}
.show_hzjgbox .box .text h3 {
  color: #333333;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: normal;
}
.show_hzjgbox .box .text h4 {
  margin-top: 5px;
  color: #666666;
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
}
.show_hzjgbox .box .text .icon {
  line-height: 0;
  margin: 15px 0;
}
.show_hzjgbox .box .text .t {
  color: #333333;
  font-size: 14px;
  line-height: 24px;
}
.show_hzjgbox .box .text .bottom {
  margin-top: 30px;
}
.show_hzjgbox .box .text .bottom .bt {
  color: #333333;
  font-size: 20px;
}
.show_hzjgbox .box .text .bottom .date {
  margin-top: 8px;
  color: #333333;
  font-size: 16px;
}
.show_hzjgbox2 {
  padding: 70px 0;
}
.show_hzjgbox2 .box .img {
  width: 47%;
  line-height: 0;
}
.show_hzjgbox2 .box .text {
  width: 50%;
  padding-top: 60px;
}
.show_hzjgbox2 .box .text h3 {
  color: 3333333;
  font-size: 26px;
  font-weight: normal;
}
.show_hzjgbox2 .box .text h4 {
  margin-top: 5px;
  color: #666666;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: normal;
}
.show_hzjgbox2 .box .text .icon {
  line-height: 0;
  margin: 15px 0;
}
.show_hzjgbox2 .box .text .t {
  color: #333333;
  font-size: 14px;
  line-height: 24px;
}
.show_hzjgbox2 .box .text2 h3 {
  color: #008639;
}
.show_hzjgbox2 .box .text2 h4 {
  color: #f1f1f1;
}
.show_hzjgbox2 .box .text2 p {
  color: #ebebeb;
}
.show_zjds {}
.show_zjds ul li .text .name {
  font-weight: normal;
  font-size: 20px;
}
.show_zcjg {
  padding: 70px 0;
}
.show_zcjg ul {
  margin-top: 35px;
}
.show_zcjg ul li {
  width: 32%;
  float: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  margin-right: 2%;
}
.show_zcjg ul li:nth-child(3n) {
  margin-right: 0;
}
.show_zcjg ul li .img {
  line-height: 0;
}
.show_zcjg ul li .img img {
  width: 100%;
}
.show_zcjg ul li .text {
  padding: 15px;
  min-height: 150px;
  background: #333333;
  color: #e2e2e2;
  font-size: 14px;
  line-height: 24px;
}
.show_kcnr {
  padding: 70px 0;
}
.show_kcnr .box {
  margin-top: 35px;
}
.show_kcnr .box .text {
  background: #fff;
  width: 49%;
  padding: 30px;
  min-height: 545px;
}
.show_kcnr .box .text h3 {
  font-weight: normal;
  color: #333333;
  font-size: 18px;
  text-transform: uppercase;
}
.show_kcnr .box .text .t {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  line-height: 30px;
}
.pop2_box {
	display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.7);
}
.pop2_box .box {
  position: relative;
  left: 50%;
  border-radius: 5px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  background: #ffffff url(../images/pop_2.jpg) no-repeat center top;
  width: 650px;
  margin-left: -358px;
  padding: 143px 107px 25px;
}
.pop2_box .box .guanbi {
  position: absolute;
  right: 22px;
  top: 25px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.pop2_box .box ul li {
  float: left;
  width: 100%;
  border: 1px solid #e0e0e0;
  margin-bottom: 12px;
}
.pop2_box .box ul li input,
.pop2_box .box ul li textarea {
  float: left;
  width: 100%;
  border: none;
  background: none;
  line-height: 45px;
  height: 45px;
  color: #666666;
  font-size: 16px;
  padding: 0 15px;
}
.pop2_box .box ul li textarea {
  height: 114px;
  font-family: "微软雅黑";
  line-height: 40px;
}
.pop2_box .box ul li .btn {
  width: 186px;
  background: #2e2d29;
  color: #fff;
  float:none;
}
.pop2_box .box ul li .text_box {
  height: 58px;
  line-height: 58px;
  float: left;
  width: 100%;
  position: relative;
}
.pop2_box .box ul li .text_box span {
  display: block;
  padding: 0 15px;
  width: 100%;
  color: #adadad;
  font-size: 16px;
  position: relative;
}
.pop2_box .box ul li .text_box span:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 58px;
}
.pop2_box .box ul li .text_box .text {
  display: none;
  background: #fff;
  position: absolute;
  left: -1px;
  top: 100%;
  border: 1px solid #e0e0e0;
  width: 100.5%;
  padding: 10px 15px;
  line-height: 26px;
  color: #666;
}
.pop2_box .box ul li .text_box .text p {
  cursor: pointer;
}
.pop2_box .box + i {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/**2018-6-25**/
.sczx_box .video_tit span {
  font-size: 16px;
  padding: 0 30px;
  margin: 0 5px;
  line-height: 44px;
}
.sczx_box .video_con {
  margin-bottom: 30px;
}
.sczx_box .video_con ul li {
  margin-left: 0;
  margin-right: 2%;
  margin-bottom: 2%;
}
.sczx_box .video_con ul li:nth-child(3n) {
  margin-right: 0;
}

/*上一页 下一页*/
.green-black{
	padding:3px 4px 5px; margin:0 auto 70px; text-align:center;
	}
.green-black a{
	padding:8px 12px; border:#d2d2d2 1px solid; background:#f2f2f2; font-size:14px; font-family:"微软雅黑"; color:#333; margin-right:8px; text-decoration:none;
	}
.green-black a:hover{border:#c2000e 1px solid; background:#c2000e; color:#fff;}
.green-black a:active{border:#c2000e 1px solid; background:#c2000e; color:#fff;}
.green-black a.current{
	border:#c2000e 1px solid; padding:8px 12px; font-weight:bold; background:#c2000e; color:#fff; margin-right:8px;

 }
.green-black a.disabled{
	border:#c2000e 1px solid; padding:8px 12px; color:#ccc; margin-right:8px;
 }



#prev,#next
{    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 44px;
    border-bottom: 1px solid #eeeeee;}

#prev a,#next a 
{
    color: #777777;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.course_box ul li .text .t a{
   display: block;
    margin: 0;
    padding: 0 0 0 20px;
    width: 50%;
    line-height: 36px;
    color: #1c483b;
    text-transform: uppercase;
    float: left;
    font-family: arial;
    background: url(../images/sj.png) no-repeat center left;
}

.posi_ {
    position: relative;
    left: 0;
    top: 0px;
    z-index: 8;
}

.wrap {
    width: 1375px;
    min-width: 1375px;
    margin-right: auto;
    margin-left: auto;
}

.posi_ .bread {
    position: relative;
    top: 0;
    float: right;
    margin-top: -25%;
    font-size: 22px;
    text-shadow: 3px 1px 3px #656565;
}

.oh {
    overflow: hidden;
}

.fix:before, .fix:after {
    display: table;
    clear: both;
    content: '';
}

.posi_ .bread ul li {
    float: left;
    color: #fff;
}

.posi_ .bread ul li a {
    padding: 0 5px;
    color: #fff;
}

.fix:before, .fix:after {
    display: table;
    clear: both;
    content: '';
}
@media only screen and (max-width: 1375px){
.wrap {
    width: 80%;
    min-width: initial;
}
}
@media only screen and (max-width: 1024px){
.wrap {
    padding-left: 2%;
    padding-right: 2%;
    width: auto;
    min-width: initial;
}
}
@media only screen and (max-width: 760px){
.wrap {
    padding-left: 4%;
    padding-right: 4%;
}
.posi_ .bread ul li:first-child {
    display: none;
}
.posi_ .bread {
    font-size: 14px;
    margin-top: -18%;
}
}


.yqlj{
    width: 74%;
    margin: 0 auto;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 30px;
}
.yqlj a{
    font-size: 14px;
    color: #fff;
    border: 1px solid #ddd;
    background: #040404;
    padding: 8px;
    margin-right: 5px;
}
.yqlj a:hover{
     background: #1c4439;
}
@media (max-width: 769px){
.yqlj{
    width: 94%;
}
.yqlj a{
    display: -webkit-inline-box;
    padding: 2px;
}
}




















































































































































