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

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

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

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

   //滤镜

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

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

    -----------------------------------
*/
.bgFull {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(css/cover.htc);
  behavior: url(css/cover.htc);
}
.vcenter {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tHide {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.blockFull {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.block {
  display: block;
  position: relative;
}
.centerBlock {
  margin-left: auto;
  margin-right: auto;
}
.clearfix {
  clear: both;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-loading .slick-list {
  background: #ffffff url("../images/ajax-loader.gif") center center no-repeat;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-prev,
.slick-next {
  z-index: 20;
  position: absolute;
  display: block;
  height: 60px;
  width: 30px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -30px;
  padding: 0;
  border: none;
  outline: none;
  border: 1px solid red;
}
.slick-prev {
  left: 30px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: 30px;
}
.slick-next {
  right: 30px;
}
[dir="rtl"] .slick-next {
  left: 30px;
  right: auto;
}
.slick-dots {
  position: absolute;
  bottom: 20px;
  height: auto;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  line-height: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  height: 10px;
  width: 10px;
  padding: 0;
  margin: 0;
  outline: none;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: #cccccc;
  border-radius: 0px;
}
.slick-dots li.slick-active button {
  background: #333333;
}
@font-face {
  font-family: "Source Han Sans CN Regular";
  src: url("../fonts/Source Han Sans CN Regular.woff2") format("woff2"),
       url("../fonts/Source Han Sans CN Regular.woff") format("woff"),
       url("../fonts/Source Han Sans CN Regular.ttf") format("truetype"),
       url("../fonts/Source Han Sans CN Regular.eot") format("embedded-opentype"),
       url("../fonts/Source Han Sans CN Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.w1180 {
  width: 1180px;
  margin: 0 auto;
}
img {
  max-width: 100%;
}
.page {
  text-align: center;
}
.page a {
  display: inline-block;
  background: #f4f6f5;
  line-height: 45px;
  min-width: 45px;
  color: #666666;
  font-size: 16px;
  margin: 0 3px;
  font-family: sans-serif;
}
.page a:hover,
.page a.cur {
  background: #e87713;
  color: #fff;
}
.bread {
  border-bottom: 1px solid #eee;
  line-height: 66px;
  text-align: right;
  color: #666666;
  font-size: 14px;
}
.bread i {
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(../images/bread_icon.png) no-repeat center center;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.bread a {
  color: #999999;
}
.bread a:hover {
  color: #e87713;
}
a.more {
  border: 1px solid #e87713;
  display: inline-block;
  line-height: 52px;
  padding: 0 40px;
  text-transform: uppercase;
  color: #6a6a6a;
  font-size: 14px;
	position: relative;
  z-index: 999;
}
.title {
  text-align: center;
}
.title h3 {
  color: #333;
  font-size: 34px;
  font-weight: normal;
}
.title P {
  margin-top: 10px;
  color: #545454;
  font-size: 14px;
  line-height: 24px;
}
.header_box .top {
  background: #1a1d1f;
  height: 44px;
  line-height: 44px;
  color: #dfdfdf;
  font-size: 12px;
}
.header_box .top p {
  padding-left: 246px;
}
.header_box .top .top_R span {
  float: left;
  background: url(../images/dh.png) no-repeat left center;
  padding: 0 22px;
  /*border-right: 1px solid #313436;*/
}
.header_box .top .top_R .t {
  float: left;
}
.header_box .top .top_R .t a {
  display: block;
  float: left;
  color: #dfdfdf;
  padding: 0 20px;
}
.header_box .top .top_R .t a:hover,
.header_box .top .top_R .t a.cur {
  background: #26292a;
}
.header_box .header .logo {
  margin-top: -44px;
  display: block;
  float: left;
  line-height: 0;
  width: 206px;
  height: 124px;
}
.header_box .header .nav {
  margin-left: 40px;
  float: left;
}
.header_box .header .nav ul li {
  padding-top: 2px;
  float: left;
  line-height: 76px;
  font-size: 14px;
  margin-right: 33px;
  position: relative;
}
.header_box .header .nav ul li:last-child {
  margin-right: 0;
}
.header_box .header .nav ul li > a {
  display: block;
  color: #333333;
  font-weight: bold;
}
.header_box .header .nav ul li .navbox {
  display: none;
  z-index: 2;
  position: absolute;
  left: -22px;
  top: 80px;
  background: #fff;
  width: 100px;
  text-align: center;
}
.header_box .header .nav ul li .navbox a {
  display: block;
  color: #666666;
  font-size: 12px;
  line-height: 30px;
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
}
.header_box .header .nav ul li .navbox a:last-child {
  border-bottom: none;
}
.header_box .header .nav ul li .navbox a i {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto;
}
.header_box .header .nav ul li .navbox a .icon1 {
  background: url(../images/navbox_icon1.png) no-repeat center center;
}
.header_box .header .nav ul li .navbox a .icon2 {
  background: url(../images/navbox_icon2.png) no-repeat center center;
}
.header_box .header .nav ul li .navbox a .icon3 {
  background: url(../images/navbox_icon3.png) no-repeat center center;
}
.header_box .header .nav ul li .navbox a .icon4 {
  background: url(../images/navbox_icon4.png) no-repeat center center;
}
.header_box .header .nav ul li .navbox a .icon5 {
  background: url(../images/navbox_icon5.png) no-repeat center center;
}
.header_box .header .nav ul li .navbox a:hover {
  background: #e87713;
  color: #fff;
}
.header_box .header .nav ul li .navbox a:hover .icon1 {
  background: url(../images/navbox_Hicon1.png) no-repeat center center;
}
.header_box .header .nav ul li .navbox a:hover .icon2 {
  background: url(../images/navbox_Hicon2.png) no-repeat center center;
}
.header_box .header .nav ul li .navbox a:hover .icon3 {
  background: url(../images/navbox_Hicon3.png) no-repeat center center;
}
.header_box .header .nav ul li .navbox a:hover .icon4 {
  background: url(../images/navbox_Hicon4.png) no-repeat center center;
}
.header_box .header .nav ul li .navbox a:hover .icon5 {
  background: url(../images/navbox_Hicon5.png) no-repeat center center;
}
.header_box .header .nav ul li:hover,
.header_box .header .nav ul li.cur {
  border-bottom: 2px solid #e87713;
}
.header_box .header .nav ul li:hover > a,
.header_box .header .nav ul li.cur > a {
  color: #e87713;
}
.header_box .header .search {
  float: right;
  margin-top: 29px;
}
.header_box .header .search a {
  float: right;
  display: block;
  width: 22px;
  line-height: 0;
}
.footer {
  background: #1a1d1f;
}
.footer .foot_top {
  padding: 45px 0 40px;
}
.footer .foot_top .left {
  float: left;
}
.footer .foot_top .left .img {
  line-height: 0;
}
.footer .foot_top .left .foot_nav {
  margin-top: 25px;
}
.footer .foot_top .left .foot_nav a {
  color: #ededed;
  float: left;
  font-size: 12px;
  margin-right: 35px;
}
.footer .foot_top .right {
  padding-top: 20px;
  float: right;
  text-align: right;
}
.footer .foot_top .right p {
  color: #999999;
  font-size: 14px;
  margin-bottom: 5px;
}
.footer .foot_top .right span {
  color: #e87713;
  font-size: 24px;
  font-family: arial;
  background: url(../images/dh2.png) no-repeat left center;
  padding-left: 30px;
  display: inline-block;
}
.footer .banquan {
  border-top: 1px solid #2f3133;
  padding: 20px 0;
  color: #999999;
  font-size: 14px;
  line-height: 30px;
}
.banner {
  position: relative;
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .slick-dots {
  bottom: 40px;
}
.banner .slick-dots li {
  margin: 0 4px;
}
.banner .slick-dots li button {
  width: 30px;
  height: 3px;
  background: #fff;
  opacity: 0.5;
}
.banner .slick-dots li.slick-active button {
  opacity: 1;
  background: #fff;
}
.home_case {
  padding: 90px 0;
}
.home_case .w1180 {
  position: relative;
}
.home_case .w1180:before {
  content: "";
  position: absolute;
  left: -92px;
  top: 80px;
  width: 113px;
  height: 77px;
  background: url(../images/adorn_bg.png) no-repeat center center;
}
.home_case .top {
  text-align: right;
}
.home_case .top h3 {
  color: #545454;
  font-size: 34px;
  font-weight: normal;
  display: inline-block;
  position: relative;
}
.home_case .top h3:before {
  content: "";
  position: absolute;
  left: -100px;
  top: 25px;
  width: 66px;
  height: 1px;
  background: #f98b34;
}
.home_case .top p {
  margin-top: 15px;
  margin-bottom: 30px;
  color: #585858;
  font-size: 14px;
  line-height: 24px;
}
..home_case .top p a{
  color: #585858;
}
.home_case .case_box {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}
.home_case .case_box ol li {
  float: left;
  width: 376px;
  margin-left: 26px;
}
.home_case .case_box ol li:first-child {
  margin-left: 0;
}
.home_case .case_box ol li .img {
  line-height: 0;
  width: 376px;
  height: 452px;
  text-align: center;
  position: relative;
}
.home_case .case_box ol li .img .more_btn {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  background: url(../images/more.jpg) no-repeat center center / cover;
}
.home_case .case_box ol li .img .hide {
  display: none;
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.home_case .case_box ol li .img .hide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.home_case .case_box ol li .text {
  margin-top: 30px;
  border-left: 1px solid #faa15b;
  padding-left: 25px;
}
.home_case .case_box ol li .text h3 {
  color: #545454;
  font-size: 30px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_case .case_box ol li .text .t {
  margin-top: 10px;
  color: #545454;
  font-size: 12px;
  line-height: 24px;
}
.home_case .case_box ol li .text .t span {
  float: left;
  width: 50%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-family: sans-serif;
}
.home_case .case_box ol li:first-child + li {
  margin-top: 70px;
}
.home_case .case_box ol li:first-child + li + li {
  margin-top: 140px;
}
.home_case .case_box ol li:hover .img .hide {
  display: block;
}
.home_case .case_box .slick-prev,
.home_case .case_box .slick-next {
  width: 29px;
  height: 52px;
  border: none;
  margin-top: -26px;
}
.home_case .case_box .slick-prev {
  background: url(../images/case_prev.png) no-repeat center center;
  left: -70px;
}
.home_case .case_box .slick-prev:hover {
  background-image: url(../images/case_Hprev.png);
}
.home_case .case_box .slick-next {
  background: url(../images/case_next.png) no-repeat center center;
  right: -70px;
}
.home_case .case_box .slick-next:hover {
  background-image: url(../images/case_Hnext.png);
}
.home_about .home_about_box {
  background: url(../images/home_about_bg.jpg) no-repeat center top;
  min-height: 830px;
  margin-right: -165px;
}
.home_about .home_about_box .box {
  width: 1180px;
  padding: 100px 0 0 180px;
}
.home_about .home_about_box .box .left {
  float: left;
  width: 360px;
}
.home_about .home_about_box .box .left h3 {
  display: inline-block;
  color: #ffffff;
  font-size: 34px;
  font-weight: normal;
  position: relative;
}
.home_about .home_about_box .box .left h3:before {
  content: "";
  position: absolute;
  right: -175px;
  top: 25px;
  width: 160px;
  height: 1px;
  background: #f98b34;
}
.home_about .home_about_box .box .left .t {
  color: #fff;
  font-size: 12px;
  line-height: 26px;
  margin-top: 20px;
}
.home_about .home_about_box .box ol {
  float: right;
}
.home_about .home_about_box .box ol li {
  float: left;
  width: 87px;
  margin-left: 80px;
  text-align: center;
}
.home_about .home_about_box .box ol li:first-child {
  margin-left: 0;
}
.home_about .home_about_box .box ol li .icon {
  width: 87px;
  height: 94px;
}
.home_about .home_about_box .box ol li p {
  margin-top: 12px;
  color: #fff;
  font-size: 14px;
}
.home_about .home_about_box .bottom {
  margin-top: 92px;
  padding-right: 165px;
  position: relative;
}
.home_about .home_about_box .bottom:before {
  content: "";
  position: absolute;
  right: 108px;
  top: -50px;
  width: 137px;
  height: 113px;
  background: url(../images/adorn_bg2.png) no-repeat center center;
}
.home_about .home_about_box .bottom .img01 {
  margin-left: -165px;
  float: left;
  line-height: 0;
  width: 345px;
  height: 563px;
}
.home_about .home_about_box .bottom .text_box {
  float: right;
  position: relative;
}
.home_about .home_about_box .bottom .text_box .img {
  display: block;
  line-height: 0;
  width: 1000px;
  height: 563px;
}
.home_about .home_about_box .bottom .text_box .bottom_text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  background: rgba(0, 0, 0, 0.8);
  padding-left: 130px;
  padding-right: 40px;
}
.home_about .home_about_box .bottom .text_box .bottom_text ol {
  float: left;
}
.home_about .home_about_box .bottom .text_box .bottom_text ol li {
  width: 158px;
  float: left;
  text-align: left;
  padding-top: 40px;
  color: #ffffff;
}
.home_about .home_about_box .bottom .text_box .bottom_text ol li .bt {
  font-family: "Source Han Sans CN Regular";
  font-size: 34px;
}
.home_about .home_about_box .bottom .text_box .bottom_text ol li p {
  font-size: 14px;
}
.home_about .home_about_box .bottom .text_box .bottom_text .more_btn {
  margin-top: 43px;
  float: right;
  width: 190px;
  height: 56px;
  line-height: 54px;
  display: block;
  border-top: 1px solid #5f5f5f;
  border-bottom: 1px solid #5f5f5f;
  padding: 0 20px;
  color: #ffffff;
  font-size: 14px;
}
.home_about .home_about_box .bottom .text_box .bottom_text .more_btn i {
  display: inline-block;
  width: 20px;
  height: 9px;
  background: url(../images/more2.png) no-repeat center center;
  float: right;
  line-height: 0;
  margin-top: 22px;
}
.home_core {
  background: url(../images/home_core_bg.jpg) no-repeat center top;
  padding: 70px 0;
}
.home_core .left {
  float: left;
  width: 330px;
  padding-top: 35px;
}
.home_core .left i {
  display: block;
  width: 66px;
  height: 1px;
  background: #f98b34;
  margin-bottom: 32px;
}
.home_core .left h3 {
  margin-bottom: 23px;
  color: #545454;
  font-size: 34px;
  font-weight: normal;
}
.home_core .left p {
  color: #545454;
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 70px;
}
.home_core .right {
  float: right;
  width: 820px;
}
.home_core .right ol li {
  float: left;
  width: 33.33333333%;
  text-align: center;
  border-left: 1px solid #f3f3f3;
  height: 172px;
  padding-top: 48px;
  border-top: 1px solid #f3f3f3;
}
.home_core .right ol li:first-child,
.home_core .right ol li:first-child + li,
.home_core .right ol li:first-child + li + li {
  border-top: none;
}
.home_core .right ol li .icon {
  height: 35px;
  line-height: 0;
}
.home_core .right ol li p {
  margin-top: 15px;
  color: #666666;
  font-size: 16px;
}
.home_core .right ol li.on {
  background: url(../images/home_core_bg2.jpg) no-repeat center center / cover;
  color: #fff;
}
.home_core .right ol li.on .bt {
  font-size: 34px;
  font-family: arial;
}
.home_core .right ol li.on p {
  margin-top: 10px;
  color: #fff;
}
.home_tupian .img {
  margin-left: -165px;
  width: 1344px;
  display: block;
  line-height: 0;
  position: relative;
}
.home_tupian .img:before {
  z-index: -1;
  content: "";
  position: absolute;
  right: -65px;
  top: 11px;
  width: 113px;
  height: 77px;
  background: url(../images/adorn_bg.png) no-repeat center center;
}
.home_solution {
  margin-top: -165px;
  padding-top: 245px;
  padding-bottom: 90px;
  background: url(../images/home_solution_bg.jpg) no-repeat center top;
}
.home_solution ol {
  margin-top: 55px;
  position: relative;
}
.home_solution ol:before {
  content: "";
  position: absolute;
  left: -165px;
  top: 75px;
  width: 80px;
  height: 113px;
  background: url(../images/adorn_bg3.jpg) no-repeat center center;
}
.home_solution ol li {
  float: left;
  width: 25%;
  height: 528px;
  background: #fff;
  text-align: center;
  border-right: 1px solid #f4f6f5;
  padding: 140px 40px 0;
  transition: all .3s;
}
.home_solution ol li:last-child {
  border-right: none;
}
.home_solution ol li .icon {
  transition: all .3s;
  height: 80px;
  line-height: 0;
}
.home_solution ol li h3 {
  margin-top: 76px;
  color: #545454;
  font-size: 18px;
}
.home_solution ol li p {
  margin-top: 18px;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  height: 60px;
  overflow: hidden;
}
.home_solution ol li a {
  margin-top: 75px;
  display: inline-block;
  border: 1px solid #fff;
  line-height: 44px;
  padding: 0 46px;
  font-size: 14px;
  color: #fff;
}
.home_solution ol li:hover {
  background: url(../images/solution_bg.jpg) no-repeat center center / cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.home_solution ol li:hover .icon {
  transform: translateY(-47px);
}
.home_solution ol li:hover h3 {
  color: #fff;
  margin-top: 25px;
}
.home_partner {
  background: url(../images/home_partner_bg.jpg) no-repeat center top;
  min-height: 720px;
  padding-top: 70px;
}
.home_partner .title h3,
.home_partner .title p {
  color: #fff;
}
.home_partner .partner_box {
  margin-top: 45px;
  padding-bottom: 72px;
}
.home_partner .partner_box ol li {
  float: left;
  width: 25%;
  line-height: 0;
  height: 130px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.home_partner .partner_box ol li:nth-child(4n) {
  border-right: none;
}
.home_partner .partner_box ol li:first-child,
.home_partner .partner_box ol li:first-child + li,
.home_partner .partner_box ol li:first-child + li + li,
.home_partner .partner_box ol li:first-child + li + li + li {
  border-top: none;
}
.home_partner .partner_box ol li img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.home_partner .partner_box .slick-dots {
  bottom: 0;
}
.home_partner .partner_box .slick-dots li {
  margin: 0 10px;
}
.home_partner .partner_box .slick-dots li button {
  border-radius: 50px;
  width: 12px;
  height: 12px;
  background: #999999;
}
.home_partner .partner_box .slick-dots li.slick-active button {
  background: #ffffff;
}
.home_news {
  padding: 70px 0 80px;
}
.home_news .tab_btn {
  margin-top: 30px;
  text-align: center;
}
.home_news .tab_btn a {
  display: inline-block;
  background: url(../images/tab_btn_bg.png) no-repeat center center;
  height: 61px;
  line-height: 61px;
  width: 151px;
  color: #333333;
  font-size: 14px;
}
.home_news .tab_btn a:hover,
.home_news .tab_btn a.cur {
  background: url(../images/tab_btn_bg2.png) no-repeat center center;
  color: #e87713;
}
.home_news .tab_box {
  margin-top: 40px;
}
.home_news .tab_box ul li {
  float: left;
  height: 410px;
  width: 365px;
  overflow: hidden;
  margin-left: 42.5px;
}
.home_news .tab_box ul li:first-child {
  margin-left: 0;
}
.home_news .tab_box ul li .img {
  width: 365px;
  height: 270px;
  line-height: 0;
  position: relative;
}
.home_news .tab_box ul li .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 1s;
}
.home_news .tab_box ul li .text {
  padding: 24px 0 0;
  transition: all .3s;
}
.home_news .tab_box ul li .text h3 {
  color: #333333;
  font-size: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_news .tab_box ul li .text p {
  margin-top: 12px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.home_news .tab_box ul li .text span.data {
  margin-top: 12px;
  display: block;
  color: #666666;
  font-size: 14px;
}
.home_news .tab_box ul li .text span.more {
  display: none;
  margin-top: 24px;
  border: 1px solid #e87713;
  line-height: 40px;
  color: #e87713;
  padding: 0 40px;
  font-size: 14px;
}
.home_news .tab_box ul li:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.home_news .tab_box ul li:hover .img img {
  transform: scale(1.2);
}
.home_news .tab_box ul li:hover .text {
  padding: 24px 20px;
  background: #fff;
  transform: translateY(-90px);
}
.home_news .tab_box ul li:hover .text span.more {
  display: inline-block;
}
.links_box {
  background: #f4f6f5;
  padding: 50px 0 40px;
  min-height: 250px;
}
.links_box .top .links_btn {
  float: left;
}
.links_box .top .links_btn span {
  float: left;
  display: block;
  line-height: 40px;
  background: #eaebea;
  min-width: 116px;
  padding: 0 15px;
  text-align: center;
  color: #333333;
  font-size: 14px;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
}
.links_box .top .links_btn span:before {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: -8px;
  width: 20px;
  height: 8px;
  background: url(../images/links_icon1.png) no-repeat center center;
}
.links_box .top .links_btn span.cur:before {
  display: block;
}
.links_box .top .links_right {
  float: right;
}
.links_box .top .links_right span {
  display: block;
  line-height: 40px;
  background: #eaebea;
  min-width: 116px;
  padding: 0 25px;
  text-align: center;
  color: #333333;
  font-size: 14px;
  margin-right: 10px;
}
.links_box .links_con {
  margin-top: 30px;
}
.links_box .links_con .box a {
  display: block;
  float: left;
  color: #666666;
  font-size: 14px;
  line-height: 30px;
  margin-right: 40px;
}
.nybanner {
  text-align: center;
  overflow: hidden;
}
.join_banner {
  position: relative;
  left: 50%;
  margin-left: -960px;
  height: 554px;
  width: 1920px;
}
.news_banner {
  position: relative;
  left: 50%;
  margin-left: -960px;
  height: 500px;
  width: 1920px;
}
.join_box {
  background: #f4f6f5;
  padding-bottom: 90px;
}
.join_box .join {
  background: #fff;
  margin-top: -120px;
  position: relative;
  z-index: 2;
  min-height: 500px;
  padding: 60px 30px;
}
.join_box .join .tit {
  text-align: center;
  color: #333333;
  font-size: 34px;
  font-weight: normal;
}
.join_box .join_top {
  margin-top: 40px;
}
.join_box .join_top ul li {
  float: left;
  width: 100%;
  color: #666666;
  font-size: 16px;
  background: #f7f7f7;
  line-height: 80px;
}
.join_box .join_top ul li span {
  float: left;
  width: 16.66666667%;
  text-align: center;
}
.join_box .join_list ul {
  border: 1px solid #f1f1f1;
}
.join_box .join_list ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #f1f1f1;
}
.join_box .join_list ul li:last-child {
  border-bottom: none;
}
.join_box .join_list ul li .bt {
  text-align: center;
  font-size: 14px;
  color: #666666;
  line-height: 70px;
}
.join_box .join_list ul li .bt span {
  float: left;
  width: 16.66666667%;
}
.join_box .join_list ul li .bt span:first-child {
  color: #000;
}
.join_box .join_list ul li .bt a {
  color: #e87713;
}
.join_box .join_list ul li .bt a i {
  margin-left: 10px;
  display: inline-block;
  width: 15px;
  height: 8px;
  background: url(../images/join_icon.png) no-repeat center center;
}
.join_box .join_list ul li .text {
  padding: 0 60px 50px;
  display: none;
}
.join_box .join_list ul li .text .box {
  padding-top: 25px;
  border-top: 1px solid #f1f1f1;
}
.join_box .join_list ul li .text h3 {
  color: #333333;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 5px;
}
.join_box .join_list ul li .text .t {
  color: #666666;
  font-size: 12px;
  line-height: 30px;
}
.join_box .join_list ul li .text .bottom {
  color: #666666;
  font-size: 14px;
}
.join_box .join_list ul li .text .bottom a {
  color: #e87713;
  display: inline-block;
}
.join_box .join_list ul li.cur .bt span:first-child {
  color: #e87713;
}
.join_box .join_list ul li.cur .bt a i {
  background: url(../images/join_icon2.png) no-repeat center center;
}
.contact_box {
  padding-bottom: 70px;
  background: url(../images/contact_bg.jpg) no-repeat center top #f4f6f5;
}
.contact_box .contact_top {
  padding-bottom: 80px;
}
.contact_box .contact_top .feedback {
  min-height: 764px;
  margin-top: -175px;
  float: left;
  width: 640px;
  position: relative;
}
.contact_box .contact_top .feedback:before {
  content: "";
  position: absolute;
  left: -370px;
  top: 0;
  width: 1010px;
  height: 764px;
  background: url(../images/feedback_bg.jpg) no-repeat left top;
}
.contact_box .contact_top .feedback .box {
  position: relative;
  z-index: 2;
  width: 510px;
  padding-top: 65px;
}
.contact_box .contact_top .feedback .box .tit {
  margin-bottom: 50px;
}
.contact_box .contact_top .feedback .box .tit h3 {
  color: #666666;
  font-size: 18px;
  font-weight: normal;
}
.contact_box .contact_top .feedback .box .tit h4 {
  color: #666666;
  font-size: 38px;
  font-weight: normal;
  text-transform: uppercase;
}
.contact_box .contact_top .feedback .box ol li {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid #dbdbdb;
}
.contact_box .contact_top .feedback .box ol li input {
  float: left;
  width: 100%;
  line-height: 54px;
  border: none;
  color: #666666;
}
.contact_box .contact_top .feedback .box ol li textarea {
  border: none;
  float: left;
  width: 100%;
  line-height: 54px;
  height: 160px;
  font-family: "宋体";
  font-size: 14px;
}
.contact_box .contact_top .feedback .box ol li .btn {
  background: #e87713;
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
}
.contact_box .contact_top .right {
  float: right;
  width: 470px;
  padding-top: 75px;
}
.contact_box .contact_top .right .text {
  border-bottom: 1px solid #dbdbdb;
  padding: 30px 0;
}
.contact_box .contact_top .right .text:last-child {
  border-bottom: none;
}
.contact_box .contact_top .right .text p {
  color: #333333;
  font-size: 14px;
  line-height: 30px;
}
.contact_box .contact_top .right .text .dh {
  display: inline-block;
  margin-top: 5px;
  color: #e87713;
  font-size: 40px;
  font-weight: bold;
  font-family: arial;
  background: url(../images/c_dh.png) no-repeat left center;
  padding-left: 52px;
}
.contact_box .contact_top .right .text .kh {
  margin-top: 10px;
}
.contact_box .contact_top .right .text .kh a {
  display: block;
  float: left;
  min-width: 165px;
  padding: 0 30px;
  line-height: 46px;
  text-align: center;
  background: #fff;
  margin-right: 20px;
  color: #666666;
  border: 2px solid #fff;
  font-size: 12px;
}
.contact_box .contact_top .right .text .kh a i {
  display: inline-block;
  width: 10px;
  height: 11px;
  background: url(../images/c_kh.png) no-repeat center center;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.contact_box .contact_top .right .text .kh a:hover {
  border: 2px solid #e87713;
  background: no-repeat;
  color: #e87713;
}
.contact_box .contact_top .right .text .kh2 a i {
  background: url(../images/c_kh2.png) no-repeat center center;
  width: 13px;
  height: 12px;
  top: 2px;
}
.contact_box .contact_list ul li {
  background: #fff;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.contact_box .contact_list ul li .img {
  float: left;
  width: 640px;
  height: 460px;
}
.contact_box .contact_list ul li .text {
  float: right;
  width: 540px;
  padding: 80px 60px 0;
}
.contact_box .contact_list ul li .text h3 {
  color: #333333;
  font-size: 24px;
  font-weight: normal;
}
.contact_box .contact_list ul li .text .t {
  margin-top: 40px;
  color: #666666;
  font-size: 14px;
  line-height: 38px;
}
.news_box {
  background: #f4f6f5;
  padding-bottom: 80px;
}
.news_box .news_list {
  position: relative;
  z-index: 2;
  float: left;
 /* width: 843px; */
  width: 70%;
  background: #fff;
  margin-top: -80px;
  padding: 0 30px 60px;
}
.news_box .news_list .tit {
  line-height: 66px;
  border-bottom: 1px solid #f0f3f1;
  color: #475a70;
  font-size: 18px;
}
.news_box .news_list ol {
  margin-top: 5px;
  margin-bottom: 50px;
}
.news_box .news_list ol li {
  float: left;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #f0f3f1;
}
.news_box .news_list ol li .img {
  float: left;
  width: 300px;
  height: 230px;
  overflow: hidden;
}
.news_box .news_list ol li .text {
  float: right;
  width: 455px;
  padding-top: 10px;
}
.news_box .news_list ol li .text h3 {
  color: #475a70;
  font-size: 20px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_box .news_list ol li .text .t {
  margin-top: 24px;
  color: #848e9b;
  font-size: 14px;
  line-height: 26px;
  height: 78px;
  overflow: hidden;
}
.news_box .news_list ol li .text .bottom {
  margin-top: 50px;
}
.news_box .news_list ol li .text .bottom span {
  float: left;
  color: #94a7bd;
  font-size: 12px;
  line-height: 30px;
  margin-right: 28px;
}
.news_box .news_list ol li .text .bottom span.s1 {
  padding-left: 25px;
  background: url(../images/news_icon1.png) no-repeat left center;
}
.news_box .news_list ol li .text .bottom span.s2 {
  padding-left: 18px;
  background: url(../images/news_icon2.png) no-repeat left center;
}
.news_box .news_list ol li .text .bottom a.news_more {
  border: 1px solid #e2e2e2;
  float: right;
  line-height: 30px;
  border-radius: 50px;
  color: #475a70;
  font-size: 12px;
  padding: 0 22px;
}
.news_box .news_list ol li:hover .text .bottom a.news_more {
  background: #e87713;
  color: #fff;
  border-color: #e87713;
}
.news_box .right_news {
  position: relative;
  z-index: 2;
  float: right;
 /* width: 320px; */
  width: 28%;
  margin-top: -80px;
}
.news_box .right_news .tit {
  line-height: 66px;
  border-bottom: 1px solid #f0f3f1;
  color: #475a70;
  font-size: 18px;
  padding: 0 20px;
}
.news_box .right_news .menu {
  background: #fff;
}
.news_box .right_news .menu ol {
  padding: 25px 20px 40px;
}
.news_box .right_news .menu ol li {
  float: left;
  width: 60px;
  text-align: center;
  margin-right: 50px;
}
.news_box .right_news .menu ol li:nth-child(3n) {
  margin-right: 0;
}
.news_box .right_news .menu ol li .icon {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  background-repeat: no-repeat;
  background-position: center;
}
.news_box .right_news .menu ol li .icon1 {
  background-image: url(../images/news_pic1.png);
}
.news_box .right_news .menu ol li .icon2 {
  background-image: url(../images/news_pic2.png);
}
.news_box .right_news .menu ol li .icon3 {
  background-image: url(../images/news_pic3.png);
}
.news_box .right_news .menu ol li p {
  color: #475a70;
  font-size: 14px;
  margin-top: 10px;
}
.news_box .right_news .menu ol li:hover .icon,
.news_box .right_news .menu ol li.cur .icon {
  background: #e87713;
  background-repeat: no-repeat;
  background-position: center;
}
.news_box .right_news .menu ol li:hover .icon1,
.news_box .right_news .menu ol li.cur .icon1 {
  background-image: url(../images/news_Hpic1.png);
}
.news_box .right_news .menu ol li:hover .icon2,
.news_box .right_news .menu ol li.cur .icon2 {
  background-image: url(../images/news_Hpic2.png);
}
.news_box .right_news .menu ol li:hover .icon3,
.news_box .right_news .menu ol li.cur .icon3 {
  background-image: url(../images/news_Hpic3.png);
}
.news_box .right_news .menu ol li:hover p,
.news_box .right_news .menu ol li.cur p {
  color: #e87713;
}
.news_box .right_news .kfzx {
  background: #fff;
  margin-top: 10px;
}
.news_box .right_news .kfzx .text {
  text-align: center;
  padding: 45px 20px;
}
.news_box .right_news .kfzx .text p {
  color: #e87713;
  font-size: 30px;
  font-weight: normal;
  font-family: arial;
}
.news_box .right_news .kfzx .text span {
  display: block;
  color: #475a70;
  font-size: 14px;
  margin-top: 5px;
}
.news_box .right_news .kfzx .text a {
  display: block;
  border: 1px solid #e87713;
  margin: 25px 25px 0;
  line-height: 46px;
  color: #e87713;
  font-size: 14px;
}
.news_box .right_news .kfzx .text a i {
  display: inline-block;
  width: 18px;
  height: 16px;
  background: url(../images/news_icon3.png) no-repeat center center;
  margin-right: 10px;
  position: relative;
  top: 4px;
}
.news_box .right_news .Newm {
  padding: 30px 20px;
  background: #fff;
  margin-top: 10px;
}
.news_box .right_news .Newm img {
  margin-left: 25px;
  float: left;
  width: 220px;
}
.news_box .right_news .Newm p {
  padding-top: 10px;
  float: left;
  margin-left: 20px;
  color: #e87713;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
}
.news_box .right_news .Nimg {
  margin-top: 10px;
  background: #fff;
  padding: 20px;
}
.news_box .right_news .Nimg .box {
  position: relative;
}
.news_box .right_news .Nimg .box .img {
  line-height: 0;
  overflow: hidden;
}
.news_box .right_news .Nimg .box .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  padding: 10px 15px;
}
.news_box .right_news .Nimg .box .text p {
  height: 48px;
  overflow: hidden;
}
.news_box .right_news .rmwz {
  background: #fff;
  margin-top: 10px;
}
.news_box .right_news .rmwz ol {
  padding: 10px 20px 20px;
}
.news_box .right_news .rmwz ol li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #f0f2f0;
  padding: 10px 0;
}
.news_box .right_news .rmwz ol li:last-child {
  border-bottom: none;
}
.news_box .right_news .rmwz ol li .img {
  float: left;
  width: 105px;
  height: 80px;
  overflow: hidden;
}
.news_box .right_news .rmwz ol li .text {
  float: right;
  width: 160px;
}
.news_box .right_news .rmwz ol li .text h3 {
  color: #475a70;
  font-size: 14px;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
  font-weight: normal;
}
.news_box .right_news .rmwz ol li .text p {
  margin-top: 15px;
  color: #999999;
  font-size: 12px;
}
.news_box .right_news .gjcy {
  background: #fff;
  margin-top: 10px;
}
.news_box .right_news .gjcy .text {
  padding: 10px 20px 20px;
}
.news_box .right_news .gjcy .text a {
  color: #999999;
  font-size: 14px;
  line-height: 36px;
  display: block;
  float: left;
  margin-right: 10px;
}
.news_show {
  position: relative;
  z-index: 2;
  float: left;
  width: 843px;
  background: #fff;
  margin-top: -80px;
  min-height: 500px;
  padding: 0 30px 50px;
}
.news_show .show h1 {
  text-align: center;
  border-bottom: 1px solid #f0f3f1;
  color: #475a70;
  font-size: 22px;
  font-weight: normal;
  padding: 35px 0 25px;
}
.news_show .show .data {
  text-align: center;
  color: #94a7bd;
  font-size: 14px;
  margin-top: 20px;
}
.news_show .show .data span {
  display: inline-block;
  margin: 0 20px;
}
.news_show .show .detail {
  padding: 25px 0 35px;
  color: #848e9b;
  font-size: 14px;
  line-height: 24px;
  border-bottom: 1px solid #f0f3f1;
}
.fenye_btn {
  margin-top: 40px;
}
.fenye_btn ul {
  float: left;
  width: 70%;
}
.fenye_btn ul li {
  float: left;
  width: 100%;
  border-bottom: 1px solid #f0f3f1;
  padding: 18px 0;
}
.fenye_btn ul li:last-child {
  border-bottom: none;
}
.fenye_btn ul li a {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #848e9b;
  line-height: 20px;
  font-size: 14px;
}
.fenye_btn .return {
  margin-top: 25px;
  float: right;
  width: 160px;
  background: #e87713;
  border-radius: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
}
.case_banner {
  height: 600px;
  overflow: hidden;
}
.case_banner .box {
  color: #fff;
  width: 395px;
  padding-top: 180px;
}
.case_banner .box h3 {
  font-size: 40px;
  line-height: 44px;
  font-weight: normal;
  text-transform: uppercase;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.case_banner .box .t {
  margin-top: 20px;
  font-size: 16px;
  line-height: 28px;
}
.case_Filter {
  background: #f5f5f5;
}
.case_Filter ul li {
  float: left;
  width: 100%;
  border-top: 1px dotted #e6e6e6;
}
.case_Filter ul li span {
  display: block;
  float: left;
  width: 115px;
  line-height: 36px;
  padding: 20px 0;
  text-align: center;
  background: url(../images/Filter_bg.png) no-repeat center center;
}
.case_Filter ul li .text {
  margin: 20px;
  float: left;
  overflow: hidden;
  max-width: 940px;
}
.case_Filter ul li .text a {
  color: #333333;
  font-size: 14px;
  float: left;
  line-height: 36px;
  margin-right: 20px;
}
.case_Filter ul li .text a：hover,
.case_Filter ul li .text a.cur {
  color: #e87713;
}
.case_Filter ul li .more {
  float: right;
  display: block;
  line-height: 36px;
  height: 36px;
  padding-left: 0;
  padding-right: 20px;
  text-align: left;
  color: #e87713;
  font-size: 14px;
  margin-top: 20px;
  border: none;
  position: relative;
}
.case_Filter ul li .more:before {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
  width: 12px;
  height: 7px;
  background: url(../images/Filter_bg2.png) no-repeat center center;
}
.case_list {
  padding: 60px 0 80px;
}
.case_list ul {
  margin-left: -20px;
  overflow: hidden;
  margin-bottom: 50px;
  border-bottom: 1px solid #f5f5f5;
}
.case_list ul li {
  float: left;
  width: 380px;
  margin-left: 20px;
  margin-bottom: 30px;
}
.case_list ul li .img {
  line-height: 0;
  width: 380px;
  /*height: 255px;*/
  text-align: center;
  position: relative;
  overflow: hidden;
}
.case_list ul li .img .hide {
  display: none;
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.case_list ul li .img .hide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.case_list ul li .text {
  margin-top: 15px;
}
.case_list ul li .text h3 {
  color: #333333;
  font-size: 20px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.case_list ul li .text .t {
  margin-top: 8px;
  color: #666666;
  font-size: 12px;
  line-height: 24px;
}
.case_list ul li .text .t span {
  float: left;
  width: 50%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-family: sans-serif;
}
.case_list ul li:hover .img .hide {
  display: block;
}
.caseshow_banner {
  padding-top: 128px;
}
.caseshow_banner .show_box {
  background: #fff;
  width: 466px;
  min-height: 290px;
  padding: 35px 30px;
}
.caseshow_banner .show_box h3 {
  color: #e87713;
  font-size: 22px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 22px;
  font-weight: normal;
}
.caseshow_banner .show_box .t {
  margin-top: 22px;
  color: #666666;
  font-size: 14px;
  line-height: 28px;
}
.caseshow_banner .show_box .t p {
  float: left;
  width: 50%;
}
.caseshow_box {
  padding-bottom: 80px;
}
.caseshow_box .caseshow h1 {
  color: #e87713;
  font-size: 22px;
  font-weight: normal;
  border-bottom: 1px solid #eeeeee;
  padding: 20px 0 ;
}
.caseshow_box .caseshow .data {
  border-bottom: 1px solid #eeeeee;
  color: #666666;
  font-size: 14px;
  line-height: 32px;
  padding: 20px 0;
}
.caseshow_box .caseshow .data p {
  float: left;
  width: 26%;
  font-family: sans-serif;
}
.caseshow_box .caseshow .detail {
  padding: 30px 0 40px;
  color: #333333;
  font-size: 14px;
  line-height: 30px;
  font-family: sans-serif;
}
.case_fenye {
  text-align: center;
}
.case_fenye a {
  display: inline-block;
  border: 1px solid #d9d9d9;
  line-height: 58px;
  min-width: 180px;
  border-radius: 50px;
  margin: 0 15px;
  color: #666666;
  font-size: 14px;
}
.case_fenye a i {
  display: inline-block;
  width: 20px;
  height: 11px;
  position: relative;
  top: 1px;
}
.case_fenye a .i1 {
  margin-right: 15px;
  background: url(../images/jt1.png) no-repeat center center;
}
.case_fenye a .i2 {
  margin-left: 15px;
  background: url(../images/jt2.png) no-repeat center center;
}
.case_fenye a:hover {
  border-color: #e97a19;
  color: #e97a19;
}
.case_fenye a:hover .i1 {
  background: url(../images/jt_H1.png) no-repeat center center;
}
.case_fenye a:hover .i2 {
  background: url(../images/jt_H2.png) no-repeat center center;
}
.REC_case {
  margin-top: 12px;
}
.REC_case ol {
  margin-left: -20px;
}
.REC_case ol li {
  float: left;
  width: 380px;
  background: #fff;
  margin-left: 20px;
}
.REC_case ol li .img {
  line-height: 0;
  width: 380px;
  height: 382px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.REC_case ol li .img .hide {
  display: none;
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.REC_case ol li .img .hide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.REC_case ol li .text {
  padding: 18px 20px;
}
.REC_case ol li .newtext {
  background-color: #e87613;
  position: relative;
  bottom: 36px;
  width: 100%;
  height: 40px;
}

.REC_case ol li .text h3 {
  color: #333333;
  font-size: 20px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.REC_case ol li .newtext h3 {
  position:fixed;
  color: #333333;
  font-size: 20px;
  line-height: 50px;
  margin-left: 40px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: -5px;
}
.REC_case ol li .text .t {
  margin-top: 5px;
  color: #666666;
  font-size: 12px;
  line-height: 24px;
}
.REC_case ol li .text .t span {
  float: left;
  width: 50%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.REC_case ol li:hover .img .hide {
  display: block;
}
.solution_nav {
  background: url(../images/solution_bg1.jpg) no-repeat center bottom;
}
.solution_nav ul {
  border-left: 1px solid #efefef;
}
.solution_nav ul li {
  float: left;
  width: 20%;
  text-align: center;
  font-size: 16px;
  line-height: 98px;
  border-right: 1px solid #efefef;
}
.solution_nav ul li a {
  color: #333333;
  display: block;
}
.solution_nav ul li:hover,
.solution_nav ul li.cur {
  background: #e87713;
}
.solution_nav ul li:hover a,
.solution_nav ul li.cur a {
  color: #fff;
}
.solution_box {
  min-height: 660px;
  background: url(../images/solution_bg2.jpg) no-repeat center top / cover;
  padding-top: 100px;
}
.solution_box .left {
  float: left;
  width: 605px;
  padding-top: 30px;
}
.solution_box .left i {
  display: block;
  width: 66px;
  height: 1px;
  background: #f98b34;
}
.solution_box .left h3 {
  margin-top: 25px;
  color: #e87713;
  font-size: 32px;
  font-weight: normal;
}
.solution_box .left .t {
  margin-top: 30px;
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}
.solution_box .right {
  float: right;
  width: 408px;
  margin-right: 65px;
}
.solution_box2 {
  padding-top: 80px;
}
.solution_box2 .solution_case {
  margin-top: 50px;
}
.solution_box2 .solution_case .box {
  position: relative;
  margin: 0 20px;
}
.solution_box2 .solution_case .box .img {
  position: relative;
}
.solution_box2 .solution_case .box .img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
}
.solution_box2 .solution_case .box .img img {
  width: 100%;
}
.solution_box2 .solution_case .box .text {
  opacity: 0;
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 360px;
  height: 209px;
  background: #fff;
  padding: 27px 30px 0 65px;
}
.solution_box2 .solution_case .box .text i.bg {
  display: block;
  width: 30px;
  height: 5px;
  background: #e87713;
}
.solution_box2 .solution_case .box .text h3 {
  margin-top: 21px;
  color: #333333;
  font-size: 24px;
  font-weight: normal;
}
.solution_box2 .solution_case .box .text .t {
  margin-top: 12px;
  color: #666666;
  font-size: 13px;
  line-height: 24px;
}
.solution_box2 .solution_case .box .text .t p {
  width: 80%;
  float: left;
}
.solution_box2 .solution_case .box .text a {
  margin-top: 4px;
  display: inline-block;
  color: #666666;
  font-size: 12px;
}
.solution_box2 .solution_case .box .text a i {
  display: inline-block;
  background: url(../images/jt2.png) no-repeat center center / cover;
  width: 15px;
  height: 8px;
  margin-left: 27px;
}
.solution_box2 .solution_case .slick-current .box .img:before {
  opacity: 0;
}
.solution_box2 .solution_case .slick-current .box .text {
  opacity: 1;
}
.solution_box2 .solution_case .slick-arrow {
  width: 35px;
  height: 26px;
  border: none;
  margin-top: -13px;
}
.solution_box2 .solution_case .slick-prev {
  background: url(../images/case_prev1.png) no-repeat center center;
  left: 60px;
}
.solution_box2 .solution_case .slick-next {
  background: url(../images/case_next1.png) no-repeat center center;
  right: 60px;
}
.solution_box3 {
  padding: 80px 0 90px;
}
.solution_box3 ol {
  margin-top: 50px;
}
.solution_box3 ol li {
  float: left;
  width: 376px;
  height: 300px;
  text-align: center;
  margin-right: 26px;
  padding: 40px 60px;
  border: 1px solid #f0f0f0;
}
.solution_box3 ol li:nth-child(3n) {
  margin-right: 0;
}
.solution_box3 ol li .icon {
  line-height: 0;
}
.solution_box3 ol li .text {
  padding-top: 30px;
}
.solution_box3 ol li .text h3 {
  color: #000000;
  font-size: 18px;
}
.solution_box3 ol li .text p {
  margin-top: 15px;
  color: #666666;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}
.core_box {
  padding: 80px 0 90px;
}
.core_box .left {
  float: left;
  width: 565px;
  padding-top: 60px;
}
.core_box .left i {
  display: block;
  width: 66px;
  height: 1px;
  background: #f98b34;
}
.core_box .left h3 {
  margin-top: 25px;
  color: #666666;
  font-size: 32px;
  font-weight: normal;
}
.core_box .left .t {
  margin-top: 30px;
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}
.core_box .right {
  float: right;
  width: 473px;
  position: relative;
}
.core_box .right .core_img_box {
  width: 473px;
  height: 550px;
  overflow: hidden;
}
.core_box_qh .slick-arrow{
	width: 29px;
    height: 52px;
    border: none;
    margin-top: -26px;
}
.core_box_qh .slick-prev{
	background: url(../images/case_prev.png) no-repeat center center;
	left: -70px;
}
.core_box_qh .slick-next{
	background: url(../images/case_next.png) no-repeat center center;
	right: -70px;
}
.core_box_qh .slick-prev:hover {
  background-image: url(../images/case_Hprev.png);
}
.core_box_qh .slick-next:hover {
  background-image: url(../images/case_Hnext.png);
}

.core_box .right .core_img_box .slick-arrow {
  width: 17px;
  height: 14px;
  border: none;
  margin-top: 0;
  top: auto;
  bottom: 22px;
}
.core_box .right .core_img_box .slick-prev {
  background: url(../images/core_left.png) no-repeat center center;
  left: 215px;
}
.core_box .right .core_img_box .slick-prev:hover {
  background-image: url(../images/core_Hleft.png);
}
.core_box .right .core_img_box .slick-next {
  background: url(../images/core_right.png) no-repeat center center;
  right: 46px;
}
.core_box .right .core_img_box .slick-next:hover {
  background-image: url(../images/core_Hright.png);
}
.core_box .right .num {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 310px;
  height: 72px;
  background: #fff;
  text-align: center;
  color: #cccccc;
  font-size: 14px;
  padding-top: 35px;
}
.core_box .right .num span {
  display: inline-block;
  margin: 0 10px;
}
.core_box .right .num .on {
  color: #000;
}
.core_box2 {
  background: url(../images/core_bg.jpg) no-repeat center bottom;
  padding: 80px 0 90px;
}
.core_box2 .title h3 {
  color: #fff;
}
.core_box2 .title p {
  color: #999999;
}
.core_box2 ol {
  margin-top: 50px;
  margin-left: -26px;
}
.core_box2 ol li {
  float: left;
  width: 376px;
  margin-left: 26px;
}
.core_box2 ol li .img {
  width: 376px;
  height: 300px;
  overflow: hidden;
}
.core_box2 ol li .text {
  padding-top: 18px;
}
.core_box2 ol li .text h3 {
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: normal;
}
.core_box2 ol li .text .t {
  color: #999999;
  font-size: 12px;
  line-height: 30px;
}
.core_box2 ol li .text .t span {
  float: left;
  width: 50%;
}
.core_box2 .more_btn {
  margin-top: 60px;
  text-align: center;
}
.core_box2 .more_btn a.more {
  text-transform: uppercase;
  color: #cf6c14;
  font-size: 14px;
  border-radius: 50px;
  min-width: 250px;
}
.core_box3 {
  padding: 80px 0 90px;
}
.core_box3 .Gcore_qh_box {
  position: relative;
}
.core_box3 .Gcore_qh {
  margin-top: 50px;
}
.core_box3 .Gcore_qh .box {
  height: 670px;
  position: relative;
}
.core_box3 .Gcore_qh .box .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 540px;
  height: 600px;
  background: #f9f9f9;
  padding: 70px 60px 0 60px;
}
.core_box3 .Gcore_qh .box .text span {
  color: #f0f0f0;
  font-size: 117px;
  font-weight: normal;
  font-family: arial;
}
.core_box3 .Gcore_qh .box .text h3 {
  color: #010101;
  font-size: 32px;
  font-weight: normal;
  margin-left: 32px;
  margin-top: -55px;
  background: url(../images/core_icon01.png) no-repeat left bottom;
  padding-bottom: 20px;
}
.core_box3 .Gcore_qh .box .text .t {
  padding-left: 32px;
  margin: 50px 0;
  color: #333333;
  font-size: 14px;
  line-height: 30px;
}
.core_box3 .Gcore_qh .box .text .t p {
  float: left;
  width: 50%;
}
.core_box3 .Gcore_qh .box .text a.more {
  margin-left: 32px;
}
.core_box3 .Gcore_qh .box .img {
  float: right;
  width: 957px;
  height: 580px;
  line-height: 0;
}
.core_box3 .Gcore_qh .slick-arrow {
  width: 17px;
  height: 14px;
  border: none;
  margin-top: 0;
  top: auto;
  bottom: 103px;
}
.core_box3 .Gcore_qh .slick-prev {
  background: url(../images/core_left.png) no-repeat center center;
  left: 92px;
}
.core_box3 .Gcore_qh .slick-prev:hover {
  background-image: url(../images/core_Hleft.png);
}
.core_box3 .Gcore_qh .slick-next {
  background: url(../images/core_right.png) no-repeat center center;
  left: 300px;
}
.core_box3 .Gcore_qh .slick-next:hover {
  background-image: url(../images/core_Hright.png);
}
.core_box3 .num {
  position: absolute;
  left: 0;
  bottom: 100px;
  width: 418px;
  text-align: center;
  color: #cccccc;
  font-size: 14px;
}
.core_box3 .num span {
  display: inline-block;
  margin: 0 10px;
}
.core_box3 .num .on {
  color: #000;
}
.core_box4 {
  background: url(../images/core_bg2.jpg) no-repeat center bottom;
  padding: 80px 0 90px;
}
.core_box4 .title h3 {
  color: #fff;
}
.core_box4 ol {
  margin-top: 50px;
}
.core_box4 ol li {
  float: left;
  width: 25%;
  text-align: center;
  padding: 140px 30px 0;
  height: 423px;
  transition: all .5s;
  position: relative;
}
.core_box4 ol li:last-child:before {
  display: none;
}
.core_box4 ol li:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -127px;
  width: 1px;
  height: 254px;
  background: #454647;
}
.core_box4 ol li .icon {
  line-height: 0;
  transition: all .5s;
}
.core_box4 ol li .text {
  padding-top: 40px;
  transition: all .5s;
}
.core_box4 ol li .text i {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  margin: 25px auto;
  display: none;
}
.core_box4 ol li .text h3 {
  color: #fff;
  font-size: 22px;
  font-weight: normal;
}
.core_box4 ol li .text p {
  display: none;
  margin-top: 20px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}
.core_box4 ol li:hover {
  background: #e87713;
}
.core_box4 ol li:hover .icon {
  transform: translateY(-40px);
}
.core_box4 ol li:hover .text {
  transform: translateY(-40px);
  padding-top: 0;
}
.core_box4 ol li:hover .text i {
  display: block;
}
.core_box4 ol li:hover .text p {
  display: block;
}
.core_box5 {
  padding: 90px 0 90px;
}
.core_box5 .box {
  position: relative;
  height: 670px;
}
.core_box5 .box .img {
  float: left;
  width: 957px;
  height: 580px;
  line-height: 0;
}
.core_box5 .box .text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 540px;
  height: 600px;
  background: #f9f9f9;
  padding: 150px 100px 0 100px;
}
.core_box5 .box .text span {
  color: #f0f0f0;
  font-size: 117px;
  font-weight: normal;
  font-family: arial;
}
.core_box5 .box .text h3 {
  color: #010101;
  font-size: 32px;
  font-weight: normal;
  background: url(../images/core_icon01.png) no-repeat left bottom;
  padding-bottom: 20px;
}
.core_box5 .box .text .t {
  margin: 50px 0;
  color: #333333;
  font-size: 14px;
  line-height: 30px;
}
.core_box6 .core_honor_box {
  background: url(../images/core_bg3.jpg) no-repeat center center;
  height: 620px;
  margin-top: 50px;
}
.core_box6 .core_honor_box .core_honor {
  position: relative;
}
.core_box6 .core_honor_box .core_honor .core_honor_qh {
  margin-top: 100px;
  float: right;
  width: 996px;
}
.core_box6 .core_honor_box .core_honor .core_honor_qh ol {
  margin-left: -15px;
}
.core_box6 .core_honor_box .core_honor .core_honor_qh ol li {
  float: left;
  width: 322px;
  height: 420px;
  text-align: center;
  background: #ffffff;
  margin-left: 15px;
  border-bottom: 4px solid #e87713;
}
.core_box6 .core_honor_box .core_honor .core_honor_qh ol li .img {
  overflow: hidden;
  line-height: 0;
  width: 322px;
  height: 200px;
  position: relative;
}
.core_box6 .core_honor_box .core_honor .core_honor_qh ol li .text {
  color: #333333;
  font-size: 18px;
  line-height: 28px;
  padding: 70px 45px 20px;
}
.core_box6 .core_honor_box .core_honor .core_honor_qh .slick-arrow {
  width: 60px;
  height: 60px;
  border: none;
  left: -184px;
  right: auto;
  margin-top: 0;
}
.core_box6 .core_honor_box .core_honor .core_honor_qh .slick-prev {
  top: 80px;
  background: url(../images/core_left2.png) no-repeat center center;
}
.core_box6 .core_honor_box .core_honor .core_honor_qh .slick-next {
  top: 158px;
  background: url(../images/core_right2.png) no-repeat center center;
}
.core_box6 .core_honor_box .core_honor .num {
  position: absolute;
  left: -10px;
  bottom: 10px;
  text-align: center;
  color: #666666;
  font-size: 14px;
}
.core_box6 .core_honor_box .core_honor .num span {
  display: inline-block;
  margin: 0 10px;
}
.core_box6 .core_honor_box .core_honor .num .on {
  color: #fff;
}
.about_box {
  padding: 80px 0 90px;
}
.about_box h3 {
  float: left;
  color: #e87713;
  font-size: 32px;
  margin-top: 50px;
  font-weight: normal;
  z-index: 2;
  position: relative;
}
.about_box h3:before {
  content: "";
  position: absolute;
  right: -94px;
  top: 20px;
  width: 66px;
  height: 3px;
  background: #f98b34;
}
.about_box .about_img_box {
  float: left;
  margin-left: 60px;
  width: 442px;
  z-index: 1;
  position: relative;
}
.about_box .about_img_box:before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -44px;
  width: 113px;
  height: 77px;
  background: url(../images/adorn_bg.png) no-repeat center center;
}
.about_box .about_img_box span {
  display: block;
  width: 442px;
  height: 550px;
}
.about_box .about_img_box .slick-arrow {
  width: 50px;
  height: 50px;
  border: none;
  top: auto;
  bottom: -22px;
  margin-top: 0;
}
.about_box .about_img_box .slick-prev {
  background: url(../images/about_left.jpg) no-repeat center center;
  right: 50px;
  left: auto;
}
.about_box .about_img_box .slick-next {
  right: 0;
  background: url(../images/about_right.jpg) no-repeat center center;
}
.about_box .about_text {
  float: right;
  width: 490px;
  padding-top: 55px;
}
.about_box .about_text ol li {
  float: left;
  text-align: left;
  border-right: 1px solid #e8e8e8;
  padding: 0 40px;
}
.about_box .about_text ol li:last-child {
  border-right: none;
  padding-right: 0;
}
.about_box .about_text ol li:first-child {
  padding-left: 0;
}
.about_box .about_text ol li .bt {
  color: #e87713;
  font-size: 30px;
  font-family: "Source Han Sans CN Regular";
}
.about_box .about_text ol li p {
  color: #666666;
  font-size: 14px;
}
.about_box .about_text .box {
  border-top: 1px solid #e8e8e8;
  margin-top: 30px;
  padding-top: 30px;
  color: #333333;
  font-size: 14px;
  line-height: 26px;
}
.about_box2 {
  background: url(../images/about_bg02.jpg) no-repeat center bottom;
  padding: 80px 0 90px;
}
.about_box2 .title h3 {
  color: #fff;
}
.about_box2 ol {
  margin-top: 50px;
  margin-left: -50px;
}
.about_box2 ol li {
  float: left;
  width: 360px;
  height: 370px;
  margin-left: 50px;
  border: 1px solid #586065;
  text-align: center;
  padding: 75px 40px 0;
  color: #fff;
}
.about_box2 ol li .icon {
  line-height: 0;
}
.about_box2 ol li .text {
  padding-top: 35px;
}
.about_box2 ol li .text h3 {
  font-size: 18px;
}
.about_box2 ol li .text p {
  margin-top: 20px;
  font-size: 12px;
  line-height: 22px;
}
.about_box2 ol li:hover {
  background: #e87713;
}
.about_box3 {
  padding: 80px 0;
}
.about_box3 .img_box {
  margin-top: 50px;
}
.about_box3 .img_box span.img01 {
  float: left;
  width: 720px;
  height: 470px;
}
.about_box3 .img_box span.img02 {
  float: right;
  width: 459px;
  height: 470px;
}
.about_box4 {
  background: none;
  padding-bottom: 80px;
  border-bottom: 1px solid #f3f3f3;
}
.about_box4 .box {
  margin-top: 50px;
}
.about_box4 .box .left {
  width: 352px;
  height: 516px;
  padding-top: 0;
}
.about_box4 .box .right {
  width: 828px;
}



.inputerror { /*border-bottom: 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;
}

.xz_ewm{
	position: relative;
}

.xz_ewm_img{
	position: absolute;
	    top: 44px;
    right: -16px;
display: none;
width: 120px;
height: 120px;

}

.xz_ewm:hover .xz_ewm_img{
	display: block;
}
.banner{
	position: relative;
}

.banner .text{
	position: absolute;

}
.banner .text_1{
	top: 32%;
		left: 15%;
	/* top: 245px;
	left:350px; */
	/* max-width: 452px; */
}
.banner .text_1 h3{
	font-size: 46px;
	color: #fff;
	font-weight: inherit;
}

.banner .text_1 p{
	font-size: 24px;
	color: #fff;
	margin: 50px 0 65px;
}

.banner .text_1 a{
	color: #fff;
	font-size: 14px;
	padding: 16px 72px;
	border: 1px solid #fff;
}
.solution_box2 .solution_case .slick-current .box .text_xz {
  opacity: 1;
}
.solution_box2 .solution_case .box .text_xz{
  opacity: 0;
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 360px;
  height: 209px;
  background: #fff;
  padding: 49px 30px 0 65px;
	}
	.solution_box2 .solution_case .box .text_xz i.bg {
	  display: block;
	  width: 30px;
	  height: 5px;
	  background: #e87713;
	}
	.solution_box2 .solution_case .box .text_xz h3 {
	  margin-top: 20px;
	  color: #333333;
	  font-size: 24px;
	  font-weight: normal;
	}
	.solution_box2 .solution_case .box .text_xz .t {
	  margin-top: 12px;
	  color: #666666;
	  font-size: 13px;
	  line-height: 24px;
	}
	.solution_box2 .solution_case .box .text_xz a {
	  margin-top: 19px;
	  display: inline-block;
	  color: #666666;
	  font-size: 12px;
	}
	
	
	/**/
/* .banner .box {
  position: relative;
}

.banner .img1 {
    position: absolute;
    right: 14%;
    top: 0;
    width: 32%;
    margin-left: 15.4%;
    margin-top: 18%;
    z-index: 9;
} */

/* .banner .img2 {
    width: 100%;
    overflow: hidden;
} 
 .banner img {
    width: 100%;
} 
.left_animate {
    transition: all 3s;
    opacity: 0;
    -webkit-transform: translateX(-40%);
    -moz-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    -o-transform: translateX(-40%);
    transform: translateX(-40%);
}

/* .right_animate {
    transition: all 4s;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
 
.banner_animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

 .banner_zoom{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
} */


.left_animate {
  transition: all 3s;
  opacity: 0;
  -webkit-transform: translateX(-40%);
  -moz-transform: translateX(-40%);
  -ms-transform: translateX(-40%);
  -o-transform: translateX(-40%);
  transform: translateX(-40%);
}
.banner_animate {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.right_animate{
    transition: all 4s;
    -webkit-transform: scale(1.2);
    -moz-transform:  scale(1.2);
    -ms-transform:  scale(1.2);
    -o-transform: scale(1.2);
    transform:  scale(1.2);
}
.banner_zoom{
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.xiaotong_yy h3,.xiaotong_yy p,.banner .text_1 a{
	text-shadow:2px 2px 5px #333333;
}
.ckxq{
	/* margin-top: 311px; */
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
  font-size: 14px;
	background: #fff;
  padding: 16px 72px;
	    display: inline-block;
  border: 1px solid #000;
	}
	.banner .text_1 h3,.banner .text_1 p,.banner .text_1 a{
		text-shadow: 2px 2px 5px #333333;
	}
	.links {
	  background: #171717;
	  padding: 20px 15px;
	}
	.links span {
	  display: inline-block;
	  color: rgba(255, 255, 255, 0.8);
	  font-weight: bold;
	  font-size: 14px;
	  float: left;
	  line-height: 24px;
	}
	.links .r {
	  margin-left: 10px;
	  margin-top: 2px;
	  float: left;
	  width: 1104px;
	}
	.links .r a {
	  margin-right: 30px;
	  line-height: 21px;
	  display: block;
	  float: left;
	  font-size: 13px;
	  color: rgba(255, 255, 255, 0.8);
	}
	.links .r a:hover {
	  color: #fff;
	  }
/*20-2-18t_搜索*/

		.ss_banner{
			height: 500px;
		}
		.t_sousuo{
			padding: 32px 30px;
			background: #fff;
			margin-bottom: 10px;
			margin-top: -80px;
			position: relative;
			z-index: 2;
		
		}
		.t_sousuo .t_sousuo_t .ssk{
			float: left;
			width: 85%;
			line-height: 61px;
			background: #f0f3f1;
			border: 1px solid #d9d9d9;
			font-size: 18px;
			font-family: 宋体;
			padding: 0 30px;
			border-right: none;
		}
		.t_sousuo .t_sousuo_t .dianji{
			float: left;
			width: 15%;
			background: #e87713;
			border: 1px solid #d9d9d9;
			border-left: 1px solid #d9d9d9;
			color: #fff;
			line-height: 59px;
			font-size: 18px;
			cursor: pointer;
			font-family: 宋体;
		
		}
		.t_sousuo .t_sousuo_t .dianji i{
			background: url(../images/ss_icon.png);
			width: 31px;
			height: 30px;
			display: inline-block;
			margin-right: 10px;
			position: relative;
			top: 9px;  
		}
		.news_box .news_list_2{
			margin-top: 0;
			width: 100%;
		}
		.news_box .news_list_2 ol li .text{
			    width: 494px;
		}
		.ss_left{
			    float: left;
			    width: 70%;
		}
		.news_box .ss_case{
			margin-top: 0;
			margin-top: 10px;
				padding-bottom: 0;
				width: 100%;
		}
		.news_box .ss_case .case_list{
			padding: 25px 0 50px;
		}
		.news_box .ss_case .case_list ul li{
			width: 31%;
			margin-left: 18px;
		}
		.news_box .ss_case .case_list ul li:last-child{
		
		}
		.news_box .ss_case .case_list ul li .img{
			width: auto;
		}
.search{

}		
.search .t_sousuo2{
	float: left;
	font-size: 14px;
	border: none;
	background: none;
	width: 84%;
	border: 1px solid #333333;
	color: #555555;
	line-height: 22px;
	padding: 0 10px;
}
.search .t_sousuo3{
	background: none;
	border: none;
	float: left;
	cursor: pointer;
	width: 16%;
	line-height: 22px;
}

.t_zhantai{
	background: url(../images/jktonglan2.jpg) center center/cover;
	padding: 60px 0;
	display: block;
}

.t_zhantai .title_b h3,.t_zhantai .title_b p{
	    color: #fff;
}

.t_zhantai .t_zhantai_lb{
	margin-top: 25px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center;
	padding-bottom: 60px;
}
.t_zhantai .w1180{
	text-align: center;
}
.t_zhantai .t_zhantai_lb video{
	width: 778px;
	    height: 580px;
}
.t_zhantai .swiper-pagination{
	    text-align: center;
	    display: inline-block;
}
.t_zhantai .swiper-pagination .swiper-pagination-bullet{
	    width: 20px;
	    height: 20px;
		border-radius: 25px;
	   margin: 0 5px;
	    background-color: #ffffff;
	    box-shadow: 0px 0px 10px 0px rgba(51, 51, 51, 0.8);
		opacity: 1;
		
}

.t_zhantai .swiper-pagination .swiper-pagination-bullet-active{
	background: #e87713;
}

.t_zhantai .swiper-button-prev{
	background: url(../images/zhantai_l.png);
	width: 30px;
	height: 53px;
	border: none;
	left: 120px;
}
.t_zhantai .swiper-button-next{
	background: url(../images/zhantai_r.png);
	width: 30px;
	height: 53px;
	border: none;
	right: 120px;
}
