/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 0. sassCore's style
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  overflow-y: scroll;
  /* 0 */
  -webkit-overflow-scrolling: touch
  /* 0 */
}

/**
 * 1. Remove default margin
 * 0. sassCore's style.
 */
body {
  margin: 0;
  /* 1 */
  font-size: 12px;
  /* 0 */
  line-height: 2;
  /* 0 */
  color: #333;
  /* 0 */
  background-color: #fff
  /* 0 */
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 * 3. Correct `inline-block` display in IE 6/7.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
  *display: inline;
  /* 3 */
  *zoom: 1
  /* 3 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background color from active links in IE 10.
 * 2. Improve readability when focused and also mouse hovered in all browsers.
 * 0. sassCore's style.
 */
a {
  background: transparent;
  /* 1 */
  /* 0 */
  text-decoration: none;
  color: #08c;
}
a:active, a:hover {
  outline: 0
  /* 2 */
}
a:hover {
  color: #006699;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improve image quality when scaled in IE 7.
 * 0. sassCore's style.
 */
img {
  border: 0;
  /* 1 */
  vertical-align: middle;
  /* 0 */
  -ms-interpolation-mode: bicubic
  /* 2 */
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Contain overflow in all browsers.
 * 2. Improve readability of pre-formatted text in all browsers.
 */
pre {
  overflow: auto;
  /* 1 */
  white-space: pre;
  /* 2 */
  white-space: pre-wrap;
  /* 2 */
  word-wrap: break-word
  /* 2 */
}

/**
 * 1. Address odd `em`-unit font size rendering in all browsers.
 * 2. Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  _font-family: 'courier new', monospace;
  /* 1 */
  font-size: 1em
  /* 2 */
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea:focus,
input:focus {
  outline: none;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px
  /* 3 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="text"] {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  *margin-left: -7px
  /* 3 */
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 0. sassCore's style
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical
  /* 0 */
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none;
}

html,
button,
input,
select,
textarea {
  font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Tahoma, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, figure, form, blockquote {
  margin: 0;
}

ul, ol, li, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none outside none;
}

h1, h2, h3 {
  line-height: 2;
  font-weight: normal;
}

h1 {
  font-size: 18px;
}

h2 {
  font-size: 15.6px;
}

h3 {
  font-size: 14.04px;
}

h4 {
  font-size: 12px;
}

h5, h6 {
  font-size: 10.2px;
  text-transform: uppercase;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}

.clear {
  clear: both;
}

.f-cb {
  zoom: 1;
}

.f-cb:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  content: ".";
}

.fl {
  float: left;
  display: inline;
}

.fr {
  float: right;
  display: inline;
}

.por {
  position: relative;
}

.poa {
  position: absolute;
}

.pof {
  position: fixed;
}

.poa-f, .index-wrap .ban .box_skitter, .index-wrap .about .image, .index-wrap .project .image li, .insban .tips, .project-wrap li .bg, .about-wrap .about .image li, .about-wrap .honor .list li .bg , .honor-wrap li .bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ovh {
  overflow: hidden;
}

.noselect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.dn {
  display: none;
}

.dib {
  display: inline-block;
}

.w-f {
  width: 100%;
}

.h-f {
  height: 100%;
}

.fwn {
  font-weight: normal;
}

.tac {
  text-align: center;
}

.t-f {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}

.t-c {
  -webkit-transition: color 0.5s;
          transition: color 0.5s;
}

.t-bg {
  -webkit-transition: background 0.5s;
          transition: background 0.5s;
}

.loader {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-animation: spinner 700ms infinite linear;
          animation: spinner 700ms infinite linear;
}

.loader.white {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
footer .bg .tips .detail .linkbox::after, .index-wrap .about .detail::before {
  content: "";
  height: 0;
  width: 0;
  overflow: hidden;
}

.mw {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .mw {
    width: 90%;
  }
}

.m {
  display: none;
}

@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }

  .m {
    display: block;
  }
}
html,
body {
  position: relative;
}

header {
  position: relative;
  z-index: 5;
  height: 112px;
  border-bottom: 1px solid #eee;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
@media screen and (max-width: 1023px) {
  body{
    padding-top: 50px;
  }
  header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 50px;
    background-color: #fff;
  }
}
header .mw {
  position: relative;
}
@media screen and (max-width: 1200px) {
  header .mw {
    width: 97.5%;
    padding-left: 2.5%;
  }
}
header a.logo {
  float: left;
  height: 112px;
  
}
header a.logo img {
  float: left;
}
@media screen and (max-width: 1023px) {
  header a.logo {
    height: 50px;
    border-right: 0;
  }
}
header a.home {
  display: inline-block;
  float: left;
  padding-bottom: 32px;
  border-bottom: 2px solid #cd2720;
  margin: 44px 0 0 2.4%;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header a.home.show{
  border-bottom-color: #fff;
}
@media screen and (max-width: 1200px) {
  header a.home {
    display: none;
  }
}
header .navbtn-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #cd2720;
}
header .navbtn-box .navbtn {
  position: absolute;
  left: 12.5px;
  top: 15px;
}
header .navbtn-box .navbtn .line {
  position: absolute;
  left: 0;
  width: 25px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header .navbtn-box .navbtn .line:nth-child(1) {
  top: 0px;
}
header .navbtn-box .navbtn .line:nth-child(2) {
  top: 8px;
}
header .navbtn-box .navbtn .line:nth-child(3) {
  top: 16px;
}
header .navbtn-box .navbtn .line:nth-child(1) {
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
header .navbtn-box .navbtn .line:nth-child(1).show {
  width: 25px;
  left: 4px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .navbtn-box .navbtn .line:nth-child(2).show {
  width: 0;
  opacity: 0;
}
header .navbtn-box .navbtn .line:nth-child(3) {
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}
header .navbtn-box .navbtn .line:nth-child(3).show {
  width: 25px;
  left: 4px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header nav {
  float: right;
  
}
header nav li {
  position: relative;
  padding: 44px 0 34px;
  float: left;
}
header nav li::before {
  left: 5%;
  top: 0;
  content: "";
  display: inline-block;
  position: absolute;
  width: 90%;
  height: 100%;
  background: #cd2720;
  z-index: -1;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  opacity: 0;
}
header nav li:last-child::before {
  display: block;
}
header nav li::after {
  right: 0;
  top: 58px;
  width: 1px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 6px;
  background: url(../img/bg_sign01.png) no-repeat center;
}
header nav li:last-child::after {
  display: block;
}
header nav > a,
header nav li a.tit {
  position: relative;
  display: inline-block;
  padding: 0 22px;
  font-weight: bold;
  font-size: 17px;
  line-height: 2;
  color: #333;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header nav li.show a.tit::after{
  content: "";
  display: inline-block;
  position: absolute;
  left: 22px;
  top: 68px;
  width: calc(100% - 44px);
  height: 2px;
  background-color: #cd2720;
}
header nav li a.tit.red {
  color: #cd2720;
}
header nav li:hover::before {
  opacity: 1;
}
header nav li:hover a.tit {
  color: #fff;
}
header nav li:hover a.tit::after {
  opacity:0;
}
header nav li:hover a.red {
  color: #cd2720;
}
header nav li .subnav {
  display: none;
  position: absolute;
  left: 5%;
  top: 100%;
  background-color: #3b3e43;
}
header nav li .subnav a {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  font-size: 14px;
  line-height: 100px;
  color: #ccc;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header nav li .subnav a::after {
  right: 0;
  top: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 10px;
  background: #595a5c;
  margin-top: -5px;
}
header nav li .subnav a:last-child::after {
  display: none;
}
header nav li .subnav a:hover {
  color: #fff;
}
header nav li:nth-child(3) .subnav {
  left: auto;
  right: 5%;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  header nav {
    border-right: 0;
  }
}
@media screen and (max-width: 1023px) {
  header nav {
    position: absolute;
    right: 0;
    top: 50px;
    width: 60%;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
    -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: all 0.5s;
            transition: all 0.5s;
  }
  header nav li {
    width: 95%;
    padding: 10px 0;
    padding-right: 5%;
    text-align: right;
  }
  header nav li::after {
    display: none;
  }
  header nav li a.tit {
    width: 100%;
    padding: 0;
    font-size: 15px;
    color: #fff;
  }
  header nav > a{
    width: 95%;
    padding: 10px 0;
    padding-right: 5%;
    text-align: right;
    font-size: 15px;
    color: #fff;    
  }
  header nav.show {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
  }
}

.navbg {
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 4;
  width: 100%;
  height: calc(100% - 50px);
  background-color: rgba(0, 0, 0, 0.4);
}

footer {
  position: relative;
  z-index: 4;
}
footer .bg {
  position: relative;
  z-index: 2;
  padding-bottom: 38px;
  background-color: #444;
}
footer .bg .link {
  height: 50px;
  border-top: 1px solid #575757;
  border-bottom: 1px solid #575757;
}
footer .bg .link a {
  display: inline-block;
  position: relative;
  float: left;
  padding: 0 22px;
  font-size: 14px;
  line-height: 50px;
  color: #a2a2a2;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}

footer .bg .link a::after {
  right: 0;
  top: 19px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 12px;
  background: #696969;
}
footer .bg .link a:first-child {
  padding-left: 0;
}
footer .bg .link a:last-child::after {
  display: none;
}
footer .bg .link a:hover {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  footer .bg .link{
    text-align: center;
  }
  footer .bg .link a{
    float: none;
    padding: 0 22px;
  }
  footer .bg .link a:first-child {
    padding: 0 22px;
  }
}
footer .bg .tips {
  float: left;
  width: 500px;
  padding-top: 33px;
  font-size: 12px;
  line-height: 2;
  color: #666;
}
footer .bg .tips>img{
	width:117px;
	height:117px;
}
footer .bg .tips .detail {
  float: right;
}
footer .bg .tips .detail span {
  color: #fff;
}
footer .bg .tips .detail a {
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer .bg .tips .detail a:hover {
  color: #fff;
}
footer .bg .tips .detail .linkbox {
  position: relative;
  width: 200px;
  height: 38px;
  padding: 0 15px;
  border: 1px solid #414141;
  background-color: #696969;
  margin-top: 26px;
  font-size: 12px;
  line-height: 38px;
  color: #4b4b4b;
  cursor: pointer;
}
footer .bg .tips .detail .linkbox::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 18px;
  top: 16px;
  border-bottom: 6px solid #737373;
  border-left: 6px dashed transparent;
  border-right: 6px dashed transparent;
}
footer .bg .tips .detail .linkbox .list {
  display: none;
  position: absolute;
  left: -1px;
  bottom: 39px;
  width: 200px;
  padding: 15px;
  border: 1px solid #414141;
  background-color: #696969;
}
footer .bg .tips .detail .linkbox .list a {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer .bg .tips .detail .linkbox .list a:hover {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  footer .bg .tips {
    float: none;
    width: 100%;
  }
  footer .bg .tips .detail {
    width: calc(95% - 117px);
  }
  footer .bg .tips .detail .linkbox {
    width: calc(100% - 32px);
    margin-top: 5px;
  }
  footer .bg .tips .detail .linkbox .list {
    width: calc(100% - 30px);
  }
}
footer .bg > .mw > .detail {
  float: right;
  position: relative;
  width: 237px;
  padding-top: 29px;
  font-size: 12px;
  line-height: 20px;
  color: #a2a2a2;
  text-align: right;
}
footer .bg > .mw > .detail::before {
  right: 0;
  top: -1px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 200px;
  height: 3px;
  background: #383838;
}
footer .bg > .mw > .detail::after {
  left: -1px;
  top: 33px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 117px;
  background: #868686;
}
footer .bg > .mw > .detail a {
  display: inline-block;
  padding-left: 18px;
  background: url(../img/bg_sign02.png) no-repeat left center;
  color: #a2a2a2;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer .bg > .mw > .detail a:hover {
  color: #fff;
}
@media screen and (max-width: 1023px) {
  footer .bg > .mw > .detail {
    float: right;
    width: 100%;
    margin-top: 15px;
    text-align: left;
  }
  footer .bg > .mw > .detail::before {
    width: 100%;
  }
  footer .bg > .mw > .detail::after {
    display: none;
  }
}
footer .website {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: calc(100% - 110px);
  background-color: #fff;
  padding: 70px 0 40px;
  -webkit-transition: all 0.8s;
          transition: all 0.8s;
}
footer .website img.close {
  position: absolute;
  right: 16.8%;
  top: 7.5%;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer .website img.close:hover {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 1023px) {
  footer .website {
    padding: 5% 0;
  }
  footer .website img.close {
    right: 5%;
    top: 2.5%;
  }
}
footer .website .main {
  position: relative;
  width: 938px;
  padding-top: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  footer .website .main {
    width: 90%;
  }
}
footer .website .main::before {
  left: 50%;
  top: 0;
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 1px;
  background: #eaeaea;
  -webkit-transition: all 0.8s;
          transition: all 0.8s;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}
@media screen and (max-width: 1023px) {
  footer .website .main::before {
    display: none;
  }
}
footer .website .main.show::before {
  left: 0;
  width: 100%;
}
footer .website .main li {
  float: left;
  width: calc(11.66% - 1px);
  height: 272px;
  padding: 2% 0 0 5%;
  border-right: 1px solid #eaeaea;
  position: relative;
  opacity: 0;
  left: 10%;
}
footer .website .main li:last-child {
  width: 11.67%;
  border-right: 0;
}
footer .website .main li a {
  display: block;
  font-size: 12px;
  line-height: 30px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer .website .main li a.tit {
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 14px;
  line-height: 2;
  color: #303741;
}
footer .website .main li a:hover {
  color: #cd2720;
}
@media screen and (max-width: 1023px) {
  footer .website .main li {
    width: 95%;
    height: auto;
    padding: 2% 0 2% 5%;
    border-right: 0;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 1.5%;
  }
  footer .website .main li:last-child {
    width: 95%;
    border-bottom: 0;
  }
  footer .website .main li a {
    float: left;
    width: 33.33%;
  }
  footer .website .main li a.tit {
    width: 100%;
  }
}
footer .website.show {
  bottom: 100%;
  height: auto;
}

.index-wrap .ban {
  position: relative;
  overflow: hidden;
}
.index-wrap .about {
  position: relative;
  overflow: hidden;
}
.index-wrap .about .image {
  width: 65.9%;
  background: url(../img/img01.jpg) no-repeat right center/auto 100%;
  -webkit-transform: translateX(-15%);
      -ms-transform: translateX(-15%);
          transform: translateX(-15%);
  opacity: 0;
  -webkit-transition: all 0.8s;
          transition: all 0.8s;
}
.index-wrap .about .image.show {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.index-wrap .about .detail {
  float: right;
  position: relative;
  width: 530px;
  padding: 50px 60px 75px 65px;
  background-color: #fff;
  font-size: 13px;
  line-height: 22px;
  color: #666;
  -webkit-transform: translateX(15%);
      -ms-transform: translateX(15%);
          transform: translateX(15%);
  -webkit-transition: all 0.8s;
          transition: all 0.8s;
}
.index-wrap .about .detail::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -18px;
  top: 102px;
  border-right: 18px solid #fff;
  border-top: 18px dashed transparent;
  border-bottom: 18px dashed transparent;
}
.index-wrap .about .detail p.en {
  font: 34px/40px Arial;
  color: #666;
}
.index-wrap .about .detail h2 {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 2;
  color: #666;
}
.index-wrap .about .detail .btns {
  margin-top: 78px;
}
.index-wrap .about .detail .btns a {
  display: inline-block;
  float: left;
}
.index-wrap .about .detail .btns a:nth-child(1) {
  position: relative;
  width: 112px;
  padding: 5px;
  border: 1px solid #ed2224;
}
.index-wrap .about .detail .btns a:nth-child(1)::before {
  z-index: 1;
  left: 5px;
  top: 5px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 112px;
  height: 40px;
  background: #ed2224;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}
.index-wrap .about .detail .btns a:nth-child(1) span {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 112px;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.index-wrap .about .detail .btns a:nth-child(1):hover::before {
  left: 0;
  top: 0;
  width: 122px;
  height: 50px;
}
.index-wrap .about .detail .btns a:nth-child(2) {
  margin-left: 18px;
  width: 100px;
  padding-left: 45px;
  border: 1px solid #878787;
  background: url(../img/bg_btn01.png) no-repeat 10px top/auto 100px;
  font-size: 18px;
  line-height: 50px;
  color: #333;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.index-wrap .about .detail .btns a:nth-child(2):hover {
  border-color: #ed2224;
  background-position: 10px bottom;
  color: #ed2224;
}
.index-wrap .about .detail.show {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 1023px) {
  .index-wrap .about .image {
    position: relative;
    width: 100%;
  }
  .index-wrap .about .detail {
    width: 90%;
    padding: 5%;
  }
  .index-wrap .about .detail::before {
    display: none;
  }
  .index-wrap .about .detail p.en {
    font-size: 28px;
  }
  .index-wrap .about .detail .btns {
    margin-top: 10%;
  }
  .index-wrap .about .detail .btns a:nth-child(1) {
    width: 100px;
  }
  .index-wrap .about .detail .btns a:nth-child(1)::before {
    width: 100px;
    height: 30px;
  }
  .index-wrap .about .detail .btns a:nth-child(1) span {
    width: 100px;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
  }
  .index-wrap .about .detail .btns a:nth-child(1):hover::before {
    left: 0;
    top: 0;
    width: 110px;
    height: 40px;
  }
  .index-wrap .about .detail .btns a:nth-child(2) {
    margin-left: 10px;
    width: 90px;
    padding-left: 35px;
    background-size: auto 80px;
    font-size: 16px;
    line-height: 40px;
  }
}
.index-wrap .project {
  position: relative;
  overflow: hidden;
}
.index-wrap .project .detail {
  position: relative;
  z-index: 2;
  width: 787px;
  height: 224px;
  padding: 172px 0 124px;
  font-size: 16px;
  line-height: 26px;
  color: #666;
  text-align: center;
  -webkit-transform: translateX(-15%);
      -ms-transform: translateX(-15%);
          transform: translateX(-15%);
  opacity: 0;
  -webkit-transition: all 0.8s;
          transition: all 0.8s;
}
.index-wrap .project .detail.show {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.index-wrap .project .detail .scroll {
  position: relative;
  overflow: hidden;
  height: 140px;
}
.index-wrap .project .detail .scroll li {
  float: left;
  width: 100%;
  height: 140px;
}
.index-wrap .project .detail .scroll li p {
  height: 52px;
}
.index-wrap .project .detail .scroll li a {
  display: block;
  position: relative;
  width: 112px;
  padding: 5px;
  border: 1px solid #ed2224;
  margin: 36px auto 0;
}
.index-wrap .project .detail .scroll li a::before {
  left: 5px;
  top: 5px;
  z-index: 1;
  content: "";
  display: inline-block;
  position: absolute;
  width: 112px;
  height: 40px;
  background: #ed2224;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}
.index-wrap .project .detail .scroll li a span {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 112px;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.index-wrap .project .detail .scroll li a:hover::before {
  left: 0;
  top: 0;
  width: 122px;
  height: 50px;
}
.index-wrap .project .detail .btns {
  position: absolute;
  left: 50%;
  bottom: 62px;
  height: 9px;
}
.index-wrap .project .detail .btns span {
  float: left;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #555;
  margin: 0 2px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.index-wrap .project .detail .btns span:hover, .index-wrap .project .detail .btns span.cur {
  background-color: #ed2224;
}
.index-wrap .project .image {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  width: calc(100% - 787px);
  height: 100%;
  -webkit-transform: translateX(15%);
      -ms-transform: translateX(15%);
          transform: translateX(15%);
  opacity: 0;
  -webkit-transition: all 0.8s;
          transition: all 0.8s;
}
.index-wrap .project .image.show {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.index-wrap .project .image li {
  display: none;
}
.index-wrap .project .image li img {
  position: absolute;
  left: 50%;
  width: 1265px;
  margin-left: -632.5px;
}
.index-wrap .project .image li:hover {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 1023px) {
  .index-wrap .project .detail {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
  }
  .index-wrap .project .detail .btns span {
    background-color: #fff;
  }
  .index-wrap .project .image {
    width: 100%;
  }
}
.index-wrap .news .tit {
  position: relative;
  background: url(../img/bg_bg01.jpg) no-repeat center / cover;
}
.index-wrap .news .tit .tips {
  padding: 140px 0 120px;
  font-size: 32px;
  line-height: 58px;
  color: #fff;
  text-align: center;
}
.index-wrap .news .tit .tips p.en {
  font: 60px/72px Arial;
  color: #fff;
  text-transform: uppercase;
}
.index-wrap .news .tit .tips > * {
  position: relative;
  opacity: 0;
  top: 15%;
}
@media screen and (max-width: 1023px) {
  .index-wrap .news .tit {
    background-image: url(../img/bg_bg01m.jpg) no-repeat center/cover;
  }
  .index-wrap .news .tit .tips {
    padding: 70px 0 60px;
    font-size: 24px;
    line-height: 2;
  }
  .index-wrap .news .tit .tips p.en {
    font-size: 30px;
    line-height: 1.5;
  }
}
.index-wrap .news .list li {
  float: left;
  position: relative;
  overflow: hidden;
  width: 50%;
}
.index-wrap .news .list li .detail {
  position: relative;
  z-index: 2;
  width: 38%;
  padding: 12% 3.4% 15.1% 8.6%;
  background-color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.index-wrap .news .list li .detail a {
  display: inline-block;
  font-size: 13px;
  line-height: 18px;
  color: #888;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.index-wrap .news .list li .detail a.t {
  padding: 3px 0;
  margin-bottom: 4%;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}
.index-wrap .news .list li .detail p {
  margin-top: 7.4%;
  font: 12px/2 Consolas, Arial;
  color: #999;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.index-wrap .news .list li a.image {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.index-wrap .news .list li:hover .detail {
  background-color: #cd2720;
}
.index-wrap .news .list li:hover .detail a,
.index-wrap .news .list li:hover .detail a.t,
.index-wrap .news .list li:hover .detail p {
  color: #fff;
}
.index-wrap .news .list li:hover a.image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
@media screen and (max-width: 1200px) {
  .index-wrap .news .list li {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .index-wrap .news .list li .detail {
    width: 90%;
    padding: 5%;
  }
  .index-wrap .news .list li a.image {
    position: relative;
    width: 100%;
  }
  .index-wrap .news .list li a.image img{
    width: 100%;
  }
}

.insban {
  position: relative;
}
.insban img {
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.insban img.show {
  opacity: 1;
}
.insban .tips {
  box-sizing: border-box;
  padding-left: 20.3%;
  font-size: 18px;
  line-height: 2;
  color: #fff;
}
.insban .tips .in {
  position: relative;
  top: 38.5%;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.insban .tips .in > * {
  position: relative;
  opacity: 0;
  top: 15%;
}
.insban .tips::before, .insban .tips::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.8s;
          transition: all 0.8s;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}
.insban .tips::before {
  left: 18.75%;
  top: 0;
  width: 1px;
  height: 0;
}
.insban .tips::after {
  left: 0;
  top: 61.67%;
  z-index: 1;
  width: 0;
  height: 1px;
}
.insban .tips.show::before {
  height: 100%;
}
.insban .tips.show::after {
  width: 100%;
}
.insban .tips p.en {
  font: bold 60px/70px Arial;
  color: rgba(255, 255, 255, 0.5);
}
.insban .tips h2 {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 18px;
  font-size: 32px;
  line-height: 2;
  color: #fff;
}
.insban .tips h2::after {
  left: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  position: absolute;
  width: 100px;
  height: 5px;
  background: #cd2720;
}
.insban .tips span {
  display: inline-block;
  font-size: 12px;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media screen and (max-width: 1400px) {
  .insban .tips {
    font-size: 14px;
  }
  .insban .tips .in {
    top: 25%;
  }
  .insban .tips p.en {
    font-size: 40px;
    line-height: 1.2;
  }
  .insban .tips h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 1023px) {
  .insban .tips .in {
    top: 19%;
  }
}

.news-wrap .tab {
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 4%;
  text-align: center;
}
.news-wrap .tab a {
  display: inline-block;
  position: relative;
  padding: 0 62px;
  font-size: 18px;
  line-height: 66px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap .tab a::before {
  bottom: -1px;
  left: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 6px;
  background: #cd2720;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap .tab a::after {
  right: 0;
  top: 26px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 14px;
  background: #b9b9b9;
}
.news-wrap .tab a:last-child::after {
  display: none;
}
.news-wrap .tab a:hover, .news-wrap .tab a.cur {
  color: #cd2720;
}
.news-wrap .tab a:hover::before, .news-wrap .tab a.cur::before {
  width: 58px;
  margin-left: -29px;
}
@media screen and (max-width: 1023px) {
  .news-wrap .tab {
    margin-bottom: 8%;
  }
  .news-wrap .tab a {
    padding: 0 10%;
    font-size: 16px;
    line-height: 3;
  }
  .news-wrap .tab a::after {
    top: 17px;
  }
}
.news-wrap .list {
  padding-bottom: 6.5%;
}
.news-wrap .list li {
  position: relative;
  margin-bottom: 40px;
}
.news-wrap .list li::before {
  right: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  position: absolute;
  width: 66%;
  height: 1px;
  background: #e0e0e0;
}
.news-wrap .list li a.image {
  display: block;
  float: left;
  position: relative;
  overflow: hidden;
  width: 30.25%;
}
.news-wrap .list li a.image img {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap .list li a.image:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.news-wrap .list li .detail {
  float: right;
  width: 62.67%;
  padding-right: 3.33%;
}
.news-wrap .list li .detail .tit {
  display: table;
  position: relative;
  width: 100%;
  height: 74px;
  margin-bottom: 2.5%;
}
.news-wrap .list li .detail .tit > a {
  display: table-cell;
  vertical-align: middle;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap .list li .detail .tit > a span {
  display: inline-block;
  max-width: calc(100% - 160px);
}
.news-wrap .list li .detail .tit > a:hover {
  color: #cd2720;
}
.news-wrap .list li .detail .tit .time.pc {
  position: absolute;
  right: 0;
  top: 0;
  width: 140px;
  border: 1px solid #e0e0e0;
}
.news-wrap .list li .detail .tit .time.pc .in {
  float: left;
  width: 70px;
  padding: 8px 0;
  font: 12px/20px Arial;
  color: #999;
  text-align: center;
}
.news-wrap .list li .detail .tit .time.pc .in p.day {
  font-size: 36px;
  line-height: 1;
  color: #666;
}
.news-wrap .list li .detail .tit .time.pc a.btn {
  display: block;
  float: right;
  width: 70px;
  height: 72px;
  background: #e0e0e0 url(../img/bg_btn02.png) no-repeat right center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap .list li .detail .tit .time.pc a.btn:hover {
  background-color: #cd2720;
  background-position: left center;
}
.news-wrap .list li .detail .tit .time.m {
  font: 12px/2 Arial;
  color: #999;
}
.news-wrap .list li .detail > a {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap .list li .detail > a:hover {
  color: #cd2720;
}
@media screen and (max-width: 1023px) {
  .news-wrap .list li {
    padding-bottom: 5%;
    margin-bottom: 20px;
  }
  .news-wrap .list li::before {
    width: 100%;
  }
  .news-wrap .list li a.image {
    float: none;
    width: 100%;
    margin-bottom: 5%;
  }
  .news-wrap .list li .detail {
    float: none;
    width: 100%;
    padding: 0;
  }
  .news-wrap .list li .detail .tit {
    display: block;
    height: auto;
  }
  .news-wrap .list li .detail .tit > a {
    display: inline-block;
    width: 100%;
    font-size: 16px;
  }
  .news-wrap .list li .detail .tit > a span {
    max-width: 100%;
  }
  .news-wrap .list li .detail > a {
    line-height: 1.5;
  }
}
.news-wrap .list .page {
  margin-top: 6.5%;
}
.news-wrap .list .page img {
  max-width: 100%;
}

.news-info {
  background-color: #fff;
  width: 92%;
  padding: 35px 4% 38px;
}
.news-info h3 {
  font-size: 24px;
  font-weight: normal;
  color: #333;
  line-height: 58px;
  text-align: center;
  padding-bottom: 23px;
  border-bottom: 1px solid #e4e4e4;
}
@media screen and (max-width: 1023px) {
  .news-info h3 {
    font-size: 18px;
    line-height: 1.8;
  }
}
.news-info .lab-tips {
  padding-top: 21px;
  line-height: 30px;
  text-align: center;
}
.news-info .lab-tips .date {
  font-size: 14px;
  font-family: "Arial";
  color: #999;
  margin-left: 38%;
}
.news-info .lab-tips .tt {
  color: #525151;
  margin-right: 12px;
}
.news-info .lab-tips .share {
  margin-left: 18px;
  display: inline-block;
  margin-left: 17px;
}
.news-info .lab-tips a {
  display: inline-block;
  float: left;
}
@media screen and (max-width: 1023px) {
  .news-info .lab-tips {
    padding-top: 0;
  }
  .news-info .lab-tips .date {
    margin-left: 0;
  }
  .news-info .lab-tips .share {
    float: right;
    margin-left: 0;
  }
}
.news-info .cont {
  padding-top: 24px;
  padding-bottom: 50px;
  font-size: 14px;
  line-height: 26px;
  color: #444;
}
.news-info .cont img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.news-info .paging {
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
.news-info .paging .left {
  line-height: 22px;
}
.news-info .paging a {
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-info .paging a:hover {
  color: #cd2720;
}
.news-info .paging .return {
  display: inline-block;
  padding-left: 18px;
  background: url(../img/ico_01.jpg) no-repeat left center;
  line-height: 22px;
}

.project-wrap {
  position: relative;
  overflow: hidden;
  background-color: #000;
}
@media screen and (max-width: 1023px) {
  .project-wrap .scroll {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .project-wrap .btn {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    opacity: .8;
  }
  .project-wrap .btn.prev {
    left: 2.5%;
    background: url(../img/prev01.png) no-repeat center/cover;
  }
  .project-wrap .btn.next {
    right: 2.5%;
    background: url(../img/next01.png) no-repeat center/cover;
  }
}
.project-wrap li {
  float: left;
  position: relative;
  overflow: hidden;
  width: 25%;
  position: relative;
  opacity: 0;
  left: 10%;
}
@media screen and (max-width: 1400px) {
  .project-wrap li {
    width: 33.33%;
  }
}
@media screen and (max-width: 1023px) {
  .project-wrap li {
    width: 100%;
  }
}
.project-wrap li img {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.project-wrap li .bg {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.project-wrap li .tips {
  position: absolute;
  left: 5%;
  top: 40.96%;
  width: 90%;
  font-size: 18px;
  line-height: 2;
  color: #fff;
  text-align: center;
}
.project-wrap li .tips p.en {
  margin-top: 10px;
  font: 18px/1.5 Arial;
  color: #fff;
}
.project-wrap li:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.project-wrap li:hover .bg {
  opacity: 0;
}

.project-list .tab {
  border-bottom: 1px solid #d6d6d6;
  text-align: center;
}
.project-list .tab a {
  display: inline-block;
  position: relative;
  padding: 0 58px;
  font-size: 18px;
  line-height: 66px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.project-list .tab a::before {
  bottom: -1px;
  left: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 6px;
  background: #cd2720;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.project-list .tab a::after {
  right: 0;
  top: 26px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 14px;
  background: #b9b9b9;
}
.project-list .tab a:last-child::after {
  display: none;
}
.project-list .tab a:hover, .project-list .tab a.cur {
  color: #cd2720;
}
.project-list .tab a:hover::before, .project-list .tab a.cur::before {
  width: 58px;
  margin-left: -29px;
}
@media screen and (max-width: 1600px) {
  .project-list .tab a {
    padding: 0 40px;
  }
}
@media screen and (max-width: 1279px) {
  .project-list .tab a {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1023px) {
  .project-list .tab {
    margin-bottom: 8%;
  }
  .project-list .tab a {
    padding: 0 6%;
    font-size: 16px;
    line-height: 3;
  }
  .project-list .tab a::after {
    top: 17px;
  }
  .project-list .tab a:nth-child(3n)::after {
    display: none;
  }
}
.project-list .list {
  width: 92%;
  padding: 3.75% 0 5.5%;
  margin: 0 auto;
}
.project-list .list li {
  float: left;
  width: 22%;
  margin: 0 1.5% 3%;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .project-list .list li {
    width: 46%;
    margin: 0 2% 3%;
  }
}
.project-list .list li a {
  display: block;
}
.project-list .list li a:nth-child(1) {
  position: relative;
  overflow: hidden;
}
.project-list .list li a:nth-child(1) img {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.project-list .list li a:nth-child(1):hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.project-list .list li a:nth-child(2) {
  min-height: 56px;
  margin: 15px 0 3px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.project-list .list li a:nth-child(2):hover {
  color: #cd2720;
}
@media screen and (max-width: 1279px) {
  .project-list .list li a:nth-child(2) {
    font-size: 14px;
    margin-top: 8px;
  }
}
.project-list .list li a:nth-child(3) {
  margin-top: 13px;
  background: url(../img/bg_btn03.png) no-repeat right center;
  font-size: 14px;
  line-height: 2;
  color: #666;
  -webkit-transition: color .5s;
          transition: color .5s;
}
.project-list .list li a:nth-child(3):hover {
  color: #cd2720;
  -webkit-animation: arrow .8s linear forwards;
          animation: arrow .8s linear forwards;
}
@-webkit-keyframes arrow {
  0% {
    background-position: right 30px center;
  }
  100% {
    background-position: right center;
  }
}
@keyframes arrow {
  0% {
    background-position: right 30px center;
  }
  100% {
    background-position: right center;
  }
}
@media screen and (max-width: 1023px) {
  .project-list .list li a:nth-child(3) {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.8;
  }
}
.project-list .btn {
  margin-top: 3.5%;
}
.project-list .btn a {
  display: block;
  position: relative;
  width: 112px;
  padding: 5px;
  border: 1px solid #ed2224;
  margin: 0 auto;
}
.project-list .btn a::before {
  z-index: 1;
  left: 5px;
  top: 5px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 112px;
  height: 40px;
  background: #ed2224;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
}
.project-list .btn a span {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 112px;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.project-list .btn a:hover::before {
  left: 0;
  top: 0;
  width: 122px;
  height: 50px;
}
@media screen and (max-width: 1023px) {
  .project-list .btn a {
    width: 100px;
  }
  .project-list .btn a::before {
    width: 100px;
    height: 30px;
  }
  .project-list .btn a span {
    width: 100px;
    font-size: 14px;
    line-height: 30px;
    color: #fff;
  }
  .project-list .btn a:hover::before {
    left: 0;
    top: 0;
    width: 110px;
    height: 40px;
  }
}

.project-info .image {
  position: relative;
  background-color: #f1f1f2;
}
.project-info .image .tips {
  position: absolute;
  left: 6.5%;
  top: 38.5%;
  width: 10%;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  text-align: center;
}
.project-info .image .tips a {
  display: inline-block;
  margin-top: 30%;
  color: #cd2720;
}
@media screen and (max-width: 1200px) {
  .project-info .image .tips {
    left: 1.5%;
    top: 25%;
    width: 20%;
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 1023px) {
  .project-info .image .tips {
    position: relative;
    left: 0;
    top: 0;
    width: 80%;
    padding: 5% 10%;
  }
  .project-info .image .tips a {
    margin-top: 5%;
  }
}
.project-info .image .scroll {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
  width: 77%;
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.project-info .image .scroll.show {
  opacity: 1;
}
.project-info .image .scroll ul {
  position: relative;
  left: 100%;
}
.project-info .image .scroll li {
  float: left;
  position: relative;
  width: 72%;
}
.project-info .image .scroll li::after {
  left: 0;
  top: 0;
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.project-info .image .scroll li.show::after {
  opacity: 0;
}
.project-info .image .scroll .btn {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 29px;
  margin-top: -29px;
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  cursor: pointer;
}
.project-info .image .scroll .btn.prev {
  left: 1.5%;
  background: url(../img/prev02.png) no-repeat left center/auto 58px;
}
.project-info .image .scroll .btn.prev:hover {
  background-color: #fff;
  background-position: right center;
}
.project-info .image .scroll .btn.next {
  right: 1.5%;
  background: url(../img/next02.png) no-repeat right center/auto 58px;
}
.project-info .image .scroll .btn.next:hover {
  background-color: #fff;
  background-position: left center;
}
.project-info .image .scroll .btn.show {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .project-info .image .scroll {
    position: relative;
    width: 100%;
  }
  .project-info .image .scroll .btn {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-size: auto 30px !important;
    margin-top: -15px;
  }
}
.project-info .detail {
  min-height: 120px;
  padding: 3% 21.6% 10% 22.9%;
  font-size: 14px;
  line-height: 30px;
  color: #666;
}
@media screen and (max-width: 1023px) {
  .project-info .detail {
    padding: 8% 5%;
  }
}

.about-wrap .about {
  position: relative;
}
.about-wrap .about .detail {
  width: 42%;
  padding: 4% 6.2% 4.8% 7.3%;
  font-size: 14px;
  line-height: 30px;
  color: #666;
}
.about-wrap .about .detail span {
  color: #cd2720;
}
.about-wrap .about .detail h3 {
  font-size: 24px;
  line-height: 40px;
  color: #999;
}
.about-wrap .about .detail h3 em {
  font-style: normal;
}
.about-wrap .about .detail h2 {
  margin-bottom: 3.7%;
  font-size: 32px;
  line-height: 52px;
  color: #333;
}
.about-wrap .about .detail a {
  display: inline-block;
  width: 62px;
  height: 54px;
  background: #333 url(../img/bg_btn04.png) no-repeat center/cover;
  margin-top: 32px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .about .detail a:hover {
  background-color: #cd2720;
}
@media screen and (max-width: 1023px) {
  .about-wrap .about .detail {
    width: 90%;
    padding: 8% 5%;
  }
  .about-wrap .about .detail h3 {
    font-size: 20px;
  }
  .about-wrap .about .detail h2 {
    font-size: 24px;
    line-height: 2;
  }
  .about-wrap .about .detail a {
    width: 50px;
    height: 43px;
    margin-top: 5%;
  }
}
.about-wrap .about .image {
  position: absolute;
  right: 0;
  top: 0;
  width: 44.5%;
  height: 100%;
}
.about-wrap .about .image li {
  display: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about-wrap .about .image .btns {
  position: absolute;
  left: 34px;
  bottom: 22px;
  height: 9px;
}
.about-wrap .about .image .btns span {
  display: inline-block;
  float: left;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 4px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .about .image .btns span:hover, .about-wrap .about .image .btns span.cur {
  background-color: #ed2224;
}
@media screen and (max-width: 1023px) {
  .about-wrap .about .image {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.about-wrap .about.in .detail {
  width: 88%;
  padding: 5% 6%;
}
.about-wrap .about.in .image {
  position: relative;
  right: auto;
  width: 856px;
  height: 465px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .about-wrap .about.in .image {
    width: 100%;
    height: auto;
  }
}
.about-wrap .video {
  position: relative;
  overflow: hidden;
  background: url(../img/bg_bg02.jpg) no-repeat center bottom;
  cursor: pointer;
}
.about-wrap .video .bg {
  position: absolute;
  left: 9.6%;
  top: 19%;
  z-index: 1;
  width: calc(80.8% - 2px);
  height: 63.5%;
  background-color: rgba(51, 51, 51, 0.6);
}
.about-wrap .video .line {
  position: absolute;
  left: 9.6%;
  top: 19%;
  z-index: 3;
  width: calc(80.8% - 2px);
  height: 63.5%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.about-wrap .video .tips {
  float: left;
  position: relative;
  z-index: 2;
  width: 28.3%;
  padding: 6.25% 0 5.6% 7.3%;
  background-color: rgba(205, 39, 32, 0.9);
  font-size: 18px;
  line-height: 38px;
  color: #fff;
}
.about-wrap .video .tips h3 {
  font: 24px/46px Arial;
  color: rgba(255, 255, 255, 0.7);
}
.about-wrap .video .tips h2 {
  margin-bottom: 10px;
  font: 60px/72px Arial;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .about-wrap .video .tips {
    float: none;
    width: 90%;
    padding: 8% 5%;
  }
  .about-wrap .video .tips h2 {
    font-size: 48px;
    line-height: 1;
  }
}
.about-wrap .video .detail {
  position: relative;
  z-index: 3;
  float: right;
  width: 29.7%;
  padding-left: 80px;
  margin: 9% 19.27% 0 0;
  background: url(../img/bg_sign03.png) no-repeat left center/55px 55px;
  font-size: 14px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 1023px) {
  .about-wrap .video .detail {
    float: none;
    width: 60%;
    padding: 10% 20%;
    background-position: 5% 35%;
    background-size: 40px 40px;
  }
}
.about-wrap .video:hover .line {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  border-color: rgba(255, 255, 255, 0.8);
}
.about-wrap .video:hover .detail {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  color: #fff;
}
.about-wrap .video video {
  display: none;
  opacity: 0;
}
.about-wrap .video video.show {
  display: block;
  background-color: #000;
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .about-wrap .video video {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: all 0.5s;
            transition: all 0.5s;
  }
  .about-wrap .video video.show {
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.about-wrap .org {
  padding: 3% 7% 5%;
}
.about-wrap .org h2 {
  margin-bottom: 5%;
  font-size: 24px;
  line-height: 2;
  color: #cd2720;
}
.about-wrap .org h2 span {
  font: 18px/48px Arial;
  color: #999;
}
.about-wrap .org img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .about-wrap .org {
    padding: 8% 5%;
  }
  .about-wrap .org h2 {
    margin-bottom: 8%;
    font-size: 20px;
  }
}
.about-wrap .honor {
  border-top: 1px solid #e4e4e4;
}
.about-wrap .honor .title {
  font-size: 24px;
  line-height: 38px;
  color: #cd2720;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .about-wrap .honor .title {
    font-size: 20px;
  }
}
.about-wrap .honor .title p {
  position: relative;
}
.about-wrap .honor .title p:nth-child(1) {
  padding-top: 34px;
}
.about-wrap .honor .title p:nth-child(1)::before {
  left: 50%;
  top: -1px;
  content: "";
  display: inline-block;
  position: absolute;
  width: 258px;
  height: 5px;
  background: #bababa;
  margin-left: -129px;
}
.about-wrap .honor .title p:nth-child(1) a{
  color: #cd2720;
    -webkit-transition: all 0.5s;
            transition: all 0.5s;
}
.about-wrap .honor .title p:nth-child(1) a:hover{
  color: #cd2720;
}
.about-wrap .honor .title p:nth-child(2) {
  padding-bottom: 74px;
  font: 18px/28px Arial;
  color: #999;
}
.about-wrap .honor .title p:nth-child(2) a.arrow {
  left: 50%;
  top: 45px;
  display: inline-block;
  position: absolute;
  width: 19px;
  height: 19px;
  background: url(../img/bg_sign04.png) no-repeat center;
  margin-left: -10px;
  -webkit-animation: arrowDown 1.5s linear infinite;
          animation: arrowDown 1.5s linear infinite;
}
@-webkit-keyframes arrowDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
}
@keyframes arrowDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
}
.about-wrap .honor .title p:nth-child(2) a{
  color: #999;
    -webkit-transition: all 0.5s;
            transition: all 0.5s;
}
.about-wrap .honor .title p:nth-child(2) a:hover{
  color: #cd2720;
}
.about-wrap .honor .list li {
  position: relative;
  float: left;
  width: calc(16.6% - 2px);
  border: 1px solid #eee;
  background-color: #f8f8f8;
  cursor: pointer;
}
@media screen and (max-width: 1279px) {
  .about-wrap .honor .list li {
    width: calc(25% - 2px);
  }
}
@media screen and (max-width: 1023px) {
  .about-wrap .honor .list li {
    width: calc(50% - 2px);
  }
}
.about-wrap .honor .list li .bg {
  background-color: rgba(205, 39, 32, 0.95);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .honor .list li .tips {
  position: absolute;
  left: 5%;
  top: 22.8%;
  width: 90%;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.8s;
          transition: all 0.8s;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .about-wrap .honor .list li .tips {
    line-height: 1.5;
  }
}
@media screen and (max-width: 1023px) {
  .about-wrap .honor .list li .tips {
    top: 10%;
  }
}
.about-wrap .honor .list li .tips h2 {
  padding: 4.5px 0;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 1279px) {
  .about-wrap .honor .list li .tips h2 {
    font-size: 16px;
  }
}
.about-wrap .honor .list li .tips .sign {
  width: 35px;
  height: 35px;
  background: url(../img/bg_sign05.png) no-repeat center/cover;
  margin: 10% auto 0;
}
@media screen and (max-width: 1660px) {
  .about-wrap .honor .list li .tips .sign {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .about-wrap .honor .list li .tips .sign {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .about-wrap .honor .list li .tips .sign {
    display: none;
  }
}
.about-wrap .honor .list li:hover .bg {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.about-wrap .honor .list li:hover .tips {
  opacity: 1;
}
.about-wrap .culture {
  position: relative;
  overflow: hidden;
  padding: 3.75% 0;
  background: url(../img/bg_bg03.jpg) no-repeat center/cover;
}
@media screen and (max-width: 1023px) {
  .about-wrap .culture {
    padding: 8% 0;
  }
}
.about-wrap .culture > h2 {
  font-size: 24px;
  line-height: 38px;
  color: #fff;
  text-align: center;
}
.about-wrap .culture h3 {
  margin-bottom: 2.3%;
  font: 18px/28px Arial;
  color: #999;
  text-align: center;
}
.about-wrap .culture .main {
  width: 86%;
  margin: 0 auto;
}
.about-wrap .culture .main .box {
  float: left;
  position: relative;
  height: 175px;
  padding: 3.6% 0 0 3.6%;
  font-size: 16px;
  line-height: 2;
  color: #fff;
  -webkit-transform: translateX(15%);
  -ms-transform: translateX(15%);
  -o-transform: translateX(15%);
  transform: translateX(15%);
  opacity: 0;
}
.about-wrap .culture .main .box p {
  margin-bottom: 12px;
}
.about-wrap .culture .main .box h2 {
  font-size: 20px;
  line-height: 36px;
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
@media screen and (max-width: 1279px) {
  .about-wrap .culture .main .box h2 {
    font-size: 18px;
    line-height: 1.5;
  }
}
.about-wrap .culture .main .box:nth-child(1) {
  width: 55.7%;
  background-color: #cd2720;
}
.about-wrap .culture .main .box:nth-child(1)::after {
  right: 0;
  top: 0;
  content: "";
  display: inline-block;
  position: absolute;
  width: 32%;
  height: 100%;
  background: url(../img/img13.jpg) no-repeat center/cover;
}
.about-wrap .culture .main .box:nth-child(2) {
  width: 24.6%;
  padding-right: 12%;
  background-color: #373536;
}
.about-wrap .culture .main .box:nth-child(3) {
  width: 29.6%;
  padding-left: 36.8%;
  background-color: #686161;
}
.about-wrap .culture .main .box:nth-child(3)::before {
  left: 0;
  top: 0;
  content: "";
  display: inline-block;
  position: absolute;
  width: 50%;
  height: 100%;
  background: url(../img/img14.jpg) no-repeat center/cover;
}
.about-wrap .culture .main .box:nth-child(4) {
  width: 26.6%;
  padding-right: 3%;
  background-color: #84756f;
}
@media screen and (max-width: 1023px) {
  .about-wrap .culture .main .box {
    width: 80% !important;
    height: 150px;
    padding: 10% !important;
  }
  .about-wrap .culture .main .box::before, .about-wrap .culture .main .box::after {
    display: none !important;
  }
}
.about-wrap .jobs .detail {
  padding: 3.5% 5%;
  border-bottom: 1px solid #dfdfe6;
  font-size: 14px;
  line-height: 22px;
  color: #666;
  text-align: center;
}
.about-wrap .jobs .detail h2 {
  font-size: 24px;
  line-height: 36px;
  color: #cd2720;
}
.about-wrap .jobs .detail h3 {
  margin-bottom: 2%;
  font: 18px/28px Arial;
  color: #999;
}
.about-wrap .jobs .detail p.fz18 {
  font-size: 18px;
  line-height: 28px;
}
.about-wrap .jobs .detail p.fz24 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .about-wrap .jobs .detail {
    padding: 6%;
  }
  .about-wrap .jobs .detail h2 {
    font-size: 20px;
  }
  .about-wrap .jobs .detail h3 {
    font-size: 16px;
    line-height: 1.5;
  }
  .about-wrap .jobs .detail p.fz18 {
    font-size: 16px;
    line-height: 1.8;
  }
  .about-wrap .jobs .detail p.fz24 {
    font-size: 20px;
    line-height: 1.5;
  }
}
.about-wrap .jobs .boxs {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .about-wrap .jobs .boxs {
    width: 100%;
  }
}
.about-wrap .jobs .boxs .box {
  position: relative;
  float: left;
  padding: 3.6% 2.5%;
  width: 95%;
}
/*.about-wrap .jobs .boxs .box:first-child::after {
  right: 0;
  top: 0;
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 100%;
  background: #dfdfe6;
}*/
.about-wrap .jobs .boxs .box h2 {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 2;
  color: #333;
}
.about-wrap .jobs .boxs .box h2 a {
  display: inline-block;
  padding-right: 80px;
  background: url(../img/bg_sign06.png) no-repeat right 40px center;
  color: #333;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .jobs .boxs .box h2 a:hover {
  color: #cd2720;
  background-position: right 20px center;
}
@media screen and (max-width: 1023px) {
  .about-wrap .jobs .boxs .box {
    width: 95%;
  }
  .about-wrap .jobs .boxs .box h2 {
    margin-bottom: 3%;
  }
  .about-wrap .jobs .boxs .box h2 a {
    font-size: 16px;
    background-size: auto 32px;
  }
}
.about-wrap .jobs .boxs .box li {
  float: left;
  width: 48%;
  position: relative;
  border: 2px solid #f0f0f0;
  background-color: #f0f0f0;
  margin-bottom: 14px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .jobs .boxs .box li::before {
  right: 4.5%;
  top: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 26px;
  height: 28px;
  background: url(../img/bg_sign07.png) no-repeat center top;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .jobs .boxs .box li:nth-child(2n) {
  float: right;
}
.about-wrap .jobs .boxs .box li a {
  display: block;
  padding: 5% 26% 6% 5%;
}
.about-wrap .jobs .boxs .box li a h3 {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 2;
  color: #333;
}
.about-wrap .jobs .boxs .box li a h3 span {
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 1023px) {
  .about-wrap .jobs .boxs .box li a h3 {
    line-height: 1.5;
  }
}
.about-wrap .jobs .boxs .box li a p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.about-wrap .jobs .boxs .box li:hover {
  border-color: #cd2720;
  background-color: #fff;
}
.about-wrap .jobs .boxs .box li:hover::before {
  background-position: center bottom;
}
.about-wrap .jobs .boxs .box li:hover a p {
  color: #cd2720;
}
.about-wrap .jobs .boxs .box.w {
  width: 95%;
}
.about-wrap .jobs .boxs .box.w::after {
  display: none;
}
.about-wrap .jobs .boxs .box.w li {
  float: left;
  width: 48%;
}
.about-wrap .jobs .boxs .box.w li:nth-child(2n) {
  float: right;
}
.about-wrap .jobs .boxs .box .page {
  margin-top: 3%;
}
.about-wrap .jobs .boxs .box .page img {
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .about-wrap .jobs .boxs .box li,
  .about-wrap .jobs .boxs .box.w li{
    width: 100%;
  }
}

.jobsinfo-wrap {
  padding: 3.6% 0;
}
@media screen and (max-width: 1023px) {
  .jobsinfo-wrap {
    padding: 8% 0;
  }
}
.jobsinfo-wrap h2 {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 2;
  color: #333;
}
.jobsinfo-wrap h2 span {
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 1023px) {
  .jobsinfo-wrap h2 {
    line-height: 1.5;
  }
}
.jobsinfo-wrap .box {
  padding-bottom: 5%;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}
.jobsinfo-wrap .box h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 2;
  color: #333;
}
.jobsinfo-wrap h4 {
  font-size: 16px;
  line-height: 2;
  color: #cd2720;
}
.jobsinfo-wrap h4 a {
  color: #cd2720;
}

.message-wrap {
  padding: 3.6% 0;
}
@media screen and (max-width: 1023px) {
  .message-wrap {
    padding: 8% 0;
  }
}
.message-wrap h2 {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 2;
  color: #333;
}
.message-wrap img{
  float: left;
  height: 42px;
  margin: 0 10px;
}
.message-wrap input {
  float: left;
  width: calc(44% - 2px);
  height: 40px;
  padding: 0 2%;
  border: 1px solid #ccc;
  background: none;
  margin-bottom: 1.5%;
  font-size: 14px;
  line-height: 40px;
  color: #666;
}
.message-wrap input.small{
  width: calc(5% - 2px);
}
@media screen and (max-width: 1023px) {
  .message-wrap input.small{
    width: calc(24.5% - 2px);
  }
}
.message-wrap input::-webkit-input-placeholder {
  color: #666;
}
.message-wrap input:nth-child(2) {
  float: right;
}
.message-wrap input[type="submit"] {
  display: block;
  width: calc(40% - 2px);
  height: 42px;
  border-color: #cd2720;
  background-color: #cd2720;
  margin: 0 auto;
  font-size: 16px;
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.message-wrap input[type="submit"]:hover {
  background: none;
  color: #cd2720;
}
.message-wrap textarea {
  float: left;
  width: calc(96% - 2px);
  height: 150px;
  padding: 0 2%;
  border: 1px solid #ccc;
  background: none;
  margin-bottom: 1.5%;
  font-size: 14px;
  line-height: 30px;
  color: #666;
}

.statement-wrap {
  padding: 3.6% 0;
}
@media screen and (max-width: 1023px) {
  .statement-wrap {
    padding: 8% 0;
  }
}
.statement-wrap h2 {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 2;
  color: #333;
}
.statement-wrap .detail {
  min-height: 260px;
  padding: 3% 0;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}

.honor-wrap {
  padding: 55px 0 80px;
}
@media screen and (max-width: 1023px) {
  .honor-wrap {
    padding: 8% 0;
  }
}
.honor-wrap h2 {
  font-size: 24px;
  line-height: 36px;
  color: #cd2720;
  text-align: center;
}
.honor-wrap h3 {
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
  font: 18px/30px Arial;
  color: #999;
  text-align: center;
}
.honor-wrap h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 33px;
  height: 33px;
  background: url(../img/bg_sign08.png) no-repeat center/cover;
  margin-left: -16px;
}
.honor-wrap .list {
  width: 88%;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .honor-wrap .list {
    width: 96%;
  }
}
.honor-wrap li {
  position: relative;
  float: left;
  width: calc(18.9% - 2px);
  border: 1px solid #eee;
  background-color: #f8f8f8;
  margin: 0 .55% 20px;
}
@media screen and (max-width: 1279px) {
  .honor-wrap li {
    width: calc(32.33% - 2px);
    margin: 0 0.5% 20px;
  }
}
@media screen and (max-width: 1023px) {
  .honor-wrap li {
    width: calc(49% - 2px);
    margin: 0 0 3%;
  }
  .honor-wrap li:nth-child(2n) {
    float: right;
  }
}
.honor-wrap li .bg {
  background-color: rgba(205, 39, 32, 0.95);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.honor-wrap li .tips {
  position: absolute;
  left: 5%;
  top: 22.8%;
  width: 90%;
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.8s;
          transition: all 0.8s;
  opacity: 0;
}
@media screen and (max-width: 1279px) {
  .honor-wrap li .tips {
    line-height: 1.5;
  }
}
@media screen and (max-width: 1023px) {
  .honor-wrap li .tips {
    top: 10%;
  }
}
.honor-wrap li .tips h2 {
  padding: 4.5px 0;
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 1279px) {
  .honor-wrap li .tips h2 {
    font-size: 16px;
  }
}
.honor-wrap li .tips .sign {
  width: 35px;
  height: 35px;
  background: url(../img/bg_sign05.png) no-repeat center/cover;
  margin: 10% auto 0;
}
@media screen and (max-width: 1660px) {
  .honor-wrap li .tips .sign {
    display: none;
  }
}
@media screen and (max-width: 1279px) {
  .honor-wrap li .tips .sign {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  .honor-wrap li .tips .sign {
    display: none;
  }
}
.honor-wrap li:hover .bg {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.honor-wrap li:hover .tips {
  opacity: 1;
}
.honor-wrap .loader-box {
  display: none;
  position: relative;
  height: 80px;
}
