/**
 * 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: Arial, "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 {
  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: 1020px;
  margin: 0 auto;
}

header {
  position: relative;
  z-index: 10;
  height: 100px;
  border-bottom: 1px solid #deeafb;
}
header .top {
  position: relative;
  z-index: 5;
  margin-top: 11px;
  height: 24px;
  font-size: 12px;
  line-height: 2;
  color: #5d5a5b;
}
header .top .image {
  position: relative;
  float: left;
  width: 25px;
  height: 24px;
  margin: 0 18px 0 22px;
  background: url(../img/bg_btn01.png) no-repeat center;
  cursor: pointer;
}
header .top .image img{
  display: none;
  position: absolute;
  left: 50%;
  top: 25px;
  margin-left: -60px;
}
header .top a {
  display: inline-block;
  padding: 0 5px;
  font-size: 12px;
  line-height: 2;
  color: #5d5a5b;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header .top a:hover {
  color: #1e893e;
}
header .search {
  width: 152px;
  height: 18px;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  margin: 19px 0 0 10px;
}
header .search input {
  float: left;
  width: 104px;
  height: 18px;
  padding: 0;
  padding-left: 16px;
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  line-height: 18px;
  color: rgba(68, 68, 68, 0.59);
}
header .search input[type="submit"] {
  width: 32px;
  height: 18px;
  padding: 0;
  background: url(../img/bg_btn02.jpg) no-repeat center;
}
header nav {
  margin-top: 15px;
}
header nav li {
  position: relative;
  float: left;
  padding-bottom: 23px;
  margin: 0 30px;
}
header nav li:last-child {
  margin-right: 0;
}
header nav li a.tit {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 2;
  color: #383838;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header nav li a.tit::before, header nav li a.tit::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 49px;
  width: 0;
  height: 2px;
  background-color: #71c16d;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header nav li a.tit::before {
  right: 50%;
}
header nav li a.tit::after {
  left: 50%;
}
header nav li a.tit:hover::before, header nav li a.tit:hover::after, header nav li a.tit.cur::before, header nav li a.tit.cur::after {
  width: 70%;
}
header nav .subnav{
  display: none;
  position: absolute;
  left: 50%;
  top: 51px;
  width: 124px;
  padding-top: 11px;
  margin-left: -62px;
}
header nav .subnav::before{
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 12px;
  background: url(../img/bg_subnav.png) no-repeat center;
  margin-left: -8px;
}
header nav .subnav .in{
  width: 122px;
  border: 1px solid rgba(0,0,0,.15);
}
header nav .subnav a{
  display: inline-block;
  width: 112px;
  padding: 10px 5px;
  border-bottom: 1px solid #e1e1e1;
  background-color: #fff;
  font-size: 14px;
  line-height: 20px;
  color: rgba(58,58,58,.8);
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
header nav .subnav a:last-child{
  border-bottom: 0;
}
header nav .subnav a:hover{
  color: #71c16d;
}

footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #4b4b4b;
  background-color: #373737;
  font-size: 12px;
  line-height: 38px;
  color: rgba(217, 217, 217, 0.5);
  text-align: center;
}
footer .top {
  border-bottom: 1px solid #4b4b4b;
  font-size: 12px;
  line-height: 38px;
  color: rgba(217, 217, 217, 0.5);
}
footer .top span {
  position: relative;
  display: inline-block;
  padding: 0 18px;
}
footer .top span::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
  height: 22px;
  background-color: #403f3f;
}
footer .top span:first-child {
  padding-left: 32px;
  background: url(../img/bg_sign01.png) no-repeat left center;
}
footer a {
  color: rgba(217, 217, 217, 0.5);
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
footer a:hover {
  color: #d9d9d9;
}
footer .bdsharebuttonbox a.btn {
  display: inline-block;
  float: none !important;
  width: 23px !important;
  height: 23px !important;
  padding: 0 !important;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  margin: 6px 5px -8px;
  background: url(../img/bg_sign02.png) no-repeat center top !important;
}
footer .bdsharebuttonbox a.btn.bds_tsina {
  background-position: center -46px !important;
}
footer .bdsharebuttonbox a.btn.bds_weixin {
  background-position: center -23px !important;
}
footer .bdsharebuttonbox a.btn:hover {
  border-color: #fff;
}

.iban {
  position: relative;
  height: 475px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 18px;
  line-height: 2;
  color: #fff;
  text-align: center;
  text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.09);
}
.iban h2 {
  padding-top: 176px;
  font-size: 46px;
  line-height: 58px;
  color: #fff;
}
.iban h2,
.iban p {
  position: relative;
  opacity: 0;
  top: 50px;
}

.ititle {
  text-align: center;
}
.ititle h2 {
  font-size: 28px;
  line-height: 2;
  color: #1e893e;
  text-transform: uppercase;
}
.ititle p {
  position: relative;
  top: -22px;
  margin-bottom: -22px;
  font: 35px/1 Impact, Arial;
  color: rgba(83, 83, 83, 0.13);
  text-transform: uppercase;
}

.isolution {
  padding: 28px 0 48px;
  background-color: #edeeed;
}
.isolution .list {
  height: 320px;
  margin-top: 32px;
}
.isolution li {
  float: left;
  width: 328px;
  height: 320px;
}
.isolution li:nth-child(2) {
  margin: 0 18px;
}
.isolution li .tips {
  margin-top: 15px;
}
.isolution li .tips a {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  line-height: 18px;
  color: #666;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.isolution li .tips a.t {
  padding-bottom: 4px;
  border-bottom: 1px solid #c0c3c0;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 2;
  color: #323232;
}
.isolution li .tips a:hover {
  color: #1e893e;
}

.ibottom {
  padding: 26px 0 52px;
}
.ibottom .iabout {
  width: 410px;
}
.ibottom .iabout a {
  display: inline-block;
  font-size: 12px;
  line-height: 2;
  color: #353635;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.ibottom .iabout a img {
  display: block;
  margin: 30px 0 6px;
}
.ibottom .iabout a.more {
  font-size: 13px;
  line-height: 1;
  color: #1e893e;
}
.ibottom .iabout a:hover {
  color: #1e893e;
}
.ibottom .inews {
  width: 575px;
}
.ibottom .inews .list {
  margin-top: 30px;
}
.ibottom .inews .list li {
  position: relative;
  float: left;
  width: 560px;
  border-bottom: 1px dotted #afadad;
  margin-left: 15px;
  font-size: 14px;
  line-height: 46px;
  color: #585858;
}
.ibottom .inews .list li::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -15px;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #afadad;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.ibottom .inews .list li a {
  display: inline-block;
  font-size: 14px;
  line-height: 46px;
  color: #353635;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.ibottom .inews .list li:hover::after {
  background-color: #1e893e;
}
.ibottom .inews .list li:hover a {
  color: #1e893e;
}
.ibottom .inews a.more {
  margin-top: 24px;
  font-size: 13px;
  line-height: 1;
  color: #1e893e;
}

.ins-wrap {
  padding: 20px 0 68px;
  background: url(../img/bg_bg01.png) center;
}

.insmw {
  width: 1025px;
  margin: 0 auto;
}
.insmw .side {
  width: 174px;
}
.insmw .side .title {
  position: relative;
  background-color: #259f53;
  text-align: center;
}
.insmw .side .title h2 {
  padding: 10px 5px;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
  text-transform: uppercase;
}
.insmw .side .title p {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  font: bold 20px/2 Arial;
  color: rgba(133, 244, 167, 0.29);
  text-transform: uppercase;
}
.insmw .side .list {
  border: 1px solid #dedede;
}
.insmw .side .list li {
  padding-top: 6px;
  border-bottom: 1px solid #dedede;
  background-color: #fff;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.insmw .side .list li a {
  display: inline-block;
  width: 144px;
  padding: 19px 0 19px 28px;
  background: url(../img/bg_sign03.png) no-repeat 15px 25px;
  font-size: 14px;
  line-height: 20px;
  color: #606160;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.insmw .side .list li:hover, .insmw .side .list li.cur {
  background-color: #f3f3f3;
}
.insmw .side .list li:hover a, .insmw .side .list li.cur a {
  color: #259f53;
  background: url(../img/bg_sign03s.png) no-repeat 15px 25px;
}
.insmw .ins-content {
  float: right;
  width: 830px;
  padding-top: 15px;
}
.insmw .ins-content .path {
  border-bottom: 1px solid #cbc9c9;
}
.insmw .ins-content .path h2 {
  padding-left: 25px;
  background: url(../img/bg_sign04.png) no-repeat 4px center;
  font-size: 18px;
  line-height: 2;
  color: #5e5b5b;
}
.insmw .ins-content .path p.fr {
  padding-top: 2px;
  font-size: 12px;
  line-height: 34px;
  color: #5a5858;
}
.insmw .ins-content .path p.fr a {
  display: inline-block;
  padding: 0 3px;
  color: #5a5858;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.insmw .ins-content .path p.fr a:hover,
.insmw .ins-content .path p.fr span {
  padding: 0 3px;
  color: #158740;
}
.insmw .ins-box {
  background-color: #fff;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.04);
  font-size: 13px;
  line-height: 22px;
  color: #000;
}

.page {
  text-align: center;
}

.solution-wrap {
  padding: 36px 40px 56px;
  margin-top: 20px;
}
.solution-wrap img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.solution-wrap .list {
  padding: 24px 0 55px;
  background-color: #f0f0ef;
}
.solution-wrap .list h3 {
  position: relative;
  margin-bottom: 36px;
  font-size: 14px;
  line-height: 26px;
  color: #4d4b4b;
  text-align: center;
}
.solution-wrap .list h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 120px;
  height: 2px;
  background-color: #3ba748;
  margin-left: -60px;
}
.solution-wrap .list ul {
  margin-left: 75px;
}
.solution-wrap .list li {
  float: left;
  margin: 0 11px;
  background-color: #3ba748;
}
.solution-wrap .list li a {
  display: inline-block;
  width: 168px;
  border: 1px solid #95cf9c;
  margin: 3px;
  font-size: 14px;
  line-height: 72px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.solution-wrap .list li a:hover {
  border-color: #333;
}

.clean-wrap {
  padding: 16px 36px 44px;
  margin-top: 20px;
}
.clean-wrap .tab {
  height: 32px;
  padding-left: 112px;
  margin-bottom: 36px;
}
.clean-wrap .tab span {
  display: inline-block;
  float: left;
  padding: 0 10px 2px;
  border-bottom: 2px solid #d3d1d1;
  font-size: 14px;
  line-height: 2;
  color: #808080;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  cursor: pointer;
}
.clean-wrap .tab span:hover {
  color: #178b43;
}
.clean-wrap .tab span.cur {
  font-weight: bold;
  color: #178b43;
  border-color: #178b43;
}
.clean-wrap .box {
  display: none;
}
.clean-wrap .box img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.clean-wrap .box li {
  padding: 13px;
  background-color: #e9e9e8;
  margin-bottom: 20px;
}
.clean-wrap .box li .tips {
  width: 520px;
  line-height: 24px;
}
.clean-wrap .box li .tips h3 {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  padding: 0 0 10px 16px;
}
.clean-wrap .box li .tips h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: rgb(146, 208, 80);
}

.new-wrap, .tec-wrap {
  padding: 32px 36px 66px;
  margin-top: 20px;
}
.new-wrap h3, .tec-wrap h3 {
  position: relative;
  font-weight: bold;
  font-size: 16px;
  padding: 0 0 5px 12px;
  line-height: 22px;
}
.new-wrap h3::before, .tec-wrap h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #3ba748;
}

.tec-wrap h3 {
  padding-bottom: 10px;
}

.center-wrap {
  padding: 25px 36px;
  margin-top: 20px;
}
.center-wrap li {
  position: relative;
  padding: 22px 27px 35px 24px;
  background-color: #e9e9e8;
  margin-bottom: 36px;
  line-height: 24px;
}
.center-wrap li .tips {
  width: 435px;
}
.center-wrap li .tips h3 {
  position: relative;
  font-weight: bold;
  font-size: 15px;
  padding: 0 0 5px 16px;
  line-height: 24px;
}
.center-wrap li .tips h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #3ba748;
}
.center-wrap li img {
  position: absolute;
  right: 27px;
  top: 50%;
  margin-top: -92px;
}

.results-wrap {
  padding: 26px 80px 52px;
  background: #fff url(../img/bg_bg02.jpg) no-repeat right bottom;
}
.results-wrap h2 {
  font-size: 16px;
  line-height: 2;
  color: #259f53;
  text-align: center;
}
.results-wrap h2 b {
  display: inline-block;
  position: relative;
  padding: 0 14px;
}
.results-wrap h2 b::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #259f53;
}
.results-wrap .list {
  width: 669px;
  margin-top: 33px;
}
.results-wrap .list li {
  float: left;
  width: 148px;
  height: 207px;
  padding: 9px;
  border: 1px solid #259f53;
  margin: 0 27px 44px;
}

.about-wrap, .newsinfo-wrap {
  padding: 30px 30px 34px 36px;
  margin-top: 20px;
}
.about-wrap h3, .newsinfo-wrap h3 {
  position: relative;
  padding-left: 4px;
}
.about-wrap h3 span, .newsinfo-wrap h3 span {
  display: inline-block;
  padding-right: 12px;
  border-bottom: 1px solid #3ba748;
  margin: 34px 0 17px;
  font-size: 14px;
  line-height: 32px;
  color: #464545;
}
.about-wrap p.sign, .newsinfo-wrap p.sign {
  position: relative;
  padding-left: 14px;
}
.about-wrap p.sign::before, .newsinfo-wrap p.sign::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 1px;
  top: 8px;
  width: 7px;
  height: 7px;
  background-color: #bdbcbc;
}

.speech-wrap {
  width: 714px;
  height: 496px;
  padding: 37px 86px 0 32px;
  background: url(../img/bg_bg03.png) no-repeat center;
  margin: 14px 0 0 -2px;
}
.speech-wrap .tips {
  width: 365px;
  padding-top: 12px;
}
.speech-wrap .tips p {
  position: relative;
  padding-left: 13px;
}
.speech-wrap .tips p::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #848585;
}
.speech-wrap .tips .list {
  position: relative;
  margin-top: 38px;
}
.speech-wrap .tips .list::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 5px;
  width: 1px;
  height: 100px;
  background-color: #cdcccd;
}
.speech-wrap .tips .list li {
  position: relative;
  padding-left: 15px;
  line-height: 27px;
}
.speech-wrap .tips .list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 1px;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: #858686;
}

.history-wrap {
  position: relative;
  width: 832px;
  height: 512px;
  background: url(../img/bg_bg04.png) no-repeat center;
  margin: 36px 0 0 -2px;
}
.history-wrap .main {
  width: 733px;
  height: 409px;
  margin: 0 auto;
}
.history-wrap .main .loadtips {
  height: 250px;
  margin-bottom: 79px;
}
.history-wrap .main .loadtips .image {
  position: relative;
  width: 321px;
  height: 211px;
  border: 2px solid #ccc;
  margin-top: 35px;
}
.history-wrap .main .loadtips .image img {
  position: absolute;
  left: -23px;
  top: -23px;
}
.history-wrap .main .loadtips .detail {
  width: 335px;
  padding-top: 3px;
  font-size: 14px;
  line-height: 2;
  color: #656363;
}
.history-wrap .main .loadtips .detail h2 {
  font: 80px/1 Arial;
  color: #adadad;
}
.history-wrap .main .scroll {
  height: 80px;
}
.history-wrap .main .scroll .btn {
  width: 19px;
  height: 80px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  cursor: pointer;
}
.history-wrap .main .scroll .btn.prev {
  background: url(../img/prev02.png) no-repeat left center;
}
.history-wrap .main .scroll .btn.prev:hover {
  background-position: right center;
}
.history-wrap .main .scroll .btn.next {
  background: url(../img/next02.png) no-repeat right center;
}
.history-wrap .main .scroll .btn.next:hover {
  background-position: left center;
}
.history-wrap .main .scroll .list {
  float: left;
  position: relative;
  overflow: hidden;
  width: 650px;
  height: 80px;
  margin: 0 22px;
}
.history-wrap .main .scroll .list li {
  position: relative;
  z-index: 2;
  float: left;
  width: 62px;
  height: 62px;
  padding: 9px;
  background: url(../img/bg_sign07.png) no-repeat center;
  margin: 0 25px;
  font: 16px/62px Arial;
  color: #666;
  text-align: center;
  cursor: pointer;
}
.history-wrap .main .scroll .list li span {
  display: inline-block;
  width: 62px;
  height: 62px;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.history-wrap .main .scroll .list li::before, .history-wrap .main .scroll .list li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 39px;
  width: 25px;
  height: 2px;
  background-color: #e2e2e2;
}
.history-wrap .main .scroll .list li::before {
  left: -25px;
}
.history-wrap .main .scroll .list li::after {
  right: -25px;
}
.history-wrap .main .scroll .list li.cur span {
  background-color: #3ba748;
  color: #fff;
}

.culture-wrap {
  padding-top: 24px;
  background: url(../img/bg_bg05.jpg) no-repeat center top;
  margin-top: 20px;
}
.culture-wrap .top {
  width: 507px;
  margin: 0 auto 40px;
}
.culture-wrap .top li {
  float: left;
  width: 159px;
  height: 152px;
  padding-top: 31px;
  background: url(../img/bg_sign05.png) no-repeat center top;
  margin: 0 5px;
  font-size: 13px;
  line-height: 1.5;
  color: #605f5f;
  text-align: center;
}
.culture-wrap .top li:nth-child(2) {
  background-position: center -183px;
}
.culture-wrap .top li:nth-child(3) {
  background-position: center -366px;
}
.culture-wrap h2 {
  margin-bottom: 50px;
  font-weight: bold;
  font-size: 16px;
  line-height: 26px;
  color: #494848;
  text-align: center;
}
.culture-wrap h2 span {
  display: inline-block;
  position: relative;
}
.culture-wrap h2 span::before, .culture-wrap h2 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  width: 39px;
  height: 1px;
  background-color: #259f53;
}
.culture-wrap h2 span::before {
  left: -47px;
}
.culture-wrap h2 span::after {
  right: -47px;
}
.culture-wrap .list {
  width: 600px;
  height: 206px;
  margin: 0 auto;
}
.culture-wrap .list li {
  float: left;
  position: relative;
  width: 250px;
  padding: 0 0 10px 15px;
  font-size: 13px;
  line-height: 22px;
  color: #494848;
}
.culture-wrap .list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  background-color: #3ba748;
}
.culture-wrap .list li:nth-child(2n) {
  float: right;
}

.honor-wrap {
  height: 314px;
  padding-bottom: 186px;
  background: url(../img/bg_bg06.png) no-repeat center bottom;
  margin-top: 46px;
}
.honor-wrap .tab {
  height: 32px;
  padding-left: 339px;
  margin-bottom: 36px;
}
.honor-wrap .tab span {
  display: inline-block;
  float: left;
  padding: 0 10px 2px;
  border-bottom: 2px solid #d3d1d1;
  font-size: 14px;
  line-height: 2;
  color: #808080;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  cursor: pointer;
}
.honor-wrap .tab span:hover {
  color: #178b43;
}
.honor-wrap .tab span.cur {
  font-weight: bold;
  color: #178b43;
  border-color: #178b43;
}
.honor-wrap .box {
  display: none;
  height: 235px;
  padding: 0 86px;
  margin-top: 47px;
}
.honor-wrap .box .btn {
  width: 18px;
  height: 235px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.honor-wrap .box .btn.prev {
  background: url(../img/prev01.png) no-repeat left center;
}
.honor-wrap .box .btn.prev:hover {
  background-position: right center;
}
.honor-wrap .box .btn.next {
  background: url(../img/next01.png) no-repeat right center;
}
.honor-wrap .box .btn.next:hover {
  background-position: left center;
}
.honor-wrap .box .scroll {
  position: relative;
  width: 582px;
  height: 235px;
  margin: 0 20px;
}
.honor-wrap .box .scroll li {
  position: absolute;
  left: 127px;
  top: 0;
  width: 326px;
  border: 1px solid #dfe1de;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.news-wrap {
  margin-top: 20px;
}
.news-wrap ul {
  margin-bottom: 15px;
}
.news-wrap li {
  padding: 0 12px;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 33px;
  color: #585858;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap li a {
  display: inline-block;
  color: #585858;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.news-wrap li:nth-child(2n) {
  background-color: #fff;
}
.news-wrap li:hover {
  background-color: #259f53;
  color: #fff;
}
.news-wrap li:hover a {
  color: #fff;
}

.newsinfo-wrap h2 {
  font-size: 16px;
  line-height: 2;
  color: #333;
  text-align: center;
}
.newsinfo-wrap .time {
  border-bottom: 1px solid #ccc;
  margin-bottom: 25px;
  font-size: 12px;
  line-height: 2;
  color: #999;
  text-align: center;
}
.newsinfo-wrap .deatil img {
  display: block;
  max-width: 100%;
}
.newsinfo-wrap .turn {
  position: relative;
  margin-top: 25px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}
.newsinfo-wrap .turn a {
  color: #585858;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.newsinfo-wrap .turn a.back {
  position: absolute;
  right: 0;
  top: 10px;
}
.newsinfo-wrap .turn a:hover {
  color: #3ba748;
}

.contact-wrap {
  padding: 22px 60px 55px;
}
.contact-wrap h2 {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 36px;
  color: #4d4b4b;
  text-align: center;
}
.contact-wrap h2 span {
  display: inline-block;
  border-bottom: 1px solid #3ba748;
}
.contact-wrap .map {
  height: 210px;
  margin-bottom: 50px;
}
.contact-wrap .box {
  float: left;
  position: relative;
  width: 222px;
  height: 130px;
  padding: 32px 4px 0;
  border: 1px solid #d8d9d8;
  font-size: 12px;
  line-height: 20px;
  color: #4e4d4d;
  text-align: center;
}
.contact-wrap .box::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -16px;
  width: 36px;
  height: 36px;
  background: url(../img/bg_sign06.jpg) no-repeat center top;
  margin-left: -18px;
}
.contact-wrap .box:nth-child(2)::before {
  background-position: center -36px;
}
.contact-wrap .box:nth-child(2) {
  margin: 0 7px;
  text-align: left;
}
.contact-wrap .box:nth-child(3)::before {
  background-position: center -72px;
}
.contact-wrap .box img {
  margin-top: -4px;
}

.jobs-wrap {
  padding-bottom: 70px;
  margin-top: 20px;
}
.jobs-wrap .tags {
  height: 34px;
  padding: 0 20px 0 10px;
  font-size: 14px;
  line-height: 34px;
  color: #343434;
  text-align: center;
}
.jobs-wrap .tags span {
  display: inline-block;
  float: left;
}
.jobs-wrap .tags span:nth-child(1) {
  width: 202px;
}
.jobs-wrap .tags span {
  display: inline-block;
  float: left;
}
.jobs-wrap .tags span:nth-child(2) {
  width: 202px;
}
.jobs-wrap .tags span {
  display: inline-block;
  float: left;
}
.jobs-wrap .tags span:nth-child(3) {
  width: 206px;
}
.jobs-wrap .tags span {
  display: inline-block;
  float: left;
}
.jobs-wrap .tags span:nth-child(4) {
  width: 190px;
}
.jobs-wrap dt {
  float: left;
  display: inline-block;
  padding: 0 20px 0 10px;
  border-top: 1px solid #c1c1c1;
  background-color: #f8fafc;
  font-size: 12px;
  line-height: 38px;
  color: #343434;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
  cursor: pointer;
}
.jobs-wrap dt span {
  display: inline-block;
  float: left;
}
.jobs-wrap dt span:nth-child(1) {
  width: 202px;
}
.jobs-wrap dt span {
  display: inline-block;
  float: left;
}
.jobs-wrap dt span:nth-child(2) {
  width: 202px;
}
.jobs-wrap dt span {
  display: inline-block;
  float: left;
}
.jobs-wrap dt span:nth-child(3) {
  width: 206px;
}
.jobs-wrap dt span {
  display: inline-block;
  float: left;
}
.jobs-wrap dt span:nth-child(4) {
  width: 190px;
  position: relative;
}
.jobs-wrap dt span:nth-child(4)::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 12px;
  width: 7px;
  height: 14px;
  background: url(../img/bg_btn03.png) no-repeat right center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobs-wrap dt.cur {
  background-color: #e6f1fb;
}
.jobs-wrap dt.cur span:last-child::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.jobs-wrap dd {
  display: none;
  float: left;
  padding: 10px 90px 30px;
  font-size: 12px;
  line-height: 22px;
  color: #606060;
}
.jobs-wrap dd h3 {
  position: relative;
  padding: 0 0 6px 22px;
}
.jobs-wrap dd h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 1px;
  top: 10px;
  width: 7px;
  height: 7px;
  background-color: #fc9734;
}
.jobs-wrap dd .detail {
  margin-bottom: 10px;
}
.jobs-wrap dd a {
  display: inline-block;
  width: 92px;
  border: 1px solid #259f53;
  background-color: #259f53;
  font-size: 10px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.jobs-wrap dd a:hover {
  background-color: #fff;
  color: #259f53;
}

.download-wrap {
  padding: 30px 60px;
  margin-top: 20px;
}
.download-wrap li {
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 25px;
  font-size: 12px;
  line-height: 2;
  color: #999;
}
.download-wrap li h2 {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  color: #000;
}
.download-wrap li h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -18px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #259f53;
}
.download-wrap li .time {
  margin-bottom: 15px;
  font: 12px/16px Arial;
  color: #999;
}
.download-wrap li a {
  display: inline-block;
  width: 82px;
  border: 1px solid #094;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 12px;
  line-height: 34px;
  color: #094;
  text-align: center;
  -webkit-transition: all 0.5s;
          transition: all 0.5s;
}
.download-wrap li a:hover {
  background-color: #094;
  color: #fff;
}

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