﻿@charset "UTF-8";
/**
 * 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, .iwrap .ban .bg, .iwrap .ban .sign, .iwrap .history .main .image .scroll, .iwrap .products .list li .bg, .about-wrap .structure .main li .tips, .products-wrap li span.bg, .videoout, .videoout .bg, .jobsintro-wrap .tips .list li .bg, .jobsintro-wrap .tips .list li .hoverbg, .jobsintro-wrap .idea .list li .detail, .jobsintro-wrap .elfare .list li::after, .contact-wrap .map{
  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);
  }
}
.history-wrap .year .list li::before {
  content: "";
  height: 0;
  width: 0;
  overflow: hidden;
}

.page img {
  max-width: 100%;
}

.m {
  display: none;
}

@media screen and (max-width: 1023px) {
  .pc {
    display: none !important;
  }

  .m {
    display: block;
  }
}
header {
  position: relative;
  z-index: 10;
  height: 86px;
  border-bottom: 1px solid #eee;
}
header a.logo {
  display: inline-block;
  float: left;
  /*height: 100%;*/
margin-left:40px;
margin-top:20px;
}
header a.logo img{
  width:134px;
}

header .searchbtn {
  position: relative;
  z-index: 2;
  float: right;
  width: 90px;
  height: 86px;
  background: #316db5 url(../images/bg_sign01.png) no-repeat center/cover;
}
header .searchbtn form{
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 380px;
  padding-left: 24px;
  height: 100%;
  background-color: #316db5;
}
header .searchbtn input{
  width: 278px;
  height: 40px;
  padding: 0 5px;
  border: 1px solid #98b6da;
  background-color: #316db5;
  margin-top: 22px;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
}
header .searchbtn input[type="submit"] {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  height: 86px;
  padding: 0;
  border: 0;
  background: #316db5 url(../images/bg_sign01.png) no-repeat center/cover; 
  margin: 0;
}
header img.tel {
  float: right;
  border-right: 1px solid #eee;
}
header .language {
  float: right;
  position: relative;
  width: 44px;
  padding: 0 30px;
  border-right: 1px solid #eee;
  font: 16px/86px Arial;
  color: #316db5;
  cursor: pointer;
}
header .language p {
  position: relative;
}
header .language p::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 40px;
  width: 10px;
  height: 6px;
  background: url(../images/bg_sign02.png) no-repeat center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header .language:hover p::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
header .language .box {
  display: none;
  position: absolute;
  left: 0;
  top: 87px;
  width: calc(100% - 1px);
  border: 1px solid #eee;
  border-top: 0;
  background-color: #fff;
}
header .language .box a {
  display: inline-block;
  float: left;
  box-sizing: border-box;
  width: 100%;
  padding-left: 30px;
  font: 14px/2 Arial;
  color: #316db5;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header .language .box a:hover {
  background-color: #316db5;
  color: #fff;
}
header .menubtn {
  position: relative;
  float: right;
  padding-right: 60px;
  border-right: 1px solid #eee;
  font: 16px/86px Arial;
  color: #316db5;
  cursor: pointer;
}
header .menubtn p {
  text-transform: uppercase;
}
header .menubtn .line {
  position: absolute;
  right: 30px;
  width: 16px;
  height: 2px;
  background-color: #316db5;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header .menubtn .line:nth-child(2) {
  top: 37px;
}
header .menubtn .line:nth-child(3) {
  top: 42px;
}
header .menubtn .line:nth-child(4) {
  top: 47px;
}
header .menubtn .line:nth-child(2) {
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
header .menubtn .line:nth-child(4) {
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
}
header .menubtn:hover .line:nth-child(3) {
  right: 36px;
  width: 10px;
}
header .menubtn.cur .line:nth-child(2) {
  width: 15px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .menubtn.cur .line:nth-child(3) {
  right: 46px;
  width: 0;
}
header .menubtn.cur .line:nth-child(4) {
  width: 15px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header nav {
  display: none;
  position: absolute;
  left: 0;
  top: 87px;
  width: 100%;
  padding: 3% 0;
  background-color: rgba(255, 255, 255, 0.95);
}
header nav .main {
  width: 65%;
  margin: 0 auto;
}
header nav .main li {
  position: relative;
  float: left;
  width: calc(16.666% - 1px);
  height: 225px;
  border-right: 1px solid #e3e3e3;
}
header nav .main li p.en {
  position: absolute;
  left: 0;
  top: -20px;
  width: 100%;
  font: 12px/20px Arial;
  color: #ccc;
  text-align: center;
}
header nav .main li a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  line-height: 30px;
  color: #666;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header nav .main li a.tit {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 26px;
  color: #000;
}
header nav .main li a:hover {
  color: #316db5;
}
@media screen and (max-width: 1279px) {
  header nav {
    padding: 5% 0;
  }
  header nav .main {
    width: 80%;
  }
}
@media screen and (max-width: 1023px) {
  header {
    height: 43px;
    z-index: 30;
  }
  header a.logo{
    margin-left:10px;
    margin-top:3px;
    overflow: hidden;
  }
  header a.logo img{
    width:106px;
  }
  header .searchbtn {
    width: 45px;
    height: 43px;
  }
  header .language {
    padding: 0 15px;
    line-height: 43px;
  }
  header .language p::after {
    top: 20px;
  }
  header .language .box {
    top: 43px;
    z-index: 30;
  }
  header .language .box a {
    padding-left: 15px;
  }
  header .menubtn {
    padding-right: 35px;
    line-height: 43px;
  }
  header .menubtn .line {
    right: 10px;
  }
  header .menubtn .line:nth-child(2) {
    top: 16px;
  }
  header .menubtn .line:nth-child(3) {
    top: 21px;
  }
  header .menubtn .line:nth-child(4) {
    top: 26px;
  }
  header .menubtn:hover .line:nth-child(3) {
    right: 16px;
  }
  header nav {
    top: 44px;
  }
  header nav .main {
    width: 90%;
  }
  header nav .main li {
    width: 100%;
    height: auto;
    padding-bottom: 3%;
    border-right: 0;
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 3%;
  }
  header nav .main li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
  header nav .main li p.en {
    display: none;
  }
  header nav .main li a {
    line-height: 1.5;
  }
  header nav .main li a.tit {
    margin-bottom: 2%;
    font-size: 16px;
    line-height: 1.5;
  }
}

footer .main {
  padding: 2.3% 5% 2.7% 7%;
  background-color: #2e3642;
}
footer .main .list {
  float: left;
  width: 52%;
  height: 175px;
  border-right: 1px solid #434a55;
}
footer .main .list li {
  float: left;
  width: 16.666%;
}
footer .main .list li a {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.ewm{
	display: block;
	width: 100px;
	max-width: 100%;
}
footer .main .list li a.tit{
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
footer .main .list li a:hover {
  color: #fff;
}
footer .main .list li:last-child .tit{
	width: 100px;
	max-width: 100%;
	text-align: center;
}

footer .main .sharebox {
  float: right;
  width: 250px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
}
footer .main .sharebox p {
  margin-bottom: 17px;
  text-align: right;
}
footer .main .sharebox .selectbox {
  position: relative;
  width: 250px;
  border-radius: 3px;
  background-color: #ebebec;
  font-size: 12px;
  line-height: 38px;
  color: rgba(51, 51, 51, 0.8);
  /*cursor: pointer;*/
}
footer .main .sharebox .selectbox p {
  position: relative;
  padding: 0 15px;
  text-align: left;
}
footer .main .sharebox .selectbox p::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 16px;
  width: 9px;
  height: 6px;
  background: url(../images/bg_sign03.png) no-repeat center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer .main .sharebox .selectbox:hover p::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
footer .main .sharebox .selectbox .box {
  display: none;
  position: absolute;
  left: 0;
  bottom: 38px;
  width: 220px;
  padding: 10px 15px;
  border-radius: 3px;
  background-color: #ebebec;
  line-height: 1.5;
}
footer .main .sharebox .selectbox .box a {
  display: inline-block;
  width: 100%;
  color: #333;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer .main .sharebox .selectbox .box a:hover {
  color: #316db5;
}
footer .main .bdsharebuttonbox {
  margin-top: 20px;
}
footer .main .bdsharebuttonbox a {
  display: inline-block;
  float: right;
  width: 45px;
  height: 45px;
  padding: 0;
  margin: 0;
  margin-left: 20px;
  background: url(../images/bg_sign04.png) no-repeat center top;
}
footer .main .bdsharebuttonbox a:nth-child(1) {
  background-position: center 0px;
}
footer .main .bdsharebuttonbox a:nth-child(2) {
  background-position: center -45px;
}
footer .main .bdsharebuttonbox a:nth-child(3) {
  background-position: center -90px;
}
@media screen and (max-width: 1023px) {
  footer .main {
    padding: 30px 5%;
  }
  footer .main .list {
  	display: none;
    float: none;
    width: 100%;
    height: auto;
    border-right: 0;
  }
  footer .main .list li a.tit {
    margin-bottom: 0;
  }
  footer .main .sharebox {
    margin-top: -7%;
  }
}
footer .bot {
  border-top: 1px solid #434a55;
  background-color: #282f3a;
  padding: 0 5% 0 7%;
  font-size: 12px;
  line-height: 58px;
  color: #fff;
}
footer .bot p:first-child {
  float: left;
}
footer .bot p:last-child {
  float: right;
}
footer .bot a {
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer .bot a:hover {
  color: #316db5;
}
@media screen and (max-width: 1023px) {
  footer .bot {
    padding: 5%;
    line-height: 2;
  }
  footer .bot p {
    float: none !important;
    text-align: center;
  }
}

img.backtop {
  /*position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: -25px;*/
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
img.backtop:hover {
  opacity: .8;
}
@media screen and (max-width: 1023px) {
  img.backtop {
    /*bottom: 5px;*/
  }
}

.iwrap a.more,
.about-wrap .team .box a {
  display: inline-block;
  width: 53%;
  min-width: 200px;
  margin-top: 20%;
  border: 1px solid #316db5;
  background-color: #316db5;
  font: bold 18px/70px Arial;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .team .box a{
  margin-top: 10%;
  line-height: 60px;
}
.iwrap a.more:hover,
.about-wrap .team .box a:hover {
  background: none;
  color: #316db5;
}
@media screen and (max-width: 1023px) {
  .iwrap a.more,
  .about-wrap .team .box a {
    width: 150px !important;
    min-width: 0;
    font-size: 14px;
    line-height: 36px;
  }
}
.iwrap .ban {
  position: relative;
  overflow: hidden;
  height: auto;
}
.iwrap .ban .bg {
  /*opacity: 0;*/
 position: relative;
}
.iwrap .ban .bg .move {
  position: relative;
  left: 0;
}
.iwrap .ban .bg img {
  /*float: left;*/
 width: 100%;
}
.iwrap .ban .sign .move {
  position: relative;
  left: 0;
}
.iwrap .ban .sign .part {
  position: relative;
  overflow: hidden;
  float: left;
  width: 1920px;
  height: 682px;
}
.iwrap .ban .sign .part .smoke {
  position: absolute;
  left: -1041px;
  top: 72%;
  width: 1041px;
  height: 23px;
  background-repeat: no-repeat;
  background-position: right center;
}
@media screen and (max-width: 1023px) {
  .iwrap .ban .sign .part {
    height: 340px;
  }
header{
  width:100%;
  background:#fff;
  position:fixed;
  top:0;
  z-index:99;
}
.iwrap .ban{
  margin-top:44px;
}
}
.iwrap .ban .sign .part2 .smoke,
.iwrap .ban .sign .part3 .smoke {
  background-image: url(../images/smoke01.png);
}
.iwrap .ban .car {
  position: absolute;
  left: 50%;
  top: 66.7%;
  width: 140px;
  height: 58px;
  background: url(../images/car.png) no-repeat left center;
  margin-left: -70px;
}
.iwrap .ban .btns {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 18px;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
}
.iwrap .ban .btns span {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #a1a1a1;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.iwrap .ban .btns span.cur {
  border-color: #316db5;
  background-color: #316db5;
}

.ban-about{
	width: 100%;
	position: absolute;
	z-index: 20;
	bottom: 50px;
	text-align: center;
}
.ban-about ul li{
	display: inline-block;
	width: 126px;
}
.ban-about ul li>div{
	font-size: 18px;
	color: #FFFFFF;
	line-height: 1;
	margin-bottom: 15px;
	position:relative;
}
.about-by{
	display:inline-block;
	position:relative;
}
.about-by img{
	position:absolute;
	width:20px;
	right:-26px;
	top:-7px;
	cursor:pointer;
}
.notice{
	position:absolute;
	right:0;
	margin-left:-80px;
	top:-74px;
	font-size:14px;
	color:#999;
	line-height:1.2;
	width:180px;
	padding:8px 6px;
	background:rgba(255,255,255,0.5);
	border-radius:5px;
	opacity:0;
	visibility:hidden;
	transform:translateY(-30px);
	transition-duration:0.3s;
}
.about-by:hover .notice{
	opacity:1;
	visibility:visible;
	transform:translateY(0px);
}
.ban-about ul li:nth-child(2){
	margin: 0 24%;
}
.ban-about ul li span{
	font-size: 48px;
	color: #FFFFFF;
	line-height: 1;
	position: relative;
}
.ban-about ul li span:before{
	display: block;
	content: '+';
	font-size: 24px;
	color: #FFFFFF;
	position: absolute;
	right: -20px;
	top: 0px;
}
.ban-about ul li:nth-child(1) span:before{
	display: none;
}
.ban-about ul li span:after{
	display: block;
	content: '';
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	position: absolute;
	bottom: 0;
	left: 0;
}
.ban-about ul li em{
	font-size: 16px;
	color: #FFFFFF;
	font-style: normal;
}

@media screen and (max-width: 1023px) {
  /*.iwrap .ban {
    height: 340px;
  }
  .iwrap .ban .bg {
    -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(0.5);
        -ms-transform: scale(0.5);
            transform: scale(0.5);
  }
  .iwrap .ban .bg .move {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .iwrap .ban .car {
    top: 62%;
  }*/
 .ban-about ul li{
 	width: 100px;
 }
 
}
.iwrap .about {
  padding: 3.8% 0 3%;
  background-color: #f6f6f6;
}

.about .title {
  margin-bottom: 2%;
}
.about .title h2 {
  position: relative;
  font: 36px/62px "微软雅黑", Arial;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}
.about .title h2 span {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 16px;
  /*background-color: #fff;*/
}
.about .title h2 span::before, .about .title h2 span::after {
  content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	width: 104px;
	height: 2px;
	background-color: #333;
}
.about .title h2 span::before {
  left: -125px;
}
.about .title h2 span::after {
  right: -125px;
}
.about .title h3 {
  position: relative;
  font-size: 24px;
  line-height: 64px;
  color: #666;
  text-align: center;
}
.about .title h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 48px;
  height: 3px;
  background-color: #666;
  margin-left: -24px;
}


@media screen and (max-width: 1023px) {
  .iwrap .about {
    padding-bottom: 20%;
  }
  .about .title h2 {
    font-size: 20px;
    line-height: 2;
    margin: 0 0 10px 0;
  }
.about .title h2::before, .about .title h2::after {
    top: 17px;
  }
.about .title h3 {
    font-size: 20px;
    line-height: 2;
  }
}
.iwrap .about .main {
  position: relative;
  width: 75%;
  margin: 0 auto;
}
.iwrap .about .main > * {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(5%);
      -ms-transform: translateY(5%);
          transform: translateY(5%);
}
.iwrap .about .main > img {
  float: right;
  width: 66.5%;
  -webkit-transform: translate(10%, 0);
      -ms-transform: translate(10%, 0);
          transform: translate(10%, 0);
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
@media screen and (max-width: 1200px) {
  .iwrap .about .main > img {
    width: 60%;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.iwrap .about .main > img.show {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}
.iwrap .about .main h2 {
  font: bold 55px/62px Arial;
  color: #316db5;
  width: 33.5%;
  text-align: left;
}
.iwrap .about .main h2 span {
  font-weight: normal;
  font-size: 32px;
  color: #000;
}
.iwrap .about .main h3 {
  font-size: 24px;
  line-height: 42px;
  color: #666;
}
.iwrap .about .main .tips {
  position: absolute;
  left: 0;
  top: 26%;
  width: 40.5%;
  height: 70%;
  padding: 4% 8.7% 0 0;
  background-color: #f6f6f6;
}
.iwrap .about .main .tips p {
  padding-left: 17.5%;
}
.iwrap .about .main .tips p.tit {
  position: relative;
  padding: 6px 0 6px 17.5%;
  font-size: 24px;
  line-height: 1.5;
  color: #666;
}
.iwrap .about .main .tips p.tit::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 23px;
  width: 13.6%;
  height: 1px;
  background-color: #000;
}
.iwrap .about .main .tips p.en {
  font: 18px/28px Arial;
  color: #b7b7b7;
}
@media screen and (max-width: 1365px) {
  .iwrap .about .main .tips {
    top: 30%;
    padding-top: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .iwrap .about .main .tips {
    position: relative;
    top: 0;
    padding-top: 4%;
  }
  .iwrap .about .main .tips a.more {
    width: 60%;
    margin-top: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .iwrap .about .main {
    width: 90%;
  }
}
@media screen and (max-width: 1023px) {
	.iwrap .about .main > img{
		width:100%;
	}
  .iwrap .about .main h2 {
	width:100%;
    font-size: 28px;
    line-height: 32px;
	text-align:left;
  }
.iwrap .about .main > img.show{
	margin-bottom: 20px;
}
  .iwrap .about .main h2 span {
    font-size: 20px;
  }
  .iwrap .about .main h3 {
    font-size: 14px;
    line-height: 24px;
  }
  .iwrap .about .main .tips {
    width: 100%;
    padding-top: 0;
  }
  .iwrap .about .main .tips p.tit {
    font-size: 14px;
  }
  .iwrap .about .main .tips p.en {
	display:none;
    font-size: 12px;
    line-height: 22px;
  }
}
.iwrap .history {
  position: relative;
  padding-bottom: 5%;
}
.iwrap .history .main {
  position: relative;
  z-index: 2;
  padding: 6% 18% 0 57.5%;
  font-size: 14px;
  line-height: 2;
  color: #666;
  min-height: 430px;
}

.history .title {
   margin-bottom: 2.5%;
   margin-top: 3%;
}
.history .title h2 {
  position: relative;
  font: 36px/62px "微软雅黑", Arial;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}
.history .title h2 span {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 16px;
  background-color: #fff;
}
.history .title h2 span::before, .history .title h2 span::after {
  content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 104px;
    height: 2px;
    background-color: #333;
}
.history .title h2 span::before {
  left: -125px;
}
.history .title h2 span::after {
  right: -125px;
}
.history .title h3 {
  position: relative;
  font-size: 24px;
  line-height: 64px;
  color: #666;
  text-align: center;
}
.history .title h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 48px;
  height: 3px;
  background-color: #666;
  margin-left: -24px;
}


@media screen and (max-width: 1200px) {
  .iwrap .history .main {
    padding-right: 8%;
  }
  
  .history .title h2 {
    font-size: 20px;
    line-height: 2;
  }
.history .title h2::before, .history .title h2::after {
    top: 17px;
  }
.history .title h3 {
    font-size: 20px;
    line-height: 2;
  }
}
.iwrap .history .main > * {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(10%);
      -ms-transform: translateY(10%);
          transform: translateY(10%);
}
.iwrap .history .main .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 53%;
}
.iwrap .history .main .image .scroll {
  overflow: hidden;
}
.iwrap .history .main .image .scroll li {
  float: left;
}
.iwrap .history .main h2 {
  position: relative;
  z-index: 2;
  padding: 0 0 13px 35px;
  font-size: 24px;
  line-height: 35px;
  color: #666;
}
.iwrap .history .main h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 80px 0;
  font: 40px/1 Arial;
  color: #000;
  text-transform: uppercase;
}
.iwrap .history .main h3 b {
  color: #316db5;
}
.iwrap .history .main .list {
  position: relative;
  overflow: hidden;
  height: 177px;
}
.iwrap .history .main .list li {
  float: left;
  width: 100%;
  height: 177px;
}
.iwrap .history .main .list .year {
  font-size: 48px;
  line-height: 65px;
  color: #999;
}
.iwrap .history .main a.more {
  margin-top: 40px;
}
.iwrap .history .main .btns {
  position: absolute;
  left: 50.8%;
  top: 88%;
}
@media screen and (max-width: 1440px){
	.iwrap .history .main{
		padding: 0% 10% 0 57.5%;
		/*min-height: 405px;*/
	}
	.iwrap .history .main .list .year{
		font-size: 40px;
    	line-height: 50px;
	}
	.iwrap .history .main .list{
		height: 230px;
	}
	.iwrap .history .main a.more{
		margin-top: 0;
	}
}
@media screen and (max-width: 1439px) {
  .iwrap .history .main .btns {
    top: 75%;
    left: 49%;
  }
}
.iwrap .history .main .btns .btn {
  width: 82px;
  height: 42px;
  border: 1px solid #316db5;
  margin-top: 8px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.iwrap .history .main .btns .btn.prev {
  background: url(../images/prev01.png) no-repeat right center;
}
.iwrap .history .main .btns .btn.prev:hover {
  background-color: #316db5;
  background-position: left center;
}
.iwrap .history .main .btns .btn.next {
  background: url(../images/next01.png) no-repeat left center;
}
.iwrap .history .main .btns .btn.next:hover {
  background-color: #316db5;
  background-position: right center;
}
@media screen and (max-width: 1023px) {
  .iwrap .history {
    padding-top: 5%;
  }
  .iwrap .history .main {
    width: 90%;
    padding: 0 5%;
  }
  .iwrap .history .main .image {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }
  .iwrap .history .main h2 {
    padding: 0;
    font-size: 18px;
    text-align: center;
  }
  .iwrap .history .main h3 {
    margin-left: 0;
    font-size: 26px;
    text-align: center;
  }
  .iwrap .history .main .list .year {
    font-size: 24px;
    line-height: 1.5;
  }
  .iwrap .history .main .btns {
    left: 2%;
    top: 30%;
    width: 96%;
  }
  .iwrap .history .main .btns .btn.prev {
    float: right;
  }
  .iwrap .history .main a.more {
    display: block;
    margin: 0 auto;
  }
}
.iwrap .products {
  position: relative;
  overflow: hidden;
}
.iwrap .products .tips {
  position: relative;
  float: right;
  width: 50%;
  -webkit-transform: translateX(10%);
      -ms-transform: translateX(10%);
          transform: translateX(10%);
  opacity: 0;
  -webkit-transition: all 1s;
          transition: all 1s;
}
.iwrap .products .tips.show {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.iwrap .products .tips .in {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -46px;
  font-size: 30px;
  line-height: 48px;
  color: #fff;
  text-align: center;
}
.iwrap .products .tips .in p.en {
  font: 30px/44px Arial;
}
.iwrap .products .list {
  width: 100%;
  -webkit-transform: translateX(-20%);
      -ms-transform: translateX(-20%);
          transform: translateX(-20%);
  opacity: 0;
  -webkit-transition: all 1s;
          transition: all 1s;
}
.iwrap .products .list.show {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.iwrap .products .list li {
  float: left;
  position: relative;
  overflow: hidden;
  width: 50%;
}
.iwrap .products .list li img {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.iwrap .products .list li span {
  display: inline-block;
}
.iwrap .products .list li .bg {
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.iwrap .products .list li .bg.gary {
  background: rgba(228, 228, 228, 0.8);
}
.iwrap .products .list li .bg.blue {
  background: rgba(0, 160, 223, 0.8);
}
.iwrap .products .list li .tips {
  	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	margin-top: -46px;
	font-size: 30px;
	line-height: 48px;
	color: #fff;
	text-align: center;
}
.iwrap .products .list li .tips p.en {
  font: 14px/24px Arial;
}
.iwrap .products .list li .tips.black {
  color: #000;
}
.iwrap .products .list li .tips.black p.en {
  color: #9a9c9e;
}
.iwrap .products .list li:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.iwrap .products .list li:hover .bg {
  opacity: 0;
}

.iwrap .products .title {
  margin-bottom: 2%;
}
.iwrap .products .title h2 {
  position: relative;
  font: 36px/62px "微软雅黑", Arial;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}
.iwrap .products .title h2 span {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 16px;
  background-color: #fff;
}
.iwrap .products .title h2 span::before, .iwrap .products .title h2 span::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 104px;
    height: 2px;
    background-color: #333;
}
.iwrap .products .title h2 span::before {
  left: -125px;
}
.iwrap .products .title h2 span::after {
  right: -125px;
}
.iwrap .products .title h3 {
  position: relative;
  font-size: 24px;
  line-height: 64px;
  color: #666;
  text-align: center;
}
.iwrap .products .title h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 48px;
  height: 3px;
  background-color: #666;
  margin-left: -24px;
}
@media screen and (max-width: 1023px) {
  .iwrap .products .tips {
    float: left;
    width: 100%;
  }
  .iwrap .products .tips .in {
    font-size: 24px;
  }
  .iwrap .products .tips .in p.en {
    font-size: 20px;
    line-height: 2;
  }
  .iwrap .products .list {
    float: right;
    width: 100%;
  }
  .iwrap .products .list li .tips {
    font-size: 16px;
    line-height: 1.5;
  }
  .iwrap .products .list li .tips p.en {
    font-size: 12px;
  }
  .iwrap .products .title h2 {
    font-size: 18px;
    line-height: 2;
  }
  .iwrap .products .title h2::before, .iwrap .products .title h2::after {
    top: 17px;
  }
   .iwrap .products .title h3 {
    font-size: 20px;
    line-height: 2;
  }
}
.iwrap .news {
  position: relative;
  overflow: hidden;
  padding: 4% 0 0;
}
@media screen and (max-width: 1023px) {
  .iwrap .news {
    padding-bottom: 60px;
  }
}
.iwrap .news .main {
  width: 92%;
  margin: 0 auto;
}
.iwrap .news .title {
  margin-bottom: 2%;
}
.iwrap .news .title h2 {
  position: relative;
  font: 36px/62px "微软雅黑", Arial;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}
.iwrap .news .title h2 span {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 0 16px;
  background-color: #fff;
}
.iwrap .news .title h2 span::before, .iwrap .news .title h2 span::after {
  content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 104px;
    height: 2px;
    background-color: #333;
}
.iwrap .news .title h2 span::before {
  left: -125px;
}
.iwrap .news .title h2 span::after {
  right: -125px;
}
@media screen and (max-width: 1023px) {
  .iwrap .news .title h2 {
    font-size: 20px;
    line-height: 2;
  }
  .iwrap .news .title h2::before, .iwrap .news .title h2::after {
    top: 17px;
  }
}
.iwrap .news .title h3 {
  position: relative;
  font-size: 24px;
  line-height: 64px;
  color: #666;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .iwrap .news .title h3 {
    font-size: 20px;
    line-height: 2;
  }
}
.iwrap .news .title h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 48px;
  height: 3px;
  background-color: #666;
  margin-left: -24px;
}
.iwrap .news li {
  float: left;
  width: 31.3%;
  margin: 0 1%;
  position: relative;
  opacity: 0;
  left: 10%;
}
@media screen and (max-width: 1023px) {
  .iwrap .news li {
    width: 100%;
    margin: 0 0 5%;
  }
}
.iwrap .news li a {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.iwrap .news li a.tit {
  margin: 14px 0;
  font-size: 18px;
  line-height: 2;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1023px) {
  .iwrap .news li a.tit {
    margin-bottom: 0;
    font-size: 16px;
  }
  
  .ban-about ul li:nth-child(2){
  	margin: 0 3%;
  }
  .ban-about{
  	bottom: auto;
    bottom: 5px;
  }
  .ban-about ul li>div{
  	font-size: 14px;
  	margin-bottom: 5px;
  }
  .ban-about ul li span{
  	font-size: 16px;
  }
  .ban-about ul li span:before{
  	font-size: 14px;
  }
  .ban-about ul li em{
  	font-size: 14px;
  }
}
.iwrap .news li a:hover {
  color: #316db5;
}
.iwrap .news .btn{
  margin: 3% auto;
  text-align: center;
}
.iwrap .news .btn a{
  width: 20%;
  margin-top: 0;
}

.about-wrap .intro {
  padding: 5.2% 0 3.75%;
  background: url(../images/bg_bg01.jpg) no-repeat center/cover;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}
.about-wrap .intro.jobs-intro {
  background-image: url(../images/bg_bg03.jpg);
}
.about-wrap .intro h2 {
  font-size: 48px;
  line-height: 82px;
  color: #fff;
  text-align: center;
}
.about-wrap .intro h3 {
  margin-bottom: 2.7%;
  font: 36px/62px "微软雅黑", Arial;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.about-wrap .intro h3 span {
  display: inline-block;
  position: relative;
}
.about-wrap .intro h3 span::before, .about-wrap .intro h3 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}
.about-wrap .intro h3 span::before {
  left: -135px;
}
.about-wrap .intro h3 span::after {
  right: -135px;
}
.about-wrap .intro .main {
  width: 1100px;
  margin: 0 auto;
}
.about-wrap .intro .main a {
  display: block;
  width: 29%;
  background-color: #316db5;
  margin: 6% auto 0;
  font: 16px/72px Arial;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .intro .main a:hover {
  background-color: #fff;
  color: #316db5;
}
@media screen and (max-width: 1279px) {
  .about-wrap .intro h3 {
    margin-bottom: 5%;
  }
  .about-wrap .intro .main {
    width: 90%;
  }
}
@media screen and (max-width: 1023px) {
  .about-wrap .intro {
    font-size: 14px;
    line-height: 1.5;
    margin-top:44px;
  }
  .about-wrap .intro h2 {
    font-size: 24px;
    line-height: 2;
  }
  .about-wrap .intro h3 {
    font-size: 20px;
  }
  .about-wrap .intro h3 span::before,
  .about-wrap .intro h3 span::after {
    width: 52px;
  }
  .about-wrap .intro h3 span::before {
    left: -70px;
  }
  .about-wrap .intro h3 span::after {
    right: -70px;
  }
  .about-wrap .intro .main a {
    width: 120px;
    font-size: 14px;
    line-height: 36px;
  }
}
.about-wrap .team {
  position: relative;
  padding: 5% 0;
}
@media screen and (max-width: 1023px) {
  .about-wrap .team {
    padding: 8% 0;
  }
}
.about-wrap .team > img {
  position: absolute;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .team > img:nth-child(1) {
  left: 4.7%;
  top: 19.6%;
  width: 10.3%;
}
.about-wrap .team > img:nth-child(2) {
  left: 4.7%;
  top: 46.5%;
  width: 15.2%;
}
.about-wrap .team > img:nth-child(3) {
  right: 4.6%;
  top: 5%;
  width: 15.2%;
}
.about-wrap .team > img:nth-child(4) {
  right: 4.6%;
  top: 71%;
  width: 10.3%;
}
.about-wrap .team .box-wrap {
  position: relative;
  z-index: 2;
}
.about-wrap .team .box-wrap .box {
  position: relative;
  width: 78%;
  margin: 0 auto;
}
.about-wrap .team .box-wrap .box .tips {
  width: 420px;
  padding-left: 145px;
  font-size: 16px;
  line-height: 24px;
  color: #666;
}
.about-wrap .team .box-wrap .box .tips p.en {
  padding-left: 75px;
  font: 16px/20px Arial;
  color: #000;
}
.about-wrap .team .box-wrap .box .tips h2 {
  position: relative;
  padding-left: 122px;
  font-size: 24px;
  line-height: 2;
  color: #666;
}
.about-wrap .team .box-wrap .box .tips h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 95px;
  height: 1px;
  background-color: #000;
}
.about-wrap .team .box-wrap .box .tips h3 {
  margin-bottom: 50px;
  font: 40px/62px Arial;
  color: #000;
  text-transform: uppercase;
}
.about-wrap .team .box-wrap .box .tips h3 b {
  color: #316db5;
}
.about-wrap .team .box-wrap .box:nth-child(1) {
  margin-bottom: 4.6%;
}
.about-wrap .team .box-wrap .box:nth-child(1) .tips {
  float: left;
}
@media screen and (max-width: 1500px) {
  .about-wrap .team .box-wrap .box:nth-child(1) .tips {
    padding-left: 45px;
  }
}
@media screen and (max-width: 1200px) {
  .about-wrap .team .box-wrap .box:nth-child(1) .tips {
    width: 350px;
    padding-left: 0;
  }
}
.about-wrap .team .box-wrap .box:nth-child(1) img {
  float: right;
  width: 47%;
  margin: 6% 3% 0 0;
}
.about-wrap .team .box-wrap .box:nth-child(2) .tips {
  float: right;
  padding-left: 0;
  margin-right: 22.5%;
}
@media screen and (max-width: 1500px) {
  .about-wrap .team .box-wrap .box:nth-child(2) .tips {
    margin-right: 0;
  }
}
.about-wrap .team .box-wrap .box:nth-child(2) img {
  float: left;
  width: 42%;
  margin-top: 6%;
}
.about-wrap .team .box-wrap .box:nth-child(2) img.pc {
  float: none;
  position: absolute;
  left: 34%;
  top: 72%;
  width: 14.8%;
  margin-top: 0;
}
@media screen and (max-width: 1023px) {
  .about-wrap .team .box-wrap .box {
    width: 90%;
  }
  .about-wrap .team .box-wrap .box .tips {
    float: none;
    width: 100%;
    padding-left: 0;
  }
  .about-wrap .team .box-wrap .box .tips p.en {
    padding-left: 40px;
  }
  .about-wrap .team .box-wrap .box .tips h2 {
    padding-left: 60px;
    font-size: 20px;
    line-height: 2;
  }
  .about-wrap .team .box-wrap .box .tips h2::before {
    width: 50px;
  }
  .about-wrap .team .box-wrap .box .tips h3 {
    margin-bottom: 5%;
    font-size: 22px;
    line-height: 1.5;
  }
  .about-wrap .team .box-wrap .box img {
    float: none !important;
    width: 100% !important;
    margin: 5% 0 !important;
  }
}
.about-wrap .structure{
	background: #efefef;
	padding: 2.8% 0 4.3%;
}
.about-wrap .structure .title {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.3%;
  /*background-color: #797979;*/
}
.about-wrap .structure .title h2 {
  font-size: 48px;
  line-height: 96px;
  color: #333;
  text-align: center;
}
.about-wrap .structure .title h3 {
  font: 36px/62px "微软雅黑", Arial;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}
.about-wrap .structure .title h3 span {
  display: inline-block;
  position: relative;
}
.about-wrap .structure .title h3 span::before, .about-wrap .structure .title h3 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 2px;
  background-color: #333;
}
.about-wrap .structure .title h3 span::before {
  left: -125px;
}
.about-wrap .structure .title h3 span::after {
  right: -125px;
}

.structure-jgt{
	width: 90%;
	margin: 0 auto;
	display: flex;
	height: 440px;
}
.jgt-fl{
	width: 20%;
	position: relative;
}
.jgt-fc{
	width: 22%;
	position: relative;
}
.jgt-fr{
	width: 58%;
	position: relative;
}
.zgs{
	width: calc(100% - 25px);
	height: 88px;
	border-radius: 88px;
	box-sizing: border-box;
	border: 10px solid #316db5;
	font-size: 18px;
	color: #316db5;
	text-align: center;
	line-height: 68px;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -44px;
}
.zgs:before{
	display: block;
	content: '';
	width: 25px;
	height: 1px;
	background: #999999;
	position: absolute;
	right: -35px;
	top: 50%;
	margin-top: -0.5px;
}
.zgs:after{
	display: block;
	content: '';
	width: 1px;
	height: 282px;
	background: #999999;
	position: absolute;
	right: -35px;
	top: 50%;
	transform: translateY(-50%);
}
.jgt-fc ul li{
	position: absolute;
	width: calc(90% - 25px);
	height: 68px;
	border-radius: 68px;
	background: #316db5;
	box-sizing: border-box;
	font-size: 18px;
	color: #FFFFFF;
	text-align: center;
	line-height: 68px;
	cursor: pointer;
}
.jgt-fc ul li:nth-child(1){
	left: 25px;
	top: 45px;
}
.jgt-fc ul li:nth-child(2){
	left: 25px;
	bottom: 45px;
}
.jgt-fc ul li:before{
	display: block;
	content: '';
	width: 25px;
	height: 1px;
	background: #999999;
	position: absolute;
	left: -25px;
	top: 50%;
	margin-top: -0.5px;
}
.jgt-fc ul li:after{
	display: none;
	content: '';
	width: 12%;
	height: 1px;
	background: #999999;
	position: absolute;
	right: -12%;
	top: 50%;
	margin-top: -0.5px;
}
.jgt-active:after{
	display: block !important;
}
.jgt-contentBox{
	width: 100%;
	height: 100%;
	position: relative;
}
.jgt-contenter{
	width: 100%;
	height: 100%;
	position: relative;
}
.fgs-com{
	position: absolute;
	display: flex;
	background: #999999;
	border-radius: 5px;
	padding: 25px 30px;
	box-sizing: border-box;
}
.fgs-com p{
	font-size: 16px;
	color: #FFFFFF;
	line-height: 1.6;
	margin-bottom: 10px;
	text-align: justify;
	margin-top: 23%;
}
.fgs01{
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.fgs01 .fgs-fl{
	width: 52%;
	padding-right: 20px;
	box-sizing: border-box;
}
.fgs01 .fgs-fl p:last-child{
	margin-bottom: 0;
}
.fgs01 .fgs-fr{
	width: 48%;
	position: relative;
}
.fgs01 .fgs-fr img{
	width: 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.fgs02{
	width: 100%;
	height: auto;
	left: 0;
	bottom: 0;
}
.fgs02 .fgs-fl{
	width: 68%;
	padding-right: 20px;
	box-sizing: border-box;
}
.fgs02 .fgs-fr{
	width: 32%;
	position: relative;
}
.fgs02 .fgs-fr img{
	/*display: block;
	width: 100%;*/
	width: 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
/*.fgs02 p{
	margin-top: 75px;
}*/

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after{
	display: none !important;
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after{
	display: none !important;
}
@media screen and (max-width: 1500px){
	.jgt-fl{
		width: 22%;
	}
	.zgs {
		width: calc(100% - 10px);
	    height: 68px;
	    border-radius: 68px;
	    border: 6px solid #316db5;
	    font-size: 15px;
	    line-height: 56px;
	    margin-top: -34px;
	}
	.zgs:before{
		width: 14px;
		right: -20px;
	}
	.zgs:after{
		right: -20px;
		height: 302px;
	}
	.jgt-fc ul li:before{
		left: -27px;
		width: 27px;
	}
	.jgt-fr{
		width: 56%;
	}
	.jgt-fc ul li{
		width: calc(95% - 10px);
		height: 48px;
		border-radius: 48px;
		line-height: 48px;
		font-size: 14px;
	}
	.jgt-fc ul li:nth-child(1),.jgt-fc ul li:nth-child(2){
		left: 10px;
	}
	.jgt-fc ul li:before{
		left: -7px;
    	width: 7px;
	}
	.fgs-com{
		padding: 20px 20px;
	}
	.fgs-com p{
		font-size: 14px;
		line-height: 1.5;
	}

}
@media screen and (max-width: 1441px){
	.structure-jgt{
		height: 350px;
	}
	.zgs:after{
		height: 212px;
	}
}
@media screen and (max-width: 1023px) {
  .about-wrap .structure .title h2 {
    font-size: 24px;
    line-height: 2;
  }
  .about-wrap .structure .title h3 {
    font-size: 20px;
    line-height: 2;
  }
  .structure-jgt{
		display: block;
		height: auto;
	}
	.jgt-fl{
		width: 100%;
	}
	.jgt-fc{
		width: 100%;
		margin-bottom: 20px;
	}
	.jgt-fr{
		width: 100%;
	}
	.zgs{
		position: relative;
		width: 100%;
		margin-bottom: 30px;
		top: 0;
		margin-top: 0;
	}
	.zgs:before{
		display: none;
	}
	.zgs:after{
		display: none;
	}
	.jgt-fc ul li{
		position: relative;
		width: 100%;
	}
	.jgt-fc ul li:nth-child(1){
		left: 0;
		top: 0;
		margin-bottom: 10px;
	}
	.jgt-fc ul li:nth-child(2){
		left: 0;
		bottom: 0;
	}
	.jgt-fc ul li:before{
		display: none;
	}
	.jgt-fc ul li:after{
		display: none !important;
	}
	.fgs01 .fgs-fl{
		width: 100%;
		padding-right: 0;
	}
	.fgs01 .fgs-fr{
		width: 100%;
		margin-top: 10px;
	}
	.fgs01 .fgs-fr img{
		position: relative;
		top: 0;
		transform: translateY(0);
	}
	.fgs02 .fgs-fl{
		width: 100%;
		padding-right: 0;
	}
	.fgs02 p{
		margin-top: 0;
	}
	.fgs02 .fgs-fr{
		width: 100%;
		margin-top: 10px;
	}
	.fgs-com{
		display: block;
		position: relative;
	}
	.fgs-com p{
		margin-top: 0;
                text-indent:2rem;
	}
}
.about-wrap .structure .main {
  padding: 5% 0 6.6%;
}
.about-wrap .structure .main .list {
  position: relative;
  width: 1208px;
  padding-top: 293px;
  margin: 0 auto;
}


@media screen and (max-width: 1279px) {
  .about-wrap .structure .main .list {
    width: 90%;
  }
}
.about-wrap .structure .main .box {
  position: absolute;
  width: 120px;
  left: 50%;
  top: 0;
  height: 122px;
  padding: 0 1px;
  margin-left: -73px;
  border: 12px solid #316db5;
  border-radius: 50%;
  font-size: 14px;
  line-height: 24px;
  color: #316db5;
  text-align: center;
}
.about-wrap .structure .main .box::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  width: 3px;
  height: 82px;
  background-color: #ccc;
  margin-left: -1px;
}
.about-wrap .structure .main .box .dtb {
  display: table;
  height: 122px;
}
.about-wrap .structure .main .box .dtb span {
  display: table-cell;
  vertical-align: middle;
}
.about-wrap .structure .main .in {
  position: relative;
}
.about-wrap .structure .main .in::before, .about-wrap .structure .main .in::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -50%;
  width: calc(50% - 66px);
  height: 2px;
  background-color: #ccc;
}
.about-wrap .structure .main .in::before {
  left: 66px;
}
.about-wrap .structure .main .in::after {
  right: 66px;
}
.about-wrap .structure .main li {
  position: relative;
  float: left;
  width: 118px;
  height: 118px;
  padding: 7px;
  border-radius: 50%;
  background-color: #316db5;
  cursor: pointer;
}
.about-wrap .structure .main li:nth-child(2) {
  margin: 0 calc(50% - 198px);
}
.about-wrap .structure .main li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -50%;
  width: 1px;
  height: 50%;
  background-color: #ccc;
}
.about-wrap .structure .main li img {
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .structure .main li:hover img {
  opacity: 1;
}
.about-wrap .structure .main li .tips .dtb {
  width: 118px;
  height: 118px;
  margin: 7px;
}
.about-wrap .structure .main li .tips .dtb span {
  display: table-cell;
  vertical-align: middle;
  height: 118px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .about-wrap .structure .main {
    padding: 8% 0;
  }
  .about-wrap .structure .main .list {
    width: 120%;
    padding-top: 250px;
    margin-left: -10%;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .about-wrap .structure .main .box::after {
    height: 40px;
  }
}

.history-wrap .year {
  position: relative;
  overflow: hidden;
  padding: 2.5% 0;
  /*padding-left: 18.5%;*/
 text-align: center;
  background-color: #316db5;
}

.history-wrap .title {
  position: relative;
  overflow: hidden;
  margin-bottom: 2%;
  /*background-color: #797979;*/
}
.history-wrap .title h2 {
  font-size: 48px;
  line-height: 96px;
  color: #fff;
  text-align: center;
}
.history-wrap .title h3 {
  font: 36px/62px "微软雅黑", Arial;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.history-wrap .title h3 span {
  display: inline-block;
  position: relative;
}
.history-wrap .title h3 span::before, .history-wrap .title h3 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}
.history-wrap .title h3 span::before {
  left: -125px;
}
.history-wrap .title h3 span::after {
  right: -125px;
}

@media screen and (max-width: 1023px) {
  /*.history-wrap .year {
    padding-left: 5%;
  }*/
  /*.history-wrap .title h2 {
    font-size: 24px;
    line-height: 2;
  }*/
  .history-wrap .title h3 {
    font-size: 20px;
    line-height: 2;
  }
}
.history-wrap .year .tips {
  float: left;
}
.history-wrap .year .tips h3 {
  position: relative;
  padding-left: 122px;
  font-size: 24px;
  line-height: 2;
  color: #fff;
}
.history-wrap .year .tips h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 50%;
  width: 96px;
  height: 2px;
  background-color: #fff;
  margin-top: -1px;
}
.history-wrap .year .tips p.en {
  font: 40px/64px Arial;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .history-wrap .year .tips h3 {
    padding-left: 60px;
    font-size: 16px;
  }
  .history-wrap .year .tips h3::after {
    width: 48px;
    height: 1px;
  }
  .history-wrap .year .tips p.en {
    font-size: 20px;
    line-height: 32px;
  }
}
.history-pagination {
  /*float: left;*/
 display: inline-block;
  margin: 0 auto;
  zoom: 1;
}
.history-pagination:after{
	display: block;
	content: '';
	clear: both;
}
@media screen and (max-width: 1365px) {
  .history-pagination {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .history-pagination {
    margin: 0;
  }
}
.history-pagination .swiper-pagination-bullet{
  position: relative;
  float: left;
  width: auto;
  height: auto;
  margin-right: 58px;
  font-size: 16px;
  line-height: 2;
  color: #ccc;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
}
.history-pagination .swiper-pagination-bullet::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 45px;
  border-bottom: 6px solid #fff;
  border-left: 6px dashed transparent;
  border-right: 6px dashed transparent;
  margin-left: -6px;
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.history-pagination .swiper-pagination-bullet::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -36px;
  top: 50%;
  width: 14px;
  height: 1px;
  background-color: #6592c8;
}
.history-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.history-pagination .swiper-pagination-bullet:last-child::after {
  display: none;
}
.history-pagination .swiper-pagination-bullet:hover, .history-pagination .swiper-pagination-bullet-active {
  color: #fff !important;
}

.history-pagination .swiper-pagination-bullet:hover::before, .history-pagination .swiper-pagination-bullet-active::before {
  opacity: 1 !important;
}




@media screen and (max-width: 1365px) {
  .history-pagination .swiper-pagination-bullet {
    margin-right: 45px;
  }
  .history-pagination .swiper-pagination-bullet::after {
    right: -29px;
  }
}
@media screen and (max-width: 1023px) {
  .history-pagination .swiper-pagination-bullet {
    width:33.333%;
    margin-right: 0;
  }
  .history-pagination .swiper-pagination-bullet::after{
   display: none;
  }

  .history-pagination .swiper-pagination-bullet::before {
    display: none;
  }
}
.history-pagination .swiper-pagination-bullet-active{
  font-weight:bold;
}
.history-swiper{
	position: relative;
	overflow: hidden;
}
.history-swiper .swiper-slide{
 height: 489px;
  position: relative;
  box-sizing: border-box;
  display: flex;
}
.history-swiper-fr{
  width: 50%;
  padding-top: 5.5%;
  font-size: 14px;
  line-height: 2;
  color: #666;
  padding-left: 7%;
  box-sizing: border-box;
}
.history-swiper-fr h2 {
  font-size: 48px;
  line-height: 2;
  color: #999;
}
.history-swiper-fr h2,
.history-swiper-fr p{
  min-width: 225px;
}
.history-swiper .swiper-slide .image {
  	width: 50%;
  	height: 100%;
  	background-repeat: no-repeat !important;
	background-position: center !important;
	background-size: 100% 100% !important;
}
/*.history-wrap > .list li:nth-child(2n) {
  padding-left: 7.5%;
  padding-right: 73.4%;
}
.history-wrap > .list li:nth-child(2n) .image {
  left: auto;
  right: 0;
}*/

.history-next,.history-prev {
  position: absolute;
  bottom: 10px;
  width: 82px;
  height: 42px;
  border: 1px solid #316db5;
  margin-top: 8px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 10;
}
.history-prev {
 left: 45%;
  background: url(../images/next01.png) no-repeat left center;
}
.history-prev:hover {
  background-color: #316db5;
  background-position: right center;
  
}
.history-next {
	right: 45%;
	background: url(../images/prev01.png) no-repeat right center;
}
.history-next:hover {
  background-color: #316db5;
  background-position: left center;
}

@media screen and (max-width: 1600px){
	.history-prev{
		left: 42%;
	}
	.history-next{
		right: 42%;
	}
}

@media screen and (max-width: 1440px){
	.history-swiper .swiper-slide{
		height: 463px;
	}
	.history-prev{
		left: 42%;
	}
	.history-next{
		right: 42%;
	}
}
@media screen and (max-width: 1023px) {
  .history-swiper{
    width: 90%;
    height: auto;
    padding: 5% !important;
    line-height: 1.8;
  }
  .history-swiper .swiper-slide{
  	display: block;
  	height: auto;
  }
  .history-swiper .swiper-slide h2 {
    font-size: 24px;
  }
  .history-swiper .swiper-slide .image {
    position: relative;
    width: 100%;
    height: 250px;
    margin-top: 5%;
  }
  .history-swiper-fr{
  	width: 100%;
  	padding: 5% !important;
  }
  .history-prev{
		left: 24%;
	}
	.history-next{
		right: 24%;
	}
}

.culture-wrap{
	padding: 70px 0 100px;
	background: #efefef;
}
.culture-wrap .title {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.3%;
  /*background-color: #797979;*/
}
.culture-wrap .title h2 {
  font-size: 48px;
  line-height: 96px;
  color: #333;
  text-align: center;
}
.culture-wrap .title h3 {
  font: 36px/62px "微软雅黑", Arial;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}
.culture-wrap .title h3 span {
  display: inline-block;
  position: relative;
}
.culture-wrap .title h3 span::before, .culture-wrap .title h3 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 2px;
  background-color: #333;
}
.culture-wrap .title h3 span::before {
  left: -125px;
}
.culture-wrap .title h3 span::after {
  right: -125px;
}
.culture-box{
	width: 90%;
	margin: 0 auto 0;
}
.culture-box ul{
	zoom: 1;
}
.culture-box ul:after{
	display: block;
	content: '';
	clear: both;
}
.culture-box ul li{
	float: left;
	width: 30%;
	margin-right: 5%;
}
.culture-box ul li:nth-child(3){
	margin-right: 0;
}
.culture-box ul li img{
	display: block;
	width: 100%;
	position: relative;
	z-index: 3;
	transition-duration: 0.5s;
}
.culture-nr{
	width: 100%;
	background: #FFFFFF;
	padding: 60px 0 50px;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	z-index: 2;
	margin-top: -30px;
	transition-duration: 0.5s;
}
.culture-nr h3{
	font-size: 30px;
	color: #316db5;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 5px;
}
.culture-nr h4{
	font-size: 18px;
	color: #999999;
	line-height: 1;
	font-weight: normal;
	margin-bottom: 15px;
}
.culture-nr p{
	font-size: 18px;
	color: #333333;
	line-height: 1.6;
}
.culture-box ul li:hover img{
	margin-top: 14px;
}
.culture-box ul li:hover .culture-nr{
	margin-top: -44px;
}

@media screen and (max-width: 1023px){
  .culture-wrap .title h2 {
    font-size: 24px;
    line-height: 2;
  }
  .culture-wrap .title h3 {
    font-size: 20px;
    line-height: 2;
  }
  .culture-box ul li{
  	width: 100%;
  	margin-right: 0;
  	margin-bottom: 10px;
  }
  .culture-box ul li:hover img{
  	margin-top: 0;
  }
  .culture-box ul li:hover .culture-nr{
	margin-top: -30px;
  }
  .culture-nr h3{
  	font-size: 22px;
  }
  .culture-nr h4{
  	font-size: 16px;
  }
  .culture-nr p{
  	font-size: 16px;
  }
}

.honor-wrap{
	padding: 70px 0 100px;
	background: url(../images/honor-bg.jpg) no-repeat center bottom;
	background-size: cover;
}
.honor-wrap .title{
  position: relative;
  overflow: hidden;
  margin-bottom: 4.3%;
}
.honor-wrap .title h2 {
  font-size: 48px;
  line-height: 96px;
  color: #666666;
  text-align: center;
}
.honor-wrap .title h3 {
  font: 30px/46px "微软雅黑", Arial;
  color: #666666;
  text-align: center;
  text-transform: uppercase;
}
.honor-wrap .title h3 span {
  display: inline-block;
  position: relative;
}
.honor-wrap .title h3 span::before, .honor-wrap .title h3 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 1px;
  background-color: #a1a1a1;
}
.honor-wrap .title h3 span::before {
  left: -125px;
}
.honor-wrap .title h3 span::after {
  right: -125px;
}

@media screen and (max-width: 1023px){
  .honor-wrap .title h2 {
    font-size: 24px;
    line-height: 2;
  }
  .honor-wrap .title h3 {
    font-size: 16px;
    line-height: 2;
  }
  .honor-wrap{
  	padding: 40px 0 50px;
  }
}

.customers-wrap{
	padding: 70px 0 100px;
	background: #fff;
	background-size: cover;
	position: relative;
}
.customers-wrap .title{
  position: relative;
  overflow: hidden;
  margin-bottom: 4.3%;
}
.customers-wrap .title h2 {
  font-size: 48px;
  line-height: 96px;
  color: #333;
  text-align: center;
}
.customers-wrap .title h3 {
  font: 36px/62px "微软雅黑", Arial;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}
.customers-wrap .title h3 span {
  display: inline-block;
  position: relative;
}
.customers-wrap .title h3 span::before, .customers-wrap .title h3 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 2px;
  background-color: #333;
}
.customers-wrap .title h3 span::before {
  left: -125px;
}
.customers-wrap .title h3 span::after {
  right: -125px;
}

.customers-box{
	width: 90%;
	margin: 0 auto;
}
.customers-swiper {
    width: 100%;
	overflow: hidden;
}

.customers-box .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
	line-height: 100px;
    height: calc((100% - 30px) / 2);
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition-duration: 1s;
}
.customers-box .swiper-slide img{
	max-width: 90%;
	max-height: 100px;
}

@media screen and (max-width: 1023px){
  .customers-wrap .title h2 {
    font-size: 24px;
    line-height: 2;
  }
  .customers-wrap .title h3 {
    font-size: 20px;
    line-height: 2;
  }
.customers-wrap{
	padding:70px 0 70px;
}
  .customers-box .swiper-slide{
  	line-height: 90px;
  }
  .customers-box .swiper-slide img{
	max-width: 90%;
	max-height: 90px;
}
}

.products-wrap {
  background-color: #2e3642;
}
.products-wrap li {
  float: left;
  position: relative;
  width: 50%;
  opacity: 0;
  -webkit-transition: all 1s;
          transition: all 1s;
}
.products-wrap li:nth-child(1) {
  -webkit-transition-delay: 0.44493s;
          transition-delay: 0.44493s;
}
.products-wrap li:nth-child(2) {
  -webkit-transition-delay: 0.49482s;
          transition-delay: 0.49482s;
}
.products-wrap li:nth-child(3) {
  -webkit-transition-delay: 0.31021s;
          transition-delay: 0.31021s;
}
.products-wrap li:nth-child(4) {
  -webkit-transition-delay: 0.28068s;
          transition-delay: 0.28068s;
}
.products-wrap li span {
  display: inline-block;
}
.products-wrap li span.bg {
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.products-wrap li span.tips {
  position: absolute;
  left: 0;
  top: 31.6%;
  width: 100%;
  font-size: 28px;
  line-height: 44px;
  color: #fff;
}
.products-wrap li span.num {
  width: 72px;
  background-color: rgba(0, 0, 0, 0.5);
  margin-bottom: 2.5%;
  font: 48px/98px Helvetica, Arial;
  color: #fff;
  text-align: center;
}
.products-wrap li span.sign {
  position: relative;
  width: 40px;
  height: 40px;
  background: url(../images/bg_sign05.png) no-repeat center;
  margin: 8% 0 0 3%;
}
.products-wrap li span.sign::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: url(../images/bg_sign06.png) no-repeat center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.products-wrap li p {
  padding-left: 3%;
}
.products-wrap li p.en {
  font: 18px/28px Arial;
  opacity: .6;
  text-transform: uppercase;
}
.products-wrap li.show {
  opacity: 1;
}
.products-wrap li.show:hover span.bg {
  opacity: 0;
}
.products-wrap li.show:hover span.sign::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 1366px) {
  .products-wrap li span.tips {
    font-size: 20px;
  }
  .products-wrap li span.num {
    font-size: 38px;
    line-height: 2;
  }
  .products-wrap li p.en {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  .products-wrap li {
    width: 100%;
  }
  .products-wrap{
   margin-top:44px;
  }
}

.path {
  margin-bottom: 4.5%;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.path a {
  display: inline-block;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.path a:hover {
  color: #5083c0;
}
.path b {
  margin: 0 8px;
  font-family: "\5b8b\4f53";
}
.path span {
  color: #5083c0;
}

.pdlist-wrap {
  position: relative;
  overflow: hidden;
  padding: 2.5% 2.3% 2.8%;
}
@media screen and (max-width: 1023px) {
  .pdlist-wrap {
    padding: 8% 5%;
    margin-top:44px;
  }
}
.pdlist-wrap::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 1px;
  box-shadow: 0 0 15px #000;
}
.pdlist-wrap .list{
	text-align: center;
}
.pdlist-wrap .list ul{
	display: inline-block;
}
.pdlist-wrap .list li {
  float: left;
  display: inline-block;
  width: 363px;
  margin: 0 20px;
  position: relative;
  opacity: 0;
  left: 10%;
}
.pdlist-wrap .list li.show {
  left: 0;
  opacity: 1;
}
.pdlist-wrap .list li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.pdlist-wrap .list li p {
  position: relative;
  padding: 5.5% 5% 15%;
  font-size: 24px;
  line-height: 30px;
  color: #000;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.pdlist-wrap .list li p::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 70%;
  width: 9px;
  height: 13px;
  background: url(../images/bg_sign07.png) no-repeat center;
}
@media screen and (max-width: 1439px) {
  .pdlist-wrap .list li p {
    font-size: 18px;
  }
  .pdlist-wrap .list li{
  	width: 330px;
  }
}
@media screen and (max-width: 1024px) {
  .pdlist-wrap .list li p {
    font-size: 16px;
  }
}
/*.pdlist-wrap .list li:nth-child(2n) p {
  padding: 11.5% 5% 9%;
}
.pdlist-wrap .list li:nth-child(2n) p::after {
  top: 85%;
}*/
.pdlist-wrap .list li img {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.pdlist-wrap .list li span {
  display: block;
  position: relative;
  width: 104px;
  margin: 10.5% auto 0;
  border-top: 1px solid #316db5;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #316db5;
  border-left: 1px solid #fff;
  font: 14px/24px Arial;
  color: #316db5;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.pdlist-wrap .list li:hover img {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.pdlist-wrap .list li:hover span {
  border-color: #316db5;
  background-color: #316db5;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .pdlist-wrap .list li {
    width: 100%;
    margin: 0 0 5%;
  }
  .pdlist-wrap .list li p {
    padding: 5% !important;
  }
  .pdlist-wrap .list li p::after {
    display: none;
  }
}
.pdlist-wrap .btn {
  text-align: center;
}
.pdlist-wrap .btn span {
  display: inline-block;
  position: relative;
  padding: 0 35px 0 15px;
  border-top: 1px solid #316db5;
  border-bottom: 1px solid #316db5;
  background-image: url(../images/bg_sign08.png);
  background-repeat: no-repeat;
  background-position: 100px center;
  font-size: 14px;
  line-height: 34px;
  color: #316db5;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  cursor: pointer;
}
.pdlist-wrap .btn span:hover {
  background-position: right center;
}

.pdinfo-wrap {
  position: relative;
  overflow: hidden;
  /*background-color: #eee;*/
}
/*.pdinfo-wrap::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: -1px;
  z-index: 2;
  width: 100%;
  height: 1px;
  box-shadow: 0 0 15px #000;
}*/
/*.pdinfo-wrap .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}*/
@media screen and (max-width: 1279px) {
  /*.pdinfo-wrap .image {
    width: 40%;
  }*/
}
@media screen and (max-width: 1023px) {
  /*.pdinfo-wrap .image {
    position: relative;
    width: 100%;
    background: none !important;
  }*/
  .pdinfo-wrap{
  margin-top:44px;
  }
}
.pdinfo-wrap .tips {
  /*float: right;*/
  width: 100%;
  padding: 2.4% 4.68% 4.5% 4.68%;
  box-sizing: border-box;
}
.pdinfo-wrap .tips .path {
  margin-bottom: 0;
  /*text-align: right;*/
}
.pdinfo-wrap .tips .path span {
  font-weight: bold;
}
.pdinfo-wrap .tips h2 {
  padding: 2.2% 0 1.2%;
  border-bottom: 1px solid #a9a4aa;
  margin-bottom: 1.5%;
  font-size: 26px;
  line-height: 2;
  color: #316db5;
}
.pdinfo-wrap .tips td {
  padding: 0 0 5px 10px;
  font-size: 14px;
  line-height: 30px;
  color: #666;
}
.pdinfo-wrap .tips td b {
  display: inline-block;
  font-size: 18px;
  line-height: 30px;
  color: #666;
}
.pdinfo-wrap .tips td span {
  /*padding-left: 70px;*/
}
.pdinfo-wrap .tips .btn {
  border-top: 1px solid #a9a4aa;
  margin-top: 10px;
  padding-top: 15px;
}
.pdinfo-wrap .tips .btn > a {
  display: inline-block;
  float: left;
  width: 38px;
  height: 38px;
  border: 1px solid #bbb;
  margin: 0 5px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.pdinfo-wrap .tips .btn > a.prev {
  background: url(../images/prev02.png) no-repeat center;
}
.pdinfo-wrap .tips .btn > a.next {
  background: url(../images/next02.png) no-repeat center;
}
.pdinfo-wrap .tips .btn > a:hover {
  border-color: #316db5;
  background-color: #316db5;
}
.pdinfo-wrap .tips .btn .share {
  float: right;
  padding-right: 24%;
  font: 18px/40px Arial;
  color: #666;
}
.pdinfo-wrap .tips .btn .share span {
  float: left;
}
.pdinfo-wrap .tips .btn .share a {
  width: 21px;
  height: 40px;
  padding: 0;
  margin: 0 8px;
  background: url(../images/bg_sign09.png) no-repeat center top;
}
.pdinfo-wrap .tips .btn .share a:last-child {
  background-position: center bottom;
}

.pro-info{
	width: 56%;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 70px;
}
.pro-dTitle{
	font-size: 24px;
	color: #333;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
.pro-info p{
	font-size: 18px;
	color: #333333;
	line-height: 1.6;
}
.pro-case{
	width: 90%;
	margin: 0 auto;
	margin-bottom: 70px;
}
.pro-case ul{
	display: block;
	width: 90%;
	margin: 0 auto;
}
.pro-case ul li{
	display: flex;
	margin-bottom: 70px;
}
.pro-case ul li:last-child{
	margin-bottom: 0;
}
.pro-dImg{
	width: 49.3%;
}
.pro-dImg img{
	display: block;
	width: 100%;
}
.pro-dImg p{
	font-size: 18px;
	color: #333;
	text-align: center;
	line-height: 1.6;
	margin-top: 5px;
}

.pro-parameter{
	width: 50.7%;
	padding-left: 5%;
	box-sizing: border-box;
}
.pro-parameter dl dt{
	font-size: 24px;
	color: #316db5;
	font-weight: normal;
	margin-bottom: 10px;
}
.pro-parameter dl dd{
	display: flex;
	font-size: 18px;
	color: #333333;
	line-height: 1.6;
	margin-bottom: 15px;
}
.pro-parameter dl dd:last-child{
	margin-bottom: 0;
}
.parameter-name{
	width: 90px;
	display: flex;
}
.parameter-name span{
	display: inline-block;
	width: 80px;
	height: 26px;
	line-height: 26px;
	overflow: hidden;
	text-align: justify;
}
.parameter-name span:after{
	display: inline-block;
	width: 100%;
	height: 0;
	content: '';
}
.parameter-name i{
	display: inline-block;
	font-style: normal;
	height: 26px;
	line-height: 26px;
}
.pro-parameter dl dd p{
	width: calc(100% - 90px);
	padding-left: 10px;
	box-sizing: border-box;
}
.pro-application{
	width: 90%;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 70px;
}
.pro-application ul{
	display: block;
	width: 90%;
	margin: 0 auto;
	zoom: 1;
}
.pro-application ul:after{
	display: block;
	content: '';
	clear: both;
}
.pro-application ul li{
	float: left;
	width: 32%;
	margin-right: 2%;
}
.pro-application ul li:last-child{
	margin-right: 0;
}
.car-large{
	display: block;
	max-width: 100%;
	margin: 0 auto 40px;
}
.car-logo{
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
.pro-more{
	margin-bottom: 120px;
}
.pro-more .proMore-list{
	padding: 60px 0 40px;
	background: #eeeeee;
}
.pro-more .proMore-list ul{
	display: flex;
	width: 80%;
	margin: 0 auto;
}
.pro-more .proMore-list ul li{
	width: 33.3333%;
	text-align: center;
	padding: 0 10px;
	box-sizing: border-box;
}
.proMore-img{
	width: 100%;
	height: 290px;
	text-align: center;
	line-height: 290px;
	margin-bottom: 20px;
}
.proMore-img img{
	max-width: 100%;
	max-height: 100%;
}
.pro-more .proMore-list ul li p{
	font-size: 18px;
	color: #333333;
}
@media screen and (max-width: 1500px){
	/*.pro-dTitle{
		font-size: 30px;
	}*/
	.pro-info p{
		font-size: 16px;
	}
	.pro-parameter dl dt{
		font-size: 22px;
	}
	.pro-parameter dl dd{
		font-size: 16px;
		margin-bottom: 12px;
	}
	.pro-more .proMore-list ul li p{
		font-size: 16px;
	}
	.pro-dImg p{
		font-size: 16px;
	}
}
@media screen and (max-width: 1279px) {
  .pdinfo-wrap .tips {
    width: 50%;
  }
}
@media screen and (max-width: 1023px) {
  .pdinfo-wrap .tips {
    float: none;
    width: 90%;
    padding: 5%;
  }
  .pdinfo-wrap .tips .path {
    text-align: left;
  }
  .pdinfo-wrap .tips h2 {
    font-size: 20px;
    margin-bottom: 3%;
  }
  .pdinfo-wrap .tips td {
    width: 100%;
    float: left;
  }
  .pdinfo-wrap .tips td b {
    font-size: 16px;
  }
  .pdinfo-wrap .tips .btn .share {
    padding-right: 0;
  }
  .pro-dTitle{
		font-size: 24px;
		line-height: 1.4;
	}
	.pro-case ul{
		width: 100%;
	}
	.pro-case ul li{
		display: block;
		margin-bottom: 20px;
	}
	.pro-dImg{
		width: 100%;
	}
	.pro-parameter{
		width: 100%;
		padding-left: 0;
	}
	.pro-parameter dl dt {
	    font-size: 18px;
	}
	.pro-parameter dl dd{
		margin-bottom: 4px;
	}
	.pro-application ul{
		width: 100%;
	}
	.pro-more .proMore-list{
		padding: 40px 0;
	}
	.pro-more .proMore-list ul{
		width: 100%;
		display: block;
	}
	.pro-more .proMore-list ul li{
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}
	.proMore-img{
		width: 50%;
		margin: 0 auto;
    	height: 190px;
    	line-height: 190px;
	}
	.pro-more{
		margin-bottom: 60px;
	}
	.pro-info{
		width: 90%;
	}
}

.news-wrap .ban {
  height: 360px;
  background: url(../images/bg_bg01.jpg) no-repeat center;
}
.news-wrap .ban h2 {
  padding-top: 80px;
  font-size: 48px;
  line-height: 82px;
  color: #fff;
  text-align: center;
}
.news-wrap .ban p {
  font: 30px/2 "微软雅黑", Arial;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.news-wrap .ban p span {
  display: inline-block;
  position: relative;
}
.news-wrap .ban p span::before, .news-wrap .ban p span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.news-wrap .ban p span::before {
  left: -168px;
}
.news-wrap .ban p span::after {
  right: -168px;
}
@media screen and (max-width: 1023px) {
  .news-wrap .ban {
    height: auto;
    padding: 5.5% 0 6%;
    background: url(../images/bg_bg02m.jpg) no-repeat center/cover;
  }
  .news-wrap .ban h2 {
    padding-top: 0;
    font-size: 26px;
    line-height: 2;
  }
  .news-wrap .ban p {
    font-size: 18px;
  }
  .news-wrap .ban p span::before,
  .news-wrap .ban p span::after {
    width: 52px;
  }
  .news-wrap .ban p span::before {
    left: -84px;
  }
  .news-wrap .ban p span::after {
    right: -84px;
  }
 .news-wrap .ban{
  margin-top:44px;
 }
}
.news-wrap menu {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #d6d6d6;
  text-align: center;
}
.news-wrap menu a {
  display: inline-block;
  position: relative;
  padding: 0 3.2%;
  font-size: 18px;
  line-height: 72px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap menu a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background-color: #b9b9b9;
  margin-top: -7px;
}
.news-wrap menu a:first-child::before {
  display: none;
}
.news-wrap menu a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 58px;
  height: 6px;
  background-color: #666;
  margin-left: -29px;
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap menu a:hover, .news-wrap menu a.cur {
  color: #316db5;
}
.news-wrap menu a:hover::after, .news-wrap menu a.cur::after {
  bottom: -1px;
  opacity: 1;
  background-color: #316db5;
}
@media screen and (max-width: 1023px) {
  .news-wrap menu a {
    font-size: 16px;
    line-height: 52px;
  }
  .news-wrap menu a::after {
    height: 3px;
  }
}
.news-wrap .list {
  width: 1205px;
  padding: 3.75% 0 6%;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .news-wrap .list {
    width: 90%;
  }
}
.news-wrap .list li {
  position: relative;
  margin-bottom: 40px;
}
.news-wrap .list li img {
  float: left;
  width: 30%;
}
@media screen and (max-width: 1023px) {
  .news-wrap .list li img {
    float: none;
    width: 100%;
    margin-bottom: 5%;
  }
}
.news-wrap .list li .tips {
  position: absolute;
  right: 0;
  top: 0;
  width: 62.5%;
  height: 100%;
  padding-right: 3.5%;
  border-bottom: 1px solid #e0e0e0;
}
.news-wrap .list li .tips a {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  color: #666;
}
.news-wrap .list li .tips a.tit {
  float: left;
  width: 74%;
  height: 60px;
  padding-top: 2.4%;
  font-size: 18px;
  line-height: 30px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-wrap .list li .tips a.day {
  float: right;
  width: 70px;
  padding-right: 74px;
  border: 1px solid #e0e0e0;
  background: #e0e0e0 url(../images/bg_sign10.png) no-repeat right 28px center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap .list li .tips a.day p {
  padding-top: 10px;
  background-color: #fff;
  font: 36px/1 Arial;
  color: #666;
  text-align: center;
}
.news-wrap .list li .tips a.day span {
  display: inline-block;
  float: left;
  width: 100%;
  padding-bottom: 6px;
  background-color: #fff;
  font: 12px/20px Arial;
  color: #999;
  text-align: center;
}
.news-wrap .list li .tips a:last-child {
  margin-top: 15px;
}
.news-wrap .list li .tips:hover a.day {
  background-position: right 18px center;
}
@media screen and (max-width: 1023px) {
  .news-wrap .list li .tips {
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 5%;
  }
  .news-wrap .list li .tips a {
    line-height: 24px;
  }
  .news-wrap .list li .tips a.tit {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  .news-wrap .list li .tips a:last-child {
    margin-top: 0;
  }
}

.newsinfo-wrap {
  padding: 2.5% 2.8%;
}
@media screen and (max-width: 1023px) {
  .newsinfo-wrap {
    padding: 8% 0;
    margin-top:44px;
  }
}
.newsinfo-wrap .main {
  width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .newsinfo-wrap .main {
    width: 90%;
  }
}
.newsinfo-wrap h2 {
  font-size: 18px;
  line-height: 30px;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .newsinfo-wrap h2 {
    font-size: 16px;
  }
}
.newsinfo-wrap .time {
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  font: 14px/2 Arial;
  color: #999;
  text-align: center;
}
.newsinfo-wrap .detail {
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.newsinfo-wrap .detail img {
  max-width: 100%;
}
.newsinfo-wrap .turn {
  position: relative;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
  font-size: 14px;
  line-height: 30px;
  color: #666;
}
.newsinfo-wrap .turn a {
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.newsinfo-wrap .turn a:hover {
  color: #316db5;
}
.newsinfo-wrap .turn a.back {
  position: absolute;
  right: 10px;
  top: 15px;
  color: #316db5;
}

.jobs-wrap .main {
  width: 1205px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .jobs-wrap .main {
    width: 90%;
  }
}
.jobs-wrap .intro {
  padding: 3.5% 0 1.7%;
  border-bottom: 1px solid #e5e5e5;
}
.jobs-wrap .intro .tips {
  float: left;
  width: 29%;
  font-size: 16px;
  line-height: 2;
  color: #666;
}
@media screen and (max-width: 1023px) {
  .jobs-wrap .intro .tips {
    font-size: 14px;
  }
  .jobs-wrap{
    margin-top:44px;
  }
}
.jobs-wrap .intro .tips a {
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobs-wrap .intro .tips a:hover {
  color: #316db5;
}
.jobs-wrap .intro .tips h2 {
  position: relative;
  padding-left: 120px;
  font-size: 24px;
  line-height: 2;
  color: #666;
}
.jobs-wrap .intro .tips h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 96px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 1023px) {
  .jobs-wrap .intro .tips h2 {
    padding-left: 60px;
    font-size: 18px;
  }
  .jobs-wrap .intro .tips h2::before {
    width: 48px;
  }
}
.jobs-wrap .intro .tips h3 {
  margin-bottom: 34px;
  font: 40px/64px Arial;
  color: #000;
  text-transform: uppercase;
}
.jobs-wrap .intro .tips h3 b {
  color: #316db5;
}
@media screen and (max-width: 1023px) {
  .jobs-wrap .intro .tips h3 {
    font-size: 24px;
    line-height: 2;
  }
}
.jobs-wrap .intro .search {
  float: right;
  width: 62%;
  padding-top: 48px;
  margin-right: 2.5%;
  font-size: 16px;
  line-height: 30px;
  color: #666;
}
@media screen and (max-width: 1023px) {
  .jobs-wrap .intro .search {
    padding-top: 5%;
  }
}
.jobs-wrap .intro .search a {
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobs-wrap .intro .search a:hover {
  color: #316db5;
}
.jobs-wrap .intro .search span {
  font-size: 14px;
  color: #316db5;
}
@media screen and (max-width: 1023px) {
  .jobs-wrap .intro .search span {
    line-height: 24px;
  }
}
.jobs-wrap .intro .search form {
  position: relative;
  margin-top: 25px;
}
.jobs-wrap .intro .search form input {
  width: 600px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f7f7f7;
  box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 42px;
  color: #666;
}
.jobs-wrap .intro .search form input[type="submit"] {
  width: 150px;
  height: 44px;
  padding-left: 60px;
  background: #316db5 url(../images/bg_sign11.png) no-repeat 32px center;
  margin-left: -30px;
  box-shadow: none;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .jobs-wrap .intro .search form input {
    width: 80%;
  }
  .jobs-wrap .intro .search form input[type="submit"] {
    position: absolute;
    right: 0;
  }
}
@media screen and (max-width: 1279px) {
  .jobs-wrap .intro {
    padding: 3.5% 0 5%;
  }
  .jobs-wrap .intro .tips {
    float: none;
    width: 100%;
  }
  .jobs-wrap .intro .tips h3 {
    margin-bottom: 0;
  }
  .jobs-wrap .intro .search {
    float: none;
    width: 100%;
    margin-right: 0;
  }
}
.jobs-wrap .list {
  padding: 4% 0 6%;
}
.jobs-wrap .list li {
  position: relative;
  border: 1px solid #ccc;
  margin-bottom: 18px;
}
.jobs-wrap .list li .top {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobs-wrap .list li .tips {
  float: left;
  box-sizing: border-box;
  width: 86%;
  padding: 1.4% 4.6% 2.3%;
  border-right: 1px solid #ccc;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.jobs-wrap .list li .tips h2 {
  font-size: 20px;
  line-height: 48px;
  color: #316db5;
}
.jobs-wrap .list li .tips h2 span {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  padding-left: 23px;
  font-size: 14px;
  line-height: 48px;
  color: #666;
}
.jobs-wrap .list li .tips h2 span::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 15px;
  background-color: #d6d6d6;
  margin-top: -8px;
}
@media screen and (max-width: 1023px) {
  .jobs-wrap .list li .tips {
    width: 80%;
    font-size: 12px;
    line-height: 2;
  }
  .jobs-wrap .list li .tips h2 {
    font-size: 18px;
    line-height: 2;
  }
  .jobs-wrap .list li .tips td {
    float: left;
    width: 50%;
  }
}
.jobs-wrap .list li .view {
  position: relative;
  float: right;
  width: 14%;
  padding-top: 1.4%;
  text-align: center;
  cursor: pointer;
}
.jobs-wrap .list li .view span {
  display: inline-block;
  padding-top: 48px;
  background: url(../images/bg_sign12.png) no-repeat center top;
  font-size: 16px;
  line-height: 1;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobs-wrap .list li .view:hover span {
  background-position: center 25%;
  color: #316db5;
}
.jobs-wrap .list li .view::after {
  opacity: 0;
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 70%;
  width: 0;
  height: 0;
  background: url(../images/close01.png) no-repeat center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
@media screen and (max-width: 1023px) {
  .jobs-wrap .list li .view {
    padding-top: 5%;
    width: 20%;
  }
  .jobs-wrap .list li .view span {
    font-size: 14px;
  }
}
.jobs-wrap .list li .box {
  display: none;
  position: relative;
  padding: 2.2% 4% 5%;
  background-color: #f7f7f7;
  border-top: 1px solid #d0d0d0;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.jobs-wrap .list li .box h2 {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 32px;
  color: #333;
}
.jobs-wrap .list li .box a.mail {
  display: inline-block;
  position: absolute;
  right: 3.5%;
  bottom: 14%;
  width: 90px;
  padding-left: 60px;
  border-radius: 8px;
  background: #316db5 url(../images/bg_sign13.png) no-repeat 30px center;
  font-size: 16px;
  line-height: 44px;
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobs-wrap .list li .box a.mail:hover {
  box-shadow: 2px 2px 15px #316db5;
}

.job-popup{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 80;
}
.popup-bg{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	left: 0;
	top: 0;
	z-index: 81;
}
.job-popupBox{
	position: absolute;
	width: 820px;
	height: 480px;
	background: url(../images/popup-bg.png) no-repeat bottom center #FFFFFF;
	z-index: 82;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.job-logo{
	position: absolute;
	left: 0;
	top: 30px;
}
.job-close{
	position: absolute;
	right: 6px;
	top: 6px;
	cursor: pointer;
}
.job-close img{
	display: block;
	margin: 0 auto;
}
.job-close span{
	display: block;
	font-size: 20px;
	color: #666666;
	text-align: center;
}
.job-email{
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.job-email h3{
	font-size: 20px;
	color: #333333;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 1px solid #e7e7e7;
	margin-bottom: 10px;
}
.job-email p{
	font-size: 18px;
	color: #333333;
	line-height: 1.6;
}

@media screen and (max-width: 1023px) {
  .jobs-wrap .list li .box a.mail {
    position: relative;
    left: 0;
    right: auto;
    margin-top: 5%;
  }
  .job-popupBox{
  	width: 90%;
  	height: 400px;
  }
  .job-logo{
  	width: 120px;
  	left: 0;
    top: 0;
  }
  .job-close span{
  	font-size: 16px;
  }
  .job-email{
  	width: 80%;
  }
  .job-email h3{
  	font-size: 18px;
  }
  .job-email p{
  	font-size: 16px;
  }
}
.jobs-wrap .list li.cur .top {
  background-color: #f7f7f7;
}
.jobs-wrap .list li.cur .view span {
  opacity: 0;
}
.jobs-wrap .list li.cur .view::after {
  width: 37px;
  height: 37px;
  margin: -16.5px 0 0 -16.5px;
  opacity: 1;
}

.jobsintro-wrap {
  position: relative;
}
.jobsintro-wrap::before {
  position: absolute;
  left: 0;
  top: -1px;
  z-index: 5;
  width: 100%;
  height: 1px;
  box-shadow: 0 0 5px black;
}
.jobsintro-wrap .title {
  position: relative;
  overflow: hidden;
}
.jobsintro-wrap .title h2 {
  font-size: 48px;
  line-height: 80px;
  color: #666;
  text-align: center;
}
.jobsintro-wrap .title h3 {
  font: 36px/62px "微软雅黑", Arial;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}
.jobsintro-wrap .title h3 span {
  display: inline-block;
  position: relative;
}
.jobsintro-wrap .title h3 span::before, .jobsintro-wrap .title h3 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 2px;
  background-color: #333;
}
.jobsintro-wrap .title h3 span::before {
  left: -125px;
}
.jobsintro-wrap .title h3 span::after {
  right: -125px;
}
@media screen and (max-width: 1279px) {
  .jobsintro-wrap .title h2 {
    font-size: 30px;
    line-height: 2;
  }
  .jobsintro-wrap{
  margin-top:44px;
 }
}
.jobsintro-wrap .tips {
  position: relative;
}
.jobsintro-wrap .tips .box {
  position: absolute;
  left: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background: url(../images/img22.jpg) no-repeat center/cover;
}
.jobsintro-wrap .tips .box .in {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -59px;
}
.jobsintro-wrap .tips .box .in h2 {
  font-size: 48px;
  line-height: 72px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .jobsintro-wrap .tips .box .in h2 {
    font-size: 36px;
    line-height: 2;
  }
}
.jobsintro-wrap .tips .box .in p {
  font: 30px/46px "微软雅黑", Arial;
  color: #fff;
  text-align: center;
}
.jobsintro-wrap .tips .box .in p span {
  position: relative;
  display: inline-block;
}
.jobsintro-wrap .tips .box .in p span::before, .jobsintro-wrap .tips .box .in p span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 1px;
  background-color: #fff;
  opacity: .3;
}
.jobsintro-wrap .tips .box .in p span::before {
  left: -185px;
}
.jobsintro-wrap .tips .box .in p span::after {
  right: -185px;
}
@media screen and (max-width: 1023px) {
  .jobsintro-wrap .tips .box {
    position: relative;
    width: 100%;
    height: auto;
  }
  .jobsintro-wrap .tips .box .in {
    -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
            transform: scale(0.6);
  }
  .jobsintro-wrap .tips .box .in p span::before,
  .jobsintro-wrap .tips .box .in p span::after {
    display: none;
  }
  .jobsintro-wrap .title h3 {
    font-size: 20px;
  }
}
.jobsintro-wrap .tips .list {
  float: right;
  width: 52%;
}
.jobsintro-wrap .tips .list li {
  position: relative;
  overflow: hidden;
  float: left;
  width: 33.33%;
}
.jobsintro-wrap .tips .list li::first-child {
  width: 33.34%;
}
.jobsintro-wrap .tips .list li:nth-child(4), .jobsintro-wrap .tips .list li:nth-child(5) {
  width: 50%;
}
.jobsintro-wrap .tips .list li .bg {
  background: rgba(49, 109, 181, 0.5);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobsintro-wrap .tips .list li .top {
  position: absolute;
  left: 10%;
  top: 15%;
  font-size: 22px;
  line-height: 35px;
  color: #fff;
}
.jobsintro-wrap .tips .list li .top p.en {
  position: relative;
  font: 14px/20px Arial;
  color: #fff;
}
.jobsintro-wrap .tips .list li .top p.en::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 22px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 1279px) {
  .jobsintro-wrap .tips .list li .top {
    font-size: 18px;
  }
}
.jobsintro-wrap .tips .list li .hoverbg {
  background: url(../images/bg_bg04.png) no-repeat center bottom/cover;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
}
.jobsintro-wrap .tips .list li .bot {
  position: absolute;
  left: 10%;
  bottom: 24%;
  width: 80%;
  font-size: 12px;
  line-height: 2;
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  -webkit-transform: translateY(10%);
      -ms-transform: translateY(10%);
          transform: translateY(10%);
  opacity: 0;
}
.jobsintro-wrap .tips .list li:hover .bg {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
.jobsintro-wrap .tips .list li:hover .hoverbg,
.jobsintro-wrap .tips .list li:hover .bot {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .jobsintro-wrap .tips .list {
    width: 100%;
  }
  .jobsintro-wrap .tips .list li .top {
    font-size: 14px;
    line-height: 2;
  }
  .jobsintro-wrap .tips .list li .top p.en {
    font-size: 12px;
  }
  .jobsintro-wrap .tips .list li .top p.en::after {
    bottom: -10px;
  }
  .jobsintro-wrap .tips .list li .bot {
    bottom: 15%;
    line-height: 20px;
  }
  .jobsintro-wrap .tips .list li:hover .top {
    -webkit-transform: translateY(-200%);
        -ms-transform: translateY(-200%);
            transform: translateY(-200%);
  }
}
.jobsintro-wrap .idea {
  padding: 20px 0 5%;
}
.jobsintro-wrap .idea .list {
  width: 1212px;
  margin: 30px auto 0;
}
.jobsintro-wrap .idea .list li {
  box-sizing: border-box;
  float: left;
  position: relative;
  overflow: hidden;
  width: 16%;
  border: 6px solid #efefef;
  margin: 0 .3%;
}
.jobsintro-wrap .idea .list li .detail {
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px 12px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobsintro-wrap .idea .list li .detail p {
  float: left;
  width: 18px;
  margin: -26px 0 0 24px;
}
.jobsintro-wrap .idea .list li .detail p.en {
  width: 300%;
  padding: 4px 0;
  margin: 0;
  font-family: Arial;
  text-transform: uppercase;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: translateX(22px) rotate(90deg);
      -ms-transform: translateX(22px) rotate(90deg);
          transform: translateX(22px) rotate(90deg);
}
.jobsintro-wrap .idea .list li .detail p.tip {
  opacity: 0;
  padding: 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  line-height: 1.5;
}
.jobsintro-wrap .idea .list li:hover .detail {
  left: 8%;
  top: 22%;
  width: 72.5%;
  height: auto;
  padding: 42% 5.5% 45%;
  background-color: rgba(49, 109, 181, 0.9);
}
.jobsintro-wrap .idea .list li:hover .detail p {
  width: 100%;
  margin: 0 0 13% 0;
  font-weight: bold;
  text-align: center;
}
.jobsintro-wrap .idea .list li:hover .detail p.en {
  opacity: 0;
  display: none;
}
.jobsintro-wrap .idea .list li:hover .detail p.tip {
  font-weight: normal;
  opacity: 1;
  text-align: left;
}
@media screen and (max-width: 1279px) {
  .jobsintro-wrap .idea .list {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .jobsintro-wrap .idea .list {
    width: 90%;
  }
  .jobsintro-wrap .idea .list li {
    width: 48%;
    margin: 0 1% 2%;
  }
}
.jobsintro-wrap .elfare {
  padding: 40px 0 5%;
  background-color: #efefef;
}
.jobsintro-wrap .elfare .detail {
  padding: 0 5%;
  margin: 3.3% 0 6.3%;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  text-align: center;
}
.jobsintro-wrap .elfare .list {
  width: 1205px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .jobsintro-wrap .elfare .list {
    width: 90%;
  }
}
.jobsintro-wrap .elfare .list li {
  position: relative;
  overflow: hidden;
  float: left;
  box-sizing: border-box;
  width: 22.8%;
  padding: 4.8% 18px;
  background-color: #fff;
  margin: 0 1.1%;
  text-align: center;
  -webkit-perspective: 500px;
          perspective: 500px;
}
.jobsintro-wrap .elfare .list li span {
  display: inline-block;
  width: 100px;
  padding-top: 26.5%;
  background: url(../images/bg_sign14.png) no-repeat center top;
  font-size: 14px;
  line-height: 2;
  color: #666;
}
@media screen and (max-width: 1279px) {
  .jobsintro-wrap .elfare .list li span {
    background-size: 40% auto;
  }
}
@media screen and (max-width: 1023px) {
  .jobsintro-wrap .elfare .list li span {
    background-size: auto auto;
  }
}
.jobsintro-wrap .elfare .list li:nth-child(2) span {
  background-image: url(../images/bg_sign15.png);
}
.jobsintro-wrap .elfare .list li:nth-child(3) span {
  background-image: url(../images/bg_sign16.png);
}
.jobsintro-wrap .elfare .list li:nth-child(4) span {
  background-image: url(../images/bg_sign17.png);
}
.jobsintro-wrap .elfare .list li::after {
  content: attr(title);
  display: inline-block;
  box-sizing: border-box;
  padding: 16% 18px 0;
  background-color: rgba(23,86,161,.8);
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  -webkit-transform: rotateY(-90deg);
          transform: rotateY(-90deg);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  opacity: 0;
  text-align: left;
}
.jobsintro-wrap .elfare .list li:hover::after {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  .jobsintro-wrap .elfare .list li {
    width: 100%;
    padding: 10% 5%;
    margin: 0 0 3%;
  }
  .jobsintro-wrap .elfare .list li::after {
    padding-top: 10%;
  }
}
.jobsintro-wrap .staff {
  padding: 4.3% 0 2.7%;
}
.jobsintro-wrap .staff .detail {
  width: 1205px;
  margin: 5% auto;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}

.channel{
	margin-top: 20px;
	background: url(../images/channel-bg.png) no-repeat center top;
}
.channel-box{
	margin-top: 30px;
}
.channel-lc{
	width: 100%;
	margin-bottom: 80px;
}
.channel-lc img{
	display: block;
	margin: 0 auto;
	max-width: 90%;
}
.channel .list li p{
	font-size: 18px;
	color: #333333;
	margin-top: 10px;
	text-align: center;
}

.jstd-box{
	width: 1205px;
	margin: 0 auto;
	margin-bottom: 80px;
}
.jstd-menuBox{
	text-align: center;
	margin-bottom: 40px;
}
.jstd-menuBox ul li{
	display: inline-block;
	width: 180px;
	height: 46px;
	border-radius: 46px;
	border: 1px solid #e1e1e1;
	background: #fff;
	font-size: 22px;
	color: #333333;
	text-align: center;
	line-height: 44px;
	margin: 0 15px;
	cursor: pointer;
}
.jstd-active{
	border: 1px solid #316db5 !important;
	background: #316db5 !important;
	color: #ffffff !important;
}
.jstd-Contenter{
	width: 100%;
}
.jstd-Contenter img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

@media screen and (max-width: 1279px) {
  .jobsintro-wrap .staff .detail {
    width: 90%;
  }
}
.jobsintro-wrap .staff .list {
  width: 1205px;
  margin: 0 auto;
}
.jobsintro-wrap .staff .list li {
  float: left;
  width: 30%;
}
.jobsintro-wrap .staff .list li:nth-child(2) {
  margin: 0 5%;
}
@media screen and (max-width: 1279px) {
  .jobsintro-wrap .staff .list {
    width: 90%;
  }
}
@media screen and (max-width: 1023px) {
  .jobsintro-wrap .staff .list li {
    float: none;
    width: 100%;
    margin: 0 0 5% !important;
  }
  .jstd-box{
  	width: 90%;
  }
  .jstd-menuBox ul li{
  	width: 100px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
    margin: 0 2px;
  }
  .jstd-menuBox ul li:nth-child(1){
  	margin-left: 0;
  }
  .jstd-menuBox ul li:nth-child(2){
  	margin-right: 0;
  }
}
@media screen and (max-width: 1279px) {
  .jobsintro-wrap .staff {
    padding: 5% 0;
  }
}

.contact-wrap {
  position: relative;
}
.ne-banner{
	position: relative;
}
.ne-banner img{
	display: block;
	width: 100%;
}
/*.contact-wrap .ban {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.contact-wrap .ban h2{
  font-size: 48px;
  line-height: 82px;
  color: #fff;
  text-align: center;
}
.contact-wrap .ban p {
  font: 30px/2 "微软雅黑", Arial;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.contact-wrap .ban p span {
  display: inline-block;
  position: relative;
}
.contact-wrap .ban p span::before, .contact-wrap .ban p span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.contact-wrap .ban p span::before {
  left: -168px;
}
.contact-wrap .ban p span::after {
  right: -168px;
}*/

.contact-map{
	padding: 50px 0 80px;
	background: #f1f2f3;
}
.contact-mapBox{
	width: 1205px;
	height: 800px;
  	margin: 0 auto;
  	display: flex;
}
.mapBox-list{
	width: 50%;
	height: 100%;
	position: relative;
}
.contact-hd{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 2;
	/*display: none;*/
}
.show-map{
	opacity: 1 !important;
	z-index: 4 !important;
}
.map-box{
	width: 100%;
	height: 100%;
}
.add-list{
	width: 47%;
	height: 100%;
	margin-left: 3%;
}
.add-list ul{
	width: 100%;
	height: 100%;
}
.add-list ul li{
	width: 100%;
	height: 23.9%;
	background: #FFFFFF;
	margin-bottom: 2%;
	border: 1px solid #e5e5e5;
	box-sizing: border-box;
	padding: 20px 30px;
	cursor: pointer;
}
.add-list ul li:nth-child(4){
	margin-bottom: 0;
}
.add-list ul li h3{
	font-size: 20px;
	color: #316db5;
	font-weight: bold;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
}
.add-list ul li p{
	font-size: 16px;
	color: #333333;
	line-height: 1.6;
}
.add-active{
	background: #316db5 !important;
}
.add-active h3{
	color: #ffffff !important;
	border-bottom: 1px solid #ffffff !important;
}
.add-active p{
	color: #ffffff !important;
}


@media screen and (max-width: 1279px) {
  .contact-wrap {
    min-height: 600px;
  }
  .contact-mapBox{
	width: 90%;
	height: auto;
	display: block;
  }
  .mapBox-list{
	display:none;
  	width: 100%;
  	height: 400px;
  }
  .add-list{
  	width: 100%;
  	margin-left: 0;
  }
  .add-list ul li{
  	padding: 20px 10px;
  }
  .add-list ul li h3{
  	font-size: 18px;
  	margin-bottom: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .contact-wrap{
    min-height: 0;
  }
  
  .contact-wrap .ban {
    height: auto;
    padding: 5.5% 0 6%;
    background: url(../images/lxwm-bg.jpg) no-repeat center/cover;
  }
  .contact-wrap .ban h2 {
    padding-top: 0;
    font-size: 26px;
    line-height: 2;
  }
  .contact-wrap .ban p {
    font-size: 18px;
  }
  .contact-wrap .ban p span::before,
  .contact-wrap .ban p span::after {
    width: 52px;
  }
  .contact-wrap .ban p span::before {
    left: -84px;
  }
  .contact-wrap .ban p span::after {
    right: -84px;
  }
  .iwrap .about .main .tips{
    padding: 4% 0 0 0;
  }
  
}
@media screen and (max-width: 1023px) {
  .contact-wrap .map {
    position: relative;
    height: 400px;
  }
}
.contact-wrap .tips {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  /*padding-top: 3%;*/
  background-color: rgba(49, 109, 181, 0.85);
  font-size: 16px;
  line-height: 36px;
  color: #fff;
}
.contact-wrap .tips .main {
  position: relative;
  width: 1210px;
  margin: 0 auto;
  padding-bottom: 5%;
}
.contact-wrap .tips .aaa{
  padding-top: 3%;
}
@media screen and (max-width: 1279px) {
  .contact-wrap .tips .main {
    width: 90%;
  }
}
.contact-wrap .tips .main h2 {
  font-size: 24px;
  line-height: 44px;
  color: #fff;
}
.contact-wrap .tips .main h3 {
  margin-bottom: 30px;
  font: 16px/34px Arial;
  color: #fff;
}
.contact-wrap .tips .main .box {
  position: relative;
  float: left;
  padding-right: 52px;
}
.contact-wrap .tips .main .box:nth-child(3) {
  margin-right: 62px;
}
.contact-wrap .tips .main .box:nth-child(3) ::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 96px;
  background-color: rgba(255, 255, 255, 0.25);
  margin-top: -48px;
}
.contact-wrap .tips .main .box p {
  padding-left: 32px;
}
.contact-wrap .tips .main .box p:nth-child(1) {
  background: url(../images/bg_sign18.png) no-repeat left 8px;
}
.contact-wrap .tips .main .box p:nth-child(2) {
  background: url(../images/bg_sign19.png) no-repeat left 8px;
}
.contact-wrap .tips .main .box p:nth-child(3) {
  background: url(../images/bg_sign20.png) no-repeat left 8px;
}
.contact-wrap .tips .main .box.on p:nth-child(1){
  background: url(../images/bg_sign18s.png) no-repeat left 8px;
}
.contact-wrap .tips .main .btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 55px;
  background: #ccc url(../images/bg_sign21.png) no-repeat center;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  -ms-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-property: background;
  -webkit-transition-property: background;
  -ms-transition-property: background;
  -o-transition-property: background;
  cursor: pointer;
}
.contact-wrap .tips .main .btn.on{
  background: #ccc url(../images/icon10_10.png) no-repeat center;
}
@media screen and (max-width: 1023px) {
  .contact-wrap .tips {
    position: relative;
    font-size: 14px;
  }
  .contact-wrap .tips .main h2 {
    font-size: 18px;
    line-height: 2;
  }
  .contact-wrap .tips .main h3 {
    font-size: 14px;
    line-height: 2;
  }
  .contact-wrap .tips .main .box {
    float: none;
    width: 100%;
    margin: 0;
  }
}

/*# sourceMappingURL=style.css.map */
.team-wrap{
  width: 1210px;
  padding: 5.5% 0 7%;
  margin: 0 auto;
}
.team-wrap .tips{
  padding-bottom: 5%;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.team-wrap li{
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.team-wrap li h2{
  padding: 0 4%;
  background-color: #316db5;
  font-size: 20px;
  line-height: 62px;
  color: #fff;
}
.team-wrap li .detail{
  padding: 1.3% 4%;
  border: 1px solid #ccc;
  border-top: 0;
}
@media screen and (max-width: 1279px) {
  .team-wrap{
    width: 90%;
  }
  .team-wrap li h2{
    padding: 0 5%;
  }
  .team-wrap li .detail{
    padding: 5%;
  }
}

.news-wrap .videolist {
  width: 1280px;
  padding: 5% 0;
  margin: 0 auto;
}
@media screen and (max-width: 1365px) {
  .news-wrap .videolist {
    width: 90%;
  }
}
.news-wrap .videolist li {
  float: left;
  width: 30%;
  margin-bottom: 3%;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .news-wrap .videolist li {
    width: 100%;
    margin: 0 0 3% !important;
  }
}
.news-wrap .videolist li:nth-child(3n - 1) {
  margin: 0 5% 3%;
}
.news-wrap .videolist li a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.news-wrap .videolist li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 45%;
  width: 70px;
  height: 70px;
  background: url(../images/video.png) no-repeat center/cover;
  margin: -35px 0 0 -35px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .news-wrap .videolist li a::after {
    width: 56px;
    height: 56px;
    margin: -28px 0 0 -28px;
  }
}
.news-wrap .videolist li a:hover::after {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.news-wrap .videolist li p {
  margin: 2% 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.videoout {
  display: none;
  z-index: 10;
}
.videoout .bg {
  background: rgba(0, 0, 0, 0.6);
}
.videoout .close {
  position: absolute;
  right: -60px;
  top: 0;
  z-index: 2;
  width: 60px;
  font: 40px/60px Arial;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.videoout .main {
  position: absolute;
  left: 50%;
  top: 0;
  width: 900px;
  height: 600px;
  background-color: #fff;
  margin-left: -450px;
}

.investor-wrap .ban {
  padding: 9.4% 0 7%;
  background: url(../images/bg_bg05.jpg) no-repeat center/cover;
}
.investor-wrap .ban h2 {
  font-size: 48px;
  line-height: 82px;
  color: #fff;
  text-align: center;
}
.investor-wrap .ban p {
  font: 30px/2 "微软雅黑", Arial;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.investor-wrap .ban p span {
  display: inline-block;
  position: relative;
}
.investor-wrap .ban p span::before, .investor-wrap .ban p span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 104px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.investor-wrap .ban p span::before {
  left: -115px;
}
.investor-wrap .ban p span::after {
  right: -115px;
}
@media screen and (max-width: 1023px) {
  .investor-wrap .ban {
    background-image: url(../images/bg_bg05m.jpg);
  }
  .investor-wrap .ban h2 {
    font-size: 24px;
    line-height: 2;
  }
  .investor-wrap .ban p {
    font-size: 15px;
  }
  .investor-wrap .ban p span::before, .investor-wrap .ban p span::after {
    width: 52px;
  }
  .investor-wrap .ban p span::before {
    left: -60px;
  }
  .investor-wrap .ban p span::after {
    right: -60px;
  }
}
.investor-wrap .title {
  padding: 2.8% 0 1.7%;
  border-bottom: 1px solid #e5e5e5;
}
.investor-wrap .title .in {
  width: 1210px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .investor-wrap .title .in {
    width: 90%;
  }
}
.investor-wrap .title h2 {
  position: relative;
  padding-left: 10%;
  font-size: 24px;
  line-height: 2;
  color: #666;
}
.investor-wrap .title h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 8%;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 1023px) {
  .investor-wrap .title h2 {
    padding-left: 15%;
    font-size: 16px;
  }
  .investor-wrap .title h2::before {
    width: 12%;
  }
}
.investor-wrap .title h3 {
  font: 40px/64px Arial;
  color: #000;
  text-transform: uppercase;
}
.investor-wrap .title h3 b {
  color: #316db5;
}
@media screen and (max-width: 1023px) {
  .investor-wrap .title h3 {
    font-size: 16px;
    line-height: 2;
  }
}
.investor-wrap .box {
  width: 1210px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .investor-wrap .box {
    width: 90%;
  }
}
.investor-wrap .bg {
  background-color: #efefef;
}
.investor-wrap .bg .title {
  border-bottom-color: #d9d9d9;
}
.investor-wrap .list {
  width: 1210px;
  padding: 2.6% 0;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .investor-wrap .list {
    width: 90%;
  }
}
.investor-wrap .list li {
  box-sizing: border-box;
  padding: 3.8% 4.5%;
  border: 1px solid #e5e5e5;
  background-color: #f7f7f7;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 30px;
  color: #666;
}
.investor-wrap .list li:nth-child(2n) {
  background-color: #fff;
}
.investor-wrap .list li h2 {
  padding-bottom: 13px;
  border-bottom: 1px solid #d6d6d6;
  margin-bottom: 2.6%;
  font-size: 18px;
  line-height: 2;
  color: #333;
}
.investor-wrap .list li h2 span {
  color: #316db5;
}
.investor-wrap .list .mail {
  height: 100px;
  background: #316db5 url(../images/bg_bg06.png) no-repeat left center/auto 100%;
  border-radius: 18px;
}
.investor-wrap .list .mail .name {
  float: left;
  padding: 0 2.5% 0 17.7%;
  margin-top: 27px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}
.investor-wrap .list .mail .name span {
  font: 14px/2 Arial;
  color: #fff;
}
@media screen and (max-width: 1210px) {
  .investor-wrap .list .mail .name {
    padding-left: 20%;
  }
}
.investor-wrap .list .mail a {
  display: inline-block;
  float: left;
  margin-top: 34px;
  padding-left: 3%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font: 24px/2 Arial;
  color: #fff;
  text-transform: uppercase;
}
.investor-wrap .list .mail a.btn {
  float: right;
  margin: 29px 4.3% 0 0;
  padding: 0 3%;
  background-color: #181c22;
  border-radius: 20px;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .investor-wrap .list .mail {
    height: 50px;
  }
  .investor-wrap .list .mail a {
    margin-top: 0;
    padding-left: 29%;
    font-size: 14px;
    line-height: 50px;
  }
}
.backbtn{
  position: relative;
  margin: 25px auto;
  height: 50px;
  text-align: center;
}
@media screen and (max-width: 1023px){
  .iwrap .history .main h3{
    font-size: 20px;
    margin: 0 0 10px 0;
  }
}
@media screen and (max-width: 769px){
	.iwrap .history .main .list{
		margin-bottom:50px;
	}
	.iwrap .history .main .btns{
		top:auto;
		bottom:70px;		
	}
	.iwrap .history .main .btns .btn.prev{
		margin-right:20%;
	}
	.iwrap .history .main .btns .btn.next{
		margin-left:20%;
	}
}
 @media (-webkit-device-pixel-ratio: 1.25){
/*	body{
		zoom: 0.8;
	}
	header{
		zoom: 1.25;
	}
	.zgs{
		font-size: 16px;
	}
	.tips{
		zoom: 1.25;
	}
	.pro-info{
		zoom: 1.25;
	}
	.pro-case{
		zoom: 1.25;
	}
*/
	.zgs{
		font-size: 16px;
	}
	.jgt-fc ul li{
		font-size: 16px;
	}
	
}
@media (-webkit-device-pixel-ratio: 1.5){ 
      /*	body{
		zoom: 0.8;
	}
	header{
		zoom: 1.25;
	}
	.pro-case{
		zoom: 1.25;
	}
	.tips{
		zoom: 1.25;
	}
	.pro-info{
		zoom: 1.25;
	}
*/
	.zgs{
		font-size: 16px;
	}
	.jgt-fc ul li{
		font-size: 16px;
	}
	
}
@media (-webkit-device-pixel-ratio: 0.8){ 
/*	body{
		zoom: 1.25;
	}
	header{
		zoom: 0.8;
	}
*/
	.zgs{
		font-size: 16px;
	}
	.jgt-fc ul li{
		font-size: 16px;
	}
}


























