/**
 * 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 .list li .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ovh {
  overflow: hidden;
}

.noselect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.dn {
  display: none;
}

.dib {
  display: inline-block;
}

.w-f {
  width: 100%;
}

.h-f {
  height: 100%;
}

.fwn {
  font-weight: normal;
}

.tac {
  text-align: center;
}

.t-f {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}

.t-c {
  -webkit-transition: color 0.5s;
          transition: color 0.5s;
}

.t-bg {
  -webkit-transition: background 0.5s;
          transition: background 0.5s;
}

.loader {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  -webkit-animation: spinner 700ms infinite linear;
          animation: spinner 700ms infinite linear;
}

.loader.white {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.mw {
  width: 1024px;
  margin: 0 auto;
}

header {
  position: relative;
  z-index: 5;
  height: 92px;
  background-color: #fff;
}
header nav {
  margin-top: 24px;
}
header nav li {
  float: left;
  position: relative;
  padding-right: 1px;
}
header nav li::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 16px;
  width: 1px;
  height: 22px;
  background-color: #d4d5d5;
}
header nav li a.tit {
  display: inline-block;
  position: relative;
  padding: 0 18px 14px;
  font-size: 14px;
  line-height: 54px;
  color: #626263;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header nav li a.tit:hover, header nav li a.tit.cur {
  color: #3c7bab;
}
header nav li:last-child {
  padding-right: 0;
}
header nav li:last-child::after {
  display: none;
}
header nav li:last-child a.tit {
  padding-right: 0;
}
header nav li .subnav {
  display: none;
  position: absolute;
  left: 50%;
  top: 57px;
  width: 190px;
  padding-top: 11px;
  margin-left: -95px;
  background: url(../img/bg_sign09.png) no-repeat center top;
}
header nav li .subnav .in {
  padding: 22px;
  padding-bottom: 30px;
  background-color: #035cac;
}
header nav li .subnav a {
  display: inline-block;
  width: 100%;
  border-bottom: 1px dashed #97afd3;
  background: url(../img/bg_sign10.png) no-repeat left center;
  font-size: 14px;
  line-height: 36px;
  color: #e5e5e5;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header nav li .subnav a:hover {
  color: #fff;
}

footer {
  padding-top: 40px;
  background-color: #263745;
}
footer li {
  position: relative;
  float: left;
  width: 185px;
  padding: 27px 5px 27px 30px;
  border-right: 1px solid #36434d;
  font-size: 13px;
  line-height: 34px;
  color: #a9a9a9;
}
footer li p {
  padding-left: 58px;
}
footer li:nth-child(1) p {
  background: url(../img/bg_sign06.png) no-repeat left center;
}
footer li:nth-child(2) p {
  background: url(../img/bg_sign07.png) no-repeat left center;
}
footer li:nth-child(3) p {
  background: url(../img/bg_sign08.png) no-repeat left center;
  line-height: 1.5;
}
footer li:nth-child(4) p{
  background: url(../img/bg_link.png) no-repeat left center;
}
footer li:nth-child(4) span{
  display: inline-block;
  padding-right: 32px;
  background: url(../img/bg_link2.png) no-repeat right center;
}
footer li:nth-child(4) .box{
  display: none;
  position: absolute;
  left: 17px;
  bottom: 65px;
  width: 80%;
  padding: 4px;
  border: 1px solid #a9a9a9;
  background-color: #263745;
}
footer li:nth-child(4) .box a{
  display: inline-block;
  float: left;
  width: 100%;
  padding: 3px 0;
  font-size: 12px;
  line-height: 1.5;
  color: #a9a9a9;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer li:nth-child(4) .box a:hover{
  color: #fff;
}
footer .image {
  width: 95px;
  font-size: 13px;
  line-height: 38px;
  color: #9b9b9c;
}
footer .image img {
  padding: 3px;
  border: 1px solid #6b7278;
}
footer .bottom {
  border-top: 1px solid #6b7278;
  margin-top: 10px;
  font-size: 12px;
  line-height: 60px;
  color: #9d9c9c;
  text-align: center;
}
footer .bottom a {
  color: #9d9c9c;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer .bottom a.doc{
  margin-left: 20px;
}
footer .bottom a:hover {
  color: #fff;
}

.insban {
  position: relative;
  overflow: hidden;
  height: 438px;
}
.insban img {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -960px;
}

.menu {
  height: 58px;
  padding-top: 18px;
  border-bottom: 1px solid #e5e5e5;
}
.menu a {
  display: inline-block;
  float: left;
  padding: 0 5px;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 18px;
  font-size: 16px;
  line-height: 58px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.menu a:hover, .menu a.cur {
  border-bottom-color: #035cac;
}

.insbg {
  background: url(../img/bg_bg01.jpg);
}

.institle h2, .org-wrap h2, .tec-wrap h2, .partner-wrap h2, .style-wrap h2, .projects-wrap h2, .policy-wrap h2, .news-wrap h2 {
  font-size: 34px;
  line-height: 60px;
  color: #035cac;
  text-align: center;
}
.institle p.en, .org-wrap p.en, .tec-wrap p.en, .partner-wrap p.en, .style-wrap p.en, .projects-wrap p.en, .policy-wrap p.en, .news-wrap p.en {
  font: 22px/46px Arial;
  color: #666;
  text-align: center;
  text-transform: uppercase;
}

.iwrap {
  position: relative;
}
.iwrap .ban {
  position: relative;
  overflow: hidden;
  height: 820px;
}
.iwrap .ban img.bg {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -960px;
  opacity: 0;
}
.iwrap .ban .tips {
  position: absolute;
  left: 50%;
  top: 116px;
  margin-left: -310px;
}
.iwrap .ban .tips h2 {
  font-weight: bold;
  font-size: 60px;
  line-height: 84px;
  color: #152c6c;
  text-transform: uppercase;
}
.iwrap .ban .tips h3 {
  font-size: 30px;
  line-height: 2;
  color: #e20711;
  margin: 4px 0 10px;
}
.iwrap .ban .tips p {
  font: 16px/24px Arial;
  color: #000045;
  text-transform: uppercase;
}
.iwrap .ban .tips * {
  position: relative;
  opacity: 0;
  top: 20px;
}
.iwrap .list {
  position: absolute;
  left: 50%;
  bottom: 50px;
  width: 992px;
  height: 160px;
  margin-left: -496px;
}
.iwrap .list li {
  float: left;
  position: relative;
  overflow: hidden;
  width: 186px;
  height: 158px;
  border: 1px solid #595959;
  margin: 0 30px;
  position: relative;
  /*opacity: 0;*/
  /*left: 5%;*/
}
.iwrap .list li img {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.iwrap .list li .bg {
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.iwrap .list li .tips {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 18px;
  z-index: 2;
  width: 100%;
  padding-top: 60px;
  font-size: 13px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.iwrap .list li:nth-child(1) .tips {
  background: url(../img/bg_sign01.png) no-repeat center top;
}
.iwrap .list li:nth-child(2) .tips {
  background: url(../img/bg_sign02.png) no-repeat center top;
}
/*.iwrap .list li:nth-child(3) .tips {
  background: url(../img/bg_sign03.png) no-repeat center top;
}
*/.iwrap .list li:nth-child(3) .tips {
  background: url(../img/bg_sign04.png) no-repeat center top;
}
.iwrap .list li:nth-child(4) .tips {
  background: url(../img/bg_sign05.png) no-repeat center top;
}
.iwrap .list li:hover img {
  /*-webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);*/
}
.iwrap .list li:hover .bg {
  /*background: rgba(0, 0, 0, 0.4);*/
}
.iwrap .list li:hover .tips {
  /*background-position: center 10%;*/
}

.intro-wrap {
  padding: 42px 0 70px;
}
.intro-wrap .title {
  padding: 0 0 50px 50px;
  font-size: 16px;
  line-height: 26px;
  color: #666;
}
.intro-wrap .title h2 {
  font-size: 30px;
  line-height: 2;
  color: #035cac;
}
.intro-wrap .detail {
  background-color: #fff;
}
.intro-wrap .detail .tips {
  width: 405px;
  height: 298px;
  padding: 32px 58px 0 47px;
  font-size: 14px;
  line-height: 24px;
  color: #999;
}
.intro-wrap .detail .tips h2 {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 2;
  color: #035cac;
}

.about-wrap {
  padding: 108px 0 190px;
}
.about-wrap .tips {
  width: 370px;
  padding-left: 8px;
  font-size: 14px;
  line-height: 2;
  color: #626263;
}
.about-wrap .tips h2 {
  font-size: 34px;
  line-height: 49px;
  color: #035cac;
}
.about-wrap .tips h3 {
  margin-bottom: 26px;
  font: 22px/36px Arial;
  color: #666;
}
.about-wrap .image {
  position: relative;
  padding-top: 44px;
  /*padding: 44px 88px 0 0;*/
  /*background: url(../img/bg_sign11.png) no-repeat right top;*/
}
.about-wrap .image .scroll {
  position: relative;
  overflow: hidden;
  width: 460px;
  height: 247px;
}
.about-wrap .image .scroll li {
  float: left;
  width: 460px;
  height: 247px;
}
.about-wrap .image .btn {
  position: absolute;
  top: 150px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .image .btn.prev {
  left: 2px;
  background: url(../img/prev01.png) no-repeat left center;
}
.about-wrap .image .btn.prev:hover {
  background-position: right center;
}
.about-wrap .image .btn.next {
  right: 0;
  /*right: 90px;*/
  background: url(../img/next01.png) no-repeat right center;
}
.about-wrap .image .btn.next:hover {
  background-position: left center;
}

.culture-wrap {
  padding: 70px 0 115px;
  background-color: #f5f5f5;
}
.culture-wrap .tags {
  height: 164px;
  margin-bottom: 74px;
}
.culture-wrap .tags li {
  float: left;
  width: 33.33%;
  font-size: 24px;
  line-height: 2;
  color: #999;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.culture-wrap .tags li:nth-child(2) {
  width: calc(33.34% - 2px);
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.culture-wrap .tags li .sign {
  height: 108px;
  margin-bottom: 8px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.culture-wrap .tags li:nth-child(1) .sign {
  background: url(../img/bg_sign12.png) no-repeat center top;
}
.culture-wrap .tags li:nth-child(2) .sign {
  background: url(../img/bg_sign13.png) no-repeat center top;
}
.culture-wrap .tags li:nth-child(3) .sign {
  background: url(../img/bg_sign14.png) no-repeat center top;
}
.culture-wrap .tags li:hover {
  color: #035cac;
}
.culture-wrap .tags li:hover .sign {
  background-position: center bottom;
}
.culture-wrap .box li {
  height: 320px;
  margin-bottom: 48px;
  font-size: 14px;
  line-height: 2;
  color: #666;
}
.culture-wrap .box li .tips {
  width: 284px;
  height: 226px;
  padding: 94px 40px 0;
  background-color: #fff;
}
.culture-wrap .box li .tips.fr {
  text-align: right;
}
.culture-wrap .box li h2 {
  font-size: 26px;
  line-height: 38px;
  color: #333;
}
.culture-wrap .box li p.en {
  margin-bottom: 22px;
  font: 18px/30px Arial;
  color: #666;
}

.org-wrap {
  padding: 90px 0 165px;
  background: url(../img/bg_bg02.jpg) no-repeat center/cover;
}
.org-wrap p.en {
  margin-bottom: 60px;
}
.org-wrap .detail {
  width: 935px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 40px;
  color: #333;
}
.org-wrap .detail img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.tec-wrap {
  padding: 88px 0 50px;
  background: url(../img/bg_bg02.jpg) no-repeat center/cover;
}
.tec-wrap p.en {
  margin-bottom: 75px;
}
.tec-wrap .detail {
  margin-bottom: 112px;
  font-size: 24px;
  line-height: 42px;
  color: #333;
  text-align: center;
}
.tec-wrap h3 {
  font-size: 26px;
  line-height: 38px;
  color: #035cac;
  text-align: center;
}
.tec-wrap h3 span {
  display: inline-block;
  position: relative;
  padding: 0 44px 0 80px;
  background: url(../img/bg_sign15.png) no-repeat center;
}
.tec-wrap .box {
  margin: 88px 0 75px;
}
.tec-wrap .box .tips {
  position: relative;
  width: 450px;
  height: 301px;
  padding: 42px 38px 0 22px;
  background-color: #fff;
  margin-top: 36px;
}
.tec-wrap .box .tips::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -23px;
  top: 15px;
  width: 514px;
  height: 308px;
  border: 1px solid #bdbdbd;
}
.tec-wrap .box .tips .in {
  position: relative;
  z-index: 2;
}
.tec-wrap .box .tips .in h3 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 2;
  color: #333;
  text-align: center;
}
.tec-wrap .box .tips .in .scroll-box {
  position: relative;
  overflow: hidden;
  height: 128px;
  font-size: 18px;
  line-height: 32px;
  color: #999;
}
.tec-wrap .box .tips .in .scroll-box .scroll {
  position: relative;
  top: 0;
}
.tec-wrap .box .tips .in .btns {
  margin: 25px 0 0 65px;
}
.tec-wrap .box .tips .in .btns span {
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 1px solid #bdbdbd;
  margin-right: 15px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.tec-wrap .box .tips .in .btns span.prev {
  background: #f1f1f1 url(../img/prev02.png) no-repeat center bottom;
}
.tec-wrap .box .tips .in .btns span.prev:hover {
  border-color: #035cac;
  background-position: center top;
  background-color: #035cac;
}
.tec-wrap .box .tips .in .btns span.next {
  background: #f1f1f1 url(../img/next02.png) no-repeat center top;
}
.tec-wrap .box .tips .in .btns span.next:hover {
  border-color: #035cac;
  background-position: center bottom;
  background-color: #035cac;
}
.tec-wrap .box .tips.fl {
  padding: 42px 18px 0 40px;
}
.tec-wrap .box .tips.fl::before {
  left: 15px;
}

.partner-wrap {
  padding: 90px 0 145px;
  background: #f5f5f5 url(../img/bg_bg03.png) no-repeat center 190px;
}
.partner-wrap p.en {
  margin-bottom: 88px;
}
.partner-wrap li {
  float: left;
  width: 243px;
  height: 138px;
  border: 1px solid #e5e5e5;
  margin: 0 15px 50px 0;
}
.partner-wrap li:nth-child(4n) {
  margin-right: -1px;
}
.partner-wrap .btn {
  height: 65px;
  text-align: center;
}
.partner-wrap .btn span {
  display: inline-block;
  width: 63px;
  height: 63px;
  border: 1px solid #bdbdbd;
  background: #f1f1f1 url(../img/next03.png) no-repeat center bottom;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.partner-wrap .btn span:hover {
  border-color: #035cac;
  background-color: #035cac;
  background-position: center top;
}

.style-wrap {
  padding: 58px 0 90px;
}
.style-wrap p.en {
  margin-bottom: 88px;
}
.style-wrap li {
  float: left;
  width: 320px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 32px 116px 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.style-wrap li a {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  line-height: 22px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.style-wrap li a.tit {
  margin: 36px 0 10px;
  font-size: 16px;
  line-height: 2;
  color: #333;
}
.style-wrap li a:hover {
  color: #035cac;
}
.style-wrap li:hover {
  border-bottom-color: #035cac;
}
.style-wrap li:nth-child(3n) {
  margin-right: 0;
}

.newsinfo-wrap {
  padding: 75px 0 85px;
}
.newsinfo-wrap h2 {
  font-size: 24px;
  line-height: 2;
  color: #333;
  text-align: center;
}
.newsinfo-wrap .time {
  padding: 7px 0 19px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 38px;
  font-size: 14px;
  line-height: 2;
  color: #666;
  text-align: center;
}
.newsinfo-wrap .detail {
  font-size: 16px;
  line-height: 2;
  color: #444;
}
.newsinfo-wrap .detail img {
  max-width: 100%;
}
.newsinfo-wrap .turn {
  position: relative;
  padding-top: 38px;
  margin-top: 60px;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  line-height: 40px;
  color: #666;
}
.newsinfo-wrap .turn a {
  display: inline-block;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.newsinfo-wrap .turn a:hover {
  color: #035cac;
}
.newsinfo-wrap .turn a.back {
  position: absolute;
  right: 18px;
  top: 40px;
  width: 82px;
  border: 1px solid #d9d9d9;
  background-color: #035cac;
  font-size: 16px;
  line-height: 36px;
  color: #fff;
  text-align: center;
}
.newsinfo-wrap .turn a.back:hover {
  border-color: #035cac;
  background: none;
  color: #035cac;
}

.projects-wrap {
  padding: 60px 0 85px;
  background-color: #fafafa;
}
.projects-wrap p.en {
  margin-bottom: 65px;
}
.projects-wrap li {
  float: left;
  width: 326px;
  height: 420px;
  background-color: #fff;
  margin-bottom: 60px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.24);
}
.projects-wrap li:nth-child(3n-1) {
  margin: 0 23px 60px;
}
.projects-wrap li .tips {
  padding: 40px 19px 12px;
}
.projects-wrap li .tips a {
  display: inline-block;
  min-height: 52px;
  font-size: 12px;
  line-height: 26px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.projects-wrap li .tips a.tit {
  min-height: 56px;
  margin-bottom: 11px;
  font-size: 16px;
  line-height: 28px;
  color: #333;
}
.projects-wrap li .tips a:hover {
  color: #035cac;
}
.projects-wrap li .tips a.more {
  position: relative;
  overflow: hidden;
  width: 102px;
  height: 30px;
  min-height: 0;
  border-radius: 15px;
  background-color: #349bfd;
  margin-top: 40px;
  text-align: center;
}
.projects-wrap li .tips a.more span {
  position: relative;
  top: 0;
  display: inline-block;
  font-size: 12px;
  line-height: 30px;
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.projects-wrap li .tips a.more::after {
  content: "LEARN MORE";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
  height: 30px;
  font-size: 12px;
  line-height: 30px;
  color: #fff;
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.projects-wrap li .tips a.more:hover span {
  top: -30px;
  opacity: 0;
}
.projects-wrap li .tips a.more:hover::after {
  top: 0;
  opacity: 1;
}

.policy-wrap {
  padding: 30px 0 100px;
  background-color: #f0f0f0;
}
.policy-wrap p.en {
  margin-bottom: 26px;
}
.policy-wrap li {
  padding: 24px 38px;
  background-color: #fff;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.policy-wrap li .tips {
  width: 535px;
  padding: 14px 0 0 35px;
}
.policy-wrap li .tips a {
  display: inline-block;
  font-size: 14px;
  line-height: 2;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.policy-wrap li .tips a.tit {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 2;
  color: #333;
}
.policy-wrap li .sign {
  width: 35px;
  height: 35px;
  margin-top: 47px;
  background: url(../img/bg_sign16.png) no-repeat right center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.policy-wrap li:hover {
  background-color: #035cac;
}
.policy-wrap li:hover .tips a {
  color: #fff;
}
.policy-wrap li:hover .sign {
  background-position: left center;
}

.news-wrap {
  padding: 32px 0 90px;
  background-color: #f0f0f0;
}
.news-wrap p.en {
  margin-bottom: 28px;
}
.news-wrap li {
  float: left;
  width: 320px;
  height: 345px;
  margin-bottom: 75px;
}
.news-wrap li:nth-child(3n-1) {
  margin: 0 32px 75px;
}
.news-wrap li a {
  display: inline-block;
  font-size: 12px;
  line-height: 22px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap li a:hover {
  color: #035cac;
}
.news-wrap li .tit {
  position: relative;
  padding-bottom: 23px;
  border-bottom: 1px solid #e5e5e5;
  margin: 38px 0 28px;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap li .tit a {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap li .tit a:hover {
  color: #035cac;
}
.news-wrap li .tit .sign {
  position: absolute;
  right: 6px;
  bottom: 19px;
  width: 23px;
  height: 13px;
  background: url(../img/bg_sign17.png) no-repeat center;
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap li .tit:hover {
  border-bottom-color: #035cac;
}
.news-wrap li .tit:hover .sign {
  opacity: 1;
}

.contact-wrap {
  padding: 75px 0;
}
.contact-wrap h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 2;
  color: #333;
  text-align: center;
}
.contact-wrap p.en {
  margin-bottom: 74px;
  font-size: 18px;
  line-height: 28px;
  color: #666;
  text-align: center;
  text-transform: uppercase;
}
.contact-wrap .map {
  width: 590px;
  height: 375px;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.24);
}
.contact-wrap .tips {
  width: 350px;
  height: 366px;
  padding: 9px 11px 0;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.24);
  font-size: 14px;
  line-height: 24px;
  color: #666;
}
.contact-wrap .tips h3 {
  padding: 0 0 20px 28px;
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
  color: #666;
}
.contact-wrap .tips > p {
  padding-left: 32px;
  margin: 0 0 18px 28px;
}
.contact-wrap .tips > p:nth-child(2) {
  background: url(../img/bg_sign18.png) no-repeat left top;
}
.contact-wrap .tips > p:nth-child(3) {
  background: url(../img/bg_sign19.png) no-repeat left top;
}
.contact-wrap .tips > p:nth-child(4) {
  background: url(../img/bg_sign20.png) no-repeat left top;
}
.contact-wrap .tips > p:nth-child(5) {
  background: url(../img/bg_sign21.png) no-repeat left top;
}
.contact-wrap .tips .image {
  border-top: 1px solid #e5e5e5;
  padding-top: 12px;
}
.contact-wrap .tips .image img {
  padding: 4px;
  border: 1px solid #bababb;
  margin-left: 28px;
}
.contact-wrap .tips .image p {
  padding-left: 28px;
  font-size: 12px;
  line-height: 34px;
  color: #9b9b9c;
}
.contact-wrap .detail {
  padding-left: 15px;
  margin-top: 75px;
  font-size: 14px;
  line-height: 30px;
  color: #999;
}
.contact-wrap .detail h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 2;
  color: #dbdbdb;
}
.contact-wrap .detail p {
  padding-left: 25px;
  background: url(../img/bg_sign22.png) no-repeat left center;
}

.jobs-wrap .detail {
  padding: 95px 0 55px;
}
.jobs-wrap .detail .tips {
  width: 490px;
  font-size: 14px;
  line-height: 24px;
  color: #333;
}
.jobs-wrap .detail .tips h2 {
  margin-bottom: 38px;
  font-weight: bold;
  font-size: 36px;
  line-height: 62px;
  color: #666;
}
.jobs-wrap .detail .tips h2 span {
  color: #d41018;
}
.jobs-wrap > .tags {
  padding: 55px 0;
  background-color: #f8f8f8;
}
.jobs-wrap > .tags li {
  float: left;
  position: relative;
  width: 113px;
  height: 153px;
  margin-right: 114px;
  font-size: 13px;
  line-height: 2;
  color: #333;
  text-align: center;
}
.jobs-wrap > .tags li::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 128px;
  top: 50px;
  width: 85px;
  height: 12px;
  background: url(../img/bg_sign28.png) no-repeat left center;
}
.jobs-wrap > .tags li:last-child {
  margin-right: 0;
}
.jobs-wrap > .tags li:last-child::after {
  display: none;
}
.jobs-wrap > .tags li .canvas-box {
  position: relative;
  width: 105px;
  height: 105px;
  border: 4px solid #bbdcf7;
  border-radius: 50%;
  margin-bottom: 14px;
}
.jobs-wrap > .tags li .canvas-box canvas {
  position: absolute;
  left: -4px;
  top: -4px;
}
.jobs-wrap .list {
  padding: 15px 0 90px;
  border-top: 52px solid #fff;
  background-color: #f8f8f8;
}
.jobs-wrap .list .main {
  width: 994px;
  margin: 0 auto;
}
.jobs-wrap .list .tags {
  background-color: #fff;
  margin-bottom: 53px;
}
.jobs-wrap .list .tags a {
  display: inline-block;
  padding: 0 15px;
  font-size: 16px;
  line-height: 38px;
  color: #333;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobs-wrap .list .tags a:hover, .jobs-wrap .list .tags a.cur {
  background-color: #d41018;
  color: #fff;
}
.jobs-wrap .list .box {
  padding: 36px 22px;
  background-color: #fff;
  font-size: 14px;
  line-height: 2;
  color: #333;
}
.jobs-wrap .list .box .in {
  padding: 30px 0;
}

/*# sourceMappingURL=style.css.map */