﻿@charset "utf-8";
/* 此文件作为总入口，引入所有less文件，之后会编译为all.css */
/*CSS Document*/
/*init BEGIN*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
  outline: none;
}
/*清除内外边距*/
/*a:focus{-moz-outline-style:none;}!*IE不支持*!*/
a:focus {
  outline: none;
}
/*很多网站都会加的属性*/
body,
button,
input,
select,
textarea {
  /*for ie*/
  /*font:12px/1 Tahoma,Helvetica,Arial,"宋体",sans-serif;*/
  font: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
  /*用 ascii 字符表示，使得在任何编码下都无问题*/
}
/*设置默认字体*/
address,
cite,
dfn,
em,
var {
  font-style: normal;
}
/*将斜体扶正*/
code,
kbd,
pre,
samp,
tt {
  font-family: "Courier New", Courier, monospace;
}
/*统一等宽字体*/
small {
  font-size: 12px;
}
/*小于 12px 的中文很难阅读，让 small 正常化*/
ul,
ol {
  list-style: none;
}
/*重置列表元素*/
a {
  text-decoration: none;
}
/*重置文本格式元素*/
abbr[title],
acronym[title] {
  /*注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果*/
  border-bottom: 1px dotted;
  cursor: help;
}
q:before,
q:after {
  content: '';
}
/*重置表单元素*/
legend {
  color: #000;
}
/*for ie6*/
fieldset,
img {
  border: none;
}
/*img 搭车：让链接里的 img 无边框*/
/*注：optgroup 无法扶正*/
button,
input,
select,
textarea {
  font-size: 100%;
  /*使得表单元素在 ie 下能继承字体大小*/
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*重置表格元素*/
hr {
  border: none;
  height: 1px;
}
/*重置 hr*/
img {
  max-width: 100%;
  vertical-align: middle;
}
i {
  font-style: normal;
}
/*让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁*/
input {
  background: none;
  font-family: 微软雅黑;
  border: none;
}
/*重置input标签属性*/
textarea {
  background: none;
  font-family: 微软雅黑;
  border: none;
}
/*重置textarea标签属性*/
/*清除float BEGIN*/
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  *zoom: 1;
}
/*清除float END*/
/*init END*/
/*banner BEGIN*/
.hxq_banner {
  position: relative;
}
.hxq_banner .hxq_sub_banner_b {
  width: 100%;
}
.hxq_banner .hxq_sub_banner_b_ul {
  width: 100%;
}
.hxq_banner .hxq_sub_banner_b_ul > li {
  width: 100%;
}
.hxq_banner .hxq_sub_banner_b_ul > li img {
  width: 100%;
  vertical-align: middle;
}
.hxq_banner .hxq_sub_banner_h {
  position: absolute;
  bottom: 15px;
  left: 0;
  z-index: 100;
  width: 100%;
}
.hxq_banner .hxq_sub_banner_h_ul {
  font-size: 0;
  text-align: center;
}
.hxq_banner .hxq_sub_banner_h_ul > li {
  position: relative;
  display: inline-block;
  margin: 0 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.hxq_banner .hxq_sub_banner_h_ul > li > em {
  position: absolute;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.hxq_banner .hxq_sub_banner_h_ul > li > em > strong {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: currentColor;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  border: 16px dotted;
  border-width: 0rem;
}
.hxq_banner .hxq_sub_banner_h_ul > li.on > em > strong {
  color: red;
}
.hxq_sub_banner li {
  height: 449px;
}
.hxq_in_banner li {
  height: 449px;
}
/*banner END*/
/*上下篇 BEGIN*/
.sub_updown {
  clear: both;
  font-family: "Microsoft YaHei", serif;
  overflow: hidden;
  font-size: 12px;
  padding: 4px 0;
  width: 100%;
}
.sub_updown .sub_updown_up,
.sub_updown .sub_updown_down {
  clear: both;
  overflow: hidden;
  margin: 6px 0;
}
.sub_updown div a {
  color: #666;
}
.sub_updown a[href]:hover {
  color: #06f;
}
.sub_updown a[href] span {
  cursor: pointer;
}
/*上下篇 END*/
/*分页 BEGIN*/
.ql_fenye {
  clear: both;
  width: 100%;
  text-align: center;
  font-family: "微软雅黑", serif;
  font-size: 12px;
}
.paginator a {
  color: #444;
  padding: 2px 6px;
  border: 1px solid #ccc;
}
.paginator a,
.paginator span {
  margin: 0 3px;
}
.paginator a[href]:hover {
  color: #f00;
}
.paginator span {
  border: 1px solid #ccc !important;
  color: #f00 !important;
  padding: 2px 6px !important;
  font-weight: normal !important;
}
/*选中需要全部important一下*/
/*分页 END*/
/*此文件放置共用函数、变量等*/
/* 字体设置 */
/* 定位属性 */
/* 遮罩层定位 */
/* 截字符 */
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
/* 公用类 */
body {
  font-size: 12px;
  color: #333;
  line-height: 1.8;
  font-family: "微软雅黑";
  overflow-x: hidden;
  width: 100vw;
}
/* 清楚浮动 */
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
input {
  background: none;
  font-family: 微软雅黑;
  border: none;
}
textarea {
  background: none;
  font-family: 微软雅黑;
  border: none;
}
a[transition] {
  -webkit-transition: .4s 0s;
  -o-transition: .4s 0s;
  -moz-transition: .4s 0s;
  transition: .4s 0s;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
svg {
  vertical-align: middle;
}
.mCSB_1_scrollbar {
  z-index: 100;
}
.mCSB_scrollTools {
  margin: 0 !important;
  width: 4px !important;
}
@media screen and (max-width: 1200px) {
  .wrap {
    width: 100%;
    padding: 0 14px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.wow {
  visibility: hidden;
}
.scroll--view {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.footer {
  padding: 30px 0 40px 0;
  background: #303036;
  overflow: hidden;
}
.footer .menu-contact {
  *zoom: 1;
  zoom: 1;
}
.footer .menu-contact:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.footer .menu {
  float: left;
  *zoom: 1;
  zoom: 1;
}
.footer .menu:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.footer .menu dl {
  float: left;
  width: 205px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.footer .menu dl dt {
  padding: 10px 0;
}
.footer .menu dl dt a {
  display: inline-block;
  line-height: 24px;
  font-size: 16px;
  color: #fff;
}
.footer .menu dl dd {
  padding: 3px 0;
}
.footer .menu dl dd a {
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  color: #707070;
}
.footer .contact {
  padding: 10px 0 0 0;
  float: right;
  text-align: right;
}
.footer .contact .qq {
  display: inline-block;
  vertical-align: middle;
  width: 145px;
  line-height: 40px;
}
.footer .contact .qq a {
  display: block;
  height: 40px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border: 1px solid #f9f9f9;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
.footer .contact .tel {
  padding: 5px 0 0 0;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  line-height: 2;
}
.footer .contact .time {
  font-size: 14px;
  color: #696969;
  line-height: 24px;
}
.footer .copyright,
.footer .keyword {
  padding: 30px 0 10px 0;
  font-size: 12px;
  line-height: 24px;
  color: #999;
}
.footer .copyright a,
.footer .keyword a {
  color: #999;
}
    .footer .copyright img,
    .footer .keyword img {
        max-height: 24px;
        vertical-align: middle;
        margin-top: -3px;
    }
.footer .keyword {
  padding: 0;
}
.backtop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 200;
  display: none;
  opacity: .7;
}
.backtop a {
  display: block;
  width: 73px;
  height: 94px;
  overflow: hidden;
}
.backtop a img {
  display: block;
  width: 100%;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.pc .menu dl dt a[href]:hover {
  color: #da251c;
  -webkit-transform: translate(10px, 0);
     -moz-transform: translate(10px, 0);
      -ms-transform: translate(10px, 0);
       -o-transform: translate(10px, 0);
          transform: translate(10px, 0);
}
.pc .menu dl dd a[href]:hover {
  color: #fff;
  -webkit-transform: translate(10px, 0);
     -moz-transform: translate(10px, 0);
      -ms-transform: translate(10px, 0);
       -o-transform: translate(10px, 0);
          transform: translate(10px, 0);
}
.pc .contact .qq a[href]:hover {
  color: #da251c;
  border-color: #da251c;
}
.pc .copyright a:hover,
.pc .keyword a:hover {
  color: #fff;
}
.pc .backtop a:hover img {
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 1150px) {
  .footer .menu-contact .contact {
    float: none;
    text-align: left;
    padding-bottom: 20px;
  }
  .footer .menu-contact .menu {
    float: none;
  }
}
@media screen and (max-width: 900px) {
  .footer .menu-contact .menu dl {
    width: 25%;
    padding-right: 10px;
  }
  .backtop a {
    width: 40px;
    height: 51px;
  }
}
@media screen and (max-width: 500px) {
  .footer .menu-contact .menu{
      display:none;
  }
  .footer .menu-contact .menu dl {
    width: 50%;
    padding-right: 10px;
  }
  .footer .menu-contact .menu dl:nth-child(1),
  .footer .menu-contact .menu dl:nth-child(2) {
    margin-bottom: 20px;
  }
}
.banner.index {
  height: 778px;
}
.banner.index .item a {
  display: block;
  height: 778px;
  background: no-repeat center;
}
.banner.index .item a[href="javascript: void(0);"] {
  cursor: default;
}
.banner.index .item img {
  display: none;
}
.banner.index .owl-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
  z-index: 10;
}
.banner.index .owl-dots .owl-dot span {
  height: 3px;
  width: 70px;
  background: #fff;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.banner.index .owl-dots .owl-dot.active span {
  background: #da251c;
}
@media screen and (max-width: 1200px) {
  .banner.index {
    height: auto;
  }
  .banner.index .item a {
    height: auto;
    background: none;
  }
  .banner.index .item img {
    display: block;
  }
  .banner.index .owl-dots .owl-dot span {
    width: 30px;
    height: 2px;
  }
}
.index--modulenav {
  font-size: 0;
  *zoom: 1;
  zoom: 1;
}
.index--modulenav:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.index--modulenav h2 {
  position: relative;
  display: block;
  float: left;
  width: 22vw;
  text-align: center;
  background: #f9f9f9;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #fff;
  border-top: none;
  border-bottom: none;
}





@media screen and (max-width:1660px) {
    .index--modulenav h2 {
        width: 21.5vw;
    }
}
@media screen and (max-width:1440px) {
    .index--modulenav h2 {
        width: 21vw;
    }
}
@media screen and (max-width:1280px) {
    .index--modulenav h2 {
        width: 20vw;
    }
}
/*@media screen and (max-width:1000px) {
    .index--modulenav h2 {
        width: 18.5vw;
    }
}*/
.index--modulenav h2 > a {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
}
.index--modulenav h2:nth-child(1) {
  border-left: none;
}
.index--modulenav h2:nth-child(2) {
  border-right: none;
}
.index--modulenav h2 > img {
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 1;
}
.index--modulenav h2 > div {
  position: relative;
  z-index: 2;
  height: 110px;
  padding: 45px 0;
  display: inline-block;
  vertical-align: middle;
  *zoom: 1;
  zoom: 1;
}
.index--modulenav h2 > div:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.index--modulenav h2 .title {
  display: table;
  float: left;
  width: 210px;
  height: 100%;
  
  text-align: left;
  color: #061a33;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.index--modulenav h2 .title > div {
  display: table-cell;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}
.index--modulenav h2 .title span {
  display: block;
  font-size: 24px;
  line-height: 40px;
  font-weight:normal;
}
    .index--modulenav h2 .title em {
        display: block;
        font-size: 16px;
        line-height: 22px;
        font-weight: normal;
    }
.index--modulenav h2 .img {
  position: relative;

  height: 100%;
  overflow: hidden;
}
.index--modulenav h2 .img > img {
  height: 100%;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.index--modulenav h2 .img > img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(100%, 0);
     -moz-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
       -o-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.pc .index--modulenav h2:hover > div .title {
  color: #ae120a;
  -webkit-transform: translate(0, -10px);
     -moz-transform: translate(0, -10px);
      -ms-transform: translate(0, -10px);
       -o-transform: translate(0, -10px);
          transform: translate(0, -10px);
}
.pc .index--modulenav h2:hover > div .img > img:nth-child(1) {
  -webkit-transform: translate(-100%, 0);
     -moz-transform: translate(-100%, 0);
      -ms-transform: translate(-100%, 0);
       -o-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.pc .index--modulenav h2:hover > div .img > img:nth-child(2) {
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 1500px) {
  .index--modulenav h2 > img {
    width: 120px;
  }
  .index--modulenav h2 > div {
    padding: 30px 0;
    height: 80px;
  }
  .index--modulenav h2 > div .title {
    width: 175px;
  }
  .index--modulenav h2 > div .title span {
    font-size: 18px;
  }
  .index--modulenav h2 > div .title em {
    font-size: 13px;
  }
}
@media screen and (max-width: 1150px) {
  .index--modulenav h2:not(:last-child) {
    border-bottom: 2px solid #fff;
  }
}
@media screen and (max-width: 1024px) {
    .index--modulenav {
        padding: 0 15px;
        box-sizing: border-box;
    }
    .index--modulenav h2 {
        width: 47vw;
        margin: 0.5vw;
    }
}

.index--modulenav h2:not(:last-child) {
    border-bottom: 2px solid #fff;
}

}
@media screen and (max-width: 768px) {
    .index--modulenav {
        padding: 0 15px;
        box-sizing: border-box;
    }

        .index--modulenav h2 {
            width: 46.8vw;
            margin: 0.5vw;
        }

            .index--modulenav h2:not(:last-child) {
                border-bottom: 2px solid #fff;
            }
}
@media screen and (max-width: 600px) {
    .index--modulenav h2 {
        width: 100%;
        margin: 0;
    }
    .index--modulenav h2:not(:last-child) {
        border-bottom: 2px solid #fff;
    }
}
.index--news {
  position: relative;
  padding: 0 0 80px 0;
  overflow: hidden;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}
.index--news .head {
  padding: 70px 0 20px 0;
}
.index--news .head h2 {
  padding-left: 50px;
}
.index--news .head h2 a {
  font-size: 20px;
  color: #222;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.index--news .body {
  position: relative;
  *zoom: 1;
  zoom: 1;
}
.index--news .body:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.index--news .body .btn {
  position: absolute;
  top: 259px;
  left: 0;
}
.index--news .body .btn a {
  display: block;
  width: 32px;
  height: 26px;
  padding: 6px 0 0;
  line-height: 32px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background: #303036;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.index--news .body .btn a:first-child .icon {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.index--news .body .scroll {
  padding-left: 32px;
}
.index--news .body .scroll .owl-dots {
    margin-top: 50px !important;
}
.index--news .body .scroll .owl-dots .owl-dot:hover span {
    background: #ae120a;
}
.index--news .body .scroll .owl-dots .active span {
    background: #ae120a;
}
.index--news .cell {
    *zoom: 1;
    zoom: 1;
    overflow: hidden;
}
.index--news .cell:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.index--news .cell > .img {
  float: left;
  width: 520px;
}
.index--news .cell > .img .ih-item .img{
    width:100%;
    padding-bottom:62.1%;
    position:relative;
    overflow:hidden;
}
.index--news .cell > .img .ih-item .img img{
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
.index--news .cell > .img .ih-item {
  border: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
  width: auto;
  height: auto;
}
.index--news .cell > .img .ih-item .info h3 {
  margin: 4px auto 0;
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.index--news .cell > .text {
  margin: 74px 0 0 0;
  padding: 40px 60px 30px 0;
  overflow: hidden;
  background: #f9fafb;
  *zoom: 1;
  zoom: 1;
}
.index--news .cell > .text:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.index--news .cell > .text .time {
  padding: 0 15px 0 20px;
  width: 70px;
  text-align: center;
  float: left;
  color: #222;
  white-space: nowrap;
}
.index--news .cell > .text .time span {
  display: block;
  font-size: 48px;
  line-height: 54px;
  font-weight: bold;
}
.index--news .cell > .text .time em {
  display: block;
  font-size: 14px;
  line-height: 20px;
}
.index--news .cell > .text .time {
  -webkit-transform: translate(-30px, 0);
     -moz-transform: translate(-30px, 0);
      -ms-transform: translate(-30px, 0);
       -o-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
  opacity: 0;
  -webkit-transition: all .3s 1s;
  -o-transition: all .3s 1s;
  -moz-transition: all .3s 1s;
  transition: all .3s 1s;
}
.index--news .cell > .text .content {
  overflow: hidden;
}
.index--news .cell > .text .content h3,
.index--news .cell > .text .content > div,
.index--news .cell > .text .content > a {
  -webkit-transform: translate(0, 50px);
     -moz-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
       -o-transform: translate(0, 50px);
          transform: translate(0, 50px);
  opacity: 0;
  -webkit-transition: all .3s 1s;
  -o-transition: all .3s 1s;
  -moz-transition: all .3s 1s;
  transition: all .3s 1s;
}
.index--news .cell > .text .content h3 {
  position: relative;
  line-height: 56px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.index--news .cell > .text .content h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 40px;
  background: #222;
  content: '';
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.index--news .cell > .text .content h3 a {
  font-size: 20px;
  color: #222;
  font-weight: normal;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.index--news .cell > .text .content > div {
  padding: 15px 0 0 0;
  height: 56px;
  overflow: hidden;
  font-size: 14px;
  color: #666;
  line-height: 28px;
  -webkit-transition-delay: 1.1s;
     -moz-transition-delay: 1.1s;
       -o-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.index--news .cell > .text .content > a {
  margin: 26px 0 0 0;
  display: block;
  width: 165px;
  text-align: center;
  line-height: 36px;
  -webkit-transition-delay: 1.2s;
     -moz-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.index--news .cell > .text .content > a > span {
  display: block;
  color: #666;
  border: 1px solid #d8d8d8;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.index--news .active .cell .text .content h3,
.index--news .active .cell .text .content > div,
.index--news .active .cell .text .content > a {
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.index--news .active .cell .text .time {
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.pc .index--news .head h2 a:hover {
  color: #ae120a;
}
.pc .index--news .body .btn a:hover {
  background: #ae120a;
}
.pc .index--news .cell .text .content h3:hover:after {
  background: #ae120a;
  width: 80%;
}
.pc .index--news .cell .text .content h3:hover a {
  color: #ae120a;
}
.pc .index--news .cell .text .content > a:hover span {
  color: #ae120a;
  border-color: #ae120a;
}
@media screen and (max-width: 1100px) {
  .index--news .body .btn {
    display: none;
  }
  .index--news .body .scroll {
    padding: 0;
  }
  .index--news .cell .img {
    width: 450px;
  }
  .index--news .cell .text {
    padding: 30px 30px 20px 0;
  }
}
@media screen and (max-width: 900px) {
  .index--news {
    padding-bottom: 50px;
  }
  .index--news .head {
    padding-top: 40px;
  }
  .index--news .cell .img {
    width: 350px;
  }
  .index--news .cell .text {
    margin-top: 30px;
    padding: 20px 20px 10px 0;
  }
}
@media screen and (max-width: 700px) {
  .footer .copyright{
      padding-top:0;
  }
  .footer .menu-contact .contact{
      padding-bottom:10px;
  }
  .index--news {
    padding-bottom: 30px;
  }
  .index--news .head {
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .index--news .head h2 {
    padding-left: 0;
  }
  .index--news .cell .img {
    float: none;
    width: 100%;
  }
  .index--news .cell .text {
    float: none;
    margin-top: 0px;
    padding: 15px 20px 15px 0;
  }
  .index--news .body .scroll .owl-dots {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 500px) {
  .index--news .cell .text {
    float: none;
    margin-top: 0px;
    padding: 15px 10px 15px 0;
  }
  .index--news .cell .text .time {
    width: 50px;
    padding: 0 10px;
  }
  .index--news .cell .text .time span {
    padding: 3px 0 0 0;
    font-size: 34px;
    line-height: 40px;
  }
  .index--news .cell .text .time em {
    font-size: 12px;
  }
  .index--news .cell .text .content h3 {
    line-height: 46px;
  }
  .index--news .cell .text .content h3 a {
    font-size: 16px;
  }
  .index--news .cell .text .content > div {
    height: 44px;
    font-size: 13px;
    line-height: 22px;
  }
  .index--news .cell .text .content > a {
    margin: 10px 0 0 0;
    width: 120px;
    line-height: 30px;
  }
}
@media screen and (max-width: 360px) {
  .index--news .cell .text {
    float: none;
    margin-top: 0px;
    padding: 10px 10px;
  }
  .index--news .cell .text .time {
    display: none;
  }
  .index--news .cell .text .content h3 {
    line-height: 36px;
  }
  .index--news .cell .text .content > div {
    padding: 5px 0 0 0;
  }
}
.header.pc {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px 0;
  width: 100%;
  z-index: 200;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.header.pc .logo {
  float: left;
  padding: 4px 0 0 0;
}
.header.pc .logo a {
  display: block;
}
.header.pc .logo a .logo2 {
  display: none;
}
.header.pc .nav {
  margin-left: 20px;
  float: left;
}
.header.pc .nav > ul {
  *zoom: 1;
  zoom: 1;
}
.header.pc .nav > ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.header.pc .nav > ul > li {
  float: left;
}
.header.pc .nav > ul > li > a {
  position: relative;
  z-index: 20;
  display: block;
  padding: 0 10px;
  line-height: 34px;
  font-size: 15px;
  color: #fff;
  text-align: center;
}
.header.pc .nav > ul > li > a span {
  position: relative;
  padding: 0 10px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.header.pc .nav > ul > li > a span:after {
  position: absolute;
  right: 0;
  top: 14px;
  display: none;
  content: '';
  border: 7px solid transparent;
  border-top: 7px solid #fff;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.header.pc .nav > ul > li > a span:before {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 0;
    height: 2px;
    content: '';
    -webkit-transition: all .3s 0s;
    -o-transition: all .3s 0s;
    -moz-transition: all .3s 0s;
    transition: all .3s 0s;
    background: #da251c;
}
.header.pc .nav > ul > li > a:hover span {
  color: #da251c;
}
.header.pc .nav > ul > li > a:hover span:after {
  border-top-color: #da251c;
}
.header.pc .nav > ul > li > a:hover span:before {
  width: 100%;
}
.header.pc .nav > ul > li.selected > a span {
  color: #da251c;
}
.header.pc .nav > ul > li.selected > a span:after {
  border-top-color: #da251c;
}
.header.pc .nav > ul > li.selected > a span:before {
  width: 100%;
}
.header.pc .nav > ul > li.dropdown > a {
  position: relative;
}
.header.pc .nav > ul > li.dropdown > a:after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  content: '';
  display: none;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  -webkit-transform: translateY(50px);
     -moz-transform: translateY(50px);
      -ms-transform: translateY(50px);
       -o-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: all .4s 0s;
  -o-transition: all .4s 0s;
  -moz-transition: all .4s 0s;
  transition: all .4s 0s;
}
.header.pc .nav > ul > li.dropdown > a span {
  padding-right: 25px;
}
.header.pc .nav > ul > li.dropdown > a span:after {
  display: block;
}
.header.pc .nav > ul > li.dropdown > a span:before {
  display: none;
}
.header.pc .nav > ul > li.open > a:after {
  display: block;
}
.header.pc .nav > ul > li.open .nav--dropdown {
  display: block;
}
.header.pc .nav > ul > li.animate > a:after {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.header.pc .nav > ul > li.animate .nav--dropdown {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.header.pc .nav > ul > li.animate .nav--dropdown .l .nav2 ul li {
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.header.pc .btn {
  float: right;
  line-height: 34px;
  *zoom: 1;
  zoom: 1;
}
.header.pc .btn:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.header.pc .btn .cell {
  margin: 0 10px;
  float: left;
}
.header.pc .btn .cell > a {
  display: block;
  color: #fff;
  font-size: 26px;
}
.header.pc .btn .wx {
  position: relative;
}
.header.pc .btn .wx .qr--pop {
  position: absolute;
  top: 100%;
  left: 50%;
  opacity: 0;
  margin-left: -52px;
  width: 105px;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.header.pc .btn .wx .qr--pop:after {
  position: absolute;
  top: -12px;
  left: 50%;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  content: '';
  opacity: 0;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.header.pc .btn .wx .qr--pop img {
  display: none;
  margin: 7px 0 0 0;
  -webkit-box-shadow: 0 0 5px 0 #eee;
     -moz-box-shadow: 0 0 5px 0 #eee;
          box-shadow: 0 0 5px 0 #eee;
}
.header.pc .btn .wx:hover .qr--pop {
  display: block;
  opacity: 1;
}
.header.pc .btn .wx:hover .qr--pop:after {
  opacity: 1;
}
.header.pc .btn .wx:hover .qr--pop img {
  display: block;
}
.header.pc.fixed {
    position: fixed;
    top: 0;
    background: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}
.header.pc.fixed .logo > a .logo1 {
  display: none;
}
.header.pc.fixed .logo > a .logo2 {
  display: block;
}
.header.pc.fixed .nav > ul > li > a {
  color: #000;
}
.header.pc.fixed .nav > ul > li > a span:after {
  border-top-color: #000;
}
.header.pc.fixed .nav > ul > li > a:hover span {
  color: #da251c;
}
.header.pc.fixed .nav > ul > li > a:hover span:after {
  border-top-color: #da251c;
}
.header.pc.fixed .nav > ul > li > a:hover span:before {
  width: 100%;
  background: #da251c;
}
.header.pc.fixed .nav > ul > li.dropdown > a:after {
  bottom: -26px;
  border-bottom-color: #efefef;
}
.header.pc.fixed .nav > ul > li.selected > a span {
  color: #da251c;
}
.header.pc.fixed .nav > ul > li.selected > a span:after {
  border-top-color: #da251c;
}
.header.pc.fixed .nav > ul > li.selected > a span:before {
  width: 100%;
  background: #da251c;
}
.header.pc.fixed .btn .cell > a {
  color: #000;
}
.header.pc.fixed .nav--dropdown {
  top: 100%;
}
.header-wrap {
  max-width: 1680px;
  padding: 0 10px;
  margin: 0 auto;
  *zoom: 1;
  zoom: 1;
}
.header-wrap:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.navslide1 {
  -webkit-transform: translateY(50px);
     -moz-transform: translateY(50px);
      -ms-transform: translateY(50px);
       -o-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: all .4s 0s;
  -o-transition: all .4s 0s;
  -moz-transition: all .4s 0s;
  transition: all .4s 0s;
}
.navslide2 {
  -webkit-transform: translateY(0);
     -moz-transform: translateY(0);
      -ms-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.nav--dropdown {
  position: absolute;
  top: 71px;
  left: 0;
  z-index: 10;
  display: none;
  width: 100%;
  background: url(../images/header00.png) repeat-y center top;
  -webkit-transform: translateY(50px);
     -moz-transform: translateY(50px);
      -ms-transform: translateY(50px);
       -o-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: all .4s 0s;
  -o-transition: all .4s 0s;
  -moz-transition: all .4s 0s;
  transition: all .4s 0s;
}
.nav--dropdown > div {
  position: relative;
  padding: 40px 0;
  margin: 0 auto;
  width: 900px;
  *zoom: 1;
  zoom: 1;
}
.nav--dropdown > div:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.nav--dropdown .mask {
  position: absolute;
  top: -50px;
  height: 50px;
  width: 100%;
  padding: 0;
}
.nav--dropdown .l {
  float: left;
  *zoom: 1;
  zoom: 1;
}
.nav--dropdown .l:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.nav--dropdown .l .nav1 {
  float: left;
  width: 155px;
  padding: 7px 40px 0 20px;
  text-align: right;
  font-size: 18px;
  color: #da251c;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.nav--dropdown .l .nav2 {
  float: left;
  width: 265px;
}
.nav--dropdown .l .nav2 ul {
  padding: 0 20px;
  min-height: 220px;
  border-left: 1px solid #e6e6e6;
}
.nav--dropdown .l .nav2 ul li {
  padding: 10px 0;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
  opacity: 0;
  -webkit-transform: translate(100%, 0);
     -moz-transform: translate(100%, 0);
      -ms-transform: translate(100%, 0);
       -o-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.nav--dropdown .l .nav2 ul li a {
  position: relative;
  display: block;
  padding: 5px 0 5px 20px;
  font-size: 14px;
  color: #3a3a3a;
  line-height: 20px;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.nav--dropdown .l .nav2 ul li a:hover {
  color: #da251c;
  -webkit-transform: translate(10px, 0);
     -moz-transform: translate(10px, 0);
      -ms-transform: translate(10px, 0);
       -o-transform: translate(10px, 0);
          transform: translate(10px, 0);
}
.nav--dropdown .l .nav2 ul li a:after {
  position: absolute;
  top: 15px;
  left: 0;
  content: '';
  height: 1px;
  width: 10px;
  background: #909090;
}
.nav--dropdown .l .nav2 ul li.selected a {
  color: #da251c;
  -webkit-transform: translate(10px, 0);
     -moz-transform: translate(10px, 0);
      -ms-transform: translate(10px, 0);
       -o-transform: translate(10px, 0);
          transform: translate(10px, 0);
}
.nav--dropdown .r {
  float: right;
  width: 344px;
  text-align: center;
}
.nav--dropdown .r div{
    position:relative;
    overflow:hidden;
    width:100%;
    padding-bottom:62.5%;
}
.nav--dropdown .r div img{
    height:100%;
    width:100%;
    left:0;
    top:0;
    position:absolute;
}
.header.mo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  display: none;
  width: 100%;
  height: 60px;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.header.mo .logo {
  display: table;
  height: 100%;
  width: 100%;
}
.header.mo .logo .logo2 {
  display: none;
}
.header.mo .logo > div {
  display: table-cell;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  padding: 0 80px;
}
.header.mo .logo > div a {
  display: block;
}
.header.mo .logo > div a img {
  vertical-align: middle;
  max-height: 40px;
}
.header.mo .search {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.header.mo .search > a {
  display: block;
  padding: 5px;
  line-height: 24px;
  color: #fff;
  font-size: 20px;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.header.mo .nav {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -17px;
}
.header.mo .nav > a {
  display: block;
  padding: 5px;
  line-height: 24px;
  color: #fff;
  font-size: 20px;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.header.mo .nav.open .nav--pop {
  visibility: visible;
}
.nav--pop {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  -webkit-transform: translate3d(100%, 0, 0);
     -moz-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.nav--pop.animate {
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.nav--pop.animate .nav--list > ul > li {
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}
.nav--pop.animate .contact {
  opacity: 1;
}
.nav--pop .nav--pop_scroll {
  height: 100%;
  padding: 0 20px;
}
.nav--pop .nav--pop_content {
  max-width: 400px;
  margin: 0 auto;
}
.nav--pop .action {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 60px;
  background: #fff;
  text-align: right;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-box-shadow: 0 0 5px 0 #ddd;
     -moz-box-shadow: 0 0 5px 0 #ddd;
          box-shadow: 0 0 5px 0 #ddd;
}
.nav--pop .action a {
  margin: 15px 20px;
  display: inline-block;
  line-height: 30px;
  font-size: 20px;
  color: #1f2323;
}
.nav--pop .nav--list {
  padding: 70px 0 50px 0;
}
.nav--pop .nav--list > ul > li {
  border-bottom: 1px solid #eee;
  -webkit-transition: all .6s 0s;
  -o-transition: all .6s 0s;
  -moz-transition: all .6s 0s;
  transition: all .6s 0s;
  -webkit-transform: translate3d(100%, 0, 0);
     -moz-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  opacity: 0;
}
.nav--pop .nav--list > ul > li > a {
  position: relative;
  display: block;
  padding: 0 35px 0 15px;
  line-height: 60px;
  font-size: 16px;
  color: #222;
}
.nav--pop .nav--list > ul > li > a > span {
  position: absolute;
  top: 25px;
  right: 10px;
  z-index: 10;
  font-size: 14px;
  color: #666;
  -webkit-transform: rotate(-90deg);
     -moz-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.nav--pop .nav--list > ul > li.selected > a {
  color: #da251c;
}
.nav--pop .nav--list > ul > li.dropdown > a span {
  -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
}
.nav--pop .nav--list > ul > li.dropdown.open > a span {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav--pop .nav--list > ul > li.dropdown.open .mo-navdropdown {
  height: auto;
}
.nav--pop .nav--list > ul > li.dropdown.open .mo-navdropdown > div {
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.nav--pop .contact {
  padding: 0 0 20px 0;
  opacity: 0;
  -webkit-transition: all .6s 0s;
  -o-transition: all .6s 0s;
  -moz-transition: all .6s 0s;
  transition: all .6s 0s;
}
.header.mo.fixed {
  background: #fff;
  -webkit-box-shadow: 0 0 5px 0 #ddd;
     -moz-box-shadow: 0 0 5px 0 #ddd;
          box-shadow: 0 0 5px 0 #ddd;
}
.header.mo.fixed .search > a,
.header.mo.fixed .nav > a {
  color: #da251c;
}
.header.mo.fixed .logo1 {
  display: none;
}
.header.mo.fixed .logo2 {
  display: inline-block;
}
.mo-navdropdown {
  height: 0;
  overflow: hidden;
}
.mo-navdropdown > div {
  padding: 0 0 20px 25px;
  -webkit-transform: translate(0, -100px);
     -moz-transform: translate(0, -100px);
      -ms-transform: translate(0, -100px);
       -o-transform: translate(0, -100px);
          transform: translate(0, -100px);
  opacity: 0;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.mo-navdropdown .cell.selected a {
  color: #da251c;
}
.mo-navdropdown .cell a {
  padding: 10px 0;
  display: block;
  font-size: 14px;
  color: #222;
  line-height: 20px;
}
@media screen and (max-width: 1200px) {
  .header.pc {
    display: none;
  }
  .header.mo {
    display: block;
  }
}
.search--pop {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
  background: rgba(0, 0, 0, 0.4);
}
.search--pop.show {
  display: block;
}
.search--pop .search--box {
  padding: 22px 0 23px 0;
  background: #fff;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.search--pop .search--box .input {
  position: relative;
  overflow: hidden;
  padding: 5px 0;
  width: 0%;
  float: right;
  -webkit-transition: all .3s .2s;
  -o-transition: all .3s .2s;
  -moz-transition: all .3s .2s;
  transition: all .3s .2s;
}
.search--pop .search--box .input:after,
.search--pop .search--box .input:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  content: '';
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.search--pop .search--box .input:before {
  width: 0;
  z-index: 10;
  background: #da251c;
}
.search--pop .search--box .input input {
  display: block;
  width: 100%;
  height: 30px;
  font-size: 14px;
  color: #666;
  line-height: 30px;
}
.search--pop .search--box .input.focus:before {
  width: 100%;
}
.search--pop .search--box .btn {
  float: right;
  padding: 5px 0;
  opacity: 0;
  -webkit-transition: all .3s .2s;
  -o-transition: all .3s .2s;
  -moz-transition: all .3s .2s;
  transition: all .3s .2s;
}
.search--pop .search--box .btn a {
  display: inline-block;
  line-height: 30px;
  width: 30px;
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
  color: #666;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.search--pop .search--box .btn a:hover {
  color: #000;
}
.search--pop.animate {
  opacity: 1;
}
.search--pop.animate .search--box .input {
  width: 30%;
}
.search--pop.animate .search--box .btn {
  opacity: 1;
}
.subnav .owl-carousel .owl-stage {
    width: 101% !important;
}
@media screen and (max-width: 1200px) {
  .search--pop .search--box {
    padding: 10px 0;
  }
  .search--pop .search--box .input {
    float: none;
    width: auto;
    opacity: 0;
    -webkit-transition: all .3s 0s;
    -o-transition: all .3s 0s;
    -moz-transition: all .3s 0s;
    transition: all .3s 0s;
  }
  .search--pop .search--box .input:after {
    width: 0;
    -webkit-transition: all .3s .2s;
    -o-transition: all .3s .2s;
    -moz-transition: all .3s .2s;
    transition: all .3s .2s;
  }
  .search--pop.animate .search--box .input {
    opacity: 1;
    width: auto;
  }
  .search--pop.animate .search--box .input:after {
    width: 100%;
  }
}
.navShow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  height: 100vh;
}
.subwarp {
  padding: 86px 0 0 0;
  min-height: 700px;
}
.crumbs {
  padding-top: 10px;
  line-height: 40px;
  font-size: 0;
  background: #fcfcfd;
}
.crumbs a,
.crumbs span {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #666;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.crumbs em {
  position: relative;
  padding: 0 25px 0 10px;
  display: inline-block;
  vertical-align: middle;
}
.crumbs em:after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border: 5px solid transparent;
  border-left-color: #666;
  content: '';
}
.crumbs em:last-child {
  padding-right: 0;
}
.crumbs em:last-child:after {
  display: none;
}
.pc .crumbs a[href]:hover {
  color: #da251c;
  -webkit-transform: translate(0, -5px);
     -moz-transform: translate(0, -5px);
      -ms-transform: translate(0, -5px);
       -o-transform: translate(0, -5px);
          transform: translate(0, -5px);
}
.subtitle {
  padding: 30px 10px 50px;
  text-align: center;
  line-height: 50px;
  background: #fcfcfd;
}
.subtitle span {
  font-size: 40px;
  color: #da251c;
  font-weight: bold;
}
.subtitle em {
  padding-left: 10px;
  font-size: 20px;
  color: #5c5c5c;
  text-transform: uppercase;
  font-weight: bold;
}
.subnav ul {
  background: #303036;
  *zoom: 1;
  zoom: 1;
}
.subnav ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.subnav ul li {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background: #303036;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.subnav ul li:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  z-index: 10;
  content: '';
}
.subnav ul li a {
  display: block;
  padding: 0 10px;
  height: 68px;
  line-height: 68px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.subnav ul li.selected {
  background: #da251c;
}
.subnav .owl-item:last-child li:after {
  display: none;
}
.pc .subnav ul li:hover {
  background: #da251c;
}
.subcontent {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
  overflow: hidden;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.editor--content {
  font-size: 14px;
  color: #666;
  line-height: 2;
  *zoom: 1;
  zoom: 1;
}
.editor--content:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.editor--content img {
  max-width: 100%;
}
.editor--content .float-l {
  float: left;
  margin-right: 10px;
}
@-webkit-keyframes fadeInUp1 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-moz-keyframes fadeInUp1 {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 100px, 0);
         transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0);
         transform: translate3d(0, 0, 0);
  }
}
@-o-keyframes fadeInUp1 {
  0% {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp1 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
       -moz-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.fadeInUp1 {
  -webkit-animation-name: fadeInUp1;
     -moz-animation-name: fadeInUp1;
       -o-animation-name: fadeInUp1;
          animation-name: fadeInUp1;
}
.split {
  height: 1px;
  background: #e6e6e6;
}
@media screen and (max-width: 1200px) {
  .subwarp {
    padding-top: 60px;
    min-height: 400px;
  }
  .editor--content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 900px) {
  .subtitle {
    padding: 20px 10px;
    line-height: 40px;
  }
  .subtitle span {
    font-size: 30px;
  }
  .subtitle em {
    font-size: 16px;
  }
  .subnav ul li a {
    height: 50px;
    font-size: 16px;
    line-height: 50px;
  }
  .subcontent {
    padding: 30px 15px;
  }
  .subcontent .float-l {
    float: none;
    margin-right: 0;
  }
  .subcontent .float-l img {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .crumbs {
    line-height: 30px;
  }
  .crumbs span,
  .crumbs a {
    font-size: 12px;
  }
  .crumbs em {
    padding: 0 20px 0 5px;
  }
  .subtitle {
    padding: 15px 10px;
    line-height: 30px;
  }
  .subtitle span {
    font-size: 22px;
  }
  .subtitle em {
    font-size: 12px;
  }
  .subnav ul li a {
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
}
.honor--content {
  padding: 60px 0 0 0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../images/honor02.jpg) no-repeat center top;
}
.honor--list_wrap {
  width: 680px;
}
.honor--list {
  *zoom: 1;
  zoom: 1;
}
.honor--list:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.honor--list > li {
  float: left;
  width: 322px;
  height: 234px;
  background: url(../images/honor00.png) no-repeat center / 100% 100%;
  margin-bottom: 30px;
  margin-right: 5%;
}
.honor--list > li:nth-child(2n) {
  margin-right: 0;
}
.honor--list > li .ih-item {
  margin: 8.5% 0 10% 12.5%;
  width: 78%;
  height: auto;
  border: none;
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}
.honor--list > li .ih-item .info {
  background: #da251c !important;
}
.honor--list > li .ih-item .info h3 {
  margin-top: 20px !important;
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  background: #da251c !important;
}
.honor--list > li .ih-item .info p {
  color: #fff !important;
  font-style: normal !important;
}
.honor--list > li .ih-item .img{
    position:relative;
    overflow:hidden;
    width:100%;
    padding-bottom:70%;
}
.honor--list > li .ih-item .img img{
    height:100%;
    width:100%;
    left:0;
    top:0;
    position:absolute;
}
.honor--page {
  padding: 0 0 30px 0;
  text-align: center;
}
.honor--page a {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  overflow: hidden;
  line-height: 60px;
  font-size: 60px;
  color: #fff;
}
.honor--page a span {
  display: block;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.honor--page a span:nth-child(2) {
    color: #da251c;
}
.honor--page a:first-child svg {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pc .honor--page a:hover span:first-child {
  margin-top: -100%;
}
@media screen and (max-width: 740px) {
  .honor--content {
    background-position: left top;
    background-repeat: repeat-y;
  }
  .honor--list_wrap {
    width: 100%;
  }
  .honor--list li {
    width: 48%;
    height: auto;
    margin-right: 4%;
  }
  .honor--list li .ih-item .info h3 {
    margin-top: 10px !important;
  }
  .honor--list li .ih-item .info p {
    padding: 10px !important;
  }
}
@media screen and (max-width: 450px) {
  .honor--content {
    padding-top: 30px;
  }
  .honor--page a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 40px;
  }
}

@media all and (max-width: 768px) {

    .phoneshow {
        display:block!important;
    }
    .pcshow {
        display:none!important;
    }
}
.sitemap {
  padding: 0 0 100px 0;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  background: url(../images/sitemap00.png) no-repeat left top;
}
.sitemap .link {
  margin: 170px 0 100px 0;
  position: relative;
  *zoom: 1;
  zoom: 1;
  font-size: 0;
  text-align: center;
}
.sitemap .link:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.sitemap .link .link-split {
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  height: 1px;
  background: #da251c;
}
.sitemap .link dl {
  display: inline-block;
  vertical-align: top;
  width: 130px;
  margin: 0 10px;
}
.sitemap .link dl dt {
  margin-bottom: 20px;
}
.sitemap .link dl dt a {
  position: relative;
  display: block;
  line-height: 50px;
  font-size: 15px;
  color: #000;
}
.sitemap .link dl dt a:after {
    position: absolute;
    bottom: -5px;
    left: 50%;
    content: '';
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s 0s;
    -o-transition: all .3s 0s;
    -moz-transition: all .3s 0s;
    transition: all .3s 0s;
}
.sitemap .link dl dd {
  line-height: 20px;
}
.sitemap .link dl dd > span {
  display: block;
  padding: 5px 0;
}
.sitemap .link dl a {
  font-size: 14px;
  color: #707070;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.sitemap .contact {
  margin: 0 auto;
  width: 560px;
  background: url(../images/sitemap01.png) no-repeat center bottom / 100% auto;
  text-align: center;
}
.sitemap .contact > div {
  padding: 0 0 70px 0;
  *zoom: 1;
  zoom: 1;
  overflow: hidden;
  line-height: 50px;
  display: inline-block;
  color: #da251c;
}
.sitemap .contact > div:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.sitemap .contact > div > strong {
  margin: 12px 10px 0 0;
  float: left;
}
.sitemap .contact > div > strong img {
  display: block;
}
.sitemap .contact > div > em {
  float: left;
  font-size: 18px;
}
.sitemap .contact > div > span {
  float: left;
  font-size: 36px;
}
.pc .link dl dt a:hover {
  color: #da251c;
}
.pc .link dl dt a:hover:after {
  background: #da251c;
}
.pc .link dl dd a:hover {
  color: #da251c;
}
@media screen and (max-width: 1200px) {
  .sitemap {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sitemap .link .link-split {
    display: none;
  }
  .sitemap .link dl {
    display: block;
    padding: 10px 0;
    width: 100%;
    margin: 0;
    *zoom: 1;
    zoom: 1;
  }
  .sitemap .link dl:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .sitemap .link dl dt {
    float: left;
    margin: 0 20px 0 0;
    padding: 5px 0;
  }
  .sitemap .link dl dt a {
    display: inline;
    line-height: 20px;
  }
  .sitemap .link dl dt a:after {
    display: none;
  }
  .sitemap .link dl dd {
    overflow: hidden;
    *zoom: 1;
    zoom: 1;
  }
  .sitemap .link dl dd:after {
    content: "\0020";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .sitemap .link dl dd > span {
    float: left;
    line-height: 20px;
    margin-right: 15px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 650px) {
  .sitemap .contact {
    width: 100%;
  }
  .sitemap .contact > div {
    padding: 0 0 50px 0;
  }
}
.message--list {
  min-height: 400px;
}
.message--list ul li {
  padding: 0 0 40px 0;
}
.message--list .message,
.message--list .apply {
  *zoom: 1;
  zoom: 1;
}
.message--list .message:after,
.message--list .apply:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.message--list .message .avatar img,
.message--list .apply .avatar img {
  display: block;
}
.message--list .message .content,
.message--list .apply .content {
  font-size: 14px;
  color: #666;
  line-height: 24px;
}
.message--list .message .avatar {
  float: left;
}
.message--list .message .content {
  position: relative;
  margin-right: 80px;
  margin-left: 60px;
  padding: 15px 140px 15px 15px;
  border: 1px solid #c9c9c9;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
.message--list .message .content > .icon {
  position: absolute;
  top: 20px;
  left: -13px;
}
.message--list .message .content > .icon img {
  display: block;
}
.message--list .message .content .time {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 14px;
  color: #666;
}
.message--list .apply {
  padding: 40px 0 0 0;
  text-align: right;
}
.message--list .apply .avatar {
  float: right;
}
.message--list .apply .apply-content {
  position: relative;
  margin-right: 80px;
}
.message--list .apply .apply-content .icon {
  position: absolute;
  top: 20px;
  right: -11px;
}
.message--list .apply .apply-content .icon img {
  display: block;
}
.message--list .apply .content {
  display: inline-block;
  padding: 15px;
  text-align: right;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-shadow: 0 0 7px 0 rgba(218, 37, 28, 0.3);
     -moz-box-shadow: 0 0 7px 0 rgba(218, 37, 28, 0.3);
          box-shadow: 0 0 7px 0 rgba(218, 37, 28, 0.3);
}
@media screen and (max-width: 550px) {
  .message--list ul li {
    padding: 0 0 40px 0;
  }
  .message--list .message .content {
    margin-right: 0px;
    margin-left: 60px;
    padding: 10px 10px 40px 10px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
  }
  .message--list .message .content .time {
    top: auto;
    bottom: 10px;
    right: auto;
    left: 10px;
  }
  .message--list .apply {
    padding: 20px 0 0 0;
    text-align: right;
  }
  .message--list .apply .apply-content {
    margin-right: 60px;
  }
  .message--list .apply .apply-content .icon {
    position: absolute;
    top: 20px;
    right: -11px;
  }
  .message--list .apply .apply-content .icon img {
    display: block;
  }
  .message--list .apply .content {
    display: inline-block;
    padding: 10px;
    text-align: right;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    -webkit-box-shadow: 0 0 7px 0 rgba(218, 37, 28, 0.3);
       -moz-box-shadow: 0 0 7px 0 rgba(218, 37, 28, 0.3);
            box-shadow: 0 0 7px 0 rgba(218, 37, 28, 0.3);
  }
}
.pager {
  text-align: center;
  font-size: 0;
}
.pager a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  margin: 0 2px;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
  color: #717171;
  background: #f0f0f3;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.pager a.selected {
  color: #fff;
  background: #da251c;
}
.pc .pager a[href]:hover {
  color: #fff;
  background: #da251c;
}
.joinus--contact {
  padding: 40px 0 0 0;
  text-align: center;
}
.joinus--contact .cell {
  display: inline-block;
  *zoom: 1;
  zoom: 1;
  margin: 0 20px;
  line-height: 50px;
}
.joinus--contact .cell:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.joinus--contact .cell img {
  margin-right: 20px;
  vertical-align: middle;
}
.joinus--contact .cell span {
  vertical-align: middle;
  font-size: 16px;
  color: #6f6f6f;
}
.joinus--search {
  display: table;
  width: 700px;
  margin: 0 auto;
  height: 64px;
  overflow: hidden;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}
.joinus--search a,
.joinus--search span {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.joinus--search a {
  width: 80px;
  color: #fff;
  font-size: 20px;
  background: #da251c;
}
.joinus--search span {
  padding: 0 30px;
  background: #fcfcfd;
  border: 1px solid #ececec;
  -webkit-border-radius: 5px 0 0 5px;
     -moz-border-radius: 5px 0 0 5px;
          border-radius: 5px 0 0 5px;
}
.joinus--search span input {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  color: #2d2d2d;
}
.job--list {
  padding: 50px 0 30px 0;
  min-height: 300px;
}
.job--list .body,
.job--list .head {
  color: #fff;
  background: #303036;
}
.job--list .body .table,
.job--list .head .table {
  display: table;
  width: 100%;
  height: 60px;
  font-size: 16px;
}
.job--list .body .table > div,
.job--list .head .table > div {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  line-height: 20px;
}
.job--list .body {
  background: none;
  height: 71px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: jobIn 1s 1s both;
     -moz-animation: jobIn 1s 1s both;
       -o-animation: jobIn 1s 1s both;
          animation: jobIn 1s 1s both;
}
.job--list .body .table {
  position: relative;
  z-index: 10;
  color: #000;
  height: 70px;
  border-bottom: 1px solid #eeeeee;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
  cursor: pointer;
  background: #fff;
}
.job--list .body .cell2 {
  color: #da251c;
  font-weight: bold;
}
.job--list .body .cell5 {
  background: url(../images/icon04.png) no-repeat center;
}
.job--list .body .dropdown {
  padding: 20px 40px;
  overflow: hidden;
  border-bottom: 1px solid #eeeeee;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
  -webkit-transform: translate(0, -100px);
     -moz-transform: translate(0, -100px);
      -ms-transform: translate(0, -100px);
       -o-transform: translate(0, -100px);
          transform: translate(0, -100px);
  *zoom: 1;
  zoom: 1;
}
.job--list .body .dropdown:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.job--list .body .dropdown .tag {
  float: right;
  margin-left: 20px;
  max-width: 400px;
  font-size: 0;
  text-align: right;
}
.job--list .body .dropdown .tag .cell {
  display: inline-block;
  margin-left: 10px;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  color: #7babcc;
  min-width: 40px;
  background: #eef7fd;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  padding: 5px 10px;
}
.job--list .body .dropdown .content {
  overflow: hidden;
  font-size: 14px;
  line-height: 2;
  color: #2d2d2d;
}
.job--list .body .dropdown .content .upload {
  margin: 20px 0 0 0;
  position: relative;
}
.job--list .body .dropdown .content .upload label {
  display: block;
  width: 130px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  background: #da251c;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.job--list .body .dropdown .content .upload input {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.job--list .body.open {
  height: auto;
}
.job--list .body.open .dropdown {
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.job--list .body.open .cell5 {
  background: url(../images/icon05.png) no-repeat center;
}
.job--list .cell1 {
  width: 25%;
}
.job--list .cell2 {
  width: 20%;
}
.job--list .cell3 {
  width: 30%;
}
.job--list .cell4 {
  width: 20%;
}
.job--list .cell5 {
  width: 5%;
}
@-webkit-keyframes jobIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-moz-keyframes jobIn {
  0% {
    opacity: 0;
    -moz-transform: translate(100%, 0);
         transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: translate(0, 0);
         transform: translate(0, 0);
  }
}
@-o-keyframes jobIn {
  0% {
    opacity: 0;
    -o-transform: translate(100%, 0);
       transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    -o-transform: translate(0, 0);
       transform: translate(0, 0);
  }
}
@keyframes jobIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(100%, 0);
       -moz-transform: translate(100%, 0);
         -o-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.pc .job--list .body .table:hover {
  background: #eee;
}
.pc .job--list .body .dropdown .content .upload label:hover {
  text-indent: 10px;
}
@media screen and (max-width: 1200px) {
  .joinus--contact {
    text-align: center;
  }
  .joinus--contact > div {
    display: inline-block;
    text-align: left;
  }
  .joinus--contact .cell {
    display: block;
    margin: 0;
  }
}
@media screen and (max-width: 770px) {
  .joinus--search {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .job--list .table {
    height: 50px !important;
    font-size: 14px !important;
  }
  .job--list .cell1 {
    padding: 0 10px;
    width: 45%;
    text-align: left !important;
  }
  .job--list .cell2 {
    width: 30%;
  }
  .job--list .cell3,
  .job--list .cell4 {
    display: none !important;
  }
  .job--list .body {
    height: 51px;
  }
  .job--list .body .dropdown {
    padding: 10px;
  }
  .job--list .body .dropdown .tag {
    padding: 0 0 10px 0;
    float: none;
    margin-left: 0;
    text-align: left;
  }
  .job--list .body .dropdown .tag .cell {
    margin-left: 0;
    margin-right: 10px;
    line-height: 20px;
  }
}
@media screen and (max-width: 500px) {
  .joinus--search {
    height: 44px;
  }
  .joinus--search a {
    width: 50px;
  }
  .joinus--search span {
    padding: 0 15px;
  }
  .joinus--contact {
    padding: 20px 0 0 0;
    text-align: left;
  }
  .joinus--contact .cell {
    line-height: 30px;
  }
  .joinus--contact .cell img {
    display: none;
  }
  .joinus--contact .cell span {
    font-size: 14px !important;
  }
  .job--list {
    padding-top: 20px;
  }
}
.news--container {
  padding: 40px 0 30px 0;
}
.news--list {
  padding: 0 0 30px 0;
}
.news--list li {
  position: relative;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
  padding: 25px 0;
}
.news--list li > div {
  position: relative;
  *zoom: 1;
  zoom: 1;
}
.news--list li > div:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.news--list li > div > a {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
}
.news--list li .img {
  float: left;
  max-width: 290px;
  overflow: hidden;
}
.news--list li .img img {
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.news--list li .time {
  position: relative;
  float: right;
  width: 180px;
  height: 180px;
  text-align: right;
  border-left: 1px solid #cecece;
}
.news--list li .time:after {
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 0%;
  content: '';
  background: #da251c;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.news--list li .time span {
  display: block;
  font-size: 48px;
  color: #222222;
  line-height: 60px;
  font-weight: bold;
}
.news--list li .time em {
  display: block;
  font-size: 14px;
  color: #222222;
  line-height: 20px;
  text-transform: uppercase;
}
.news--list li .time strong {
  display: block;
  padding: 40px 100px 0 0;
  font-size: 20px;
  color: #666;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.news--list li .content {
  padding: 0 90px 0 30px;
  overflow: hidden;
}
.news--list li .content h3 {
  position: relative;
  padding: 0 0 10px 0;
  line-height: 34px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.news--list li .content h3:after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 40px;
  background: #222222;
  content: '';
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.news--list li .content h3 a {
  font-size: 20px;
  color: #222;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.news--list li .content > div {
  padding: 20px 0 0 0;
  margin-bottom: 10px;
  height: 56px;
  overflow: hidden;
  font-size: 14px;
  color: #666;
  line-height: 28px;
}
.news--list li .content > strong {
  display: block;
  font-weight: normal;
}
.news--list li .content > strong > span,
.news--list li .content > strong > em {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 28px;
  color: #666666;
}
.news--list li .content > strong > em {
  display: none;
}
.pc .news--list li:hover {
  background: #f5f5f5;
}
.pc .news--list li:hover .img img {
  -webkit-transform: scale(1.2);
     -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
       -o-transform: scale(1.2);
          transform: scale(1.2);
}
.pc .news--list li:hover .time:after {
  height: 100%;
}
.pc .news--list li:hover .time strong {
  padding-left: 100px;
}
.pc .news--list li:hover .content h3:after {
  width: 80%;
  background: #da251c;
}
.pc .news--list li:hover .content h3 a {
  color: #da251c;
}
.news--content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
  min-height: 200px;
}
.news--recommend {
  margin: 0 auto;
  max-width: 1200px;
}
.news--recommend .head {
  padding: 0 0 5px 0;
  font-size: 24px;
  line-height: 40px;
  color: #da251c;
  font-weight: bold;
  border-bottom: 1px dashed #e1e1e1;
}
.news--recommend .body {
  padding: 0 0 30px 0;
}
.news--recommend .body ul {
  *zoom: 1;
  zoom: 1;
}
.news--recommend .body ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.news--recommend .body ul li {
  position: relative;
  padding: 0 0 25px 0;
  width: 30%;
  margin: 30px 5% 0 0;
  float: left;
  border-bottom: 1px solid #d9d9d9;
}
.news--recommend .body ul li:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  content: '';
  background: #da251c;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.news--recommend .body ul li:nth-child(3n) {
  margin-right: 0;
}
.news--recommend .body ul li h3 {
  position: relative;
  padding: 0 0 0 35px;
  height: 48px;
  overflow: hidden;
  font-weight: normal;
  line-height: 24px;
}
.news--recommend .body ul li h3:after {
  position: absolute;
  left: 10px;
  top: 11px;
  content: '';
  height: 2px;
  width: 10px;
  background: #898989;
}
.news--recommend .body ul li h3 a {
  font-size: 14px;
  color: #777;
  -webkit-transition: all 0.3s 0s;
  -o-transition: all 0.3s 0s;
  -moz-transition: all 0.3s 0s;
  transition: all 0.3s 0s;
}
.news--recommend .body ul li > div {
  padding: 5px 0 0 35px;
  font-size: 12px;
  color: #a0a0a0;
  font-weight: bold;
}
.news--recommend .body ul li > div .icon {
  font-size: 20px;
  vertical-align: -6px;
}
.pc .news--recommend .body ul li:hover:after {
  width: 100%;
}
.pc .news--recommend .body ul li:hover h3:after {
  background: #da251c;
}
.pc .news--recommend .body ul li:hover h3 a {
  color: #da251c;
}
@media screen and (max-width: 1200px) {
  .news--list li .time {
    display: none;
  }
  .news--list li .content {
    padding-right: 0;
  }
  .news--list li .content > strong > em {
    display: block;
  }
  .news--list li .content > div {
    padding-top: 15px;
    margin-bottom: 0;
  }
  .news--content {
    padding: 20px 15px;
  }
  .news--recommend .head {
    padding: 0 15px 5px 15px;
  }
  .news--recommend .body {
    padding: 0 15px 20px 15px;
  }
}
@media screen and (max-width: 700px) {
  .news--list li .img {
    width: 200px;
  }
  .news--list li .content {
    padding-left: 10px;
    padding-right: 0;
  }
  .news--list li .content > strong > em {
    padding-left: 10px;
    display: inline;
  }
  .news--list li .content > strong > span {
    display: inline;
  }
  .news--list li .content h3 {
    padding-bottom: 5px;
    line-height: 24px;
  }
  .news--list li .content h3 a {
    font-size: 16px;
  }
  .news--list li .content > div {
    height: 40px;
    line-height: 20px;
  }
  .news--recommend .body ul li {
    width: 100%;
    margin-right: 0 !important;
  }
  .news--recommend .body ul li:nth-child(3n) {
    margin-right: 4%;
  }
  .news--recommend .body ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .news--list li .img {
    display: none;
  }
  .news--list li .content {
    padding-right: 0;
  }
  .news--list li .content > strong > em {
    padding-left: 10px;
    display: inline;
  }
  .news--list li .content > strong > span {
    display: inline;
  }
  .news--list li .content h3 {
    padding-bottom: 5px;
    line-height: 24px;
  }
  .news--list li .content h3 a {
    font-size: 16px;
  }
  .news--list li .content > div {
    height: 40px;
    line-height: 20px;
  }
  .news--recommend .body ul li {
    width: 100%;
    margin-right: 0;
  }
  .news--recommend .body ul li:nth-child(3n) {
    margin-right: 0;
  }
  .news--recommend .body ul li:nth-child(2n) {
    margin-right: 0;
  }
}
.bdfx1 {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 1200px;
}
.bdfx1 > div {
  position: absolute;
  top: 270px;
  left: -60px;
}
#bdfx1 a {
  display: block;
  float: none;
  margin: 4px 0;
  padding: 0;
  width: 34px;
  height: 34px;
}
#bdfx1 .bds_weixin {
  background: url(../images/fx00.png) no-repeat center;
}
#bdfx1 .bds_tsina {
  background: url(../images/fx01.png) no-repeat center;
}
#bdfx1 .bds_qzone {
  background: url(../images/fx02.png) no-repeat center;
}
#bdfx1 .bds_douban {
  background: url(../images/fx03.png) no-repeat center;
}
#bdfx1 .bds_tqq {
  background: url(../images/fx04.png) no-repeat center;
}
@media screen and (max-width: 1200px) {
  .bdfx1 {
    display: none;
  }
}
.case--list {
  margin: 0 auto;
  max-width: 1615px;
}
.case--list ul {
  *zoom: 1;
  zoom: 1;
}
.case--list ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.case--list ul li {
  position: relative;
  overflow: hidden;
  float: left;
  padding: 0 0 10px 0;
  margin: 0 20px 90px 0;
  width: 525px;
}
.case--list ul li > a {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
}
.case--list ul li:nth-child(3n) {
  margin-right: 0;
}
.case--list ul li .img {
  position: relative;
  overflow: hidden;
  width:100%;
  padding-bottom:70%;
}
.case--list ul li .img img {
  display: block;
  width: 100%;
  height:100%;
  position:absolute;
  left:0;
  top:0;
}
.case--list ul li .img .mask {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px 15px 20px;
  -webkit-transform: translate(0, 100%);
     -moz-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
       -o-transform: translate(0, 100%);
          transform: translate(0, 100%);
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
  opacity: 0;
  background: url(../images/x_shadow1.png) no-repeat left bottom / 100% 100%;
}
.case--list ul li .img .mask h3 {
  line-height: 30px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.case--list ul li .img .mask h3 a {
  font-size: 18px;
  display:block;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.case--list ul li .img .mask > div {
  height: 52px;
  overflow: hidden;
  font-size: 14px;
  color: #fff;
  line-height: 26px;
}
.case--list ul li .text {
  position: relative;
  z-index: 10;
  padding: 10px 30px;
  width: 82%;
  margin: -50px auto 0;
  background: #fff;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 5px 5px 0 #ddd;
     -moz-box-shadow: 0 5px 5px 0 #ddd;
          box-shadow: 0 5px 5px 0 #ddd;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.case--list ul li .text h3 {
  line-height: 30px;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.case--list ul li .text h3 a {
  font-size: 18px;
  color: #323232;
}
.case--list ul li .text > div {
  height: 52px;
  overflow: hidden;
  font-size: 14px;
  color: #323232;
  line-height: 26px;
}
.pc .case--list ul li:hover .img .mask {
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.pc .case--list ul li:hover .text {
  -webkit-transform: translate(0, 100%);
     -moz-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
       -o-transform: translate(0, 100%);
          transform: translate(0, 100%);
  opacity: 0;
}
.case--img {
  max-width: 614px;
  margin: 100px auto 30px;
  overflow: hidden;
  background: url(../images/honor00.png) no-repeat repeat center / 100% 100%;
}
.case--img img {
  display: block;
  width: 78%;
  margin: 8.5% 0 10% 12.5%;
}
.case--content {
  padding: 0 15px 50px 15px;
  margin: 0 auto;
  max-width: 644px;
}
.case--recommend {
  margin: 0 auto;
  max-width: 1200px;
}
.case--recommend .head {
  padding: 0 0 5px 0;
  font-size: 24px;
  line-height: 40px;
  color: #da251c;
  font-weight: bold;
  border-bottom: 1px dashed #e1e1e1;
}
.case--recommend .body ul {
  margin: 0 auto 20px;
}
.case--recommend .body ul li {
  margin: 20px 2% 0 0;
  width: 23.5%;
  height: auto;
}
.case--recommend .body ul li:nth-child(2n) {
    margin-right: 2%;
}
.case--recommend .body ul li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1615px) {
  .case--list ul {
    padding: 0 15px;
  }
  .case--list ul li {
    width: 32%;
    margin-right: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .case--img {
    margin: 30px auto 10px;
  }
  .case--recommend .head {
    padding: 0 15px;
  }
  body{
    width:auto;
  }
}
@media screen and (max-width: 1040px) {
  .case--recommend .body ul {
    padding: 0 15px;
  }
  .case--recommend .body ul li {
    width: 48%;
    height: auto;
    margin: 20px 4% 0 0;
  }
  .case--recommend .body ul li:nth-child(4n) {
    margin-right: 4%;
  }
  .case--recommend .body ul li:nth-child(2n) {
    margin-right: 0%;
  }
}
@media screen and (max-width: 900px) {
  .case--list ul li {
    width: 48%;
    margin-right: 4%;
  }
  .case--list ul li:nth-child(3n) {
    margin-right: 4%;
  }
  .case--list ul li:nth-child(2n) {
    margin-right: 0;
  }
  .case--content {
    padding-bottom: 20px;
  }
    .case--list ul li{margin-bottom:30px;}
}
@media screen and (max-width: 500px) {
  .case--list ul li {
    width: 100%;
    float: none;
  }
  .case--list ul li:nth-child(2n) {
    margin-right: 0;
  }
  .case--img {
    width: 96%;
  }
  .case--recommend .body ul {
    padding: 0 15px;
  }
  .case--recommend .body ul li {
    width: 48%;
    height: auto;
    margin: 20px 1% 0 !important;
  }
}
.detail--title {
  background: url(../images/title00.png) repeat-y center top;
}
.detail--title > div {
  margin: 0 auto;
  max-width: 1200px;
  *zoom: 1;
  zoom: 1;
}
.detail--title > div:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.detail--title .l {
  float: left;
  padding: 40px 0 20px 0;
  width: 570px;
}
.detail--title .l h1 {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  line-height: 40px;
}
.detail--title .l .btn {
  padding: 10px 0 0 0;
  color: #fff;
  font-size: 12px;
  line-height: 30px;
}
.detail--title .l .btn span {
  display: inline-block;
  vertical-align: middle;
}
.detail--title .l .btn span:nth-child(1) {
  margin-right: 15px;
}
.detail--title .l .btn a {
  margin-left: 15px;
  color: #fff;
}
.detail--title .l .btn .icon {
  font-size: 20px;
  vertical-align: -6px !important;
}
.detail--title .r {
  float: right;
  padding: 41px 0 0 0;
  line-height: 60px;
}
.detail--title .r a {
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
  font-size: 60px;
  color: #999;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.detail--title .r a:nth-child(3) .icon {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.detail--title .r a:hover {
  color: #da251c;
}
@media screen and (max-width: 1200px) {
  .detail--title {
    background: none;
  }
  .detail--title .l {
    float: none;
    width: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px 15px 0;
    text-align: center;
  }
  .detail--title .l h1 {
    color: #333;
    font-size: 24px;
    line-height: 30px;
  }
  .detail--title .l .btn {
    padding-top: 0;
    color: #333;
    line-height: 40px;
    border-bottom: 1px solid #eee;
  }
  .detail--title .l .btn a {
    display: none;
  }
  .detail--title .r {
    padding: 10px 0;
    float: none;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .detail--title .l h1 {
    font-size: 18px;
    line-height: 24px;
  }
  .detail--title .r {
    line-height: 50px;
  }
  .detail--title .r a {
    font-size: 40px;
    line-height: 50px;
  }
}
.contact--container {
  position: relative;
  margin: 40px auto 0;
  min-height: 438px;
  max-width: 1200px;
}
.contact--head {
  position: relative;
  z-index: 2;
  padding: 0 0 20px 0;
}
.contact--head:after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 85px;
  content: '';
  background: #bbb;
}
.contact--head em {
  display: block;
  font-size: 24px;
  color: #da251c;
  line-height: 40px;
}
.contact--head span {
  display: block;
  font-size: 18px;
  color: #3e3e3e;
  line-height: 22px;
  text-transform: uppercase;
}
.contact--content {
  position: relative;
  z-index: 2;
  padding: 30px 420px 0 0;
  font-size: 16px;
  color: #6f6f6f;
  line-height: 2;
}
.contact--qr {
  position: absolute;
  z-index: 1;
  top: 40px;
  right: 0;
  height: 398px;
  width: 100%;
  text-align: right;
  background: url(../images/contact01.png) no-repeat right top;
}
.contact--qr img {
  vertical-align: middle;
  margin: 90px 116px 0 0;
}
.contact--qr .text {
  padding: 40px 0 0 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  *zoom: 1;
  zoom: 1;
}
.contact--qr .text:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.contact--qr .text > div {
  float: right;
  width: 380px;
  text-align: center;
}
.online--message {
  padding: 34px 0;
  background: #f9f9f9;
}
.online--message > div {
  margin: 0 auto;
  max-width: 1200px;
}
.message--form {
  padding: 50px 0 0 0;
}
.message--form .float {
  float: left;
  width: 48%;
}
.message--form .float:nth-child(1) {
  margin-right: 4%;
}
.form--item {
  margin: 0 0 30px 0;
  display: table;
  width: 100%;
  height: 60px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 60px;
  background: #fff;
  border: 1px solid #e9e9e9;
  -webkit-transition: all .5s 0s;
  -o-transition: all .5s 0s;
  -moz-transition: all .5s 0s;
  transition: all .5s 0s;
}
.form--item .form--icon {
  float: left;
  width: 60px;
  font-size: 26px;
  vertical-align: middle;
  text-align: center;
  color: #c0c0c0;
}
.form--item .form--icon svg{
    margin-top:18px;
}
.form--item .form--label {
  float: left;
  font-size: 18px;
  color: #5c5c5c;
  vertical-align: middle;
  text-align: center;
}
.form--item .code {
  float: right;
  height: 100%;
}
.form--item .code a {
  display: block;
  height: 100%;
}
.form--item .code a img {
  display: block;
  width: 100%;
  height: 100%;
}
.form--item .form--input {
  overflow: hidden;
  padding: 15px 15px;
}
.form--item .form--input input {
  display: block;
  width: 100%;
  font-size: 18px;
  color: #333;
  line-height: 30px;
}
.form--item .form--input textarea {
  display: block;
  width: 100%;
  height: 90px;
  font-size: 18px;
  line-height: 30px;
  resize: none;
  overflow-y: auto;
}
.form--item.focus {
  -webkit-box-shadow: 0 0 4px 0 rgba(218, 37, 28, 0.3);
     -moz-box-shadow: 0 0 4px 0 rgba(218, 37, 28, 0.3);
          box-shadow: 0 0 4px 0 rgba(218, 37, 28, 0.3);
  border-color: #fff;
}
.form--btn {
  font-size: 0;
}
.form--btn a {
  width: 47%;
  margin-right: 6%;
  display: inline-block;
  vertical-align: middle;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  background: #da251c;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.form--btn a:nth-child(2) {
  margin-right: 0;
  background: #303036;
}
.pc .form--btn a:hover {
  text-indent: 20px;
}
@media screen and (max-width: 1200px) {
  .contact--container {
    padding: 0 15px;
  }
  .online--message {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 950px) {
  .message--form .float {
    float: none;
    width: 100%;
    margin-right: 0;
  }
  .contact--content {
    padding-right: 0;
  }
  .contact--qr {
    padding: 20px 0;
    top: 0;
    height: auto;
    position: relative;
    background: none;
    text-align: center;
  }
  .contact--qr img {
    margin: 0;
  }
  .contact--qr .text {
    padding: 10px 0 0 0;
  }
  .contact--qr .text > div {
    float: none;
    width: 100%;
    color: #000;
  }
}
@media screen and (max-width: 550px) {
  .message--form {
    padding-top: 20px;
  }
  .form--item {
    margin-bottom: 15px;
    height: 40px;
    line-height: 40px;
  }
  .form--item .form--icon {
    width: 40px;
    font-size: 20px;
  }
  .form--item .form--icon svg{
      margin-top:10px;
  }
  .form--item .form--label {
    display: none;
  }
  .form--item .form--input {
    padding: 8px 15px 8px 0;
    line-height: 24px;
  }
  .form--item .form--input input {
    font-size: 14px;
    line-height: 24px;
  }
  .form--item .form--input textarea {
    height: 72px;
    font-size: 14px;
    line-height: 24px;
  }
  .form--item .code {
    max-width: 40%;
    height: 40px;
  }
  .form--btn a {
    line-height: 40px;
    font-size: 14px;
  }
}
.business--list {
  background: #f3f3f3;
}
.business--list .head {
  text-align: center;
}
.business--list .head h2 {
  display: inline-block;
  vertical-align: middel;
  margin: 0 10px;
}
.business--list .head h2 a {
  display: block;
  text-align: center;
  color: #fff;
  background: #c7c7c7;
  line-height: 48px;
  width: 160px;
  font-weight: normal;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.business--list .head h2.selected a {
  background: #da251c;
}
.business--list .scroll--list {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.business--list .btn {
  position: absolute;
  width: 100%;
  line-height: 40px;
  top: 50%;
  height: 40px;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.business--list .btn a {
  top: 0;
  position: absolute;
  display: block;
  font-size: 36px;
  color: #303036;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.business--list .btn a:first-child {
  left: -70px;
}
.business--list .btn a:first-child .icon {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.business--list .btn a:last-child {
  right: -70px;
}
.business--list .list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}
.business--list .list ul {
  *zoom: 1;
  zoom: 1;
}
.business--list .list ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.business--list .list ul li {
  position: relative;
}
.business--list .list ul li > a {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
}
.business--list .list ul li .img {
  position: relative;
  overflow: hidden;
  width:100%;
  padding-bottom:70%;
}
.business--list .list ul li .img img {
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
  position:absolute;
  width:100%;
  height:100%;
  left:0;
  top:0;
}
.business--list .list ul li .img .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
  opacity: 0;
}
.business--list .list ul li .img .mask > div {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 60px;
}
.business--list .list ul li .img .mask > div:after,
.business--list .list ul li .img .mask > div:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 1px;
  width: 0;
  background: #fff;
  content: '';
  -webkit-transition: all .7s 0s;
  -o-transition: all .7s 0s;
  -moz-transition: all .7s 0s;
  transition: all .7s 0s;
}
.business--list .list ul li .img .mask > div:before {
  top: 0;
}
.business--list .list ul li .img .mask > div:after {
  bottom: 0;
}
.business--list .list ul li .title {
  position: relative;
  background: #fff;
  border-bottom: 5px solid #e3e2e2;
}
.business--list .list ul li .title:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 5px;
  background: #da251c;
  content: '';
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.business--list .list ul li .title h3 {
  margin: 0 auto;
  width: 90%;
  font-weight: normal;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.business--list .list ul li .title h3 a {
  font-size: 18px;
  color: #323232;
  line-height: 64px;
}
.pc .business--list .btn a:hover {
  color: #c3262d;
}
.pc .business--list .head h2 a:hover {
  background: #da251c;
}
.pc .business--list .list ul li:hover .img .mask {
  opacity: 1;
}
.pc .business--list .list ul li:hover .img .mask > div:after,
.pc .business--list .list ul li:hover .img .mask > div:before {
  width: 80%;
}
.pc .business--list .list ul li:hover .title h3 a {
  color: #da251c;
}
.pc .business--list .list ul li:hover .title:after {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .business--list .list {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 500px) {
  .business--list .head h2 {
    width: 40%;
  }
  .business--list .head h2 a {
    width: auto;
    font-size: 14px;
    line-height: 40px;
  }
}
.sticky-wrapper {
  position: relative;
  z-index: 100;
}
.history--head {
  *zoom: 1;
  zoom: 1;
  width: 1200px;
  border-bottom: 4px solid #cacaca;
  background: #fff;
  z-index: 500;
  -webkit-transform: translateZ(0);
     -moz-transform: translateZ(0);
          transform: translateZ(0);
}
.history--head:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.history--head .l {
  position: relative;
  overflow: hidden;
}
.history--head .l > a {
  position: absolute;
  top: 0;
  height: 100%;
  width: 30px;
  display: none;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 66px;
  background: #d9d9d9;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.history--head .l > a.prev {
  left: 0;
}
.history--head .l > a .icon{
    display: block;
    margin: 25px auto 0;
}
.history--head .l > a.prev .icon {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.history--head .l > a.next {
  right: 0;
}
.history--head .l > div > div {
  *zoom: 1;
  zoom: 1;
}
.history--head .l > div > div:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.history--head .l > div > div a {
  display: block;
  float: left;
  width: 185px;
  line-height: 66px;
  color: #fff;
  font-size: 24px;
  text-align: center;
  background: #d9d9d9;
  -webkit-transition: all .3s 0s;
  -o-transition: all .3s 0s;
  -moz-transition: all .3s 0s;
  transition: all .3s 0s;
}
.history--head .l > div > div a.selected {
  background: #da251c;
}
.history--head .l.scroll > a {
  display: block;
}
.history--head .l.scroll > div {
  padding: 0 40px;
}
.history--head .r {
  float: right;
  padding: 0 30px;
  font-size: 48px;
  line-height: 66px;
  color: #e9e9e9;
}
.pc .history--head .l > div > div a:hover {
  background: #da251c;
}
.pc .history--head .l > a:hover {
  background: #da251c;
}
.history--body {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}
.history--body ul {
  padding: 100px 0 30px 0;
  position: relative;
}
.history--body ul:before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  margin-left: -36px;
  content: '今天';
  width: 72px;
  height: 72px;
  color: #fff;
  text-align: center;
  line-height: 72px;
  font-size: 24px;
  font-weight: bold;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  background: #da251c;
}
.history--body ul:after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  margin-left: -1px;
  content: '';
  background: #d9d9d9;
}
.history--body ul li {
  position: relative;
  z-index: 20;
  padding: 30px 0;
  *zoom: 1;
  zoom: 1;
}
.history--body ul li:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.history--body ul li .text {
  float: left;
  width: 420px;
}
.history--body ul li .text h3 {
  padding: 5px 0 0 0;
  font-size: 18px;
  color: #000;
  line-height: 30px;
}
.history--body ul li .text > div {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.history--body ul li .point {
  position: relative;
  float: left;
  margin: 10px 22px 0;
  overflow: hidden;
}
.history--body ul li .point:after {
  display: block;
  margin: 8px 0 0 0;
  overflow: hidden;
  width: 48px;
  height: 3px;
  content: '';
  background: #dc1e32;
}
.history--body ul li .point:before {
  float: left;
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #dc1e32;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  content: '';
  background: #fff;
}
.history--body ul li .time {
  float: left;
  width: 468px;
  font-size: 30px;
  color: #303036;
  line-height: 40px;
  text-align: right;
}
.history--body ul li.odd .text {
  float: right;
}
.history--body ul li.odd .point {
  float: right;
}
.history--body ul li.odd .point:before {
  float: right;
}
.history--body ul li.odd .time {
  float: right;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .history--head {
    width: 100%;
  }
  .history--head .r {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .history--body ul:after {
    left: 111px;
  }
  .history--body ul:before {
    left: 111px;
  }
  .history--body ul li .time {
    width: 80px;
  }
  .history--body ul li .text {
    float: none !important;
    overflow: hidden;
    width: auto !important;
  }
  .history--body ul li.odd .point {
    float: left;
  }
  .history--body ul li.odd .point:before {
    float: left;
  }
  .history--body ul li.odd .time {
    float: left;
    text-align: right;
  }
}
@media screen and (max-width: 900px) {
  .history--head .l > div > div a {
    width: 120px;
    font-size: 20px;
    line-height: 50px;
  }
  .history--head .l > a {
    line-height: 50px;
  }
  .history--head .l > a .icon {
    margin-top: 17px;
  }
}
@media screen and (max-width: 500px) {
  .history--head .l > div > div a {
    width: 100px;
    font-size: 16px;
    line-height: 40px;
  }
  .history--head .l > a {
    line-height: 40px;
  }
  .history--body ul:after {
    left: 80px;
  }
  .history--body ul:before {
    left: 80px;
  }
  .history--body ul li .time {
    width: 60px;
    font-size: 20px;
  }
  .history--body ul li .point {
    margin-left: 10px;
    margin-right: 10px;
  }
  .history--body ul li .point:after {
    width: 0;
  }
  .history--head .l > a .icon {
    margin-top: 11px;
  }
}

