/*
    ----------------------------------- 
            方法变量    
                     
    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;
}
body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1170px;
  width: 100%;
  margin-top: -13px;
}
/*img {
  max-width: 100%;*/
}
.page {
  text-align: right;
}
.page a {
  display: inline-block;
  border: 1px solid #999999;
  height: 36px;
  line-height: 34px;
  text-align: center;
  padding: 0 15px;
  color: #999;
}
.page a:hover,
.page a.cur {
  background: #c92520;
  border-color: #c92520;
  color: #fff;
}
.page span {
  padding: 0 10px;
  text-align: center;
}
.header-box {
  position: relative;
}
.header-box .header {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -585px;
  height: 100%;
  width: 1170px;
}
.header-box .header .logo {
  margin-top: 40px;
  display: block;
  height: 80px;
  line-height: 0;
}
.header-box .header .header_text {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
}
.header-box .header .header_text .nav {
  float: left;
}
.header-box .header .header_text .nav ul li {
  float: left;
  font-size: 16px;
  margin-right: 50px;
}
.header-box .header .header_text .nav ul li a {
  display: block;
  color: #fff;
  padding-bottom: 10px;
}
.header-box .header .header_text .nav ul li:hover a,
.header-box .header .header_text .nav ul li.cur a {
  border-bottom: 1px solid #fff;
}
.header-box .header .header_text .language {
  float: right;
  font-size: 16px;
}
.header-box .header .header_text .language a {
  display: block;
  float: left;
  color: #fff;
  margin-left: 50px;
  padding-bottom: 10px;
}
.header-box .header .header_text .language a.cur,
.header-box .header .header_text .language a:hover {
  border-bottom: 1px solid #fff;
}
.banner {
  width: 100%;
}
.banner img {
  width: 100%;
}
.banner .slick-dots {
  width: 10px;
  right: 5%;
  top: 50%;
  height: auto;
  bottom: auto;
}
.banner .slick-dots li {
  margin: 10px 0;
}
.banner .slick-dots li button {
  width: 15px;
  height: 15px;
  background: url(../images/ban_icon1.png) no-repeat center center / cover;
}
.banner .slick-dots li.slick-active button {
  background-image: url(../images/ban_icon2.png);
}
/**底部**/
.footer {
  padding-bottom: 20px;
}
.footer .footer_top {
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
}
.footer .footer_top .foot_left {
  width: 39%;
  float: left;
}
.footer .footer_top .foot_left h3 {
  color: #333333;
  font-size: 18px;
}
.footer .footer_top .foot_left .t {
  margin-top: 10px;
  color: #333333;
  font-size: 14px;
  line-height: 30px;
}
.footer .footer_top .foot_nav {
  margin-top: 40px;
  float: left;
  max-width: 500px;
  width: 100%;
}
.footer .footer_top .foot_nav ul li {
  float: left;
  width: 25%;
  font-size: 16px;
}
.footer .footer_top .foot_nav ul li a {
  color: #333333;
  display: block;
  margin-bottom: 20px;
}
.footer .footer_top .foot_ewm {
  margin-top: 10px;
  float: right;
  width: 120px;
  line-height: 0;
}
.footer .banquan {
  padding-top: 18px;
  color: #333333;
  font-size: 14px;
  line-height: 24px;
}
/**首页内容**/
.home_pro {
  background: #f6f6f7 url(../images/home_pro_bg.jpg) no-repeat center top / cover;
  padding: 70px 0 80px;
}
.home_pro .tit {
  color: #333333;
  text-align: center;
}
.home_pro .tit h2 {
  font-size: 30px;
}
.home_pro ol {
  margin-top: 35px;
  margin-bottom: 60px;
}
.home_pro ol li {
  float: left;
  width: 32%;
  background: #26213a;
  margin-right: 2%;
}
.home_pro ol li:last-child {
  margin-right: 0;
}
.home_pro ol li img {
  width: 100%;
}
.home_pro ol li .img {
  line-height: 0;
  overflow: hidden;
}
.home_pro ol li .text {
  padding: 40px 30px 30px;
}
.home_pro ol li .text h3 {
  color: #f4f7ff;
  font-size: 20px;
  line-height: 36px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.home_pro ol li .text .t {
  margin-top: 15px;
  color: #f4f7ff;
  font-size: 16px;
  line-height: 30px;
  height: 90px;
  overflow: hidden;
}
.home_pro ol li .text span {
  line-height: 36px;
  display: inline-block;
  margin-top: 35px;
  text-transform: uppercase;
  color: #a42227;
  font-size: 16px;
  padding-right: 55px;
  background: url(../images/more.png) no-repeat right center;
}
a.more_btn {
  display: block;
  width: 180px;
  height: 50px;
  border: 1px solid #c92520;
  margin: 0 auto;
  text-align: center;
  line-height: 48px;
  text-transform: uppercase;
  color: #da221f;
  font-size: 16px;
}
a.more_btn i {
  margin-left: 10px;
  display: inline-block;
  width: 26px;
  height: 9px;
  background: url(../images/more2.png) no-repeat center center / cover;
  position: relative;
  top: -2px;
}
.home_section {
  background: url(../images/bg1.jpg) no-repeat center center / cover;
  min-height: 325px;
  padding-top: 80px;
  margin-top: -50px;
}
.home_section ul li {
  float: left;
  padding-right: 60px;
  margin-right: 2%;
  width: 32%;
}
.home_section ul li:last-child {
  margin-right: 0;
}
.home_section ul li h3 {
  color: #db261b;
  font-size: 20px;
  font-weight: normal;
  line-height: 43px;
  display: inline-block;
  padding: 0 30px;
  border: 1px solid #db261b;
}
.home_section ul li h4 {
  margin-top: 18px;
  color: #ffffff;
  font-size: 20px;
  line-height: 36px;
  font-weight: normal;
  font-family: arial;
}
.home_section ul li .t {
  margin-top: 10px;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
}
.home_map {
  padding: 80px 0 70px;
}
.home_map .container {
  position: relative;
}
.home_map .bg {
  max-width: 595px;
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}
.home_map .text {
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: 175px;
  transform: translateX(-50%);
  max-width: 705px;
  width: 100%;
  text-align: center;
}
.home_map .text .t {
  color: #333333;
  font-size: 16px;
  line-height: 34px;
  margin-bottom: 25px;
}
.nybanner .img {
  line-height: 0;
  overflow: hidden;
}
.title h3 {
  color: #ffffff;
  font-size: 30px;
}
.title h3 span {
  font-weight: normal;
}
.about_box {
  background: url(../images/about_bg.jpg) no-repeat center top / cover;
  padding: 85px 0 125px;
}
.about_box .box {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 36px;
}
.about_box .box .text {
  width: 50%;
}
.about_box .box h4 {
  font-size: 18px;
}
.about_box2 {
  background: url(../images/about_bg2.jpg) no-repeat center center / cover;
  padding: 100px 0;
}
.about_box2 .about_qh {
  margin-top: 35px;
  padding-bottom: 50px;
}
.about_box2 .about_qh ol li {
  float: left;
  width: 33.33333333%;
  padding-right: 30px;
}
.about_box2 .about_qh ol li h4 {
  color: #db261b;
  font-size: 20px;
  line-height: 36px;
}
.about_box2 .about_qh ol li p {
  color: #ffffff;
  font-size: 14px;
  line-height: 36px;
}
.about_box2 .about_qh .slick-dots {
  bottom: 0;
}
.about_box2 .about_qh .slick-dots li {
  margin: 0 8px;
}
.about_box2 .about_qh .slick-dots li button {
  border-radius: 50%;
  background: none;
  border: 1px solid #fff;
}
.about_box2 .about_qh .slick-dots li.slick-active button {
  background: #fff;
}
.about_box2 .about_qh .slick-prev,
.about_box2 .about_qh .slick-next {
  width: 7px;
  height: 14px;
  border: none;
  top: auto;
  bottom: -3px;
  margin-top: 0;
}
.about_box2 .about_qh .slick-prev {
  background: url(../images/about_left.png) no-repeat center center / cover;
  left: 40%;
}
.about_box2 .about_qh .slick-next {
  background: url(../images/about_right.png) no-repeat center center / cover;
  right: 40%;
}
.about_box2 .about_qh2 {
  display: none;
  margin-top: 35px;
  padding-bottom: 50px;
}
.about_box2 .about_qh2 .text {
  display: block;
  width: 100%;
}
.about_box2 .about_qh2 .text h4 {
  color: #db261b;
  font-size: 20px;
  line-height: 36px;
}
.about_box2 .about_qh2 .text p {
  color: #ffffff;
  font-size: 14px;
  line-height: 36px;
}
.about_box2 .about_qh2 .slick-dots {
  bottom: 0;
}
.about_box2 .about_qh2 .slick-dots li {
  margin: 0 8px;
}
.about_box2 .about_qh2 .slick-dots li button {
  border-radius: 50%;
  background: none;
  border: 1px solid #fff;
}
.about_box2 .about_qh2 .slick-dots li.slick-active button {
  background: #fff;
}
.about_box2 .about_qh2 .slick-prev,
.about_box2 .about_qh2 .slick-next {
  width: 7px;
  height: 14px;
  border: none;
  top: auto;
  bottom: -3px;
  margin-top: 0;
}
.about_box2 .about_qh2 .slick-prev {
  background: url(../images/about_left.png) no-repeat center center / cover;
  left: 40%;
}
.about_box2 .about_qh2 .slick-next {
  background: url(../images/about_right.png) no-repeat center center / cover;
  right: 40%;
}
.about_box3 {
  background: url(../images/about_bg3.jpg) no-repeat center center / cover;
  padding: 90px 0 70px;
}
.about_box3 .text {
  width: 28%;
  float: left;
  text-align: right;
  color: #fff;
  padding-right: 15px;
	margin-left: -21px;
}
.about_box3 .text h3 {
  font-weight: normal;
  font-size: 26px;
  display: inline-block;
  border: 1px solid #ffffff;
  height: 50px;
  line-height: 48px;
  padding: 0 25px;
}
.about_box3 .text h4 {
  margin-top: 15px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 21px;
  font-weight: normal;
}
.about_box3 .text .t {
  font-size: 14px;
  line-height: 36px;
}
.about_box3 .img {
  float: right;
  width: 71%;
  line-height: 0;
}
.about_box4 {
  background: url(../images/about_bg4.jpg) no-repeat center center / cover;
  padding-top: 95px;
}
.about_box4 .top .left {
  padding-right: 100px;
  float: left;
  width: 50%;
  text-align: right;
  margin-top: -58px;
}
.about_box4 .top .left p {
  color: #333333;
  font-size: 24px;
}
.about_box4 .top .left i {
  display: inline-block;
  width: 50px;
  height: 1px;
  line-height: 1px;
  background: #333333;
  margin: 22px 0 12px;
}
.about_box4 .top .left h3 {
  color: #333333;
  font-size: 34px;
}
.about_box4 .top .text {
  padding-left: 25px;
  float: left;
  max-width: 460px;
  width: 100%;
  color: #666666;
  font-size: 14px;
  line-height: 28px;
}
.about_box4 .box {
  margin-top: 30px;
  position: relative;
}
.about_box4 .box ol li {
  float: left;
  width: 33.33333333%;
  line-height: 0;
  overflow: hidden;
}
.about_box4 .box ol li img {
  width: 100%;
}
.about_box4 .box ol li:first-child {
  margin-top: 10.8%;
}
.about_box4 .box ol li:first-child + li + li {
  margin-top: 5.7%;
}
.about_box4 .box .text {
  position: absolute;
  left: 205px;
  top: 160px;
  max-width: 285px;
  width: 100%;
  text-align: right;
}
.about_box4 .box .text h2 {
  display: inline-block;
  width: 60px;
  text-align: center;
  background: #fff;
  color: #333333;
  font-size: 26px;
  font-weight: normal;
  padding: 18px 15px;
}
.about_box4 .box .text h3 {
  margin-top: 25px;
  color: #fff;
  font-size: 24px;
  line-height: 36px;
}
.about_box4 .box .text p {
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
}
.about_box5 {
  padding: -1px 0 70px;
}
.about_box5 .box {
  background: url(../images/about_bg5.jpg) no-repeat center center / cover;
  min-height: 700px;
  padding: 90px 0;
  overflow: hidden;
}
.about_box5 .box .top {
  padding: 0 50px;
  color: #ffffff;
}
.about_box5 .box .top p {
  font-size: 20px;
}
.about_box5 .box .top h3 {
  margin-top: 5px;
  font-size: 24px;
  line-height: 30px;
}
.about_box5 .box .top h4 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 36px;
}
.about_box5 .box .text {
  margin-top: 40px;
}
.about_box5 .box .text .t {
  width: 50%;
  float: left;
  padding: 0 50px;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
}
.about_box5 .box .text .t h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.industry_box {
  padding: 60px 0;
}
.industry_box .tit {
  color: #333333;
  text-align: center;
}
.industry_box .tit h2 {
  font-size: 30px;
}
.industry_box ol {
  margin-top: 35px;
}
.industry_box ol li {
  float: left;
  width: 32%;
  background: #26213a;
  margin-bottom: 2%;
  margin-right: 2%;
}

.industry_box ol li:last-child {
  margin-right: 0;
}


.industry_box .xiaozhu li {
  float: left;
  width: 24.25%;
  background: #26213a;
  margin-bottom: 2%;
  margin-right: 1%;
}
/*
.industry_box ol li:nth-child(4n) {
  margin-right: 0;
}*/
.industry_box ol li img {
  width: 100%;
}
.industry_box ol li .img {
  line-height: 0;
  overflow: hidden;
}
.industry_box ol li .text {
  padding: 40px 30px 30px;
}
.industry_box ol li .text h3 {
  color: #f4f7ff;
  font-size: 20px;
  line-height: 36px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.industry_box ol li .text .t {
  margin-top: 15px;
  color: #f4f7ff;
  font-size: 16px;
  line-height: 30px;
  height: 90px;
  overflow: hidden;
}
.industry_box ol li .text span {
  line-height: 36px;
  display: inline-block;
  margin-top: 35px;
  text-transform: uppercase;
  color: #a42227;
  font-size: 16px;
  padding-right: 55px;
  background: url(../images/more.png) no-repeat right center;
}
.industry_box .leaflet {
  background: url(../images/industry_bg.png) no-repeat center center / cover;
  margin-top: 10px;
  color: #f4f7ff;
  padding: 55px 30px;
}
.industry_box .leaflet h3 {
  font-size: 24px;
  line-height: 36px;
}
.industry_box .leaflet .t {
  margin-top: 12px;
  font-size: 16px;
  line-height: 30px;
}
.industry_show {
  background: #25223a;
  padding: 80px 0 60px;
  color: #fff;
}
.industry_show .container {
  padding: 0 100px;
}
.industry_show h1 {
  font-size: 30px;
  line-height: 50px;
}
.industry_show .detail {
  margin-top: 20px;
  font-size: 16px;
  line-height: 36px;
	color: #b0b0b4;
}
.industry_show .text {
  margin-top: 35px;
  color: #ffffff;
  font-size: 20px;
  line-height: 48px;
  font-weight: bold;
}
.industry_show .industry_imgBox {
  margin-top: 60px;
  background: linear-gradient(to right, #25223a 0%, #25223a 21%, #1b192b 10%, #1b192b 100%);
  padding: 30px 0;
  overflow: hidden;
}
.industry_show .industry_imgBox .imgBox_show {
  max-width: 80.6%;
  float: right;
}
.industry_show .industry_imgBox .imgBox_show span {
  display: block;
  line-height: 0;
  margin-right: 40px;
}
.industry_show .industry_imgBox .imgBox_show .slick-prev,
.industry_show .industry_imgBox .imgBox_show .slick-next {
  width: 34px;
  height: 64px;
  border: none;
  margin-top: -32px;
}
.industry_show .industry_imgBox .imgBox_show .slick-prev {
  background: url(../images/industry_left.png) no-repeat center center / cover;
  left: 20px;
}
.industry_show .industry_imgBox .imgBox_show .slick-next {
  background: url(../images/industry_right.png) no-repeat center center / cover;
  right: 26%;
}
.news {
  background: url(../images/news_bg.jpg) repeat-x left top #25223a;
  padding: 75px 0;
}
.news .media {
  padding-bottom: 60px;
}
.news .media h3.tit {
  color: #ffffff;
  font-size: 30px;
}
.news .media ol {
  margin-top: 31px;
}
.news .media ol li {
  float: left;
  width: 23.5%;
  margin-right: 2%;
}
.news .media ol li:nth-child(4n) {
  margin-right: 0;
}
.news .media ol li img {
  width: 100%;
}
.news .media ol li .img {
  line-height: 0;
  overflow: hidden;
}
.news .media ol li .text {
  padding-top: 25px;
}
.news .media ol li .text h3 {
  color: #f4f7ff;
  font-size: 18px;
  font-weight: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news .media ol li .text span {
  line-height: 36px;
  display: inline-block;
  margin-top: 20px;
  color: #a42227;
  font-size: 16px;
  padding-right: 55px;
  background: url(../images/more.png) no-repeat right center;
}
.news .news_box {
  margin-top: 50px;
}
.media_contact {
  float: left;
  width: 275px;
  background: #1b192b;
  padding: 30px 20px;
  min-height: 300px;
}
.media_contact h3 {
  color: #f4f7ff;
  font-size: 20px;
  line-height: 36px;
}
.media_contact .text {
  margin-top: 25px;
}
.media_contact .text .yx {
  color: #fff;
  background: url(../images/yx.png) no-repeat left center;
  height: 36px;
  line-height: 36px;
  display: block;
  font-size: 18px;
  padding-left: 70px;
}
.media_contact .text .dh {
  margin-top: 30px;
  height: 45px;
  background: url(../images/dh.png) no-repeat left center;
  padding-left: 70px;
}
.media_contact .text .dh p {
  color: #f4f7ff;
  font-size: 16px;
}
.media_contact .text .dh span {
  display: block;
  margin-top: 5px;
  color: #f4f7ff;
  font-size: 18px;
  font-family: arial;
  font-weight: bold;
}
.news_list {
  float: right;
  width: 870px;
}
.news_list ol {
  margin-bottom: 40px;
}
.news_list ol li {
  float: left;
  width: 100%;
  background: #1b192b;
  padding: 22px;
  margin-bottom: 10px;
}
.news_list ol li .img {
  float: left;
  width: 204px;
  height: 125px;
  overflow: hidden;
}
.news_list ol li .text {
  float: left;
  width: 480px;
  margin-left: 25px;
  padding-top: 16px;
}
.news_list ol li .text h3 {
  color: #ffffff;
  font-size: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_list ol li .text p {
  margin-top: 12px;
  color: #eeeeee;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
}
.news_list ol li .text span {
  display: none;
}
.news_list ol li .right {
  float: right;
  text-align: right;
  padding-top: 16px;
}
.news_list ol li .right .data {
  color: #eeeeee;
  font-family: arial;
}
.news_list ol li .right .data p {
  font-size: 22px;
}
.news_list ol li .right .data span {
  font-size: 12px;
}
.news_list ol li .right span.more {
  margin-top: 20px;
  display: inline-block;
  width: 45px;
  height: 14px;
  background: url(../images/more3.png) no-repeat center center / cover;
}
.news_show {
  background: #25223a;
  padding-top: 80px;
}
.show_content {
  float: right;
  width: 870px;
}
.show_content h4.data {
  color: #db261b;
  font-size: 20px;
  font-family: arial;
  text-transform: uppercase;
}
.show_content h1 {
  margin-top: 12px;
  color: #ffffff;
  font-size: 24px;
}
.show_content .detail {
  margin-top: 25px;
  color: #b0b0b4;
  font-size: 16px;
  line-height: 30px;
}
.return a {
  display: inline-block;
  border: 1px solid #ffffff;
  height: 50px;
  line-height: 48px;
  color: #ffffff;
  padding: 0 40px;
  font-size: 16px;
}
.return a i {
  display: inline-block;
  width: 26px;
  height: 9px;
  background: url(../images/more4.png) no-repeat center center / cover;
  position: relative;
  top: -2px;
  margin-left: 10px;
}
.feedback {
  background: #25223a;
  padding: 80px 0;
}
.feedback .left {
  width: 49%;
}
.feedback .left ol li {
  float: left;
  margin-bottom: 5%;
  width: 47.5%;
}
.feedback .left ol li:first-child {
  width: 100%;
  margin-bottom: 8%;
}
.feedback .left ol li:nth-child(2n-1) {
  float: right;
}
.feedback .left ol li input {
  background: #514e61;
  border: 1px solid #464457;
  height: 50px;
  width: 100%;
  float: left;
  color: #fff;
  padding: 0 20px;
  line-height: 48px;
  font-size: 14px;
  -webkit-appearance: none;
}
.feedback .left ol li input::-webkit-input-placeholder {
  color: #cccccc;
}
.feedback .right {
  width: 49%;
}
.feedback .right textarea {
  float: left;
  width: 100%;
  background: #514e61;
  border: 1px solid #464457;
  height: 304px;
  font-family: "微软雅黑";
  font-size: 14px;
  color: #fff;
  padding: 0 20px;
  line-height: 48px;
  -webkit-appearance: none;
}
.feedback .right textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.feedback .right .btn {
  margin-top: 30px;
  float: right;
  width: 180px;
  height: 50px;
  background: #db261b;
  border: none;
  color: #fff;
  font-size: 18px;
}
.contact {
  background: #1b192b;
  padding: 80px 0 20px;
}
.contact h3.tit {
  color: #f4f7ff;
  font-size: 30px;
}
.contact ol {
  margin-top: 40px;
}
.contact ol li {
  float: left;
  width: 33.33333333%;
  margin-bottom: 60px;
  padding-right: 30px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
}
.contact ol li h4 {
  font-size: 18px;
}
.contact ol li .t {
  margin-top: 18px;
  font-size: 16px;
  line-height: 24px;
  height: 72px;
  overflow: hidden;
}
.growth_box .detail h4 {
  font-size: 18px;
}
.navbtn {
  position: absolute;
  right: 0;
  top: 0;
  width: 68px;
  height: 68px;
  line-height: 0;
  display: none;
}
.mobile_nav {
  width: 100%;
  height: 100%;
  position: fixed;
  right: auto;
  top: 0;
  bottom: 0;
  left: -100%;
  overflow: hidden;
  background: #26213a;
  z-index: 999;
}
.mobile_nav .guanbi {
  width: 68px;
  height: 68px;
  position: absolute;
  line-height: 0;
  right: 15px;
  top: 20px;
}
.mobile_nav ul {
  margin-top: 120px;
}
.mobile_nav ul li {
  float: left;
  width: 100%;
  padding: 0 15px;
  text-align: center;
  font-size: 18px;
  line-height: 40px;
}
.mobile_nav ul li a {
  color: #fff;
  display: block;
}
.mobile_nav .mobile_language {
  margin-top: 40px;
  text-align: center;
}
.mobile_nav .mobile_language a {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  margin: 0 20px;
}
.inputerror { border: 1px solid #f00 !important;}
@-webkit-keyframes inputerrors{
  0%{
    border-color: #f00;
	}
	100%{
    border-color: #464457;
	}
}
 
.inputerror{
	animation: inputerrors 0.5s 3 ease;
}
/**/
.t_pbzs{
	margin-top: 70px;
}

.t_pbzs .container{
	padding: 0 0;
}
.t_pbzs .container ul{
	margin-bottom: 200px;
}
.t_pbzs .container ul li{
	float: left;
	width: 19.6%;
	margin-right: 0.5%;
	line-height: 0;
	margin-bottom: 0.7%;
}

.t_pbzs .container ul li:nth-child(5n){
	margin-right: 0;
}

