/**
 * 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, .iban li, .about-wrap .part2 .scroll .list li::before {
  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: 1280px;
  margin: 0 auto;
}

header {
  height: 90px;
}
header p.fr {
  padding-left: 37px;
  background: url(../img/bg_sign01.png) no-repeat left center;
  margin: 30px 0 0 30px;
  font: 18px/31px Myriad Pro, Arial;
  color: #626262;
}
header .search {
  height: 20px;
  border-right: 1px solid #c9c9c9;
  margin-top: 35px;
}
header .search input {
  float: left;
  width: 0;
  height: 20px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #c9c9c9;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}
header .search input[type="submit"] {
  width: 95px;
  padding: 0 0 0 25px;
  background: url(../img/bg_btn01.png) no-repeat left center;
  border: 0;
  margin-left: 5px;
  text-align: left;
}
header .search:hover input:first-child {
  width: 100px;
  padding: 0 10px;
}

nav {
  position: relative;
  z-index: 5;
  height: 52px;
  background-color: #535353;
}
nav li {
  position: relative;
  float: left;
  width: 126px;
  margin-right: 50px;
}
nav li a {
  display: inline-block;
  width: 126px;
  font-size: 16px;
  line-height: 52px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
nav li a:hover, nav li a.cur {
  background-color: #4cb848;
  color: #fff;
}
nav li .sub{
  display: none;
  position: absolute;
  left: 0;
  top: 52px;
  width: 124px;
  border: 1px solid #bebfbf;
  border-bottom: 0;
  background-color: #fff;
}
nav li .sub a{
  display: inline-block;
  width: 120px;
  border-bottom: 1px solid #bebfbf;
  padding: 4px 2px;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
nav li .sub a:hover{
  background-color: #4cb848;
  color: #fff;
}

footer {
  height: 42px;
  background-color: #282827;
  font-size: 12px;
  line-height: 42px;
  color: #fff;
}
footer p.fl a {
  margin: 0 10px;
}
footer p.fl a:first-child {
  margin-left: 0;
}
footer a {
  color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer a:hover {
  color: #4cb848;
}

.iban {
  position: relative;
  overflow: hidden;
  height: 670px;
}
.iban li {
  display: none;
}
.iban li img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1920px;
  margin-left: -960px;
}
.iban li .tips {
  position: absolute;
  left: 50%;
  top: 51.5%;
  width: 1284px;
  margin-left: -642px;
  font-size: 24px;
  line-height: 38px;
  color: #fff;
  text-transform: uppercase;
}
.iban li .tips h2 {
  font-size: 36px;
  line-height: 54px;
  color: #fff;
}
.iban li .tips a {
  display: block;
  width: 170px;
  border-radius: 22px;
  background-color: #4cb848;
  margin-top: 22px;
  font: 24px/44px Arial;
  color: #fff;
  text-align: center;
}
.iban .btns {
  position: absolute;
  left: 50%;
  bottom: 25px;
}
.iban .btns span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 6px;
  cursor: pointer;
}
.iban .btns span.cur {
  background-color: #4cb848;
}

.ipd {
  padding: 68px 0 40px;
}
.ipd h2 {
  position: relative;
  font-size: 24px;
  line-height: 34px;
  color: #313131;
}
.ipd h2::after {
  content: "Products";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -30px;
  font: 18px/30px Arial;
  color: #959595;
}
.ipd .tabs {
  height: 30px;
  margin-bottom: 40px;
}
.ipd .tabs a {
  display: inline-block;
  margin-left: 30px;
  font-size: 16px;
  line-height: 30px;
  color: #707070;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.ipd .tabs a:hover, .ipd .tabs a.cur {
  color: #4cb848;
}
.ipd .scroll {
  position: relative;
}
.ipd .scroll .list {
  position: relative;
  overflow: hidden;
  height: 286px;
}
.ipd .scroll .list li {
  float: left;
  width: 400px;
  height: 286px;
  margin-right: 40px;
}
.ipd .scroll .list li:last-child {
  margin-right: 0;
}
.ipd .scroll .list li span {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 400px;
  height: 250px;
}
.ipd .scroll .list li span img {
  display: block;
  margin-bottom: 8px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.ipd .scroll .list li p {
  font-size: 14px;
  line-height: 2;
  color: #707070;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.ipd .scroll .list li:hover span img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.ipd .scroll .list li:hover p {
  color: #4cb848;
}
.ipd .scroll .btn {
  position: absolute;
  top: 109px;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.ipd .scroll .btn.prev {
  left: -59px;
  background: url(../img/prev01.png) no-repeat center;
}
.ipd .scroll .btn.next {
  right: -59px;
  background: url(../img/next01.png) no-repeat center;
}

.inews {
  padding: 62px 0 44px;
  background-color: #f3f3f3;
}
.inews .mw {
  position: relative;
}
.inews .mw a.more {
  position: absolute;
  right: 5px;
  top: 15px;
}
.inews h2 {
  position: relative;
  margin-bottom: 55px;
  font-size: 24px;
  line-height: 2;
  color: #313131;
}
.inews h2::after {
  content: "News";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -18px;
  font-size: 18px;
  line-height: 18px;
  color: #959595;
}
.inews .rec {
  float: left;
  position: relative;
  width: 623px;
  height: 462px;
  border-radius: 0 0 5px 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.inews .rec a.tit {
  display: inline-block;
  position: relative;
  width: 581px;
  margin: 15px 21px 58px;
  font-size: 21px;
  line-height: 2;
  color: #313131;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.inews .rec a.tit::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -26px;
  width: 186px;
  height: 3px;
  background-color: #10a27a;
}
.inews .rec a.tit:hover {
  color: #10a27a;
}
.inews .rec .detail {
  padding: 0 21px;
}
.inews .rec .detail a {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #616161;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.inews .rec .detail a:hover {
  color: #10a27a;
}
.inews .time {
  position: absolute;
  right: 0;
  top: 0;
  width: 68px;
  height: 34px;
  padding-top: 34px;
  background: url(../img/bg_sign02.png) no-repeat center 9px #4cb848;
  font-size: 15px;
  line-height: 34px;
  color: #fff;
  text-align: center;
}
.inews .list {
  float: right;
  width: 624px;
}
.inews .list li {
  position: relative;
  width: 624px;
  height: 136px;
  margin-bottom: 27px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.inews .list li .tips {
  float: left;
  width: 285px;
  padding: 20px 0 0 34px;
}
.inews .list li .tips a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  color: #616161;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.inews .list li .tips a.tit {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 2;
  color: #313131;
}
.inews .list li:hover {
  background-color: #4cb848;
}
.inews .list li:hover .tips a {
  color: #fff;
}

.iimages {
  padding: 80px 0 60px;
}
.iimages .box_skitter {
  height: 350px;
}
.iimages .box_skitter .image {
  width: 1280px;
  margin-left: -640px;
}
.iimages .box_skitter .info_slide {
  bottom: 20px;
  height: 10px;
}
.iimages .box_skitter .info_slide .image_number {
  width: 10px;
  height: 10px;
  background-color: #10a27a;
  margin: 0 6px;
  opacity: .7;
}
.iimages .box_skitter .info_slide .image_number_select {
  opacity: 1;
}

.insban {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.path {
  height: 75px;
  border-top: 1px solid #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  line-height: 75px;
  color: #434343;
}
.path a {
  display: inline-block;
  color: #434343;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.path a:hover, .path a.cur {
  color: #4bb946;
}
.path p.fl a {
  margin-right: 55px;
}
.path span {
  color: #4bb946;
}

.about-wrap .part1 {
  padding: 52px 0 92px;
  font-size: 16px;
  line-height: 40px;
  color: #313131;
}
.about-wrap .part1 h2 {
  font-size: 38px;
  line-height: 2;
  color: #313131;
  text-align: center;
}
.about-wrap .part1 .mw {
  position: relative;
  padding: 28px 30px 0;
}
.about-wrap .part1 .mw::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -20px;
  top: 11px;
  width: 51px;
  height: 42px;
  background: url(../img/bg_sign03.png) no-repeat center;
}
.about-wrap .part2 {
  padding: 50px 0 74px;
  background: url(../img/bg_bg01.jpg) no-repeat center/cover;
}
.about-wrap .part2 h2 {
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 2;
  color: #fff;
  text-align: center;
}
.about-wrap .part2 .scroll {
  position: relative;
  width: 1280px;
  height: 442px;
  margin: 0 auto;
}
.about-wrap .part2 .scroll .list {
  position: relative;
  overflow: hidden;
  width: 1183px;
  height: 442px;
  margin: 0 auto;
}
.about-wrap .part2 .scroll .list li {
  position: relative;
  float: left;
  width: 185px;
  height: 263px;
  margin: 89.5px 10px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .part2 .scroll .list li:nth-child(3) {
  width: 313px;
  height: 442px;
  margin: 0 25px;
}
.about-wrap .part2 .scroll .list li::before {
  content: "";
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  cursor: pointer;
}
.about-wrap .part2 .scroll .list li:hover::before {
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.about-wrap .part2 .scroll .btn {
  position: absolute;
  top: 50%;
  width: 110px;
  height: 110px;
  margin-top: -55px;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.about-wrap .part2 .scroll .btn.prev {
  left: 0;
  background: url(../img/prev02.jpg) no-repeat center;
}
.about-wrap .part2 .scroll .btn.next {
  right: 0;
  background: url(../img/next02.jpg) no-repeat center;
}
.about-wrap .part2 .scroll:hover .btn {
  opacity: 1;
}
.about-wrap .part3 {
  padding: 90px 0 135px;
}
.about-wrap .part3 h2 {
  font-size: 38px;
  line-height: 2;
  color: #313131;
  text-align: center;
}
.about-wrap .part3 .mw {
  margin-top: 55px;
}
.about-wrap .part3 li {
  float: left;
  width: 320px;
  font-size: 15px;
  line-height: 2;
  color: #535353;
  text-align: center;
}
.about-wrap .part3 li img {
  display: block;
  margin: 0 auto 14px;
}
.about-wrap .part3 li h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 2;
  color: #313131;
}

.history-wrap {
  padding: 52px 0 120px;
}
.history-wrap h2 {
  font-size: 34px;
  line-height: 2;
  color: #535353;
}
.history-wrap h2 span {
  padding: 0 12px 0 3px;
  color: #4aba43;
}
.history-wrap .part1 {
  padding-bottom: 18px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 65px;
  font-size: 14px;
  line-height: 36px;
  color: #434343;
}
.history-wrap .part1 .tips {
  width: 725px;
  min-height: 270px;
  padding-top: 15px;
}
.history-wrap .part2 .list {
  position: relative;
  margin-top: 55px;
  overflow: auto;
}
.history-wrap .part2 .list ul{
    width: auto;
    padding-bottom: 100px;
    white-space: nowrap;
    font-size:0;
}
.history-wrap .part2 .list ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 45px;
  top: 18px;
  width: 100%;
  height: 7px;
  background-color: #9099a2;
}
.history-wrap .part2 .list li {
  position: relative;
    /* float: left; */
    width: 200px;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    padding-right: 20px;
}


.history-wrap .part2 .list li .num {
  width: 36px;
  height: 36px;
  border: 4px solid #9099a2;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 auto 24px;
  font: 16px/22px Arial;
  color: #fff;
  text-align: center;
  z-index: 66;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
          position: relative;
}
.history-wrap .part2 .list li .num span {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #9099a2;
  margin: 7px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.history-wrap .part2 .list li:first-child .num {
  margin: 0 0 24px;
}
.history-wrap .part2 .list li:last-child .num {
  float: left;
  margin: 0 0 24px;
  margin-left: 77px;
}
.history-wrap .part2 .list li .tips {
  width: calc(100% - 24px);
  padding: 6px 10px;
  border: 2px solid #9099a2;
  border-radius: 10px;
  background-color: #f5f5f5;
  font-size: 12px;
  line-height: 18px;
  color: #9099a2;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.history-wrap .part2 .list li:hover .num {
  border-color: #4aba43;
}
.history-wrap .part2 .list li:hover .num span {
  background-color: #4aba43;
}
.history-wrap .part2 .list li:hover .tips {
  border-color: #4aba43;
}

.org-wrap {
  padding: 100px 0 120px;
}
.org-wrap .mw {
  position: relative;
}
.org-wrap .mw h2 {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  line-height: 1;
  color: #313131;
}

.core-wrap {
  padding: 50px 0;
  font-size: 14px;
  line-height: 30px;
  color: #626262;
}
.core-wrap li {
  padding-bottom: 65px;
}
.core-wrap li h2 {
  padding-left: 85px;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 68px;
  color: #333;
}
.core-wrap li:nth-child(1) h2 {
  background: url(../img/bg_sign04.png) no-repeat left 0px;
}
.core-wrap li:nth-child(2) h2 {
  background: url(../img/bg_sign04.png) no-repeat left -68px;
}
.core-wrap li:nth-child(3) h2 {
  background: url(../img/bg_sign04.png) no-repeat left -136px;
}

.products-wrap {
  padding: 50px 0 75px;
}
.products-wrap .tabs {
  padding-bottom: 55px;
  text-align: center;
}
.products-wrap .tabs a {
  display: inline-block;
  min-width: 125px;
  padding: 0 10px;
  border: 1px solid #aaa;
  margin: 0 20px 10px;
  font-size: 14px;
  line-height: 34px;
  color: #434343;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.products-wrap .tabs a:hover, .products-wrap .tabs a.cur {
  border-color: #4db748;
  background-color: #4db748;
  color: #fff;
}
.products-wrap .list {
  width: 1280px;
}
.products-wrap .list ul {
  width: 1336px;
}
.products-wrap .list li {
  float: left;
  position: relative;
  overflow: hidden;
  width: 278px;
  height: 230px;
  margin: 0 56px 42px 0;
}
.products-wrap .list li img {
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.products-wrap .list li p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  padding: 0 5%;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  line-height: 2;
  color: #fff;
  text-align: center;
}
.products-wrap .list li:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.products-info {
  padding: 36px 0 120px;
}
.products-info h2 {
  margin-bottom: 55px;
  font-size: 26px;
  line-height: 2;
  color: #434343;
  text-align: center;
}
.products-info .detail {
  width: 600px;
  font-size: 16px;
  line-height: 26px;
  color: #535353;
}
.products-info .btn {
  height: 34px;
  margin-top: 45px;
  text-align: center;
}
.products-info .btn a {
  display: inline-block;
  width: 133px;
  height: 32px;
  border: 1px solid #4cb848;
  border-radius: 17px;
  background-color: #4cb848;
  font-size: 16px;
  line-height: 2;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.products-info .btn a:hover {
  background: none;
  color: #4cb848;
}

.news-wrap {
  padding: 50px 0;
}
.news-wrap .list {
  position: relative;
  width: 1280px;
  margin: 0 auto;
}
.news-wrap .list .box {
  float: left;
  width: 620px;
  padding-bottom: 88px;
}
.news-wrap .list .box .time {
  margin: 4px 0 12px;
  font: 12px/2 Arial;
  color: #959595;
}
.news-wrap .list .box .time span {
  display: inline-block;
  padding-left: 20px;
  background: url(../img/bg_sign05.png) no-repeat left center;
}
.news-wrap .list .box a {
  display: inline-block;
  font-size: 12px;
  line-height: 28px;
  color: #434343;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap .list .box a.tit {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 2;
  color: #313131;
}
.news-wrap .list .box a:hover {
  color: #4aba43;
}

.news-info {
  padding: 50px 0;
}
.news-info h2 {
  font-size: 20px;
  line-height: 2;
  color: #313131;
  text-align: center;
}
.news-info .time {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin: 4px 0 12px;
  font: 12px/2 Arial;
  color: #959595;
  text-align: center;
}
.news-info .time span {
  display: inline-block;
  padding-left: 20px;
  background: url(../img/bg_sign05.png) no-repeat left center;
}
.news-info .detail {
  padding: 50px 0;
  font-size: 14px;
  line-height: 30px;
  color: #666;
}
.news-info .turn {
  position: relative;
  padding-top: 15px;
  border-top: 1px solid #ccc;
  font-size: 13px;
  line-height: 2;
  color: #666;
}
.news-info .turn a {
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-info .turn a:hover {
  color: #4aba43;
}
.news-info .turn a.back {
  position: absolute;
  right: 0;
  top: 25px;
  width: 100px;
  border: 1px solid #ddd;
  border-radius: 15px;
  line-height: 30px;
  text-align: center;
}
.news-info .turn a.back:hover {
  border-color: #4aba43;
  color: #4aba43;
}

.character-wrap {
  padding: 55px 0 120px;
}
.character-wrap li {
  float: left;
  width: 285px;
  height: 330px;
  background-color: #eee;
  margin: 0 0 25px 25px;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
}
.character-wrap li .tips {
  padding: 15px 24px 0;
}
.character-wrap li h2{
  font-size: 14px;
  line-height: 22px;
  color: #313131;
}

.notice-wrap {
  padding: 48px 0 78px;
  background-color: #f5f5f5;
}
.notice-wrap .image {
  position: relative;
  overflow: hidden;
  width: 600px;
  height: 315px;
  border: 6px solid #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.notice-wrap .image img {
  display: block;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.notice-wrap .image p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 580px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
.notice-wrap .image:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.notice-wrap .list {
  width: 643px;
  height: 325px;
  border: 1px solid #dcdcdc;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.notice-wrap .list h2 {
  height: 40px;
  padding: 0 40px;
  border-bottom: 1px solid #dcdcdc;
  background: url(../img/bg_bg02.png) no-repeat center;
  font-weight: bold;
  font-size: 14px;
  line-height: 44px;
  color: #626262;
}
.notice-wrap .list ul {
  width: 600px;
  margin: 10px 22px 0;
}
.notice-wrap .list ul li {
  width: 600px;
  height: 26px;
  border-bottom: 1px dashed #dedede;
  font-size: 12px;
  line-height: 26px;
  color: #535353;
}
.notice-wrap .list ul li a {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #535353;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.notice-wrap .list ul li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #00468e;
}
.notice-wrap .list ul li a:hover {
  color: #4aba43;
}

.service-wrap {
  padding: 50px 0 105px;
}
.service-wrap ul {
  width: 1280px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #e5e5e5;
  margin-bottom: 65px;
}
.service-wrap li {
  float: left;
  width: 425px;
  font-size: 14px;
  line-height: 2;
  color: #535353;
}
.service-wrap li img {
  display: block;
  margin: 0 13px 0 6px;
}
.service-wrap li h2 {
  margin-bottom: 4px;
  font-size: 20px;
  line-height: 36px;
  color: #333;
}
.service-wrap .detail {
  padding-left: 86px;
  background: url(../img/sign08.png) no-repeat 6px top;
  font-size: 14px;
  line-height: 30px;
  color: #626262;
}
.service-wrap .detail h2 {
  font-size: 20px;
  line-height: 70px;
  color: #333;
}

.join-wrap {
  padding: 60px 0 115px;
  background-color: #f5f5f5;
}
.join-wrap dl {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}
.join-wrap dt {
  padding: 0 25px;
  background-color: #fff;
  font-size: 18px;
  line-height: 52px;
  color: #434343;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.join-wrap dt span {
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../img/bg_sign06.png) no-repeat center top;
  margin-top: 15.5px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.join-wrap dt.cur {
  background-color: #7d7d7d;
  color: #fff;
}
.join-wrap dt.cur span {
  background-position: center bottom;
}
.join-wrap dd {
  display: none;
  padding: 28px;
  background-color: #fff;
  font-size: 14px;
  line-height: 30px;
  color: #535353;
}
.join-wrap dd h3 {
  font-size: 18px;
  line-height: 2;
  color: #4aba43;
}
.join-wrap dd .in {
  padding-bottom: 30px;
}
.join-wrap .tips {
  padding-top: 44px;
  border-top: 1px dashed #c9c9c9;
  margin-top: 48px;
}
.join-wrap .tips .detail {
  min-height: 198px;
  padding: 16px 32px 0 102px;
  background: #fff url(../img/sign08.png) no-repeat 20px 16px;
  font-size: 14px;
  line-height: 30px;
  color: #626262;
}
.join-wrap .tips .detail h2 {
  font-size: 20px;
  line-height: 68px;
  color: #333;
}

.contact-wrap {
  padding: 55px 0 115px;
}
.contact-wrap h2 {
  font-size: 22px;
  line-height: 44px;
  color: #313131;
}
.contact-wrap h2 span {
  padding-right: 26px;
  background: url(../img/bg_sign07.png) no-repeat right center;
}
.contact-wrap .main {
  width: 925px;
}
.contact-wrap .main form {
  margin-top: 35px;
}
.contact-wrap .main form input {
  float: left;
  width: 420px;
  padding: 0 13px;
  border: 1px solid #d3d9df;
  font-size: 16px;
  line-height: 48px;
  color: #959595;
}
.contact-wrap .main form input:nth-child(2) {
  float: right;
}
.contact-wrap .main form input[type="submit"] {
  width: 134px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 17px;
  background-color: #4cb848;
  font-size: 18px;
  line-height: 34px;
  color: #fff;
  text-align: center;
}
.contact-wrap .main form textarea {
  width: 903px;
  height: 128px;
  padding: 10px;
  border: 1px solid #d3d9df;
  margin: 30px 0;
  font-size: 16px;
  line-height: 2;
  color: #959595;
}
.contact-wrap .map {
  height: 320px;
  margin: 25px 0 45px;
}
.contact-wrap .list li {
  float: left;
  width: 300px;
  padding-right: 20px;
  font-size: 18px;
  line-height: 30px;
  color: #313131;
}
.contact-wrap .list li h3 {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
  color: #313131;
}
.contact-wrap .list li h3 span {
  font-weight: normal;
}
.contact-wrap table {
  width: 100%;
  font-size: 18px;
  line-height: 2;
  color: #313131;
}
.contact-wrap table td {
  padding: 0 36px;
}
.contact-wrap table td.line {
  padding: 10px 0;
}
.contact-wrap table td.line .in {
  width: 100%;
  height: 2px;
  background-color: #313131;
}
.contact-wrap table td span {
  padding-left: 80px;
}
.contact-wrap table td span.pdl {
  padding-left: 140px;
}
.contact-wrap table td a {
  color: #313131;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.contact-wrap table td a:hover {
  color: #4cb848;
}

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

.side {
  position: fixed;
  right: 0;
  top: 50%;
  overflow: hidden;
  z-index: 5;
  width: 60px;
  height: 174px;
  padding: 13px;
  padding-right: 0;
  margin-top: -87px;
}
.side .in {
  width: 360px;
}
.side .box.top {
  width: 316px;
  height: 77px;
  background-color: #e2a236;
  margin-bottom: 13px;
  cursor: pointer;
}
.side .box.top .tips {
  float: left;
  width: 60px;
  height: 48px;
  padding: 15px 0 14px;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  text-align: center;
}
.side .box.top .ins {
  float: left;
  width: 210px;
  padding-left: 15px;
  border-left: 1px solid #ebbe73;
  margin: 15px 0;
  font: 18px/24px Arial;
  color: #fff;
}
.side .box.top .ins a{
  color: #fff;
}
.side .box.bottom {
  overflow: hidden;
  height: 77px;
  background-color: #e2a236;
  cursor: pointer;
}
.side .box.bottom .tips {
  float: left;
  width: 60px;
  height: 48px;
  padding: 15px 0 14px;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.side .box.bottom ul {
  position: relative;
  float: left;
  width: 197px;
  height: 111px;
  margin: 14px 33px 0 36px;
}
.side .box.bottom ul::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -36px;
  top: 32px;
  width: 1px;
  height: 48px;
  background-color: #ebbe73;
}
.side .box.bottom ul li {
  width: 80px;
  font-size: 12px;
  line-height: 31px;
  color: #fff;
}
.side .box.bottom.show {
  height: 125px;
}
.side .box.bottom.show .tips {
  padding: 46px 0 31px;
}
.side.show {
  width: 330px;
  height: 215px;
}
.side.show .box {
  position: relative;
  left: 270px;
}
.news-wrap li{
  width: 300px;
  height: 230px;
  float: left;
  margin: 25px 10px;
  background: #fff;
  box-shadow: 5px 5px 5px rgba(0,0,0,.05);
}
.news-wrap li img{
  width: 100%;
  height: 100%;
  transform: scale(1.0);
  -webkit-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-property: transform;
    -webkit-transition-property: transform;
    -ms-transition-property: transform;
    -o-transition-property: transform;
}
.news-wrap ul{
  width: 1280px;
  margin: 0 auto;
}
.news-wrap li:hover img{
  transform: scale(1.1);
}

.news-wrap li .top{
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.news-wrap li .bot{
  width: 100%;
  height: 30px;
  padding: 10px 0;
}
.news-wrap li .bot .p1{
  width: 210px;
  float: left;
  margin-left: 5px;
  font-size: 18px;
  color: #313131;
  line-height: 30px;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.news-wrap li .bot .t1{
  width: 80px;
  float: right;
  margin-right: 5px;
  font-size: 14px;
  color: #535353;
  line-height: 30px;
}

.news-info .btn {
  height: 34px;
  margin-top: 45px;
  text-align: center;
}
.news-info .btn a {
  display: inline-block;
  width: 133px;
  height: 32px;
  border: 1px solid #4cb848;
  border-radius: 17px;
  background-color: #4cb848;
  font-size: 16px;
  line-height: 2;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-info .btn a:hover {
  background: none;
  color: #4cb848;
} 
/*20170124*/
.ipd .scroll .list li{
  width: 280px;
  height: 230px;
  position: relative;
  /*margin-right: 40px;*/
  margin: 0 20px;
}
.ipd .scroll .list li span{
  width: 280px;
  height: 230px;
}
.ipd .scroll .list li p{
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,.4);
  font-size: 16px;
  padding: 4px 0;
  line-height: 22px;
  text-align: center;
  color: #fff;
  width: 100%;
}
.ipd .scroll .list{
  height: 230px;
}
.products-info img{
  margin: 0 auto;
}
.form{
  width: 940px;
  margin: 0 auto;
  margin-top: 30px;
  float: left;
  margin-left: 170px;
}
.form li{
  margin-top: 15px;
}
.form .t1{
  width: 250px;
  float: left;
  height: 35px;
  font-size: 18px;
  line-height: 35px;
  color: #434343;
  text-align: right;
}
.form .t1{
  text-align: right;
}
.form p{
  float: left;
  margin-left: 20px;
  font-size: 18px;
  line-height: 33px;
  color: #333;
  width: 500px;
  word-break:break-word;
}
.products-info .detail{
  margin: 0 auto;
  margin-top: 50px;
}

.download-wrap {
  padding: 50px 0 85px;
  background-color: #eee;
}
.download-wrap .list {
  width: 1280px;
  margin: 0 auto;
}
.download-wrap .list li {
  float: left;
  width: 180px;
  height: 130px;
  padding: 20px 18px 0 90px;
  background: #fff url(../img/bg_download.png) no-repeat 28px 45px;
  margin: 0 42px 34px 0;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.download-wrap .list li:nth-child(4n) {
  margin-right: 0;
}
.download-wrap .list li:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.download-wrap .list li a {
  display: inline-block;
  min-height: 52px;
  font-size: 16px;
  line-height: 26px;
  color: #434343;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.download-wrap .list li a:hover {
  color: #4cb848;
}
.download-wrap .list li a.btn {
  width: 132px;
  min-height: 0;
  height: 32px;
  border: 1px solid #4cb848;
  border-radius: 17px;
  background-color: #4cb848;
  margin-top: 20px;
  line-height: 32px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.download-wrap .list li a.btn:hover {
  background: none;
  color: #4cb848;
}