@charset "UTF-8";
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
    ========================================================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

/**
  * 1. Set default font family to sans-serif.
  * 2. Prevent iOS and IE text size adjust after device orientation change,
  *    without disabling user zoom.
  * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
  *  `em` units.
  */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  font-size: 14px;
}

/**
  * Remove default margin.
  */
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  min-height: 100%;
}

/* 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,
menu,
nav,
section,
summary {
  display: block;
}

/**
  * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
  * Prevents 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/10/11, Safari, and Firefox < 22.
  */
[hidden],
template {
  display: none;
}

/* Links
    ========================================================================== */
/**
  * Remove the gray background color from active links in IE 10.
  */
a {
  background-color: transparent;
  text-decoration: none;
  color: #333;
}

/**
  * Improve readability of focused elements when they are also in an
  * active/hover state.
  */
a:active, a:hover {
  outline: 0;
}

/* 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 variable `h1` font-size and margin within `section` and `article`
  * contexts in Firefox 4+, Safari, and Chrome.
  */
h1 {
  font-size: 2em;
}

/**
  * Addresses 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. Improves image quality when scaled in IE 7.
  */
img {
  border: 0;
}

/**
  * Correct overflow not hidden in IE 9/10/11.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
    ========================================================================== */
/**
  * Address margin not present in IE 8/9 and Safari.
  */
figure {
  margin: 1em 40px;
}

/**
  * Address differences between Firefox and other browsers.
  */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
  * Contain overflow in all browsers.
  */
pre {
  overflow: auto;
}

/**
  * Address odd `em`-unit font size rendering in all browsers.
  * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
  */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* 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.
  * 4. Improves appearance and consistency in all browsers.
  */
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. Removes 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 */
}

/**
  * 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;
}

/**
  * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  * the UA stylesheet.
  */
input {
  line-height: normal;
}

/**
  * 1. Address box sizing set to `content-box` in IE 8/9/10.
  * 2. Remove excess padding in IE 8/9/10.
  *  Known issue: excess padding remains in IE 6.
  */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
  * 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.
  */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
  * 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 {
  -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. Corrects text not wrapping in Firefox 3.
  * 4. Corrects alignment displayed oddly in IE 6/7.
  */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
  * Remove default vertical scrollbar in IE 8/9/10/11.
  */
textarea {
  overflow: auto;
}

/**
  * 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;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 1600px;
  max-width: 100%;
}

@media (max-width: 992px) {
  .container {
    width: 95%;
  }
}

@media (max-width: 1600px) {
  .container {
    width: 100%;
  }
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row::after {
  display: block;
  clear: both;
  content: "";
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  padding-left: 15px;
  padding-right: 15px;
  position: left;
  min-height: 1px;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

@media (min-width: 768px) {
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-pull-1 {
    right: 8.33333%;
  }
  .col-sm-push-1 {
    left: 8.33333%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-pull-2 {
    right: 16.66667%;
  }
  .col-sm-push-2 {
    left: 16.66667%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-pull-4 {
    right: 33.33333%;
  }
  .col-sm-push-4 {
    left: 33.33333%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-pull-5 {
    right: 41.66667%;
  }
  .col-sm-push-5 {
    left: 41.66667%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-pull-7 {
    right: 58.33333%;
  }
  .col-sm-push-7 {
    left: 58.33333%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-pull-8 {
    right: 66.66667%;
  }
  .col-sm-push-8 {
    left: 66.66667%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-pull-10 {
    right: 83.33333%;
  }
  .col-sm-push-10 {
    left: 83.33333%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-pull-11 {
    right: 91.66667%;
  }
  .col-sm-push-11 {
    left: 91.66667%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-pull-1 {
    right: 8.33333%;
  }
  .col-md-push-1 {
    left: 8.33333%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-pull-2 {
    right: 16.66667%;
  }
  .col-md-push-2 {
    left: 16.66667%;
  }
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-pull-4 {
    right: 33.33333%;
  }
  .col-md-push-4 {
    left: 33.33333%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-pull-5 {
    right: 41.66667%;
  }
  .col-md-push-5 {
    left: 41.66667%;
  }
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-pull-7 {
    right: 58.33333%;
  }
  .col-md-push-7 {
    left: 58.33333%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-pull-8 {
    right: 66.66667%;
  }
  .col-md-push-8 {
    left: 66.66667%;
  }
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-pull-10 {
    right: 83.33333%;
  }
  .col-md-push-10 {
    left: 83.33333%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-pull-11 {
    right: 91.66667%;
  }
  .col-md-push-11 {
    left: 91.66667%;
  }
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
}

@media (min-width: 1600px) {
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-pull-1 {
    right: 8.33333%;
  }
  .col-lg-push-1 {
    left: 8.33333%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-pull-2 {
    right: 16.66667%;
  }
  .col-lg-push-2 {
    left: 16.66667%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-pull-4 {
    right: 33.33333%;
  }
  .col-lg-push-4 {
    left: 33.33333%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-pull-5 {
    right: 41.66667%;
  }
  .col-lg-push-5 {
    left: 41.66667%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-pull-7 {
    right: 58.33333%;
  }
  .col-lg-push-7 {
    left: 58.33333%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-pull-8 {
    right: 66.66667%;
  }
  .col-lg-push-8 {
    left: 66.66667%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-pull-10 {
    right: 83.33333%;
  }
  .col-lg-push-10 {
    left: 83.33333%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-pull-11 {
    right: 91.66667%;
  }
  .col-lg-push-11 {
    left: 91.66667%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
}

@-webkit-keyframes ts {
  0% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  10% {
    -webkit-transform: translate(30%, -30%);
            transform: translate(30%, -30%);
  }
  20% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  30% {
    -webkit-transform: translate(30%, -30%);
            transform: translate(30%, -30%);
  }
  40% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}

@keyframes ts {
  0% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  10% {
    -webkit-transform: translate(30%, -30%);
            transform: translate(30%, -30%);
  }
  20% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  30% {
    -webkit-transform: translate(30%, -30%);
            transform: translate(30%, -30%);
  }
  40% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}

@-webkit-keyframes wave1 {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-20vw, -30px);
    -ms-transform: translate(-20vw, -30px);
    transform: translate(-20vw, -30px);
  }
  100% {
    -webkit-transform: translate(10vw, 30px);
    -ms-transform: translate(10vw, 30px);
    transform: translate(10vw, 30px);
  }
}

@keyframes wave1 {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-20vw, -30px);
    -ms-transform: translate(-20vw, -30px);
    transform: translate(-20vw, -30px);
  }
  100% {
    -webkit-transform: translate(10vw, 30px);
    -ms-transform: translate(10vw, 30px);
    transform: translate(10vw, 30px);
  }
}

@-webkit-keyframes wave2 {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10vw, -80px);
    -ms-transform: translate(-10vw, -80px);
    transform: translate(-10vw, -80px);
  }
  100% {
    -webkit-transform: translate(0, -30px);
    -ms-transform: translate(0, -30px);
    transform: translate(0, -30px);
  }
}

@keyframes wave2 {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(-10vw, -80px);
    -ms-transform: translate(-10vw, -80px);
    transform: translate(-10vw, -80px);
  }
  100% {
    -webkit-transform: translate(0, -30px);
    -ms-transform: translate(0, -30px);
    transform: translate(0, -30px);
  }
}

@-webkit-keyframes wave3 {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10vw, -30px);
    -ms-transform: translate(10vw, -30px);
    transform: translate(10vw, -30px);
  }
  100% {
    -webkit-transform: translate(-15vw, 10px);
    -ms-transform: translate(-15vw, 10px);
    transform: translate(-15vw, 10px);
  }
}

@keyframes wave3 {
  0% {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(10vw, -30px);
    -ms-transform: translate(10vw, -30px);
    transform: translate(10vw, -30px);
  }
  100% {
    -webkit-transform: translate(-15vw, 10px);
    -ms-transform: translate(-15vw, 10px);
    transform: translate(-15vw, 10px);
  }
}

@-webkit-keyframes sec7Dot {
  form,
  to,
  50% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  25% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  75% {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }
}

@keyframes sec7Dot {
  form,
  to,
  50% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  25% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  75% {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
  }
}

@-webkit-keyframes proRing {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes proRing {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@-webkit-keyframes ani-float {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ani-float {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes industryAni1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  90%,
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes industryAni1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  90%,
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes spread {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  50% {
    width: 200%;
    height: 200%;
    opacity: 1;
  }
  100% {
    width: 250%;
    height: 250%;
    opacity: 0;
  }
}

@keyframes spread {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  50% {
    width: 200%;
    height: 200%;
    opacity: 1;
  }
  100% {
    width: 250%;
    height: 250%;
    opacity: 0;
  }
}

@-webkit-keyframes fade_overn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade_overn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
            transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes orbloop {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes orbloop {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes orbmove {
  from {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  to {
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

@keyframes orbmove {
  from {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  to {
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

@-webkit-keyframes sec3Ring {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes sec3Ring {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@-webkit-keyframes sec3Ring1 {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes sec3Ring1 {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
}

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

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

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

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

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

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

@-webkit-keyframes height_bt {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes height_bt {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
          animation-name: fadeInUpSmall;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.pagination {
  position: relative;
  text-align: center;
  margin-top: 50px;
}

.pagination li {
  display: inline-block;
  font-size: 14px;
}

.pagination li .p-item {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.pagination li .p-item.prev, .pagination li .p-item.next {
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin: 0 20px;
}

.pagination li .p-item.prev:hover, .pagination li .p-item.next:hover {
  background: #004188;
}

.pagination li .p-item.prev:hover::after, .pagination li .p-item.next:hover::after {
  color: #fff;
}

.pagination li .p-item.prev::after, .pagination li .p-item.next::after {
  font-family: 'icon';
  content: '\e779';
  color: #004188;
}

.pagination li .p-item.next::after {
  content: '\e775';
}

.pagination li .p-num.active, .pagination li .p-num:hover {
  color: #004188;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .pagination li {
    display: contents;
  }
  .pagination li .p-num, .pagination li .p-special {
    display: none;
  }
  .pagination li .p-num.active, .pagination li .p-special.active {
    display: inline-block;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #0868cb;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #0868cb;
}

::-webkit-scrollbar-thumb:vertical:hover {
  background: #0868cb;
}

#partner_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transition: all 3s ease;
  -o-transition: all 3s ease;
  transition: all 3s ease;
}

#partner_bg .row1 div,
#partner_bg .row2 div,
#partner_bg .row3 div {
  position: absolute;
}

#partner_bg .row1 div {
  -webkit-animation: orbmove 96s linear infinite;
  animation: orbmove 96s linear infinite;
  opacity: .6;
}

#partner_bg .row1 .orb1 {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin-left: -30px;
  margin-top: -380px;
}

#partner_bg .row1 .orb1 div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));
  background: -o-linear-gradient(top, #ffffff, #dedede);
  background: linear-gradient(to bottom, #ffffff, #dedede);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row1 .orb2 {
  position: absolute;
  width: 9.25vh;
  height: 9.25vh;
  top: 50%;
  left: 50%;
  margin-left: 23vw;
  margin-top: 32vh;
}

#partner_bg .row1 .orb2 div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));
  background: -o-linear-gradient(top, #ffffff, #dedede);
  background: linear-gradient(to bottom, #ffffff, #dedede);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row1 .orb1c {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin-left: 1970px;
  margin-top: -380px;
}

#partner_bg .row1 .orb1c div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));
  background: -o-linear-gradient(top, #ffffff, #dedede);
  background: linear-gradient(to bottom, #ffffff, #dedede);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row1 .orb2c {
  position: absolute;
  width: 9.25vh;
  height: 9.25vh;
  top: 50%;
  left: 50%;
  margin-left: 127vw;
  margin-top: 50px;
}

#partner_bg .row1 .orb2c div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));
  background: -o-linear-gradient(top, #ffffff, #dedede);
  background: linear-gradient(to bottom, #ffffff, #dedede);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row2 div {
  -webkit-animation: orbmove 48s linear infinite;
  animation: orbmove 48s linear infinite;
  opacity: .6;
}

#partner_bg .row2 .orb1 {
  position: absolute;
  width: 18.5vh;
  height: 18.5vh;
  top: 50%;
  left: 50%;
  margin-left: -26vw;
  margin-top: -27vh;
}

#partner_bg .row2 .orb1 div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));
  background: -o-linear-gradient(top, #ffffff, #dedede);
  background: linear-gradient(to bottom, #ffffff, #dedede);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row2 .orb2 {
  position: absolute;
  width: 23vh;
  height: 23vh;
  top: 50%;
  left: 50%;
  margin-left: 9vw;
  margin-top: -11.5vh;
}

#partner_bg .row2 .orb2 div {
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));
  background: -o-linear-gradient(top, #ffffff, #dedede);
  background: linear-gradient(to bottom, #ffffff, #dedede);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row2 .orb1c {
  position: absolute;
  width: 18.5vh;
  height: 18.5vh;
  top: 50%;
  left: 50%;
  margin-left: 78vw;
  margin-top: -27vh;
}

#partner_bg .row2 .orb1c div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));
  background: -o-linear-gradient(top, #ffffff, #dedede);
  background: linear-gradient(to bottom, #ffffff, #dedede);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row2 .orb2c {
  position: absolute;
  width: 37vh;
  height: 37vh;
  top: 50%;
  left: 50%;
  margin-left: 109vw;
  margin-top: -18.5vh;
}

#partner_bg .row2 .orb2c div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));
  background: -o-linear-gradient(top, #ffffff, #dedede);
  background: linear-gradient(to bottom, #ffffff, #dedede);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row3 div {
  -webkit-animation: orbmove 24s linear infinite;
  animation: orbmove 24s linear infinite;
  opacity: .7;
}

#partner_bg .row3 .orb1 {
  position: absolute;
  width: 27.5vh;
  height: 27.5vh;
  top: 50%;
  left: 50%;
  margin-left: 44vw;
  margin-top: -41vh;
}

#partner_bg .row3 .orb1 div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#dedede), to(#ffffff));
  background: -o-linear-gradient(top, #dedede, #ffffff);
  background: linear-gradient(to bottom, #dedede, #ffffff);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row3 .orb2 {
  position: absolute;
  width: 55.5vh;
  height: 55.5vh;
  top: 50%;
  left: 50%;
  margin-left: 0;
  margin-top: 0;
}

#partner_bg .row3 .orb2 div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#dedede), to(#ffffff));
  background: -o-linear-gradient(top, #dedede, #ffffff);
  background: linear-gradient(to bottom, #dedede, #ffffff);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row3 .orb1c {
  position: absolute;
  width: 27.5vh;
  height: 27.5vh;
  top: 50%;
  left: 50%;
  margin-left: 148vw;
  margin-top: -27vh;
}

#partner_bg .row3 .orb1c div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#dedede), to(#ffffff));
  background: -o-linear-gradient(top, #dedede, #ffffff);
  background: linear-gradient(to bottom, #dedede, #ffffff);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg .row3 .orb2c {
  position: absolute;
  width: 55.5vh;
  height: 55.5vh;
  top: 50%;
  left: 50%;
  margin-left: 104vw;
  margin-top: 0;
}

#partner_bg .row3 .orb2c div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#dedede), to(#ffffff));
  background: -o-linear-gradient(top, #dedede, #ffffff);
  background: linear-gradient(to bottom, #dedede, #ffffff);
  -webkit-animation: orbloop 6s linear infinite;
  animation: orbloop 6s linear infinite;
}

#partner_bg.active {
  -webkit-transform: scale(1) translateX(-200px) translateY(300px) rotateZ(-60deg);
  -ms-transform: scale(1) translateX(-200px) translateY(300px) rotateZ(-60deg);
  transform: scale(1) translateX(-200px) translateY(300px) rotateZ(-60deg);
}

.disable-hover {
  pointer-events: none;
}

.scroll-animate.animated {
  visibility: hidden;
}

.font-fadeIn font {
  display: inline-block;
}

#sub_menu {
  margin: 100px auto;
}

#sub_menu::after {
  display: block;
  clear: both;
  content: "";
}

#sub_menu .container {
  padding: 0 180px;
  position: relative;
}

#sub_menu .swiper-slide {
  width: 206px;
}

#sub_menu .swiper-slide:hover, #sub_menu .swiper-slide.active {
  background: #fafafa;
}

#sub_menu .swiper-slide:hover .item::after, #sub_menu .swiper-slide.active .item::after {
  width: 100%;
}

#sub_menu .swiper-slide .item {
  width: 100%;
  height: 200px;
  float: left;
  display: table;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  cursor: pointer;
}

#sub_menu .swiper-slide .item .cell {
  display: table-cell;
  vertical-align: middle;
}

#sub_menu .swiper-slide .item .cell i {
  font-size: 50px;
  color: #343434;
}

#sub_menu .swiper-slide .item .cell p {
  margin-top: 10px;
  font-size: 16px;
  color: #343434;
}

#sub_menu .swiper-slide .item .cell .svg {
  width: 50px;
  height: 50px;
  display: inline-block;
}

#sub_menu .swiper-slide .item .cell .svg svg {
  width: 100%;
  height: 100%;
}

#sub_menu .swiper-slide .item .cell .svg svg path {
  width: 100%;
  height: 100%;
}

#sub_menu .swiper-slide .item::after {
  content: '';
  display: block;
  width: 0;
  border-top: 2px solid #004188;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

#sub_menu .link-prev, #sub_menu .link-next {
  position: absolute;
  top: 50%;
  font-size: 40px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  display: block;
  color: #666;
}

#sub_menu .link-prev::after, #sub_menu .link-next::after {
  content: '\e632';
  font-family: 'iconfont';
}

#sub_menu .link-prev.disabled, #sub_menu .link-next.disabled {
  opacity: 0.4;
}

#sub_menu .link-prev {
  left: 30px;
  -webkit-transform: rotateY(180deg) translateY(-50%);
          transform: rotateY(180deg) translateY(-50%);
}

#sub_menu .link-next {
  right: 30px;
}

@media (max-width: 1240px) {
  #sub_menu .container {
    padding: 0 90px;
  }
}

@media (max-width: 992px) {
  #sub_menu {
    margin: 50px 0;
  }
  #sub_menu .link-prev, #sub_menu .link-next {
    display: none;
  }
  #sub_menu .container {
    padding: 0 30px;
  }
  #sub_menu .container .swiper-container {
    height: 600px;
  }
  #sub_menu .container .swiper-container .swiper-slide {
    height: auto;
  }
  #sub_menu .container .swiper-container .swiper-slide .item {
    border: unset;
    height: 300px;
  }
  #sub_menu .container .swiper-container.other {
    width: 90%;
    height: 200px;
    margin: 0 auto;
  }
  #sub_menu .container .swiper-container.other .swiper-slide {
    height: auto;
  }
  #sub_menu .container .swiper-container.other .swiper-slide .item {
    border: unset;
    height: 200px;
  }
}

@media (max-width: 768px) {
  #sub_menu {
    margin: 35px 0;
  }
  #sub_menu .container {
    padding: 0 15px;
  }
  #sub_menu .container .swiper-container {
    height: 400px;
  }
  #sub_menu .container .swiper-container .swiper-slide .item {
    height: 200px;
  }
  #sub_menu .container .swiper-container .swiper-slide .item .cell p {
    font-size: 14px;
  }
  #sub_menu .container .swiper-container.other {
    width: 85%;
    height: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 468px) {
  #sub_menu .container {
    padding: 0 15px;
  }
  #sub_menu .container .swiper-container {
    height: 300px !important;
  }
  #sub_menu .container .swiper-container .swiper-slide .item {
    height: 150px !important;
  }
  #sub_menu .container .swiper-container .swiper-slide .item .cell i {
    font-size: 40px;
  }
  #sub_menu .container .swiper-container.other {
    width: 100%;
    margin: 0 auto;
  }
}

.fu_backtop, .fu_backpage {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  background: #545a66;
  -webkit-box-shadow: 7px 7px 30px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 7px 7px 30px 0 rgba(0, 0, 0, 0.3);
  position: fixed;
  bottom: 140px;
  display: block;
  right: 5%;
  cursor: pointer;
  color: #fff;
  display: none;
  z-index: 100;
}

.fu_backtop .box, .fu_backpage .box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.fu_backtop .box .iconfont, .fu_backpage .box .iconfont {
  margin-bottom: 1px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.fu_backtop .box .iconfont::before, .fu_backpage .box .iconfont::before {
  text-align: center;
  font-size: 18px;
}

.fu_backtop:hover .box .iconfont, .fu_backpage:hover .box .iconfont {
  -webkit-animation: backtop_dh 1.5s infinite;
          animation: backtop_dh 1.5s infinite;
}

@media (max-width: 768px) {
  .fu_backtop, .fu_backpage {
    width: 50px;
    height: 50px;
    bottom: 120px;
  }
  .fu_backtop .box .iconfont::before, .fu_backpage .box .iconfont::before {
    font-size: 16px;
  }
  .fu_backtop .box .text, .fu_backpage .box .text {
    font-size: 12px;
  }
}

.fu_backpage {
  bottom: 50px;
  display: block;
}

.fu_backpage .box .iconfont::before {
  font-size: 20px;
}

.fu_backpage .box .text {
  font-size: 12px;
}

.fu_backpage .box .text.sj_text {
  display: none;
}

@media (max-width: 768px) {
  .fu_backpage .box .text {
    display: none;
  }
  .fu_backpage .box .sj_text {
    display: block !important;
  }
}

@-webkit-keyframes backtop_dh {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes backtop_dh {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.news_sidebar .min_msgbox {
  height: 44px;
  width: 288px;
  background-color: #387ce1;
  display: block;
  border-radius: 0 3px 3px 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: fixed;
  left: 0;
  bottom: 5%;
  z-index: 100;
}

.news_sidebar .min_msgbox .title, .news_sidebar .min_msgbox .iconfont {
  display: inline-block;
  line-height: 44px;
  color: #fff;
  text-align: center;
  float: left;
}

.news_sidebar .min_msgbox .title {
  font-size: 18px;
}

.news_sidebar .min_msgbox .title .round {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #68f2d9;
  display: inline-block;
  margin: 0 15px;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.news_sidebar .min_msgbox .iconfont {
  width: 40px;
  line-height: 44px;
  background-color: #285dc1;
  font-size: 22px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: relative;
}

.news_sidebar .min_msgbox .iconfont::before {
  position: relative;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.news_sidebar .min_msgbox .iconfont::after {
  content: '\e781';
  font-family: 'iconfont';
  position: absolute;
  left: 75%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 14px;
  color: #285dc1;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.news_sidebar .min_msgbox:hover {
  background-color: #3e8bff;
}

.news_sidebar .min_msgbox:hover .iconfont {
  background-color: #2a70f5;
}

.news_sidebar .min_msgbox:hover .iconfont::before {
  -webkit-animation: td_loop 1.2s linear infinite;
          animation: td_loop 1.2s linear infinite;
}

@-webkit-keyframes td_loop {
  0% {
    top: 0px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 0px;
  }
}

@keyframes td_loop {
  0% {
    top: 0px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 0px;
  }
}

.news_sidebar .min_msgbox:hover .iconfont::after {
  color: #2a70f5;
}

.news_sidebar .min_msgbox:hover .title .round {
  margin-left: 20px;
  background-color: yellow;
}

.news_sidebar .min_msgbox.off {
  opacity: 0;
  z-index: -1;
}

@media (max-width: 768px) {
  .news_sidebar .min_msgbox {
    width: 250px;
    height: 36px;
  }
  .news_sidebar .min_msgbox .iconfont, .news_sidebar .min_msgbox .title {
    line-height: 36px;
    font-size: 18px;
  }
  .news_sidebar .min_msgbox .title {
    font-size: 16px;
  }
}

.news_sidebar .news_msgbox {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 700px;
  font-size: 0;
  height: calc(100% - 120px);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0px 5px 0 0;
  overflow: hidden;
}

.news_sidebar .news_msgbox.on {
  opacity: 1;
  z-index: 100;
}

.news_sidebar .news_msgbox .max_title {
  line-height: 44px;
  text-align: center;
  background-color: #387ce1;
  font-size: 18px;
  color: #fff;
}

.news_sidebar .news_msgbox .left, .news_sidebar .news_msgbox .right {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  height: 100%;
}

.news_sidebar .news_msgbox .left {
  width: 140px;
  background-color: #f7f8f9;
  height: 100%;
  float: left;
  display: block;
}

.news_sidebar .news_msgbox .left .max_title {
  background-color: #285dc1;
}

.news_sidebar .news_msgbox .left .itembox .item {
  display: block;
  text-align: center;
  line-height: 54px;
  color: #797979;
  font-size: 16px;
  width: 100%;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.news_sidebar .news_msgbox .left .itembox .item:hover, .news_sidebar .news_msgbox .left .itembox .item.active {
  color: #333;
  background-color: #fff;
}

.news_sidebar .news_msgbox .right {
  width: calc(100% - 140px);
  background-color: #fff;
  float: left;
  display: block;
  height: 100%;
  position: relative;
}

.news_sidebar .news_msgbox .right .max_title .iconfont {
  float: right;
  cursor: pointer;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  margin-right: 15px;
}

.news_sidebar .news_msgbox .right .max_title .iconfont:hover {
  -webkit-transform: rotateZ(90deg);
      -ms-transform: rotate(90deg);
          transform: rotateZ(90deg);
}

.news_sidebar .news_msgbox .right .max_itembox {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.news_sidebar .news_msgbox .right .max_itembox::-webkit-scrollbar {
  display: none;
}

.news_sidebar .news_msgbox .right .max_itembox.active {
  z-index: 100;
  opacity: 1;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox {
  padding: 10px 15px;
  padding-right: 5px;
  border-bottom: 1px solid #e1e1e1;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item {
  color: #343434;
  line-height: 44px;
  font-size: 0;
  display: block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item .text, .news_sidebar .news_msgbox .right .max_itembox .itembox .item .time {
  display: inline-block;
  font-size: 16px;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item .text {
  width: calc(100% - 90px);
  float: left;
  text-align: left;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item .text .round {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  margin-right: 10px;
  margin-left: 5px;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item .text .istop {
  background-color: #387ce1;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 3px;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item .time {
  float: left;
  width: 90px;
  color: #999999;
  padding: 0 5px;
  font-size: 14px;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item:first-child {
  font-weight: bold;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item:first-child .time {
  font-weight: 400;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item:hover {
  color: #004188;
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item:hover .text .round {
  background-color: #004188;
  -webkit-animation: dx 3s linear infinite;
          animation: dx 3s linear infinite;
}

@-webkit-keyframes dx {
  0% {
    -webkit-transform: scale(1) translate(0, -3px);
            transform: scale(1) translate(0, -3px);
  }
  50% {
    -webkit-transform: scale(1.2) translate(0, -3px);
            transform: scale(1.2) translate(0, -3px);
  }
  100% {
    -webkit-transform: scale(1) translate(0, -3px);
            transform: scale(1) translate(0, -3px);
  }
}

@keyframes dx {
  0% {
    -webkit-transform: scale(1) translate(0, -3px);
            transform: scale(1) translate(0, -3px);
  }
  50% {
    -webkit-transform: scale(1.2) translate(0, -3px);
            transform: scale(1.2) translate(0, -3px);
  }
  100% {
    -webkit-transform: scale(1) translate(0, -3px);
            transform: scale(1) translate(0, -3px);
  }
}

.news_sidebar .news_msgbox .right .max_itembox .itembox .item:hover .time {
  color: #004188;
}

@media (max-width: 768px) {
  .news_sidebar .news_msgbox {
    width: 100%;
    height: calc(100% - 50px);
  }
  .news_sidebar .news_msgbox .max_title {
    line-height: 36px;
    font-size: 16px;
  }
  .news_sidebar .news_msgbox .left {
    width: 100px;
  }
  .news_sidebar .news_msgbox .left .itembox .item {
    line-height: 46px;
    font-size: 14px;
  }
  .news_sidebar .news_msgbox .right {
    width: calc(100% - 100px);
  }
  .news_sidebar .news_msgbox .right .max_itembox .itembox .item .text {
    font-size: 14px;
  }
  .news_sidebar .news_msgbox .right .max_itembox .itembox .item .time {
    font-size: 12px;
  }
}

.fu_height {
  width: 100%;
  height: 90px;
}

@media (max-width: 991px) {
  .fu_height {
    height: 50px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1024;
  color: #fff;
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
}

.header.up {
  margin-top: -90px;
}

.header .logo-white {
  display: block;
}

.header .logo-black {
  display: none;
}

.header .fu-logo {
  width: 164px;
  height: 90px;
  margin-left: 20px;
  display: table;
}

.header .fu-logo .fu-img {
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .header .fu-logo {
    height: 52px;
    width: 130px;
  }
}

.header .fu-menu {
  height: 100%;
}

.header .fu-menu .fu-list .fu-item {
  display: inline-block;
  color: inherit;
  line-height: 90px;
  margin: 0 30px;
  font-size: 16px;
  position: relative;
}

.header .fu-menu .fu-list .fu-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0%;
  height: 6px;
  background-color: #fff;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.header .fu-menu .fu-list .fu-item.active::before, .header .fu-menu .fu-list .fu-item:hover::before {
  width: 100%;
}

@media (max-width: 1520px) {
  .header .fu-menu .fu-list .fu-item {
    margin: 0 15px;
  }
}

@media (max-width: 1300px) {
  .header .fu-menu .fu-list {
    width: 0;
    overflow: hidden;
  }
}

.header .fu-tool {
  margin-left: 50px;
}

.header .fu-tool .search-icon {
  line-height: 90px;
  color: inherit;
  padding: 0 20px;
  cursor: pointer;
  position: relative;
}

.header .fu-tool .search-icon .ssbox {
  position: absolute;
  top: calc(100%);
  padding: 0px;
  right: 0;
  outline: none;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.header .fu-tool .search-icon .ssbox form {
  width: 260px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  border: 1px solid #eee;
  overflow: hidden;
  height: 0;
  opacity: 0;
  margin-top: 20px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.header .fu-tool .search-icon .ssbox form .search-top {
  height: 40px;
  width: 100%;
  padding: 0px 10px;
  outline: none;
  padding-right: 30px;
  display: block;
  border: unset;
  color: #333;
  font-size: 14px;
  padding-bottom: 2px;
}

.header .fu-tool .search-icon .ssbox form .submit {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  background: unset;
  display: inline-block;
  width: 20px;
  height: 20px;
  display: block;
  color: #333;
  outline: none;
}

.header .fu-tool .search-icon .ssbox form .submit i {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header .fu-tool .search-icon .ssbox form .submit i::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header .fu-tool .search-icon:hover .ssbox {
  padding-top: 10px;
}

.header .fu-tool .search-icon:hover .ssbox form {
  height: 40px;
  opacity: 1;
  margin-top: 00px;
}

.header .fu-tool .menu-icon {
  cursor: pointer;
  padding: 39.5px 20px;
  width: 32px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.header .fu-tool .menu-icon::after, .header .fu-tool .menu-icon::before {
  content: '';
  display: block;
  width: 32px;
  background-color: #fff;
  height: 3px;
  text-align: right;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.header .fu-tool .menu-icon::after {
  width: 16px;
  margin-top: 5px;
  margin-left: auto;
}

.header .fu-tool .menu-icon:hover::after {
  width: 32px;
}

.header .fu-tool .menu-icon:hover::before {
  width: 16px;
}

@media (max-width: 991px) {
  .header .fu-tool .search-icon {
    line-height: 50px;
  }
  .header .fu-tool .menu-icon {
    padding: 20px;
  }
}

.header.on, .header.active {
  background-color: #fff;
  color: #24272c;
  border: none;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header.on .logo-white, .header.active .logo-white {
  display: none;
}

.header.on .logo-black, .header.active .logo-black {
  display: block;
}

.header.on .fu-menu .fu-list .fu-item.active, .header.on .fu-menu .fu-list .fu-item:hover, .header.active .fu-menu .fu-list .fu-item.active, .header.active .fu-menu .fu-list .fu-item:hover {
  color: #004188;
}

.header.on .fu-menu .fu-list .fu-item.active::before, .header.on .fu-menu .fu-list .fu-item:hover::before, .header.active .fu-menu .fu-list .fu-item.active::before, .header.active .fu-menu .fu-list .fu-item:hover::before {
  background-color: #004188;
}

.header.on .fu-tool .menu-icon::after, .header.on .fu-tool .menu-icon::before, .header.active .fu-tool .menu-icon::after, .header.active .fu-tool .menu-icon::before {
  background-color: #24272c;
}

.header.mask {
  color: #24272c;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header.mask .fu-logo, .header.mask .fu-menu .fu-list {
  display: none;
}

.header.mask .fu-tool .menu-icon {
  position: relative;
}

.header.mask .fu-tool .menu-icon::after, .header.mask .fu-tool .menu-icon::before {
  background-color: #24272c;
  width: 22px;
  margin-top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 55%;
  left: 25%;
  height: 2px;
}

.header.mask .fu-tool .menu-icon::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (max-width: 991px) {
  .header.mask {
    border-bottom: none;
    color: #fff;
  }
  .header.mask .fu-logo {
    display: table;
  }
  .header.mask .fu-logo .logo-white {
    display: block;
  }
  .header.mask .fu-logo .logo-black {
    display: none;
  }
  .header.mask .fu-tool .menu-icon::after, .header.mask .fu-tool .menu-icon::before {
    background-color: #fff;
  }
}

@media (max-width: 991px) {
  .header {
    height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.z_menu_mask {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1020;
  -webkit-transition: ease .6s;
  -o-transition: ease .6s;
  transition: ease .6s;
  opacity: 0;
  visibility: hidden;
}

.z_menu_mask .z_flwarp, .z_menu_mask .z_frwarp {
  width: 50%;
  height: 100vh;
  float: left;
  padding: 0 11vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.z_menu_mask .z_flwarp {
  background: #0355ad;
  -webkit-transition: ease .6s;
  -o-transition: ease .6s;
  transition: ease .6s;
  padding-right: 5vw;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.z_menu_mask .z_frwarp {
  background-color: #fbfaf9;
  -webkit-transition: ease .6s;
  -o-transition: ease .6s;
  transition: ease .6s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  position: relative;
}

.z_menu_mask .z_flwarp .z_warp {
  margin-top: 15%;
}

.z_menu_mask .z_frwarp .z_menu_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.z_menu_mask.on .z_flwarp, .z_menu_mask.on .z_frwarp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.z_menu_mask.on {
  opacity: 1;
  visibility: visible;
}

.z_menu_nav dt h3, .z_menu_nav dt h3 a {
  font-size: 26px;
  font-weight: normal;
  color: #fff;
}

.z_menu_nav dl {
  margin-bottom: 30px;
}

.z_menu_nav dl.active .z_sub_nav {
  max-height: 100px;
}

.z_sub_nav {
  margin-top: 3.2vw;
  margin-top: 15px;
  line-height: 26px;
  position: relative;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.z_sub_nav::before {
  content: "";
  display: none;
  width: 60px;
  position: absolute;
  left: -60px;
  top: 50%;
  height: 2px;
  background: #999;
  margin-top: -1px;
}

.z_sub_nav a {
  color: #dcdcdc;
  margin-right: 2vw;
  display: inline-block;
  position: relative;
  font-size: 14px;
}

.z_sub_nav a h3 {
  font-weight: normal;
}

.z_sub_nav a:hover {
  color: #fff;
}

.z_sub_nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.z_sub_nav a:hover::after {
  width: 100%;
}

.z_menu_text {
  position: absolute;
  left: 2.6vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  font-family: "en";
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .z_menu_mask .z_frwarp {
    display: none;
  }
  .z_menu_mask .z_flwarp {
    width: 100%;
    padding: 10px;
  }
  .z_menu_mask .z_flwarp .z_warp {
    width: 100%;
  }
  .z_menu_nav dt {
    width: 100%;
    text-align: center;
  }
  .z_menu_nav dt .en {
    font-size: 20px;
  }
  .z_menu_nav dt h3, .z_menu_nav dt h3 a {
    font-size: 16px;
  }
  .z_menu_nav dl {
    display: block;
  }
  .z_sub_nav a {
    margin-left: 10px;
    margin-right: 10px;
  }
  .z_sub_nav a h3 {
    font-size: 14px;
  }
  .z_sub_nav {
    width: 100%;
    margin-top: 10px;
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .z_menu_nav dl.active .z_sub_nav {
    max-height: auto;
    min-width: 55px;
  }
}

.subheader {
  position: relative;
  color: #fff;
  width: 100%;
}

.subheader .bg-img {
  height: 540px;
  position: unset;
  width: 100%;
}

.subheader .fu-info {
  position: unset;
  width: 100%;
  margin-top: -150px;
}

.subheader .fu-info .titlebox {
  background-color: #004A9A;
  display: inline-block;
  width: 185px;
  height: 192px;
  position: relative;
  margin-bottom: 80px;
}

.subheader .fu-info .titlebox .textbox {
  position: absolute;
  right: -35px;
  top: 15%;
  width: auto;
  z-index: 10;
}

.subheader .fu-info .titlebox .textbox .title {
  font-size: 40px;
}

.subheader .fu-info .titlebox .textbox .e_title {
  font-size: 12px;
  margin-top: 10px;
  text-transform: uppercase;
}

.subheader .fu-info .titlebox .e_bg {
  position: absolute;
  bottom: 0;
  left: 15px;
  font-size: 155px;
  font-weight: 700;
  color: #1A5CA4;
  line-height: 135px;
  text-transform: uppercase;
  z-index: 0;
}

.subheader .fu-info .titlebox .iconfont {
  display: block;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  color: #9a9a9a;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(50%, 50%);
      -ms-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

.subheader .fu-info .titlebox .iconfont::before {
  display: inline-block;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 35px;
}

.subheader .fu-info .about-menu {
  min-height: 50px;
  position: relative;
  font-size: 0;
  text-align: center;
  margin: 0 -50px;
}

.subheader .fu-info .about-menu::after {
  display: block;
  clear: both;
  content: "";
}

.subheader .fu-info .about-menu::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: #eee;
}

.subheader .fu-info .about-menu li {
  text-align: center;
  display: inline-block;
  float: none;
  cursor: pointer;
  padding: 0 50px;
}

.subheader .fu-info .about-menu li a {
  text-align: center;
  display: inline-block;
  padding-bottom: 30px;
  width: 100%;
  position: relative;
}

.subheader .fu-info .about-menu li a::before {
  content: '';
  width: 0px;
  height: 3px;
  background-color: #5083B9;
  position: absolute;
  bottom: 4px;
  left: 50%;
  display: inline-block;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  overflow: hidden;
}

.subheader .fu-info .about-menu li.active a::before, .subheader .fu-info .about-menu li:hover a::before {
  width: 40px;
}

.subheader .fu-info .fu-text {
  width: 1600px;
  max-width: 100%;
  padding: 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subheader .fu-info .fu-text .fu-title {
  font-size: 40px;
  font-weight: normal;
}

.subheader .fu-info .fu-text .fu-line {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 10%;
}

.subheader .fu-info .fu-text .fu-right {
  font-size: 20px;
  color: #fff;
}

.subheader .fu-info .fu-text .fu-right::after {
  font-family: 'icon';
  content: '\e775';
  font-size: 14px;
  margin-left: 30px;
}

.subheader.style1 {
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.subheader.style1 .fu-info h1 {
  font-size: 40px;
  font-weight: 400;
}

.subheader.style1 .fu-info ul li.active a {
  color: #333;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.subheader.style1 .fu-info ul li a {
  font-size: 18px;
  color: #9a9a9a;
  line-height: 2;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.subheader.style1 div, .subheader.style1 ul, .subheader.style1 li, .subheader.style1 a, .subheader.style1 span {
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

@media (max-width: 1440px) {
  .subheader.style1 .bg-img {
    height: 35vw;
  }
}

@media (max-width: 1240px) {
  .subheader.style1 .fu-info .titlebox {
    margin-bottom: 50px;
  }
  .subheader.style1 .fu-info .about-menu {
    margin: 0 -30px;
  }
  .subheader.style1 .fu-info .about-menu li {
    padding: 0 30px;
  }
  .subheader.style1 .fu-info .about-menu a {
    padding-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .subheader.style1 .bg-img, .subheader.style1 .fu-info {
    position: unset;
  }
  .subheader.style1 .fu-info {
    margin: 0;
    position: relative;
  }
  .subheader.style1 .fu-info::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #DDDDDD;
  }
  .subheader.style1 .fu-info .titlebox {
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #333;
    position: relative;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    color: #333;
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  .subheader.style1 .fu-info .titlebox .iconfont, .subheader.style1 .fu-info .titlebox .e_bg, .subheader.style1 .fu-info .titlebox .textbox .e_title {
    display: none;
  }
  .subheader.style1 .fu-info .titlebox .textbox {
    position: unset;
    width: 100%;
  }
  .subheader.style1 .fu-info .titlebox .textbox .title {
    width: 100%;
    font-size: 16px;
    line-height: 50px;
  }
  .subheader.style1 .fu-info .titlebox::after {
    content: '';
    width: 10px;
    height: 10px;
    display: block;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotateZ(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotateZ(45deg);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .subheader.style1 .fu-info .titlebox.active::after {
    -webkit-transform: translateY(-50%) rotateZ(135deg);
        -ms-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotateZ(135deg);
  }
  .subheader.style1 .fu-info .about-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    padding: 0 15px;
    margin-top: unset;
    background-color: #fff;
    min-height: 0;
    z-index: 100;
    margin: 0;
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  }
  .subheader.style1 .fu-info .about-menu::before {
    display: none;
  }
  .subheader.style1 .fu-info .about-menu li {
    width: 100%;
    padding: 0;
  }
  .subheader.style1 .fu-info .about-menu li::before {
    display: none;
  }
  .subheader.style1 .fu-info .about-menu li a {
    color: #333;
    font-size: 16px;
    width: 100%;
    line-height: 0px;
    border-bottom: 0px solid #DDDDDD;
    display: block;
    overflow: hidden;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    padding-bottom: 0;
  }
  .subheader.style1 .fu-info .about-menu li a::before {
    display: none;
  }
  .subheader.style1 .fu-info .about-menu li:last-child a {
    border-bottom: unset !important;
  }
  .subheader.style1 .fu-info .about-menu li.active a {
    color: #004188;
  }
  .subheader.style1 .fu-info .about-menu.on li a {
    line-height: 50px;
    border-bottom: 1px solid #DDDDDD;
  }
}

.breadcrumb {
  margin: 0 auto 0;
  position: relative;
  z-index: 10;
}

.breadcrumb .crumb {
  float: right;
  background-color: #112d4b;
  border-radius: 5000px;
  position: relative;
}

.breadcrumb .crumb .bgbox {
  background-color: #1e3f62;
  border-radius: 30px;
  height: 100%;
  width: 33.33333%;
  position: absolute;
  left: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.breadcrumb .crumb li {
  float: left;
  position: relative;
  cursor: pointer;
}

.breadcrumb .crumb li a {
  color: #fff;
  padding: 10px 30px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  display: inline-block;
  border-radius: 30px;
}

.breadcrumb .crumb li .iconfont {
  color: #3F5169;
}

.breadcrumb .crumb li .iconfont::before {
  display: inline-block;
  -webkit-transform: rotateZ(0deg);
      -ms-transform: rotate(0deg);
          transform: rotateZ(0deg);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.breadcrumb .crumb li:hover .iconfont {
  color: #fff;
}

.breadcrumb .crumb li:hover .iconfont::before {
  display: inline-block;
  -webkit-transform: rotateZ(180deg);
      -ms-transform: rotate(180deg);
          transform: rotateZ(180deg);
}

.breadcrumb .crumb li:hover .sub_menu {
  top: 120%;
  opacity: 1;
  pointer-events: auto;
}

.breadcrumb .crumb li .sub_menu {
  position: absolute;
  left: 50%;
  top: 130%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding: 10px 0;
  z-index: 10;
  background-color: #fff;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  pointer-events: none;
}

.breadcrumb .crumb li .sub_menu li {
  float: none;
  overflow: hidden;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  line-height: 30px;
}

.breadcrumb .crumb li .sub_menu li::before, .breadcrumb .crumb li .sub_menu li::after {
  display: none;
}

.breadcrumb .crumb li .sub_menu li a {
  position: relative;
  color: #333;
}

.breadcrumb .crumb li .sub_menu li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: #333;
  width: 0;
  height: 1px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.breadcrumb .crumb li .sub_menu li:hover a::before {
  width: 100%;
}

.breadcrumb .crumb li .sub_menu:after {
  content: '◆';
  position: absolute;
  top: 0;
  width: 100%;
  left: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 20px;
  margin-top: -10px;
  color: #fff;
  height: 10px;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(0, 0, 0, 0);
}

@media (max-width: 992px) {
  .breadcrumb {
    text-align: center;
  }
  .breadcrumb .crumb {
    display: inline-block;
    float: unset;
  }
}

@media (max-width: 468px) {
  .breadcrumb .crumb li a {
    padding: 10px 20px;
  }
}

.footer {
  background-color: #21242b;
  color: #fff;
}

.footer .footer-head {
  border-bottom: 1px solid #363b42;
}

.footer .footer-head .logo {
  max-width: 15%;
  padding: 40px 0;
}

.footer .footer-head .footer-mune li {
  float: left;
  padding: 30px 0;
}

.footer .footer-head .footer-mune li a {
  display: inline-block;
  color: #a9a9a9;
  padding: 30px;
  font-size: 16px;
}

.footer .footer-head .footer-mune li a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer .footer-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .footer-head .footer-mune {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer .footer-head .logo {
    max-width: 40%;
    padding: 20px 0;
  }
}

.footer .footer-main {
  border-bottom: 1px solid #363b42;
  padding: 40px 0;
}

.footer .footer-main .fu-ewm {
  border: 1px solid #363b42;
  padding: 15px;
  margin-right: 40px;
}

.footer .footer-main .fu-ewm img {
  width: 100px;
  height: 100px;
}

.footer .footer-main .fu-info .fu-item {
  margin-right: 30px;
  width: 200px;
}

.footer .footer-main .fu-info .fu-item i {
  border: 1px solid #363b42;
  border-radius: 50%;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6e7073;
}

.footer .footer-main .fu-info .fu-item .title {
  color: #bbbbbb;
  margin-bottom: 10px;
}

.footer .footer-main .fu-info .fu-item .phone {
  font-size: 26px;
  color: #bbbbbb;
}

.footer .footer-main .fu-info .fu-item .content {
  color: #6e7073;
  line-height: 1.7;
}

.footer .footer-main .fu-link {
  text-align: right;
}

.footer .footer-main .fu-link h2 {
  font-size: 16px;
  color: #a9a9a9;
  margin-bottom: 20px;
}

.footer .footer-main .fu-link .friendship {
  position: relative;
  width: 250px;
}

.footer .footer-main .fu-link .friendship .title {
  display: block;
  text-align: left;
  padding: 10px 20px;
  border: 2px solid #363b42;
  position: relative;
  cursor: pointer;
  color: #a9a9a9;
}

.footer .footer-main .fu-link .friendship .title::after {
  font-family: 'icon';
  content: '\e772';
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.footer .footer-main .fu-link .friendship:hover .title::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.footer .footer-main .fu-link .friendship:hover .link-list {
  line-height: 40px;
}

.footer .footer-main .fu-link .friendship:hover .link-list .link-item {
  height: 40px;
  line-height: 40px;
}

.footer .footer-main .fu-link .friendship .link-list {
  position: absolute;
  bottom: 40px;
  background-color: #fff;
  width: 100%;
  text-align: left;
  z-index: 1024;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.footer .footer-main .fu-link .friendship .link-list .link-item {
  display: block;
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  background-color: #191919;
  color: rgba(255, 255, 255, 0.8);
}

.footer .footer-main .fu-link .friendship .link-list .link-item:hover {
  background-color: #eee;
  color: #333;
}

.footer .footer-main .ewm-top {
  display: block;
}

.footer .footer-main .ewm-bottom {
  display: none;
}

@media (max-width: 991px) {
  .footer .footer-main .fu-ewm {
    float: none !important;
    width: 130px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer .footer-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
    border-bottom: none;
  }
  .footer .footer-main .ewm-top {
    display: none;
  }
  .footer .footer-main .ewm-bottom {
    display: block;
    margin-top: 30px;
  }
  .footer .footer-main .fu-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer-main .fu-info .fu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  .footer .footer-main .fu-info .fu-item .iconfont {
    margin-bottom: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 15px;
  }
  .footer .footer-main .fu-info .fu-item > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .footer .footer-main .fu-info .fu-item .title {
    margin-bottom: 0;
  }
  .footer .footer-main .fu-link h2 {
    text-align: center;
  }
  .footer .footer-main .fu-link .friendship {
    margin: 0 auto;
    width: 100%;
  }
}

.footer .footer-copyright {
  color: #6e7073;
  padding: 40px 0;
}

.footer .footer-copyright p {
  display: inline-block;
}

.footer .footer-copyright a {
  color: inherit;
}

.footer .footer-copyright a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer .footer-copyright .informbox .item {
  padding: 6px 30px;
  border: 1px solid #ffffff;
  color: #ffffff;
  margin-left: 15px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  display: inline-block;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}

.footer .footer-copyright .informbox .item:first-child {
  margin-left: 0;
}

.footer .footer-copyright .informbox .item:hover, .footer .footer-copyright .informbox .item.active {
  border: 1px solid rgba(255, 255, 255, 0);
  text-decoration: none;
  background-color: #caad73;
  color: #fff;
}

.footer .footer-copyright .informbox .item .listbox {
  position: absolute;
  width: 600px;
  color: rgba(255, 255, 255, 0.8);
  bottom: 100%;
  right: -40px;
  padding-bottom: 15px;
  display: none;
}

.footer .footer-copyright .informbox .item .listbox .box {
  padding: 20px 30px;
  background-color: #191919;
}

.footer .footer-copyright .informbox .item .listbox .box .list_item {
  margin-bottom: 15px;
}

.footer .footer-copyright .informbox .item .listbox .box .list_item:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .footer .footer-copyright {
    text-align: center;
  }
  .footer .footer-copyright .leftbox {
    float: none !important;
  }
  .footer .footer-copyright .informbox {
    display: block;
    float: none !important;
    margin-top: 15px;
  }
}

@media (max-width: 991px) {
  .footer .footer-copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    line-height: 1.8;
    padding-top: 20px;
  }
  .footer .footer-copyright .informbox {
    position: relative;
  }
  .footer .footer-copyright .informbox .item {
    position: unset;
    padding: 2px 15px;
  }
  .footer .footer-copyright .informbox .item .listbox {
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    text-align: left;
  }
}

@media (max-width: 767px) {
  .footer .footer-copyright {
    font-size: 12px;
  }
  .footer .footer-copyright .informbox .item .listbox {
    width: 90vw;
  }
}

.fullmenu {
  position: fixed;
  right: 20px;
  top: 60%;
  z-index: 1024;
}

.fullmenu.black li a i {
  background-color: #000;
}

.fullmenu li a {
  display: block;
  padding: 15px;
  position: relative;
}

.fullmenu li a i {
  position: absolute;
  right: 0;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  opacity: .6;
}

.fullmenu li a:hover i {
  width: 30px;
}

.fullmenu li.active a i {
  width: 40px;
  height: 3px;
  opacity: 1;
}

.mod-buttom {
  display: inline-block;
  border-top: 1px solid #004188;
  border-bottom: 1px solid #004188;
  padding: 23px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  width: 230px;
  font-size: 18px;
  color: #004188;
  position: relative;
  z-index: 10;
}

.mod-buttom::after {
  font-family: 'icon';
  content: '\e608';
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
}

.mod-buttom::before {
  content: '';
  width: 0%;
  height: 100%;
  background-color: #004188;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  z-index: -1;
}

.mod-buttom:hover {
  color: #fff;
}

.mod-buttom:hover::before {
  opacity: 1;
  width: 100%;
}

.mod-buttom.sm {
  border-top: none;
  width: 150px;
}

.mod-buttom.sm:hover {
  color: #fff;
}

.mod-buttom.sm:hover::before {
  opacity: 1;
  width: 100%;
}

@media (max-width: 767px) {
  .mod-buttom {
    padding: 13px 8px;
    width: 150px;
    font-size: 16px;
    text-align: left;
  }
}

.home .animated {
  opacity: 0;
}

.home .section {
  overflow: hidden;
}

@media (max-width: 991px) {
  .home .aboutus, .home .information {
    height: auto !important;
  }
  .home .aboutus .fp-tableCell, .home .information .fp-tableCell {
    height: auto !important;
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .home .animated {
    opacity: 1;
  }
  .home .business, .home .news {
    height: auto !important;
  }
  .home .business .fp-tableCell, .home .news .fp-tableCell {
    height: auto !important;
    padding: 50px 0;
  }
}

.home .banner {
  background-color: #fff;
}

.home .banner .swiper-container {
  width: 100%;
  height: 100%;
}

.home .banner .swiper-container .slide_transition {
  -webkit-transition-duration: 1.6s;
       -o-transition-duration: 1.6s;
          transition-duration: 1.6s;
}

.home .banner .swiper-container .swiper-wrapper, .home .banner .swiper-container [data-swiper-parallax] {
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
       -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
          transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.home .banner .swiper-container .swiper-slide {
  overflow: hidden;
}

.home .banner .swiper-container .swiper-slide:nth-child(1) a .textbox {
  margin-top: 21%;
}

.home .banner .swiper-container .swiper-slide:nth-child(3) a .textbox {
  text-align: center;
  margin-top: 23%;
}

.home .banner .swiper-container .swiper-slide:nth-child(3) a .textbox .text_img {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.home .banner .swiper-container .swiper-slide a {
  display: block;
  position: relative;
  overflow: hidden;
}

.home .banner .swiper-container .swiper-slide a .sj_banner {
  display: none;
}

.home .banner .swiper-container .swiper-slide a .textbox {
  color: #fff;
  font-size: 0;
  margin-top: 18%;
}

.home .banner .swiper-container .swiper-slide a .textbox .text_img {
  display: inline-block;
  opacity: 0;
  -webkit-transition: opacity 1s 1.5s , margin 1.5s 1.5s;
  -o-transition: opacity 1s 1.5s , margin 1.5s 1.5s;
  transition: opacity 1s 1.5s , margin 1.5s 1.5s;
  margin-left: -30px;
}

@media screen and (max-width: 767px) {
  .home .banner .swiper-container .swiper-slide a .textbox {
    margin-top: 40% !important;
  }
  .home .banner .swiper-container .swiper-slide a .textbox .text_img img {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .home .banner .swiper-container .swiper-slide a {
    background-image: unset;
  }
  .home .banner .swiper-container .swiper-slide a .sj_banner {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}

.home .banner .swiper-container .swiper-slide.swiper-slide-active .textbox .text_img {
  opacity: 1;
  margin-left: 0px;
}

.home .banner .swiper-container .swiper-page {
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1024;
  color: #fff;
  font-size: 16px;
}

.home .banner .swiper-container .swiper-page .swiper-pagination-current {
  font-size: 64px;
}

.home .banner .swiper-container .swiper-pagination {
  position: absolute;
  left: auto;
  right: 20px;
  top: 60%;
  z-index: 1024;
  width: 30px;
}

.home .banner .swiper-container .swiper-pagination.black li a i {
  background-color: #000;
}

.home .banner .swiper-container .swiper-pagination span {
  width: auto;
  height: auto;
  background: none;
  opacity: 1;
}

.home .banner .swiper-container .swiper-pagination span a {
  display: block;
  padding: 15px;
  position: relative;
}

.home .banner .swiper-container .swiper-pagination span a i {
  position: absolute;
  right: 0;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  opacity: .6;
}

.home .banner .swiper-container .swiper-pagination span a:hover i {
  width: 30px;
}

.home .banner .swiper-container .swiper-pagination span.swiper-pagination-bullet-active a i {
  width: 40px;
  height: 3px;
  opacity: 1;
}

.home .banner .entrance {
  position: absolute;
  z-index: 1024;
  bottom: 50px;
  left: 0;
  width: 100%;
}

.home .banner .entrance .fu-list {
  margin-right: -2px;
  margin-left: -2px;
}

.home .banner .entrance .fu-list .col-item {
  padding: 2px;
}

.home .banner .entrance .fu-list .fu-item {
  background-color: #fff;
  padding: 20px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.home .banner .entrance .fu-list .fu-item .fu-icon {
  width: 20%;
}

.home .banner .entrance .fu-list .fu-item .fu-icon i {
  font-size: 45px;
  color: #cfab6f;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.home .banner .entrance .fu-list .fu-item .fu-text {
  width: 80%;
}

.home .banner .entrance .fu-list .fu-item .fu-text h1 {
  font-size: 20px;
  font-weight: normal;
  color: #333;
  margin-bottom: 10px;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.home .banner .entrance .fu-list .fu-item .fu-text p {
  font-size: 14px;
  color: #656a70;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.home .banner .entrance .fu-list .fu-item::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100px;
  width: 0%;
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.home .banner .entrance .fu-list .fu-item:hover {
  background-color: transparent;
}

.home .banner .entrance .fu-list .fu-item:hover::after {
  width: 100%;
  background-color: #004188;
}

.home .banner .entrance .fu-list .fu-item:hover h1, .home .banner .entrance .fu-list .fu-item:hover p, .home .banner .entrance .fu-list .fu-item:hover i {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .home .banner .entrance {
    display: none;
  }
}

.home .mod-title {
  position: relative;
  z-index: 10;
  padding: 50px 0;
}

.home .mod-title h1 {
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 10px;
}

.home .mod-title p {
  font-size: 16px;
  color: #8b8b8b;
}

.home .mod-title .num {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  font-size: 200px;
  color: #f0f2f5;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .home .mod-title {
    text-align: center;
    padding: 15px 0;
  }
  .home .mod-title h1 {
    font-size: 24px;
  }
  .home .mod-title p {
    font-size: 14px;
  }
  .home .mod-title .num {
    font-size: 120px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.home .aboutus .fu-left {
  position: relative;
  z-index: 100;
}

.home .aboutus .fu-left .fu-text {
  margin-top: 10%;
}

.home .aboutus .fu-left .fu-text p {
  line-height: 2;
  color: #797979;
}

.home .aboutus .fu-left .fu-text-buttom {
  margin: 50px 0;
  line-height: 2;
}

.home .aboutus .fu-left .fu-text-buttom h1 {
  font-size: 20px;
  color: #004188;
  margin-bottom: 10px;
}

.home .aboutus .fu-left .fu-text-buttom p {
  color: #63594e;
}

.home .aboutus .fu-right .right-title {
  font-size: 20px;
  color: #fff;
  padding-left: 10%;
  margin-top: 50px;
}

.home .aboutus .fu-right .right-title h2 {
  width: 8em;
  font-size: inherit;
  background-color: #d7ba7e;
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
  padding-bottom: 2px;
}

.home .aboutus .fu-right .fu-row {
  margin-left: -60px;
  margin-top: 50px;
}

.home .aboutus .fu-right .fu-row .fu-video {
  width: 40%;
  height: 0;
  padding-bottom: 65%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.home .aboutus .fu-right .fu-row .fu-video .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.home .aboutus .fu-right .fu-row .fu-video .ico {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  text-align: center;
  line-height: 65px;
  opacity: .8;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.home .aboutus .fu-right .fu-row .fu-video .ico i {
  font-size: 24px;
}

.home .aboutus .fu-right .fu-row .fu-video:hover .bg-img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.home .aboutus .fu-right .fu-row .fu-video:hover .ico {
  opacity: 1;
}

.home .aboutus .fu-right .fu-row .fu-img {
  width: 45%;
  height: 0;
  padding-bottom: 70%;
  margin-left: 15px;
}

@media screen and (max-width: 991px) {
  .home .aboutus .fu-right .fu-row {
    margin-left: 15px;
  }
}

.home .aboutus .about-bg {
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: #004188;
}

.home .aboutus .about-bg::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/static/img/web/home/index-about.png);
  background-repeat: no-repeat;
  background-position: bottom;
}

@media screen and (max-width: 991px) {
  .home .aboutus .about-bg {
    left: 50%;
  }
}

.home .aboutus.fp-completely .about-bg, .home .aboutus.active .about-bg {
  left: 50%;
}

@media (max-width: 767px) {
  .home .aboutus {
    text-align: center;
  }
  .home .aboutus .fu-left .fu-text {
    text-align: justify;
  }
  .home .aboutus .fu-left .fu-text p {
    display: contents;
  }
  .home .aboutus .fu-left .fu-text-buttom {
    text-align: center;
    margin: 25px 0;
  }
  .home .aboutus .fu-left .fu-text-buttom h1 {
    font-size: 16px;
  }
  .home .aboutus .fu-left .fu-text-buttom p {
    display: none;
  }
  .home .aboutus .fu-right {
    overflow: hidden;
    background-color: #004188;
    padding-bottom: 30px;
    margin-top: 40px;
  }
  .home .aboutus .fu-right .right-title {
    padding-left: 0;
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
  }
  .home .aboutus .fu-right .right-title h2 {
    display: inline-block;
    font-weight: normal;
    margin: 10px auto 0;
  }
  .home .aboutus .fu-right .fu-row {
    margin-top: 30px;
  }
  .home .aboutus .fu-right .fu-video, .home .aboutus .fu-right .fu-img {
    width: calc(50% - 15px) !important;
  }
  .home .aboutus .fu-right .fu-video .ico {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .home .aboutus .about-bg {
    display: none;
  }
}

.home .business .mod-title {
  position: absolute;
  width: 100%;
  top: 5%;
  text-align: center;
  z-index: 1;
}

.home .business .mod-title .num {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .home .business .mod-title {
    position: relative;
  }
  .home .business .mod-title p {
    display: none;
  }
  .home .business .mod-title .num {
    top: 30px;
  }
}

.home .business .swiper-container {
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  left: 0;
}

.home .business .swiper-container .swiper-slide {
  text-align: center;
}

@media (max-width: 1100px) {
  .home .business .swiper-container .swiper-slide.slides1 .fu-info {
    width: 50%;
  }
}

.home .business .swiper-container .swiper-slide.slides1 img {
  position: absolute;
  left: 30%;
  bottom: 0;
}

@media (max-width: 1600px) {
  .home .business .swiper-container .swiper-slide.slides1 img {
    max-width: 65%;
  }
}

@media (max-width: 1100px) {
  .home .business .swiper-container .swiper-slide.slides2 .fu-info {
    width: 40%;
  }
}

.home .business .swiper-container .swiper-slide.slides2 img {
  position: absolute;
  left: 45%;
  bottom: 0;
  height: 100%;
}

@media (max-width: 1500px) {
  .home .business .swiper-container .swiper-slide.slides3 .fu-info {
    width: 40%;
  }
}

@media (max-width: 1100px) {
  .home .business .swiper-container .swiper-slide.slides3 .fu-info {
    width: 60%;
  }
}

.home .business .swiper-container .swiper-slide.slides3 img {
  position: absolute;
  left: 30%;
  bottom: 10%;
}

@media (max-width: 1600px) {
  .home .business .swiper-container .swiper-slide.slides3 img {
    max-width: 65%;
    left: 33%;
  }
}

@media (max-width: 1100px) {
  .home .business .swiper-container .swiper-slide.slides4 .fu-info {
    width: 45%;
  }
}

.home .business .swiper-container .swiper-slide.slides4 img {
  position: absolute;
  left: 38.5%;
  bottom: -8%;
  height: 100%;
}

@media (max-width: 1100px) {
  .home .business .swiper-container .swiper-slide.slides5 .fu-info {
    width: 40%;
  }
}

.home .business .swiper-container .swiper-slide.slides5 img {
  position: absolute;
  left: 40%;
  bottom: 0;
  height: 100%;
}

@media (max-width: 1100px) {
  .home .business .swiper-container .swiper-slide.slides5 img {
    width: 55%;
  }
}

@media (min-width: 2500px) {
  .home .business .swiper-container .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (max-width: 1600px) {
  .home .business .swiper-container .swiper-slide img {
    max-width: 60%;
  }
}

.home .business .swiper-container .swiper-slide .fu-info {
  position: absolute;
  left: 10%;
  top: 0;
  text-align: left;
  width: 30%;
  display: none;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-left {
  width: 25%;
  margin-right: -25px;
  position: relative;
  z-index: 10;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-left .fu-head {
  text-align: center;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-color: #caad73;
  position: relative;
  z-index: 10;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-left .fu-head .fu-text {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  line-height: 1.5;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-left .fu-head .num {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 120px;
  z-index: -1;
  color: rgba(178, 72, 33, 0.27);
  font-weight: 700;
}

@media screen and (max-width: 1155px) {
  .home .business .swiper-container .swiper-slide .fu-info .fu-left .fu-head .num {
    font-size: 72px;
  }
}

.home .business .swiper-container .swiper-slide .fu-info .fu-left .bg-img {
  width: 100%;
  padding-bottom: 160%;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-right {
  width: 75%;
  padding: 40px 40px 40px 65px;
  background-color: #004188;
  color: #fff;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-right .fu-title p {
  font-size: 13px;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-right .fu-title h2 {
  margin-top: 10px;
  font-size: 22px;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-right .fu-content {
  margin-top: 50px;
  line-height: 1.7;
  min-height: 9.5em;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-right .mod-buttom {
  margin: 50px 0;
  border-top: none;
  border-bottom: 1px solid #caad73;
  color: #cfab6f;
  width: 150px;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-right .mod-buttom::before {
  background-color: #cfab6f;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-right .mod-buttom:hover {
  color: #fff;
}

.home .business .swiper-container .swiper-slide .fu-info .fu-right .mod-buttom:hover::before {
  opacity: 1;
  width: 100%;
}

@media (max-width: 767px) {
  .home .business .swiper-container {
    height: auto;
    position: relative;
  }
  .home .business .swiper-container .swiper-slide .fu-info {
    position: unset;
    width: 100% !important;
    padding: 0 15px;
  }
  .home .business .swiper-container .swiper-slide .fu-info.fadeInUpSmall {
    -webkit-animation-name: none;
            animation-name: none;
    opacity: 1;
    display: block !important;
  }
  .home .business .swiper-container .swiper-slide .fu-info .fu-left {
    margin-right: -15px;
  }
  .home .business .swiper-container .swiper-slide .fu-info .fu-left .fu-head {
    padding-bottom: 120%;
  }
  .home .business .swiper-container .swiper-slide .fu-info .fu-right {
    width: calc(75% + 15px);
    padding: 20px 40px;
  }
  .home .business .swiper-container .swiper-slide .fu-info .fu-right .fu-title p {
    display: none;
  }
  .home .business .swiper-container .swiper-slide .fu-info .fu-right .fu-title h2 {
    font-size: 16px;
  }
  .home .business .swiper-container .swiper-slide .fu-info .fu-right .fu-content {
    margin-top: 15px;
    color: #9ec1eb;
  }
  .home .business .swiper-container .swiper-slide .fu-info .fu-right .mod-buttom {
    margin: 10px 0;
    font-size: 14px;
  }
  .home .business .swiper-container .swiper-slide .fu-img {
    height: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 20px;
  }
  .home .business .swiper-container .swiper-slide img {
    position: unset !important;
    max-width: 90% !important;
    height: auto;
  }
}

.home .business .paginations {
  position: absolute;
  width: 100%;
}

.home .business .paginations .pagination-bg {
  width: 100%;
}

.home .business .paginations .swiper-pagination {
  position: unset;
  width: 100%;
  text-align: center;
  padding-top: 70px;
  background-size: cover;
  background-repeat: no-repeat;
}

.home .business .paginations .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  background-color: #fff;
  opacity: 1;
  margin: 0 30px;
  width: 20px;
  height: 20px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  border: 2px solid transparent;
  outline: none;
  cursor: pointer;
}

.home .business .paginations .swiper-pagination .swiper-pagination-bullet:nth-child(1) {
  position: relative;
  top: 50px;
}

.home .business .paginations .swiper-pagination .swiper-pagination-bullet:nth-child(2) {
  position: relative;
  top: 35px;
}

.home .business .paginations .swiper-pagination .swiper-pagination-bullet:nth-child(3) {
  position: relative;
  top: 25px;
}

.home .business .paginations .swiper-pagination .swiper-pagination-bullet:nth-child(4) {
  position: relative;
  top: 19px;
}

.home .business .paginations .swiper-pagination .swiper-pagination-bullet:nth-child(5) {
  position: relative;
  top: 16px;
}

.home .business .paginations .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background-color: #004188;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.home .business .paginations .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 2px solid #004188;
}

.home .business .paginations .swiper-pagination .swiper-pagination-bullet:hover {
  border: 2px solid rgba(0, 65, 136, 0.7);
}

@media (max-width: 767px) {
  .home .business .paginations {
    position: relative;
  }
  .home .business .paginations .swiper-pagination {
    padding-top: 25px;
  }
  .home .business .paginations .swiper-pagination .swiper-pagination-bullet {
    margin: 0 20px;
  }
  .home .business .paginations .swiper-pagination .swiper-pagination-bullet::after {
    width: 7px;
    height: 7px;
  }
  .home .business .paginations .swiper-pagination .swiper-pagination-bullet:nth-child(2) {
    top: 30px;
  }
  .home .business .paginations .swiper-pagination .swiper-pagination-bullet:nth-child(3) {
    top: 18px;
  }
  .home .business .paginations .swiper-pagination .swiper-pagination-bullet:nth-child(4) {
    top: 14px;
  }
  .home .business .paginations .swiper-pagination .swiper-pagination-bullet:nth-child(5) {
    top: 22px;
  }
}

.home .business .bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-image: url("/static/img/web/home/img-2.png");
  -webkit-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
  z-index: 0;
}

@media (max-width: 767px) {
  .home .business .bg {
    top: auto;
    height: 330px;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .home .business {
    overflow: auto;
  }
  .home .business .fp-tableCell {
    padding-top: 0;
  }
}

.home .information #map {
  width: 100%;
  height: 750px;
}

.home .information #map > div canvas:nth-child(1) {
  -webkit-transform: scaleX(1.3) scaleY(0.9);
      -ms-transform: scaleX(1.3) scaleY(0.9);
          transform: scaleX(1.3) scaleY(0.9);
}

.home .information .fu-title {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.home .information .fu-title h1 {
  font-size: 32px;
  font-weight: normal;
  line-height: 1.3;
}

.home .information .fu-title h1 span {
  color: #004188;
}

.home .information .fu-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background-color: #004188;
}

.home .information .fu-text {
  line-height: 2;
  color: #63594e;
}

.home .information .fu-left {
  padding-right: 15px;
}

.home .information .fu-right {
  text-align: right;
  color: #fff;
  padding-left: 15px;
}

.home .information .fu-right .fu-text {
  color: #b9d6f5;
}

.home .information .fu-right .fu-title::after {
  background-color: #d1af74;
  left: auto;
  right: 0;
}

.home .information .swiper-pagination {
  --swiper-theme-color:#004188;
  position: unset;
  opacity: 0;
}

.home .information .fu-data {
  background-color: #f7f7f7;
  margin-top: 20%;
}

.home .information .fu-data .fu-item {
  padding: 30px 70px;
  text-align: center;
}

.home .information .fu-data .fu-item h3 {
  font-size: 18px;
  font-weight: normal;
  color: #5e2c03;
  line-height: 1.3;
}

.home .information .fu-data .fu-item h3 span {
  font-size: 42px;
  font-weight: 700;
}

.home .information .map {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 1;
}

.home .information .map-img, .home .information .bottom-img-m {
  display: none;
}

.home .information .right-bg, .home .information .left-bg {
  position: absolute;
  top: 0;
  left: 100%;
  width: 50%;
  height: 100%;
  z-index: -1;
  background-color: #004188;
}

.home .information .right-bg::after, .home .information .left-bg::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/static/img/web/home/index-about.png);
  background-repeat: no-repeat;
  background-position: bottom;
}

@media (max-width: 991px) {
  .home .information .right-bg, .home .information .left-bg {
    left: 50%;
  }
}

@media (max-width: 767px) {
  .home .information .right-bg, .home .information .left-bg {
    display: none;
  }
}

.home .information .left-bg {
  left: 0%;
  background: none;
}

.home .information .left-bg::after {
  background-image: url(/static/img/web/home/img-3.png);
}

.home .information.fp-completely .right-bg, .home .information.active .right-bg {
  left: 50%;
}

@media (max-width: 991px) {
  .home .information {
    text-align: center;
  }
  .home .information .fu-title h1 {
    font-size: 20px;
  }
  .home .information .fu-title::after {
    height: 2px;
    width: 50px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .home .information .fu-right, .home .information .fu-left {
    padding: 0;
  }
  .home .information .fu-right {
    text-align: center;
  }
  .home .information .map {
    position: relative;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .home .information .map #map {
    height: 730px;
  }
  .home .information .fu-data {
    margin-top: -100px;
  }
}

@media (max-width: 767px) {
  .home .information .fp-tableCell {
    padding-bottom: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
  }
  .home .information .fp-tableCell.bg-blue .fu-right {
    color: #fff;
  }
  .home .information .fp-tableCell.bg-blue .fu-right .fu-text {
    color: #fff;
  }
  .home .information .fp-tableCell.bg-blue .swiper-pagination {
    --swiper-theme-color:#d1af74;
  }
  .home .information .swiper-pagination {
    opacity: 1;
  }
  .home .information .fu-title {
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
  .home .information .fu-right {
    color: #333;
  }
  .home .information .fu-right .fu-text {
    color: #63594e;
  }
  .home .information .fu-right .fu-title::after {
    right: auto;
    left: 50%;
  }
  .home .information .fu-data {
    padding: 10px 0;
    margin-top: -50px;
  }
  .home .information .fu-data .col-sm-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .home .information .fu-data .col-sm-6 .fu-item {
    padding: 10px 0;
    width: 50%;
  }
  .home .information .fu-data .col-sm-6 .fu-item h3 {
    font-size: 14px;
  }
  .home .information .fu-data .col-sm-6 .fu-item h3 span {
    font-size: 28px;
  }
  .home .information .fu-data .col-sm-6::after {
    display: none;
  }
  .home .information #map {
    display: none;
  }
  .home .information .map-img {
    display: block;
    margin-top: 20px;
  }
  .home .information .bottom-img-m {
    display: block;
    margin-top: 20px;
  }
}

.home .news {
  background: url(/static/img/web/home/img-5.png) no-repeat;
  background-position: top center;
  background-size: 70%;
  background-color: #f7f7f7;
}

.home .news .swiper-container .swiper-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.home .news .swiper-container .swiper-slide {
  background-color: #fff;
  padding: 30px;
  opacity: .9;
}

.home .news .swiper-container .swiper-slide .swiper-slide-next, .home .news .swiper-container .swiper-slide .swiper-slide-prev {
  opacity: .7;
}

.home .news .swiper-container .swiper-slide .fu-img {
  overflow: hidden;
}

.home .news .swiper-container .swiper-slide .fu-img .bg-img {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
}

.home .news .swiper-container .swiper-slide .fu-text h1 {
  font-weight: normal;
  font-size: 24px;
  color: #343434;
  line-height: 1.5;
  margin: 25px 0;
  height: 3em;
}

.home .news .swiper-container .swiper-slide .fu-text p {
  height: 6em;
  line-height: 2;
  color: #797979;
}

.home .news .swiper-container .swiper-slide .mod-buttom {
  border-bottom: none;
  color: #cfab6f;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.home .news .swiper-container .swiper-slide .mod-buttom::before {
  background-color: #cfab6f;
}

.home .news .swiper-container .swiper-slide .mod-buttom:hover {
  color: #fff;
}

.home .news .swiper-container .swiper-slide .mod-buttom:hover::before {
  opacity: 1;
  width: 100%;
}

.home .news .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1;
  background-color: #004188;
  color: #fff;
  background-image: url(/static/img/web/home/img-6.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.home .news .swiper-container .swiper-slide.swiper-slide-active .fu-text h1 {
  color: inherit;
}

.home .news .swiper-container .swiper-slide.swiper-slide-active .fu-text p {
  color: inherit;
}

.home .news .swiper-container .swiper-slide.swiper-slide-active .mod-buttom {
  padding: 23px 10px;
  margin: 30px 0;
  height: auto;
  border-bottom: 1px solid #caad73;
}

.home .news .m-more {
  display: none;
}

.home .news .swiper-pagination {
  position: unset;
  margin-top: 20px;
  display: none;
}

@media (max-width: 767px) {
  .home .news {
    background-size: contain;
    background-position: center 100px;
  }
  .home .news .mod-title {
    margin-bottom: 50px;
  }
  .home .news .mod-title .pull-right {
    display: none;
  }
  .home .news .mod-title .num {
    color: #f1f1f1;
  }
  .home .news .swiper-pagination {
    display: block;
  }
  .home .news .swiper-container .swiper-slide {
    padding: 15px;
    opacity: .8;
  }
  .home .news .swiper-container .swiper-slide.swiper-slide-active {
    opacity: 1;
  }
  .home .news .swiper-container .swiper-slide.swiper-slide-active .fu-text p {
    color: #CDDAE8;
  }
  .home .news .swiper-container .swiper-slide.swiper-slide-active .mod-buttom {
    padding: 12px 0;
    font-size: 14px;
    margin: 10px 0 0 0;
  }
  .home .news .swiper-container .swiper-slide .fu-text h1 {
    font-size: 16px;
    margin: 10px 0 15px;
  }
  .home .news .swiper-container .swiper-slide .fu-text p {
    line-height: 1.8;
    font-size: 13px;
    line-clamp: 2;
    height: 3.6em;
  }
  .home .news .m-more {
    display: block;
    text-align: center;
    margin-top: 40px;
  }
}

.home .section-foot, .home .footer {
  overflow: initial;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1025;
  display: none;
}

.video-modal .modal-main {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1024;
  width: 70%;
  max-width: 1500px;
}

.video-modal .modal-main .iconfont {
  position: absolute;
  top: 0;
  right: -42px;
  background-color: #545a66;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.video-modal .modal-main .iconfont::before {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  display: inline-block;
}

.video-modal .modal-main .iconfont:hover::before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.video-modal .modal-main video {
  width: 100%;
}

.video-modal .mask {
  width: 100%;
  height: 100%;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.cursor {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  pointer-events: none;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  height: 40px;
  width: 40px;
  margin-top: -20px;
  margin-left: -60px;
}

.cursor.active .cursor__path_right {
  -webkit-transform: translate3d(25px, 0, 1px);
          transform: translate3d(25px, 0, 1px);
}

.cursor.active .cursor__path_left {
  -webkit-transform: translate3d(-25px, 0, 1px);
          transform: translate3d(-25px, 0, 1px);
}

.cursor.active path {
  fill: #fff;
}

.cursor .cursor__path {
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1.08, 0.62, 0.95);
  -o-transition: all 0.6s cubic-bezier(0.23, 1.08, 0.62, 0.95);
  transition: all 0.6s cubic-bezier(0.23, 1.08, 0.62, 0.95);
}

.cursor svg {
  stroke-dashoffset: 200;
  stroke-width: 2;
}

.cursor.show-pointer svg {
  stroke-dashoffset: 0;
}

.cursor path {
  fill: transparent;
  -webkit-transition: all 0.25s cubic-bezier(0.23, 1.08, 0.62, 0.95);
  -o-transition: all 0.25s cubic-bezier(0.23, 1.08, 0.62, 0.95);
  transition: all 0.25s cubic-bezier(0.23, 1.08, 0.62, 0.95);
}

.cursor svg,
.cursor.show-pointer svg {
  stroke-dasharray: 200;
  -webkit-transition: all 0.6s cubic-bezier(0.23, 1.08, 0.62, 0.95);
  -o-transition: all 0.6s cubic-bezier(0.23, 1.08, 0.62, 0.95);
  transition: all 0.6s cubic-bezier(0.23, 1.08, 0.62, 0.95);
}

.corporate-culture .fu-title,
.organizational .fu-title,
.member-enterprises .fu-title,
.enterprise-honor .fu-title {
  padding-top: 100px;
  position: relative;
}

.corporate-culture .fu-title h1,
.organizational .fu-title h1,
.member-enterprises .fu-title h1,
.enterprise-honor .fu-title h1 {
  font-size: 36px;
  font-weight: normal;
  color: #343434;
}

.corporate-culture .fu-title p,
.organizational .fu-title p,
.member-enterprises .fu-title p,
.enterprise-honor .fu-title p {
  font-size: 14px;
  color: #8b8b8b;
  line-height: 2;
  margin-top: 10px;
  text-transform: Uppercase;
}

@media (max-width: 767px) {
  .corporate-culture .fu-title,
  .organizational .fu-title,
  .member-enterprises .fu-title,
  .enterprise-honor .fu-title {
    text-align: center;
    padding-top: 50px;
  }
  .corporate-culture .fu-title h1,
  .organizational .fu-title h1,
  .member-enterprises .fu-title h1,
  .enterprise-honor .fu-title h1 {
    font-size: 24px;
  }
  .corporate-culture .fu-title p,
  .organizational .fu-title p,
  .member-enterprises .fu-title p,
  .enterprise-honor .fu-title p {
    font-size: 12px;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .about-us .animated {
    opacity: 1;
  }
  .about-us .group-profile, .about-us .project-results, .about-us .important-data {
    height: auto !important;
  }
  .about-us .group-profile .fp-tableCell, .about-us .project-results .fp-tableCell, .about-us .important-data .fp-tableCell {
    height: auto !important;
    padding: 50px 0;
  }
}

@media (max-width: 1024px) {
  .about-us .important-data {
    height: auto !important;
  }
  .about-us .important-data .fp-tableCell {
    height: auto !important;
    padding: 50px 0;
  }
}

.about-us .animated {
  opacity: 0;
}

.about-us .cell_box {
  width: 100%;
  height: 100%;
}

.about-us .fu-title {
  margin-bottom: 30px;
}

.about-us .fu-title .num {
  font-size: 60px;
  color: #004188;
  font-weight: 700;
}

.about-us .fu-title h1 {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.8;
}

.about-us .fu-title h2 {
  font-size: 14px;
  font-weight: normal;
  color: #8b8b8b;
}

@media (max-width: 767px) {
  .about-us .fu-title {
    text-align: center;
  }
  .about-us .fu-title .num {
    font-size: 40px;
  }
  .about-us .fu-title h1 {
    font-size: 24px;
  }
  .about-us .fu-title h2 {
    font-size: 12px;
  }
}

.about-us .group-profile {
  background: url(/static/img/web/bg/img-3.png) no-repeat center;
}

.about-us .group-profile .right-img {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50%;
  height: 100%;
  max-height: 930px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-mask: url(/static/img/web/bg/img-5.png);
          mask: url(/static/img/web/bg/img-5.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: right;
          mask-position: right;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.about-us .group-profile .right-img img {
  display: none;
}

.about-us .group-profile .fu-left .fu-text {
  font-size: 16px;
  line-height: 2;
  color: #797979;
}

@media (max-width: 767px) {
  .about-us .group-profile {
    background-size: contain;
  }
  .about-us .group-profile .fu-left .fu-text {
    margin-bottom: 100px;
    text-align: justify;
  }
  .about-us .group-profile .fu-left .fu-text p {
    display: contents;
  }
  .about-us .group-profile .right-img {
    position: unset;
    width: 100%;
    padding-bottom: 70%;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}

.about-us .project-results {
  background: url(/static/img/web/bg/img-6.png);
  overflow: hidden;
}

.about-us .project-results .fu-title .num {
  margin-right: 20px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .about-us .project-results .fu-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-us .project-results .fu-title .num {
    margin: 0;
  }
}

.about-us .project-results .project-roll {
  cursor: url(/static/img/web/shubiao.png), auto;
}

.about-us .project-results .project-roll .swiper-slide {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  width: 1060px;
  max-width: 100%;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-prev {
  cursor: pointer;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-prev .fu-left {
  margin-left: 60%;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-next {
  cursor: pointer;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-next .fu-left {
  margin-left: 20%;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-active {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-active .fu-item .fu-left h1 {
  color: #004188;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-active .fu-item .fu-left img {
  opacity: 1;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-active .fu-item .fu-right::before {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  width: 80px;
  -webkit-transition-delay: 1.6s;
       -o-transition-delay: 1.6s;
          transition-delay: 1.6s;
  opacity: 1;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-active .fu-item .fu-right h1, .about-us .project-results .project-roll .swiper-slide.swiper-slide-active .fu-item .fu-right p {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-active .fu-item .fu-right h1 {
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.about-us .project-results .project-roll .swiper-slide.swiper-slide-active .fu-item .fu-right p {
  -webkit-transition-delay: 1.3s;
       -o-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.about-us .project-results .project-roll .swiper-slide .fu-item {
  margin: 0 auto;
}

.about-us .project-results .project-roll .swiper-slide .fu-item .fu-left {
  width: 35%;
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
  position: relative;
  z-index: 1;
}

.about-us .project-results .project-roll .swiper-slide .fu-item .fu-left h1 {
  font-size: 360px;
  color: #eee;
  line-height: 1;
  letter-spacing: -15px;
  text-align: center;
  font-family: cursive;
  -webkit-transform: translateX(-15%);
      -ms-transform: translateX(-15%);
          transform: translateX(-15%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.about-us .project-results .project-roll .swiper-slide .fu-item .fu-left img {
  width: 100%;
  margin-top: -32%;
  -webkit-transform: translateX(-10%);
      -ms-transform: translateX(-10%);
          transform: translateX(-10%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  opacity: 0;
}

.about-us .project-results .project-roll .swiper-slide .fu-item .fu-right {
  width: 65%;
  position: absolute;
  left: 35%;
  overflow: hidden;
  margin-left: 20px;
}

.about-us .project-results .project-roll .swiper-slide .fu-item .fu-right h1, .about-us .project-results .project-roll .swiper-slide .fu-item .fu-right p {
  -webkit-transform: translateY(20%);
      -ms-transform: translateY(20%);
          transform: translateY(20%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  opacity: 0;
}

.about-us .project-results .project-roll .swiper-slide .fu-item .fu-right::before {
  content: '';
  display: block;
  width: 0;
  height: 4px;
  background-color: #004188;
  margin: 50px 0 60px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.about-us .project-results .project-roll .swiper-slide .fu-item .fu-right h1 {
  font-size: 40px;
  font-weight: normal;
  line-height: 2;
}

.about-us .project-results .project-roll .swiper-slide .fu-item .fu-right p {
  width: 690px;
  font-size: 24px;
  color: #343434;
  line-height: 2;
}

@media (max-width: 991px) {
  .about-us .project-results .project-roll {
    padding-bottom: 30%;
  }
  .about-us .project-results .project-roll .swiper-slide {
    width: auto;
  }
  .about-us .project-results .project-roll .swiper-slide .fu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-us .project-results .project-roll .swiper-slide .fu-item .fu-left {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .about-us .project-results .project-roll .swiper-slide .fu-item .fu-left h1 {
    font-size: 160px;
    letter-spacing: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .about-us .project-results .project-roll .swiper-slide .fu-item .fu-left img {
    width: 160px;
    margin-top: -60px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .about-us .project-results .project-roll .swiper-slide .fu-item .fu-right {
    width: 100%;
    position: unset;
    text-align: center;
    margin-left: 0;
  }
  .about-us .project-results .project-roll .swiper-slide .fu-item .fu-right h1 {
    font-size: 20px;
  }
  .about-us .project-results .project-roll .swiper-slide .fu-item .fu-right p {
    font-size: 14px;
    width: 100%;
  }
  .about-us .project-results .project-roll .swiper-slide .fu-item .fu-right::before {
    display: none;
  }
  .about-us .project-results .project-roll .swiper-slide.swiper-slide-prev .fu-left, .about-us .project-results .project-roll .swiper-slide.swiper-slide-next .fu-left {
    margin: 0;
  }
  .about-us .project-results .project-roll .swiper-slide.swiper-slide-prev .fu-left h1, .about-us .project-results .project-roll .swiper-slide.swiper-slide-next .fu-left h1 {
    font-size: 100px;
    margin: 30px 0;
  }
  .about-us .project-results .project-roll .swiper-slide.swiper-slide-prev .fu-left h1 {
    text-align: right;
  }
  .about-us .project-results .project-roll .swiper-slide.swiper-slide-next .fu-left h1 {
    text-align: left;
  }
}

.about-us .project-results .swiper-pagination-box {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 650px;
  height: 650px;
}

.about-us .project-results .swiper-pagination-box .guide-img {
  position: absolute;
  bottom: 220px;
  z-index: 1024;
  cursor: pointer;
}

@media (max-width: 991px) {
  .about-us .project-results .swiper-pagination-box .guide-img {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-us .project-results .swiper-pagination-box {
    width: 375px;
    height: 0;
    padding-bottom: 375px;
  }
}

.about-us .project-results .guide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
}

@media (max-width: 991px) {
  .about-us .project-results .guide-bg {
    display: none;
  }
}

.about-us .project-results .swiper-pagination {
  outline: unset;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .about-us .project-results .swiper-pagination {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(-50%, 70%) translateY(100px);
    -ms-transform: translate(-50%, 70%) translateY(100px);
    transform: translate(-50%, 70%) translateY(100px);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.about-us .project-results .swiper-pagination .pagination-bullet {
  padding: 20px;
  height: 50%;
  display: inline-block;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
  outline: none;
}

.about-us .project-results .swiper-pagination .pagination-bullet.pagination-bullet-active a {
  color: #004188;
}

.about-us .project-results .swiper-pagination::before, .about-us .project-results .swiper-pagination::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
}

.about-us .project-results .swiper-pagination::after {
  background-color: #eee;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
      -ms-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
}

.about-us .project-results .swiper-pagination::before {
  border: 1px solid #eee;
  -webkit-transform: translate(-50%, -50%) scale(0.85);
      -ms-transform: translate(-50%, -50%) scale(0.85);
          transform: translate(-50%, -50%) scale(0.85);
}

@media (max-width: 991px) {
  .about-us .project-results .swiper-pagination {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translate(-50%, 70%) translateY(0);
    -ms-transform: translate(-50%, 70%) translateY(0);
    transform: translate(-50%, 70%) translateY(0);
  }
  .about-us .project-results .swiper-pagination .pagination-bullet {
    font-size: 12px;
    padding: 10px 20px;
  }
}

.about-us .project-results.active .swiper-pagination {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 70%) translateY(0);
  -ms-transform: translate(-50%, 70%) translateY(0);
  transform: translate(-50%, 70%) translateY(0);
  -webkit-transition-delay: .8s;
       -o-transition-delay: .8s;
          transition-delay: .8s;
}

.about-us .group-strategy {
  background: url(/static/img/web/bg/img-10.png) no-repeat bottom;
}

.about-us .group-strategy .circle {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 992px) {
  .about-us .group-strategy .circle {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.about-us .group-strategy .circle .fu-text {
  text-align: center;
  line-height: 2;
  width: 500px;
  max-width: 100%;
  margin: 50px auto 0;
}

.about-us .group-strategy .circle .fu-text h1 {
  font-size: 32px;
  color: #343434;
  font-weight: normal;
}

.about-us .group-strategy .circle .fu-text p {
  font-size: 16px;
  color: #797979;
}

.about-us .group-strategy .circle .center {
  width: 370px;
  height: 370px;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

.about-us .group-strategy .circle .ring span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid #cccccc;
  -webkit-animation: proRing 1s linear infinite;
  animation: proRing 1s linear infinite;
}

.about-us .group-strategy .circle .ring span:nth-of-type(2) {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.about-us .group-strategy .circle .txt {
  position: relative;
  z-index: 2;
  border: 30px solid #004188;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-us .group-strategy .circle .txt::before {
  height: 0;
}

@media (max-width: 767px) {
  .about-us .group-strategy .circle .center {
    width: 250px;
    height: 250px;
  }
  .about-us .group-strategy .circle .fu-text {
    padding: 0 15px;
  }
  .about-us .group-strategy .circle .fu-text h1 {
    font-size: 20px;
  }
  .about-us .group-strategy .circle .fu-text p {
    font-size: 14px;
  }
}

.about-us .group-strategy .dots_block {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .about-us .group-strategy .dots_block {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.about-us .group-strategy .dots_block img {
  display: block;
  width: 200vw;
  margin-left: -16vw;
}

.about-us .group-strategy .dots_block img:nth-of-type(1) {
  -webkit-animation: wave1 10s ease-in-out alternate infinite;
  animation: wave1 10s ease-in-out alternate infinite;
}

.about-us .group-strategy .dots_block img:nth-of-type(2) {
  -webkit-animation: wave2 10s ease-in-out alternate infinite;
  animation: wave2 10s ease-in-out alternate infinite;
}

.about-us .group-strategy .dots_block img:nth-of-type(3) {
  -webkit-animation: wave3 10s ease-in-out alternate infinite;
  animation: wave3 10s ease-in-out alternate infinite;
}

.about-us .group-strategy .dots_block img:nth-of-type(2), .about-us .group-strategy .dots_block img:nth-of-type(3) {
  position: absolute;
  top: 0;
  left: 0;
}

.about-us .group-strategy .dots_block .dot {
  width: 20px;
  height: 20px;
  position: absolute;
  -webkit-animation: sec7Dot 5s linear infinite;
  animation: sec7Dot 5s linear infinite;
}

.about-us .group-strategy .dots_block .dot:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.about-us .group-strategy .dots_block .dot span {
  position: absolute;
  left: 50%;
  font-size: 14px;
  color: #002e73;
  width: 167px;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(1) {
  top: 10%;
  left: 8%;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(1):before {
  background: -o-linear-gradient(110deg, #f6ab75, #ff6d01);
  background: -o-linear-gradient(340deg, #f6ab75, #ff6d01);
  background: linear-gradient(110deg, #f6ab75, #ff6d01);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(1) span {
  top: -26px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(2) {
  top: 57%;
  left: 10.5%;
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(2):before {
  background: -o-linear-gradient(340deg, green, yellow);
  background: linear-gradient(110deg, green, yellow);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(2) span {
  bottom: -26px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(3) {
  top: 10%;
  left: 17%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(3):before {
  background: -o-linear-gradient(110deg, #f485c7, #fa0595);
  background: -o-linear-gradient(340deg, #f485c7, #fa0595);
  background: linear-gradient(110deg, #f485c7, #fa0595);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(3) span {
  top: -26px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(4) {
  top: 52%;
  left: 19%;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(4):before {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  background: -o-linear-gradient(110deg, #ffda7f, #ffc231);
  background: -o-linear-gradient(340deg, #ffda7f, #ffc231);
  background: linear-gradient(110deg, #ffda7f, #ffc231);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(4) span {
  bottom: -26px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(5) {
  top: -2%;
  left: 29%;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(5):before {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  background: -o-linear-gradient(110deg, #ff707c, #e60012);
  background: -o-linear-gradient(340deg, #ff707c, #e60012);
  background: linear-gradient(110deg, #ff707c, #e60012);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(5) span {
  top: -26px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(6) {
  top: 56%;
  left: 30%;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(6):before {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  background: -o-linear-gradient(110deg, #f6ab75, #ff6d01);
  background: -o-linear-gradient(340deg, #f6ab75, #ff6d01);
  background: linear-gradient(110deg, #f6ab75, #ff6d01);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(6) span {
  bottom: -50px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(7) {
  top: 41%;
  left: 66.5%;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(7):before {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  background: -o-linear-gradient(110deg, #f6ab75, #ff6d01);
  background: -o-linear-gradient(340deg, #f6ab75, #ff6d01);
  background: linear-gradient(110deg, #f6ab75, #ff6d01);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(7) span {
  bottom: -26px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(8) {
  top: 1%;
  left: 69.5%;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(8):before {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  background: -o-linear-gradient(110deg, #ff707c, #e60012);
  background: -o-linear-gradient(340deg, #ff707c, #e60012);
  background: linear-gradient(110deg, #ff707c, #e60012);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(8) span {
  top: -30px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(9) {
  top: 37%;
  left: 74%;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(9):before {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  background: -o-linear-gradient(110deg, #ffda7f, #ffc231);
  background: -o-linear-gradient(340deg, #ffda7f, #ffc231);
  background: linear-gradient(110deg, #ffda7f, #ffc231);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(9) span {
  bottom: -30px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(10) {
  top: 0%;
  left: 77%;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(10):before {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  background: -o-linear-gradient(110deg, #f485c7, #fa0595);
  background: -o-linear-gradient(340deg, #f485c7, #fa0595);
  background: linear-gradient(110deg, #f485c7, #fa0595);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(10) span {
  top: -30px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(11) {
  top: 56%;
  left: 82%;
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(11):before {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  background: -o-linear-gradient(110deg, #ffda7f, #ffc231);
  background: -o-linear-gradient(340deg, #ffda7f, #ffc231);
  background: linear-gradient(110deg, #ffda7f, #ffc231);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(11) span {
  bottom: -30px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(12) {
  top: 20%;
  left: 84%;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(12):before {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  background: -o-linear-gradient(110deg, #f485c7, #fa0595);
  background: -o-linear-gradient(340deg, #f485c7, #fa0595);
  background: linear-gradient(110deg, #f485c7, #fa0595);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(12) span {
  top: -50px;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(13) {
  top: 15%;
  left: 92%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

.about-us .group-strategy .dots_block .dot:nth-of-type(13):before {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  background: -o-linear-gradient(340deg, #85f4a2, #f3e695);
  background: linear-gradient(110deg, #85f4a2, #f3e695);
}

.about-us .group-strategy .dots_block .dot:nth-of-type(13) span {
  top: -50px;
}

.about-us .group-strategy.active .circle {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: .8s;
       -o-transition-delay: .8s;
          transition-delay: .8s;
}

.about-us .group-strategy.active .dots_block {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: .7s;
       -o-transition-delay: .7s;
          transition-delay: .7s;
}

.about-us .group-strategy.active .txt_block {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: .4s;
       -o-transition-delay: .4s;
          transition-delay: .4s;
}

@media screen and (max-width: 1366px) {
  .about-us .group-strategy .dots_block {
    top: 29vh;
  }
}

@media screen and (max-width: 992px) {
  .about-us .group-strategy {
    background-size: contain;
    background-position: bottom;
    padding: 30px 0;
  }
  .about-us .group-strategy .dots_block {
    position: static;
    font-size: 0;
  }
  .about-us .group-strategy .dots_block .dots {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 5px 0;
  }
  .about-us .group-strategy .dots_block .dot {
    position: static;
    width: 33%;
    height: auto;
    margin: 20px 0 0;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    -webkit-animation: none;
    animation: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-us .group-strategy .dots_block .dot span {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    font-size: 12px;
    margin-bottom: 5px;
    display: block;
    width: auto;
    color: #343434;
  }
  .about-us .group-strategy .dots_block .dot:before {
    width: 20px;
    height: 20px;
    position: static;
    display: block;
    margin: 0 auto;
  }
  .about-us .group-strategy .dots_block .dot:last-child {
    margin-left: 20px;
  }
  .about-us .group-strategy .dots_block img {
    display: none;
  }
  .about-us .group-strategy .dots_block .dot:nth-of-type(2):before,
  .about-us .group-strategy .dots_block .dot:nth-of-type(3):before,
  .about-us .group-strategy .dots_block .dot:nth-of-type(4):before,
  .about-us .group-strategy .dots_block .dot:nth-of-type(5):before,
  .about-us .group-strategy .dots_block .dot:nth-of-type(6):before,
  .about-us .group-strategy .dots_block .dot:nth-of-type(7):before,
  .about-us .group-strategy .dots_block .dot:nth-of-type(8):before {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.about-us .important-data {
  background: url(/static/img/web/bg/img-11.jpg) 100% 100%;
  color: #fff;
}

.about-us .important-data .fu-title .num {
  color: #fff;
}

.about-us .important-data .fu-title h2 {
  color: #b9d6f5;
}

.about-us .important-data .fu-menu {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-us .important-data .fu-menu::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  display: block;
  width: 100%;
  border-top: 1px solid #5585b8;
  z-index: -1;
}

.about-us .important-data .fu-menu li {
  cursor: pointer;
  display: inline-block;
  font-size: 22px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  width: 350px;
  max-width: 33.3%;
}

.about-us .important-data .fu-menu li p {
  margin-top: 15px;
}

.about-us .important-data .fu-menu li i {
  display: block;
  width: 28px;
  height: 28px;
  border: 2px solid #5585b8;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  background-color: #004188;
}

.about-us .important-data .fu-menu li i::after {
  content: '';
  display: block;
  width: 9.33333px;
  height: 9.33333px;
  background-color: #5585b8;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: inherit;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.about-us .important-data .fu-menu li.active, .about-us .important-data .fu-menu li:hover {
  color: #caad73;
}

.about-us .important-data .fu-menu li.active i, .about-us .important-data .fu-menu li:hover i {
  width: 28px;
  height: 28px;
  border-width: 5px;
  border-color: #caad73;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.about-us .important-data .fu-menu li.active i::after, .about-us .important-data .fu-menu li:hover i::after {
  opacity: 0;
}

@media (max-width: 1060px) {
  .about-us .important-data .fu-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about-us .important-data .fu-menu li {
    width: 25%;
    margin: 0 10px;
    font-size: 14px;
  }
  .about-us .important-data .fu-menu li p {
    margin-top: 10px;
    opacity: 0.54;
  }
  .about-us .important-data .fu-menu li i {
    width: 18px;
    height: 18px;
  }
  .about-us .important-data .fu-menu li i::after {
    width: 5px;
    height: 5px;
  }
  .about-us .important-data .fu-menu li.active p, .about-us .important-data .fu-menu li:hover p {
    opacity: 1;
  }
  .about-us .important-data .fu-menu li.active i, .about-us .important-data .fu-menu li:hover i {
    width: 17px;
    height: 17px;
  }
  .about-us .important-data .fu-menu::after {
    top: 14%;
  }
}

.about-us .important-data .tab-content {
  min-height: 611px;
}

.about-us .important-data .tab-content #toggle1 .container {
  position: relative;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item {
  position: absolute;
  left: 100%;
  top: 0;
  -webkit-animation-name: ani-float;
          animation-name: ani-float;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@media screen and (min-width: 992px) {
  .about-us .important-data .tab-content #toggle1 .container .fu-item {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(1), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball1 {
  top: 25%;
  left: 5%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(2), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball2 {
  top: 12%;
  left: 25%;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(3), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball3 {
  top: 55%;
  left: 20%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(4), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball4 {
  top: 65%;
  left: 38%;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(5), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball5 {
  top: 5%;
  left: 43%;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(6), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball6 {
  top: 52%;
  left: 58%;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(7), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball7 {
  top: 45%;
  left: 85%;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(8), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball8 {
  top: 20%;
  left: 70%;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item.icon1 {
  top: 12%;
  left: 39%;
}

.about-us .important-data .tab-content #toggle1 .container .fu-item.icon2 {
  top: 7%;
  left: 65%;
}

@media (max-width: 767px) {
  .about-us .important-data .tab-content #toggle1 .container .fu-item {
    max-width: 50%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(1), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball1 {
    max-width: 30%;
    top: 25%;
    left: 5%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(2), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball2 {
    top: 14%;
    left: 38%;
    max-width: 30%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(3), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball3 {
    max-width: 24%;
    top: 26%;
    left: 72%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(4), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball4 {
    top: 53%;
    left: 72%;
    max-width: 25%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(5), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball5 {
    max-width: 40%;
    top: 38%;
    left: 33%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(6), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball6 {
    top: 68%;
    left: 3%;
    max-width: 40%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(7), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball7 {
    top: 73%;
    left: 58%;
    max-width: 30%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item:nth-child(8), .about-us .important-data .tab-content #toggle1 .container .fu-item.ball8 {
    top: 50%;
    left: 6%;
    width: 20%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item.icon1 {
    top: 12%;
    left: 16%;
  }
  .about-us .important-data .tab-content #toggle1 .container .fu-item.icon2 {
    top: 9%;
    left: 74%;
  }
}

@media (max-width: 767px) {
  .about-us .important-data .tab-content #toggle1 .container {
    height: 611px;
  }
}

.about-us .important-data .tab-content #toggle1 .bg {
  margin: 0 auto;
  max-width: 100%;
}

.about-us .important-data .tab-content #toggle2 #graph1 {
  width: 1600px;
  height: 600px;
  max-width: 1600px;
}

@media (max-width: 1600px) {
  .about-us .important-data .tab-content #toggle2 #graph1 {
    width: 100vw;
  }
}

@media (max-width: 1024px) {
  .about-us .important-data .tab-content #toggle2 #graph1 {
    margin-bottom: 30px;
  }
}

.about-us .important-data .tab-content #toggle3 #graph2 {
  width: 1600px;
  height: 600px;
  max-width: 1600px;
}

@media (max-width: 1600px) {
  .about-us .important-data .tab-content #toggle3 #graph2 {
    width: 100vw;
  }
}

@media (max-width: 1024px) {
  .about-us .important-data .tab-content #toggle3 #graph2 {
    margin-bottom: 30px;
  }
}

.about-us .important-data.active .tab-content #toggle1 .container .fu-item {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.about-us .service-provider {
  background: url(/static/img/web/bg/img-12.png) 100% 100%;
}

.about-us .service-provider .circle {
  width: 60vh;
  height: 60vh;
  margin: 0 auto;
  background-image: url(/static/img/web/bg/img-13.png);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 992px) {
  .about-us .service-provider .circle {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.about-us .service-provider .circle .center {
  width: 35vh;
  height: 35vh;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
}

.about-us .service-provider .circle .center:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 12px solid #004a9a;
  border-radius: 50%;
}

.about-us .service-provider .circle .center .fu-text h3 {
  font-size: 26px;
  color: #343434;
  font-weight: normal;
}

.about-us .service-provider .circle .center .fu-text h4 {
  font-size: 30px;
  color: #004a9a;
}

.about-us .service-provider .circle .ring span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid #e5eaf1;
  -webkit-animation: proRing 1s linear infinite;
  animation: proRing 1s linear infinite;
}

.about-us .service-provider .circle .ring span:nth-of-type(2) {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.about-us .service-provider .circle .dot {
  position: absolute;
  width: 14vh;
  height: 14vh;
  border-radius: 50%;
  border: 1px dashed #012e72;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
}

@media screen and (min-width: 992px) {
  .about-us .service-provider .circle .dot {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    -o-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
}

.about-us .service-provider .circle .dot:nth-of-type(1), .about-us .service-provider .circle .dot:nth-of-type(5) {
  top: 20vh;
}

.about-us .service-provider .circle .dot:nth-of-type(1) {
  right: -6.57vh;
}

.about-us .service-provider .circle .dot:nth-of-type(5) {
  left: -6.57vh;
}

.about-us .service-provider .circle .dot:nth-of-type(2), .about-us .service-provider .circle .dot:nth-of-type(4) {
  top: 2vh;
}

.about-us .service-provider .circle .dot:nth-of-type(2) {
  right: 2vh;
}

.about-us .service-provider .circle .dot:nth-of-type(4) {
  left: 2vh;
}

.about-us .service-provider .circle .dot:nth-of-type(3) {
  left: 0;
  top: -7vh;
  left: 50%;
  margin-left: -7vh;
}

.about-us .service-provider .circle .dot i {
  height: 30px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.about-us .service-provider .circle .dot h3 {
  font-size: 16px;
  color: #333;
  margin-top: 5px;
  font-weight: normal;
  padding: 0 20px;
}

.about-us .service-provider .circle .dot:hover, .about-us .service-provider .circle .dot.active {
  border-color: #e4000f;
}

@media screen and (min-width: 992px) {
  .about-us .service-provider .circle .dot:hover i {
    -webkit-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
}

.about-us .service-provider .fu-info {
  text-align: center;
  position: relative;
  padding-top: 10vh;
}

@media screen and (min-width: 992px) {
  .about-us .service-provider .fu-info {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.about-us .service-provider .fu-info:before {
  content: '';
  width: 10vw;
  margin: 0 auto;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/static/img/web/bg/img-14.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  -webkit-animation: industryAni1 1s linear infinite;
  animation: industryAni1 1s linear infinite;
}

.about-us .service-provider .fu-info h3 {
  font-size: 24px;
  color: #caad73;
  font-family: 'NotoSansHans-dem';
  position: relative;
  z-index: 2;
}

.about-us .service-provider .fu-info p {
  font-size: 16px;
  color: #808080;
  line-height: 24px;
  max-width: 80vw;
  margin: 0 auto;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

.about-us .service-provider.active .fu-info {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 1.8s;
       -o-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.about-us .service-provider.active .circle {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: .5s;
       -o-transition-delay: .5s;
          transition-delay: .5s;
}

.about-us .service-provider.active .circle .dot {
  opacity: 1;
  visibility: visible;
}

.about-us .service-provider.active .circle .dot:nth-of-type(1) {
  -webkit-transition-delay: .7s;
       -o-transition-delay: .7s;
          transition-delay: .7s;
}

.about-us .service-provider.active .circle .dot:nth-of-type(2) {
  -webkit-transition-delay: .9s;
       -o-transition-delay: .9s;
          transition-delay: .9s;
}

.about-us .service-provider.active .circle .dot:nth-of-type(3) {
  -webkit-transition-delay: 1.1s;
       -o-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.about-us .service-provider.active .circle .dot:nth-of-type(4) {
  -webkit-transition-delay: 1.3s;
       -o-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.about-us .service-provider.active .circle .dot:nth-of-type(5) {
  -webkit-transition-delay: 1.5s;
       -o-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

@media (max-width: 767px) {
  .about-us .service-provider .circle {
    background: none;
    width: 100%;
  }
  .about-us .service-provider .circle .center {
    width: 30vh;
    height: 30vh;
  }
  .about-us .service-provider .circle .center .fu-text h3 {
    font-size: 18px;
  }
  .about-us .service-provider .circle .center .fu-text h4 {
    font-size: 24px;
  }
  .about-us .service-provider .circle .dots {
    position: relative;
    height: 20vh;
  }
  .about-us .service-provider .circle .dots .dot {
    border: none;
    background: none;
  }
  .about-us .service-provider .circle .dots .dot h3 {
    font-size: 14px;
    padding: 0 13px;
  }
  .about-us .service-provider .circle .dots .dot:nth-of-type(1) {
    right: auto;
    left: 0;
    top: -2vh;
  }
  .about-us .service-provider .circle .dots .dot:nth-of-type(2) {
    right: 0;
    left: auto;
    top: -2vh;
  }
  .about-us .service-provider .circle .dots .dot:nth-of-type(3) {
    top: auto;
    bottom: -4vh;
    left: 5vh;
    margin-left: 0;
  }
  .about-us .service-provider .circle .dots .dot:nth-of-type(4) {
    top: 20%;
    left: 50%;
    margin-left: -7vh;
  }
  .about-us .service-provider .circle .dots .dot:nth-of-type(5) {
    top: auto;
    bottom: -4vh;
    right: 5vh;
    left: auto;
  }
  .about-us .service-provider .fu-info h3 {
    font-size: 20px;
  }
  .about-us .service-provider .fu-info p {
    font-size: 14px;
  }
  .about-us .service-provider .fu-info::before {
    width: 25vw;
  }
}

@-webkit-keyframes heartbeat {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes heartbeat {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  25% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.corporate-culture {
  height: 100vh;
  max-height: 930px;
  background-image: url(/static/img/web/bg/img-15.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 10;
}

.corporate-culture .bg {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  overflow: hidden;
}

.corporate-culture .bg img {
  max-width: 110%;
}

.corporate-culture .fu-title {
  position: absolute;
  top: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .corporate-culture .fu-title {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.corporate-culture .fu-info {
  position: relative;
  padding-top: 130px;
  text-align: center;
}

.corporate-culture .fu-info .road {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.corporate-culture .fu-info .fu-list {
  position: absolute;
  bottom: 7%;
  text-align: center;
  width: 100%;
}

.corporate-culture .fu-info .fu-list .fu-item {
  display: inline-block;
  padding: 0;
  position: relative;
  width: 15%;
}

.corporate-culture .fu-info .fu-list .fu-item:nth-child(1) h2 {
  color: #004a9a;
}

.corporate-culture .fu-info .fu-list .fu-item:nth-child(2) h2 {
  color: #8c75a0;
}

.corporate-culture .fu-info .fu-list .fu-item:nth-child(3) h2 {
  color: #e0cdaa;
}

.corporate-culture .fu-info .fu-list .fu-item:nth-child(4) h2 {
  color: #60c6bc;
}

.corporate-culture .fu-info .fu-list .fu-item h2 {
  font-size: 32px;
  font-weight: normal;
}

.corporate-culture .fu-info .fu-list .fu-item p {
  font-size: 16px;
  color: #666666;
  line-height: 2;
  margin-top: 10px;
}

.corporate-culture .fu-info .fu-list .fu-item img {
  -webkit-animation: heartbeat 1s infinite;
          animation: heartbeat 1s infinite;
}

.corporate-culture .fu-info .fu-list .fu-item:nth-child(2), .corporate-culture .fu-info .fu-list .fu-item:nth-child(4) {
  -webkit-transform: translateY(-30%);
      -ms-transform: translateY(-30%);
          transform: translateY(-30%);
}

.corporate-culture .fu-info .fu-list .fu-item:nth-child(4) {
  padding-left: 0;
}

@media (max-width: 991px) {
  .corporate-culture {
    width: 100%;
    overflow: hidden;
  }
  .corporate-culture .bg {
    padding-top: 100px;
  }
  .corporate-culture .bg img {
    max-width: 200%;
  }
  .corporate-culture .fu-info {
    bottom: 0;
  }
  .corporate-culture .fu-info .road {
    width: 1050px;
    height: 200px;
    -webkit-transform: translateX(-40%);
        -ms-transform: translateX(-40%);
            transform: translateX(-40%);
  }
  .corporate-culture .fu-info .fu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .corporate-culture .fu-info .fu-list .fu-item {
    width: 50%;
    -webkit-transform: translateY(0) !important;
        -ms-transform: translateY(0) !important;
            transform: translateY(0) !important;
  }
  .corporate-culture .fu-info .fu-list .fu-item h2 {
    font-size: 18px;
  }
  .corporate-culture .fu-info .fu-list .fu-item p {
    font-size: 13px;
    line-height: 1.5;
  }
  .corporate-culture .fu-info .fu-list .fu-item img {
    width: 5em;
  }
  .corporate-culture .fu-info .fu-list .fu-item .text {
    padding: 0 30px;
  }
  .corporate-culture .fu-info .fu-list .fu-item:nth-child(1), .corporate-culture .fu-info .fu-list .fu-item:nth-child(2) {
    -webkit-transform: translateY(-30px) !important;
        -ms-transform: translateY(-30px) !important;
            transform: translateY(-30px) !important;
  }
  .corporate-culture .fu-info .fu-list .fu-item:nth-child(3) .text, .corporate-culture .fu-info .fu-list .fu-item:nth-child(4) .text {
    position: absolute;
    bottom: -120px;
  }
  .corporate-culture .fu-info .fu-list .fu-item:nth-child(3) .text p, .corporate-culture .fu-info .fu-list .fu-item:nth-child(4) .text p {
    height: 4.5em;
  }
}

.organizational {
  position: relative;
  padding-bottom: 100px;
}

.organizational .fu-title .bg {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
  width: 370px;
  opacity: 0.7;
}

.organizational .organizational-main {
  position: relative;
}

.organizational .organizational-main .fu-list {
  width: 430px;
  position: absolute;
  left: 0;
  top: 0;
}

.organizational .organizational-main .fu-list .fu-item {
  display: inline-block;
  margin-right: 20px;
}

.organizational .organizational-main .fu-list .fu-item p {
  font-size: 16px;
  font-weight: 700;
}

.organizational .organizational-main .fu-list .fu-item p::before {
  content: '●';
  margin-right: 10px;
}

.organizational .organizational-main .fu-list .fu-item p span {
  font-size: 50px;
  color: #b24821;
}

.organizational .organizational-main .svg {
  overflow: inherit;
}

.organizational .organizational-main .svg [data-name=p3-item], .organizational .organizational-main .svg [data-name=p2-item], .organizational .organizational-main .svg [data-name=p1-item] {
  cursor: pointer;
}

.organizational .organizational-main .svg [data-name=p3-item]:hover, .organizational .organizational-main .svg [data-name=p2-item]:hover, .organizational .organizational-main .svg [data-name=p1-item]:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.organizational .organizational-main .fu-text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background-color: #004188;
  color: #fff;
  padding: 70px;
  line-height: 2;
  text-align: left;
}

.organizational .organizational-main #main1 {
  display: none;
}

@media (max-width: 1440px) {
  .organizational .organizational-main .fu-text {
    line-height: 1.8;
    width: 320px;
    height: 320px;
    padding: 55px;
  }
}

@media (max-width: 1220px) {
  .organizational .organizational-main {
    padding-top: 100px;
  }
  .organizational .organizational-main .fu-text {
    display: none;
  }
}

@media (max-width: 767px) {
  .organizational .organizational-main {
    padding-top: 30px;
  }
  .organizational .organizational-main #main {
    display: none;
  }
  .organizational .organizational-main #main1 {
    display: block;
  }
  .organizational .organizational-main .fu-list {
    position: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .organizational .organizational-main .fu-list .fu-item p {
    font-size: 14px;
  }
  .organizational .organizational-main .fu-list .fu-item p span {
    font-size: 36px;
  }
  .organizational .organizational-main .fu-list .fu-item p::before {
    margin-right: 5px;
  }
  .organizational .organizational-main .fu-text {
    display: none;
  }
}

.member-enterprises {
  position: relative;
  padding-bottom: 100px;
}

.member-enterprises .page_bottombg {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 60%;
  width: 100%;
  z-index: -1;
}

.member-enterprises .page_bottombg .img {
  height: 100%;
}

.member-enterprises .fu-title .bg {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
  width: 370px;
  opacity: 0.7;
}

.member-enterprises .fu-list {
  width: 450px;
  max-width: 100%;
  padding-top: 35px;
  padding-bottom: 100px;
  float: left;
}

.member-enterprises .fu-list .fu-item {
  width: 40%;
  float: left;
  color: #8b8b8b;
  padding-bottom: 70px;
  cursor: pointer;
  position: relative;
}

.member-enterprises .fu-list .fu-item:nth-of-type(2n) {
  width: 60%;
}

.member-enterprises .fu-list .fu-item h3 {
  font-size: 50px;
  color: inherit;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  color: #565b62;
  line-height: 50px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  padding: 0 9px;
}

.member-enterprises .fu-list .fu-item span {
  display: inline-block;
  color: #565b62;
  width: 100%;
  padding: 10px 9px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.member-enterprises .fu-list .fu-item p {
  font-size: 18px;
  font-weight: 700;
  color: inherit;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  color: #565b62;
  display: inline-block;
  border-top: 2px solid transparent;
  padding: 5px 9px;
  position: relative;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.member-enterprises .fu-list .fu-item p::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 100%;
  height: 2px;
  background-color: #565b62;
  z-index: -1;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  opacity: 1;
}

.member-enterprises .fu-list .fu-item p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #caad73;
  z-index: -1;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.member-enterprises .fu-list .fu-item.active h3, .member-enterprises .fu-list .fu-item.active span {
  color: #caad73;
}

.member-enterprises .fu-list .fu-item.active p {
  color: #fff;
  border-top: 2px solid transparent;
}

.member-enterprises .fu-list .fu-item.active p::after {
  width: 0%;
  opacity: 0;
}

.member-enterprises .fu-list .fu-item.active p::before {
  width: 100%;
}

.member-enterprises .fu-list .fu-item.active::after {
  width: 50%;
}

@media (max-width: 991px) {
  .member-enterprises .fu-list .fu-item {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .member-enterprises .fu-list {
    padding-bottom: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .member-enterprises .fu-list .fu-item {
    width: 33.3%;
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .member-enterprises .fu-list .fu-item:nth-child(2n) {
    width: 33.3%;
  }
  .member-enterprises .fu-list .fu-item:nth-child(2) {
    width: 66.6%;
  }
  .member-enterprises .fu-list .fu-item h3 {
    display: inline-block;
    font-size: 32px;
  }
  .member-enterprises .fu-list .fu-item span {
    width: auto;
    padding: 10px 0;
    font-size: 12px;
  }
  .member-enterprises .fu-list .fu-item p {
    font-size: 14px;
    width: 100%;
    padding: 5px;
  }
}

.member-enterprises .member-list {
  list-style: none;
  width: 1100px;
  max-width: calc(100% - 30%);
  margin: 3.5% auto 0;
  float: right;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.member-enterprises .member-list::after {
  display: block;
  clear: both;
  content: "";
}

.member-enterprises .member-list li {
  float: left;
  margin: -8.5% 5.5% 0;
  height: calc(100% / 6);
  width: calc(100% / 6);
  position: relative;
}

.member-enterprises .member-list li .remind {
  position: absolute;
  left: 65%;
  bottom: 75%;
  z-index: 100;
  display: none;
}

.member-enterprises .member-list li .remind .textbox {
  margin-bottom: 30px;
  font-size: 18px;
}

.member-enterprises .member-list li .remind .textbox .text {
  white-space: nowrap;
}

.member-enterprises .member-list li .remind .icon {
  width: 90px;
  -webkit-animation: ts 2.4s linear infinite;
          animation: ts 2.4s linear infinite;
  position: relative;
  z-index: 10;
}

.member-enterprises .member-list li .remind .icon img {
  width: 100%;
}

.member-enterprises .member-list li .remind .ripple {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-50%, -20%);
      -ms-transform: translate(-50%, -20%);
          transform: translate(-50%, -20%);
}

.member-enterprises .member-list li .remind .ripple .x {
  width: 100%;
  height: 100%;
  -webkit-animation: ripple1 2.4s linear infinite;
          animation: ripple1 2.4s linear infinite;
  background-color: #fff;
  border-radius: 50%;
}

.member-enterprises .member-list li .remind .ripple .y {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: .5;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: ripple2 2.4s linear infinite;
          animation: ripple2 2.4s linear infinite;
}

.member-enterprises .member-list li .remind .ripple .y:nth-child(3) {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

@-webkit-keyframes ripple1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: .8;
  }
  70% {
    opacity: .8;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: .5;
  }
}

@keyframes ripple1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: .8;
  }
  70% {
    opacity: .8;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: .5;
  }
}

@-webkit-keyframes ripple2 {
  0% {
    width: 100%;
    height: 100%;
    opacity: .3;
  }
  70% {
    opacity: .3;
  }
  100% {
    width: 1200%;
    height: 1200%;
    opacity: 0;
  }
}

@keyframes ripple2 {
  0% {
    width: 100%;
    height: 100%;
    opacity: .3;
  }
  70% {
    opacity: .3;
  }
  100% {
    width: 1200%;
    height: 1200%;
    opacity: 0;
  }
}

.member-enterprises .member-list li.empty {
  opacity: 0 !important;
}

.member-enterprises .member-list li.active {
  cursor: pointer;
}

.member-enterprises .member-list li.active .hex {
  background-image: url(/static/img/web/bg/img-20.png);
}

.member-enterprises .member-list li.active .hex .hexIn {
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.member-enterprises .member-list li .hex {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background-image: url(/static/img/web/bg/img-22.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 10;
}

.member-enterprises .member-list li .hex .hexIn {
  position: absolute;
  width: 78%;
  height: 70%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
}

.member-enterprises .member-list li .hex .hexIn img {
  max-width: 100%;
}

.member-enterprises .member-list li:nth-child(6n + 1) {
  margin-left: calc(115% / 6);
}

@media (max-width: 991px) {
  .member-enterprises .member-list {
    max-width: calc(100% - 25%);
  }
}

@media (max-width: 767px) {
  .member-enterprises .member-list {
    max-width: 100%;
    position: relative;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .member-enterprises .member-list .remind {
    display: none !important;
  }
}

.member-enterprises .popup_box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
  display: none;
}

.member-enterprises .popup_box .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.member-enterprises .popup_box .outside_box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 70px;
  background-color: #fff;
  height: 95vh;
  width: 1200px;
  max-width: 100%;
}

.member-enterprises .popup_box .outside_box .off_btn {
  position: absolute;
  right: 30px;
  top: 30px;
}

.member-enterprises .popup_box .outside_box .off_btn .iconfont {
  font-size: 30px;
  color: #666;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.member-enterprises .popup_box .outside_box .off_btn .iconfont:hover {
  color: red;
  -webkit-transform: rotateZ(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotateZ(-180deg);
}

.member-enterprises .popup_box .outside_box .content {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.member-enterprises .popup_box .outside_box .content::-webkit-scrollbar {
  display: none;
}

.member-enterprises .popup_box .outside_box .content .scroll {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
}

.member-enterprises .popup_box .outside_box .content .scroll .title {
  text-align: center;
  font-size: 42px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e7e7e7;
}

.member-enterprises .popup_box .outside_box .content .scroll .textbox {
  font-size: 14px;
  color: #888;
}

.member-enterprises .popup_box .outside_box .content .scroll .textbox p {
  margin-top: 20px;
  line-height: 2;
}

.member-enterprises .popup_box .outside_box .content .scroll .textbox p img {
  width: 95% !important;
  margin-top: 10px;
}

.member-enterprises .popup_box .outside_box .fgs_link {
  position: absolute;
  bottom: 25px;
  left: 70px;
}

.member-enterprises .popup_box .outside_box .fgs_link .link {
  color: #004188;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

@media (max-width: 991px) {
  .member-enterprises .popup_box .outside_box {
    height: 100vh;
    padding: 30px;
  }
  .member-enterprises .popup_box .outside_box .off_btn {
    right: 15px;
    top: 15px;
  }
  .member-enterprises .popup_box .outside_box .off_btn .iconfont {
    font-size: 24px;
  }
  .member-enterprises .popup_box .outside_box .content .scroll .title {
    font-size: 18px;
    padding-bottom: 15px;
  }
  .member-enterprises .popup_box .outside_box .content .scroll .textbox p {
    margin-top: 10px;
  }
  .member-enterprises .popup_box .outside_box .fgs_link {
    bottom: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: 10px 30px;
    word-break: break-all;
  }
}

.on-history {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  margin-top: 90px;
  /* r */
  /* m */
  /* b */
  /* t */
  /* l */
  /* r */
  /* m */
}

.on-history .kr_sd_400 {
  font-family: "SDGothic", sans-serif;
  font-weight: 400;
}

.on-history .kr_sd_500 {
  font-family: "SDGothic", sans-serif;
  font-weight: 500;
}

.on-history .kr_sd_700 {
  font-family: "SDGothic", sans-serif;
  font-weight: 700;
}

.on-history .en_plain_t {
  font-family: "PlainThin", sans-serif;
  font-weight: 200;
}

.on-history .en_plain_l {
  font-family: "PlainLight", sans-serif;
  font-weight: 300;
}

.on-history .en_plain_r {
  font-family: "PlainRegular", sans-serif;
  font-weight: 400;
}

.on-history .en_plain_m {
  font-family: "PlainMedium", sans-serif;
  font-weight: 500;
}

.on-history .history_wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.on-history .fclear {
  *zoom: 1;
}

.on-history .fclear:after {
  display: block;
  content: "";
  clear: both;
}

.on-history .ir_text {
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  height: 0;
}

.on-history .ir_text > * {
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  height: 0;
}

.on-history .cap {
  text-transform: uppercase !important;
}

@media all and (max-width: 1280px) {
  .on-history img {
    max-width: 100%;
  }
}

@media all and (max-width: 1080px) {
  .on-history body {
    word-break: keep-all;
  }
}

.on-history .color_font {
  color: #004188;
}

.on-history .color_1 {
  color: #004188 !important;
}

.on-history .color_2 {
  color: #1634db !important;
}

.on-history .color_3 {
  color: #0088ce !important;
}

.on-history .color_4 {
  color: #009671 !important;
}

.on-history .color_5 {
  color: #F7881D !important;
}

.on-history body {
  overflow-y: scroll;
  height: 100%;
  word-break: keep-all;
}

.on-history body.lock {
  overflow: hidden;
}

.on-history body.unload {
  opacity: 0;
  visibility: hidden;
}

.on-history .history_wrap {
  overflow: hidden;
  height: 100%;
}

.on-history .develop_history {
  position: relative;
  height: 100%;
}

.on-history .develop_history .bg_img {
  position: fixed;
  top: 20%;
  right: 0;
  width: 50vw;
  height: 25vw;
  background-size: 100%;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.on-history .develop_history .content_section {
  display: block;
  overflow: hidden;
  position: relative;
  min-width: 1280px;
  width: 100%;
  max-width: 1280px;
  min-height: 100vh;
  height: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.on-history .develop_history .content_section .sec_top .title {
  position: relative;
  z-index: 2;
  padding: 135px 0 0;
  font-size: 56px;
  line-height: 72px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px);
}

.on-history .develop_history .content_section .sec_inner {
  padding: 0 82px;
}

.on-history .history {
  opacity: 0;
  visibility: hidden;
}

.on-history .history .sec_inner {
  padding: 0 !important;
}

.on-history .history .box_top {
  overflow: hidden;
  display: none;
  position: fixed;
  z-index: 4;
  width: 100%;
  height: 64px;
  background: #fff;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.on-history .history .box_top .box_inner {
  overflow: hidden;
}

.on-history .history .box_top .box_inner ul {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  height: 64px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.on-history .history .box_top .box_inner ul::-webkit-scrollbar {
  display: none;
}

.on-history .history .box_top .box_inner ul li {
  display: inline-block;
  margin: 0 15px;
  line-height: 64px;
  vertical-align: top;
}

.on-history .history .box_top .box_inner ul li a {
  display: inline-block;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.42);
}

.on-history .history .box_top .box_inner ul li.active a {
  color: black;
}

.on-history .history .box_left {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 350px;
  height: 100vh;
  min-height: 768px;
  padding-left: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.on-history .history .box_left .partbg {
  width: 30vw;
  height: 30vw;
  position: absolute;
  right: 0;
  top: 40%;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  background-size: 100%;
  z-index: -1;
}

.on-history .history .box_left .history_title li {
  color: rgba(0, 0, 0, 0.42);
  font-size: 22px;
  line-height: 38px;
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0.07, 0.99);
  -o-transition: all 0.3s cubic-bezier(0.3, 0, 0.07, 0.99);
  transition: all 0.3s cubic-bezier(0.3, 0, 0.07, 0.99);
}

.on-history .history .box_left .history_title.title_before {
  margin-top: 150px;
  visibility: hidden;
}

.on-history .history .box_left .history_title.title_before li {
  opacity: 0;
  visibility: hidden;
}

.on-history .history .box_left .history_title.title_before li.active {
  color: black !important;
  opacity: 1;
  visibility: visible;
}

.on-history .history .box_left .history_title.title_before li.active-out {
  color: rgba(0, 0, 0, 0.42);
  opacity: 1;
  visibility: visible;
}

.on-history .history .box_left .history_title.title_after a {
  color: inherit;
}

.on-history .history .box_left .history_title.title_after li {
  opacity: 1;
  visibility: visible;
}

.on-history .history .box_left .history_title.title_after li.active {
  opacity: 0;
  visibility: hidden;
}

.on-history .history .box_left .history_num .num_inner {
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 265px;
  vertical-align: top;
  -webkit-transition: color 0.3s cubic-bezier(0.3, 0, 0.07, 0.99);
  -o-transition: color 0.3s cubic-bezier(0.3, 0, 0.07, 0.99);
  transition: color 0.3s cubic-bezier(0.3, 0, 0.07, 0.99);
}

.on-history .history .box_left .history_num .num_inner div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  color: inherit;
  font-size: 264px;
  letter-spacing: -2px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
}

.on-history .history .box_left .history_num .num_inner div.active {
  opacity: 1;
  visibility: visible;
}

.on-history .history .box_right {
  position: relative;
  padding: 380px 0 80px 350px;
  z-index: 10;
}

.on-history .history .box_right .box_list {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 64px;
}

.on-history .history .box_right .box_list:nth-child(1) {
  margin-top: 0;
  border-top: 0;
  opacity: 0;
  visibility: hidden;
}

.on-history .history .box_right .box_list:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.on-history .history .box_right .box_list .list_head {
  font-size: 0;
}

.on-history .history .box_right .box_list .list_head > div {
  display: inline-block;
  vertical-align: bottom;
}

.on-history .history .box_right .box_list .list_head .num {
  overflow: hidden;
  width: 370px;
  height: 265px;
  font-size: 264px;
  color: #004188;
  letter-spacing: -2px;
  line-height: 1;
  vertical-align: top;
}

.on-history .history .box_right .box_list .list_head .num span {
  display: inline-block;
}

.on-history .history .box_right .box_list .list_head .desc {
  width: calc(100% - 370px);
  padding-bottom: 30px;
}

.on-history .history .box_right .box_list .list_head .desc .tit {
  font-size: 28px;
  line-height: 44px;
  letter-spacing: -1.5px;
}

.on-history .history .box_right .box_list .list_head .desc .copy {
  font-size: 22px;
  line-height: 36px;
  margin: 20px 0 0;
  letter-spacing: -1.4px;
}

.on-history .history .box_right .box_list .list_cnt {
  margin: 60px 0 0;
}

.on-history .history .box_right .box_list .list_cnt.full img {
  width: 930px;
  height: 600px;
}

.on-history .history .box_right .box_list .list_cnt.half {
  font-size: 0;
}

.on-history .history .box_right .box_list .list_cnt.half > div {
  display: inline-block;
  vertical-align: bottom;
}

.on-history .history .box_right .box_list .list_cnt.half .cnt_left {
  width: 310px;
  padding: 0 60px 0 0;
  color: #444;
  font-size: 18px;
  line-height: 32px;
}

.on-history .history .box_right .box_list .list_cnt.half .cnt_left img {
  width: 100%;
}

.on-history .history .box_right .box_list .list_cnt.half .cnt_right {
  width: 560px;
}

.on-history .history .box_right .box_list .list_cnt.half .cnt_right img {
  width: 100%;
}

.on-history .history .box_right .box_list:last-of-type {
  padding: 0 0 180px;
}

.on-history .history.active-out .box_left {
  opacity: 0;
  visibility: hidden;
}

.on-history .history.active-out .box_right {
  opacity: 0;
  visibility: hidden;
}

@media all and (min-width: 1281px) {
  .on-history .DWB {
    display: block !important;
  }
  .on-history .DMB {
    display: none !important;
  }
  .on-history .DMIB {
    display: none !important;
  }
}

@media (min-width: 1080px) and (max-width: 1280px) {
  .on-history .history .box_top {
    top: 90px !important;
  }
  .on-history .history .box_top.active {
    top: 88px !important;
  }
  .on-history .history .box_top.active-out {
    top: 64px !important;
  }
}

@media all and (max-width: 1280px) {
  .on-history body {
    -webkit-overflow-scrolling: touch;
  }
  .on-history .DWB {
    display: none !important;
  }
  .on-history .DMB {
    display: block !important;
  }
  .on-history .DMIB {
    display: inline-block !important;
  }
  .on-history .develop_history .content_section {
    min-width: auto;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: auto;
  }
  .on-history .develop_history .content_section .sec_top .title {
    padding: 0 20px 0 48px;
    font-size: 28px;
    line-height: 36px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .on-history .develop_history .content_section .sec_inner {
    padding: 0;
  }
  .on-history .history .box_top {
    top: 90px;
  }
  .on-history .history .box_top.active {
    top: 76px;
  }
  .on-history .history .box_top.active-out {
    top: 48px;
  }
  .on-history .history .box_right {
    position: relative;
    padding: 64px 20px 110px 20px !important;
  }
  .on-history .history .box_right img {
    max-width: 600px;
  }
  .on-history .history .box_right .box_list {
    margin: 45px 0 0;
  }
  .on-history .history .box_right .box_list:nth-child(1) {
    margin: 10px 0 0;
  }
  .on-history .history .box_right .box_list:nth-child(1) .list_head .num {
    margin: 0;
  }
  .on-history .history .box_right .box_list .list_head > div {
    display: block;
  }
  .on-history .history .box_right .box_list .list_head .num {
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 30px 0 0;
    font-size: 125px;
    color: #004188;
    letter-spacing: -1.5px;
    line-height: 1;
  }
  .on-history .history .box_right .box_list .list_head .desc {
    width: 100%;
    margin: 42px 0 0;
  }
  .on-history .history .box_right .box_list .list_head .desc .tit {
    font-size: 21px;
    line-height: 31px;
    letter-spacing: -1px;
  }
  .on-history .history .box_right .box_list .list_head .desc .copy {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -1.5px;
  }
  .on-history .history .box_right .box_list .list_cnt {
    margin: 38px 0 0;
  }
  .on-history .history .box_right .box_list .list_cnt.full img {
    width: 100%;
    height: auto;
  }
  .on-history .history .box_right .box_list .list_cnt.half {
    font-size: 0;
  }
  .on-history .history .box_right .box_list .list_cnt.half > div {
    display: block;
  }
  .on-history .history .box_right .box_list .list_cnt.half .cnt_left {
    width: 100%;
    margin: 38px 0 0;
    padding: 0;
    color: #444;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -1px;
  }
  .on-history .history .box_right .box_list .list_cnt.half .cnt_left img {
    width: 100%;
  }
  .on-history .history .box_right .box_list .list_cnt.half .cnt_right {
    width: 100%;
    margin: 38px 0 0;
  }
  .on-history .history .box_right .box_list .list_cnt.half .cnt_right img {
    width: 100%;
  }
  .on-history .history .box_right .box_list:last-of-type {
    padding: 0;
  }
  .on-history .history.active-out .box_top {
    opacity: 0;
    visibility: hidden;
  }
  .on-history .history.active-out .box_right {
    opacity: 1;
    visibility: visible;
  }
}

@media all and (max-width: 766px) {
  .on-history .history .box_top {
    top: 112px;
  }
  .on-history .history .box_top.active {
    top: 63px;
  }
  .on-history .history .box_top.active-out {
    top: 48px;
  }
}

@media all and (max-width: 320px) {
  .on-history .history .box_right .box_list .list_head .num {
    font-size: 110px;
  }
}

@media (max-width: 991px) {
  .on-history {
    margin-top: 50px;
  }
  .on-history .history .box_top {
    top: 50px;
  }
  .on-history .history .box_right .box_list .list_head .desc {
    padding-bottom: 0;
  }
}

.enterprise-honor {
  background-image: url(/static/img/web/bg/img-23.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  overflow: hidden;
}

.enterprise-honor .swiper-container {
  margin: 50px 0 100px;
  padding-bottom: 100px;
  overflow: visible;
}

.enterprise-honor .swiper-container .honor-prize {
  position: absolute;
  top: 20%;
  right: 20%;
  z-index: 10;
  width: 160px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#a88646), to(#eae5ac));
  background-image: -o-linear-gradient(bottom, #a88646 0%, #eae5ac 100%);
  background-image: linear-gradient(to top, #a88646 0%, #eae5ac 100%);
  -webkit-box-shadow: 0px 15px 19.95px 1.05px rgba(0, 0, 0, 0.24);
          box-shadow: 0px 15px 19.95px 1.05px rgba(0, 0, 0, 0.24);
  padding: 15px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.enterprise-honor .swiper-container .honor-prize .fu-info {
  border: 3px transparent solid;
  -o-border-image: -o-linear-gradient(top, #aa8e4c, #eef0b9) 1 10;
     border-image: -webkit-gradient(linear, left top, left bottom, from(#aa8e4c), to(#eef0b9)) 1 10;
     border-image: linear-gradient(to bottom, #aa8e4c, #eef0b9) 1 10;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f0ba), color-stop(39%, #e8dfa6), to(#dbc182));
  background-image: -o-linear-gradient(top, #f0f0ba 0%, #e8dfa6 39%, #dbc182 100%);
  background-image: linear-gradient(to bottom, #f0f0ba 0%, #e8dfa6 39%, #dbc182 100%);
  text-align: center;
  padding: 0 10px;
}

.enterprise-honor .swiper-container .honor-prize .fu-info h1 {
  font-family: '华文中宋';
  color: #a80000;
  font-size: 24px;
  margin: 20px 0;
}

.enterprise-honor .swiper-container .honor-prize .fu-info span {
  font-size: 12px;
  color: #a80000;
  margin-bottom: 20px;
  display: inline-block;
  font-family: 'century';
}

.enterprise-honor .swiper-container .honor-prize .fu-info span::after, .enterprise-honor .swiper-container .honor-prize .fu-info span::before {
  content: '';
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #a80000;
  margin: 0 10px;
  position: relative;
  top: -3px;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide {
  height: 500px;
  width: 300px;
  text-align: right;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide .item-bg {
  margin-left: 50%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide:nth-child(6n-5) .honor-prize {
  top: 40%;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide:nth-child(6n-5) .item-bg {
  margin-top: 40%;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide:nth-child(6n-3) .honor-prize {
  top: 0;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide:nth-child(6n-3) .item-bg {
  margin-top: 20%;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide:nth-child(6n-2) .item-bg {
  margin-top: 10%;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide:nth-child(6n-1) .honor-prize {
  top: 0;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide:nth-child(6n) .item-bg {
  margin-top: 20%;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide:hover .honor-prize {
  top: 30%;
}

.enterprise-honor .swiper-container .swiper-wrapper .swiper-slide:hover .item-bg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.enterprise-honor .swiper-container .swiper-scrollbar {
  width: 15%;
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  height: 1px;
}

.enterprise-honor .swiper-container .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #1c64b3;
  border-radius: 100%;
  height: 14px;
  margin-top: -7.5px;
  cursor: pointer;
}

.enterprise-honor .swiper-container .swiper-scrollbar .swiper-scrollbar-drag::before {
  content: '';
  border: 1px solid #004188;
  width: 150%;
  height: 150%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  border-radius: 100%;
}

.enterprise-honor .swiper-container .year-pagination {
  position: absolute;
  left: 30%;
  bottom: -30px;
  display: inline-block;
}

.enterprise-honor .swiper-container .year-pagination .item {
  display: none;
  font-size: 24px;
  color: #999999;
}

.enterprise-honor .swiper-container .year-pagination .item span {
  font-size: 46px;
  color: #caced4;
  font-weight: 700;
}

.enterprise-honor .swiper-container .year-pagination .item.active {
  display: inline-block;
}

.enterprise-honor .swiper-container .year-pagination .year-btn .btn-prev, .enterprise-honor .swiper-container .year-pagination .year-btn .btn-next {
  display: inline-block;
  text-align: center;
  line-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #e2cca7;
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  top: 0;
}

.enterprise-honor .swiper-container .year-pagination .year-btn .btn-prev::after, .enterprise-honor .swiper-container .year-pagination .year-btn .btn-next::after {
  content: '\e779';
  font-family: 'icon';
}

.enterprise-honor .swiper-container .year-pagination .year-btn .btn-next::after {
  content: '\e775';
}

.enterprise-honor .swiper-container .year-pagination .year-btn .btn-prev {
  position: absolute;
  left: -120px;
}

.enterprise-honor .swiper-container .year-pagination .year-btn .btn-next {
  position: absolute;
  right: -120px;
}

.enterprise-honor .year-content {
  display: none;
  padding-top: 50px;
}

.enterprise-honor .year-content .item {
  display: none;
}

.enterprise-honor .year-content .item.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.enterprise-honor .year-content .item .swiper-slide {
  height: auto;
  width: 50%;
  padding: 30px 15px;
  position: relative;
}

.enterprise-honor .year-content .item .swiper-slide .item-bg {
  display: none;
}

.enterprise-honor .year-content .item .swiper-slide .honor-prize {
  position: unset;
  width: 100%;
}

.enterprise-honor .year-content .item .swiper-slide .honor-prize .fu-info span {
  font-size: 10px;
  white-space: nowrap;
}

.enterprise-honor .year-content .item .swiper-slide:nth-child(2n - 1)::after {
  content: '';
  width: 100vw;
  height: 120px;
  display: block;
  position: absolute;
  bottom: 0;
  left: -15px;
  background-color: #004188;
  z-index: -1;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .enterprise-honor .swiper-container .year-pagination {
    bottom: -15px;
  }
  .enterprise-honor .swiper-container .year-pagination .item span {
    font-size: 28px;
  }
  .enterprise-honor .swiper-container .year-pagination .year-btn .btn-prev, .enterprise-honor .swiper-container .year-pagination .year-btn .btn-next {
    line-height: 42px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 767px) {
  .enterprise-honor .swiper-scrollbar, .enterprise-honor .swiper-wrapper {
    display: none;
  }
  .enterprise-honor .swiper-container {
    padding-bottom: 0;
  }
  .enterprise-honor .swiper-container .year-pagination {
    top: 0;
    bottom: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .enterprise-honor .swiper-container .year-pagination .year-wrapper .item {
    font-size: 14px;
  }
  .enterprise-honor .swiper-container .year-pagination .year-wrapper .item span {
    font-size: 24px;
    font-family: 'DIN';
  }
  .enterprise-honor .swiper-container .year-pagination .year-btn .btn-prev, .enterprise-honor .swiper-container .year-pagination .year-btn .btn-next {
    line-height: 42px;
    width: 42px;
    height: 42px;
    top: -5px;
  }
  .enterprise-honor .swiper-container .year-pagination .year-btn .btn-prev {
    left: -65px;
  }
  .enterprise-honor .swiper-container .year-pagination .year-btn .btn-next {
    right: -65px;
  }
  .enterprise-honor .year-content {
    display: block;
  }
}

.awards-list {
  padding: 0.66rem 0;
}

.awards-list .row {
  margin-left: -.35rem;
  margin-right: -.35rem;
}

.awards-list .col-xs-12 {
  padding: 26px 35px;
}

.awards-list .honor-item {
  padding: 40px 35px;
  text-align: center;
  background-color: #f3f3f3;
}

.awards-list .honor-item p {
  font-size: 16px;
  line-height: 26px;
  color: #333;
  margin-bottom: 0;
  margin-top: 30px;
  height: 2em;
}

.awards-list .honor-item img {
  position: relative;
  top: 0;
  max-height: 100%;
  -webkit-box-shadow: 10px 30px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 30px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.awards-list .honor-item .imgbox {
  display: table-cell;
  vertical-align: middle;
}

.awards-list .honor-item .auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 1200px) {
  .awards-list .honor-item img:hover {
    top: -10px;
  }
  .awards-list .honor-item p {
    font-size: 18px;
  }
}

@media (max-width: 639px) {
  .awards-list .honor-item {
    padding-top: .6rem;
  }
}

.works-section {
  width: 100%;
  height: 960px;
  min-height: 100vh;
  background: -webkit-gradient(linear, left top, right top, from(#121f30), to(#0e2747));
  background: -o-linear-gradient(left, #121f30 0%, #0e2747 100%);
  background: linear-gradient(to right, #121f30 0%, #0e2747 100%);
  position: relative;
}

.works-section .container {
  position: relative;
}

.works-section .breadcrumb {
  margin-top: 50px;
  margin-bottom: 50px;
}

.works-section .swiper-container {
  height: calc(100vh - 20%);
  --swiper-pagination-color: #caad73;
}

.works-section .swiper-container .swiper-slide.swiper-slide-active .fu-info > * {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.works-section .swiper-container .swiper-slide.swiper-slide-active .fu-info .fu-title h1 {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.works-section .swiper-container .swiper-slide.swiper-slide-active .fu-right > * {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.works-section .swiper-container .swiper-slide .fu-info {
  width: 350px;
  max-width: 100%;
  position: absolute;
  top: 30%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 2;
}

.works-section .swiper-container .swiper-slide .fu-info > * {
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
  -webkit-transform: translateX(25px);
      -ms-transform: translateX(25px);
          transform: translateX(25px);
  opacity: 0;
}

.works-section .swiper-container .swiper-slide .fu-info h2 {
  color: #caad73;
  font-size: 16px;
  font-weight: normal;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.works-section .swiper-container .swiper-slide .fu-info .fu-title {
  margin: 40px 0;
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.works-section .swiper-container .swiper-slide .fu-info .fu-title h1 {
  line-height: 1;
  color: #fff;
  font-size: 44px;
  font-weight: normal;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.works-section .swiper-container .swiper-slide .fu-info p {
  color: #caad73;
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.works-section .swiper-container .swiper-slide .fu-content {
  width: 450px;
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.works-section .swiper-container .swiper-slide .fu-right {
  cursor: pointer;
  width: 190px;
  max-width: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 2;
}

.works-section .swiper-container .swiper-slide .fu-right > * {
  -webkit-transition: all .7s;
  -o-transition: all .7s;
  transition: all .7s;
  -webkit-transform: translateX(25px);
      -ms-transform: translateX(25px);
          transform: translateX(25px);
  opacity: 0;
}

.works-section .swiper-container .swiper-slide .fu-right .fu-img {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.works-section .swiper-container .swiper-slide .fu-right .fu-img .bg-img {
  width: 70%;
  padding-bottom: 100%;
}

.works-section .swiper-container .swiper-slide .fu-right .fu-img .fu-title {
  padding-bottom: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: rgba(220, 195, 134, 0.2);
  position: relative;
  z-index: 10;
}

.works-section .swiper-container .swiper-slide .fu-right .fu-img .fu-title p {
  width: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1.5;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.works-section .swiper-container .swiper-slide .fu-right .fu-img .fu-title::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d1443;
  z-index: -1;
}

.works-section .swiper-container .swiper-slide .fu-right h1 {
  font-size: 18px;
  color: #fff;
  font-weight: normal;
  margin: 20px 0 10px;
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.works-section .swiper-container .swiper-slide .fu-right p {
  color: #847456;
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.works-section .swiper-container .swiper-pagination {
  text-align: left;
  margin-bottom: 50px;
}

.works-section .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #caad73;
  width: 39px;
  height: 6px;
  border-radius: 1000px;
}

.works-section .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #caad73;
}

.works-section .bg-text {
  position: absolute;
  bottom: 10%;
  right: 0;
  font-size: 250px;
  color: #112d4b;
  font-weight: 700;
  opacity: .6;
}

.works-section .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: .6;
}

@media (max-width: 1200px) {
  .works-section .swiper-container .swiper-slide .fu-content {
    width: 33%;
    left: 55%;
  }
}

@media (max-width: 991px) {
  .works-section .breadcrumb {
    margin-top: 30px;
  }
  .works-section .swiper-container .swiper-slide .fu-info {
    width: 30%;
  }
  .works-section .swiper-container .swiper-slide .fu-info .fu-title h1 {
    font-size: 24px;
  }
  .works-section .swiper-container .swiper-slide .fu-content {
    width: 38%;
  }
  .works-section .swiper-container .swiper-slide .fu-right {
    width: 20%;
  }
  .works-section .swiper-container .swiper-slide .fu-right .fu-title {
    font-size: 16px;
  }
  .works-section .swiper-container .swiper-slide .fu-right .fu-title p {
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .works-section {
    height: auto;
  }
  .works-section .swiper-container {
    height: auto;
  }
  .works-section .swiper-container .swiper-slide .fu-info {
    position: unset;
    width: 100%;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    margin: 30px 0;
  }
  .works-section .swiper-container .swiper-slide .fu-info .fu-title {
    margin: 20px 0;
  }
  .works-section .swiper-container .swiper-slide .thumb {
    position: relative;
  }
  .works-section .swiper-container .swiper-slide .fu-content {
    position: unset;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin: 0 auto;
    width: 50%;
  }
  .works-section .swiper-container .swiper-slide .fu-right {
    width: 20%;
  }
  .works-section .swiper-container .swiper-slide .fu-right .fu-img .bg-img {
    margin-left: 30%;
  }
  .works-section .swiper-container .swiper-slide .fu-right p, .works-section .swiper-container .swiper-slide .fu-right h1 {
    display: none;
  }
  .works-section .swiper-container .swiper-slide .fu-right .fu-title {
    display: none;
    font-size: 16px;
  }
  .works-section .swiper-container .swiper-slide .fu-right .fu-title p {
    line-height: 1.2;
  }
  .works-section .swiper-container .swiper-pagination {
    position: unset;
    text-align: center;
  }
}

@media (max-width: 450px) {
  .works-section .swiper-container .swiper-slide .fu-content {
    width: 68%;
  }
}

.audio_zone {
  background-color: #112136;
  background-image: -ms-linear-gradient(-180deg, #0e2747 0%, #10243f 44%, #112136 68%, #121f30 100%);
}

.audio_zone .breadcrumb {
  margin-top: 50px;
}

.audio_zone .video_zoom .contentbox {
  position: relative;
  margin-top: 50px;
  padding-left: 5%;
  color: #fff;
  font-size: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  height: 660px;
  margin-bottom: 10vh;
}

.audio_zone .video_zoom .contentbox div, .audio_zone .video_zoom .contentbox p, .audio_zone .video_zoom .contentbox span {
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.audio_zone .video_zoom .contentbox .left_part {
  width: 30%;
  height: 100%;
  position: relative;
  display: inline-block;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container {
  height: 100%;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide {
  height: 100%;
  padding: 8% 0;
  position: relative;
  opacity: 0.2 !important;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide::before, .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 1px;
  background-color: #caad73;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide::after {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -15%;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .title {
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .title .mask {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #112136;
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .title .mask.on {
  top: -100%;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .text {
  color: #caad73;
  line-height: 1.8;
  margin-top: 20px;
  padding-right: 100px;
  text-align: justify;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  height: 6em;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .text .mask {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #112136;
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .text .mask.on {
  top: -100%;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .text .video_go {
  position: absolute;
  right: 20px;
  top: 5%;
  display: inline;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #caad73;
  cursor: pointer;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .text .video_go::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .text .video_go:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.5);
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide .textbox .text .video_go:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(1.8);
      -ms-transform: translate(-50%, -50%) scale(1.8);
          transform: translate(-50%, -50%) scale(1.8);
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide-active {
  position: relative;
  opacity: 1 !important;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide-active::before, .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-slide-active::after {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  width: 100%;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-button-prev, .audio_zone .video_zoom .contentbox .left_part .swiper-button-next {
  position: absolute;
  left: 50%;
  top: 0px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.audio_zone .video_zoom .contentbox .left_part .swiper-button-prev:focus, .audio_zone .video_zoom .contentbox .left_part .swiper-button-next:focus {
  outline: none;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-button-prev::after, .audio_zone .video_zoom .contentbox .left_part .swiper-button-next::after {
  font-size: 18px;
  -webkit-transform: rotateZ(90deg);
      -ms-transform: rotate(90deg);
          transform: rotateZ(90deg);
  color: #caad73;
}

.audio_zone .video_zoom .contentbox .left_part .swiper-button-next {
  top: auto;
  bottom: 0px;
}

.audio_zone .video_zoom .contentbox .right_part {
  width: 65%;
  overflow: hidden;
  display: inline-block;
  font-size: 16px;
  margin-left: 3%;
  height: 90%;
  margin-bottom: 5%;
  position: relative;
}

.audio_zone .video_zoom .contentbox .right_part::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#112136), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, #112136, rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, #112136, rgba(0, 0, 0, 0));
}

.audio_zone .video_zoom .contentbox .right_part .swiper-container {
  height: 100%;
  position: relative;
}

.audio_zone .video_zoom .contentbox .right_part .swiper-container::before {
  content: 'VIDEO';
  font-size: 200px;
  position: absolute;
  left: 22vw;
  top: 8vh;
  font-weight: 700;
  font-family: 微软雅黑;
  color: rgba(17, 45, 75, 0.3);
}

.audio_zone .video_zoom .contentbox .right_part .swiper-container .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.audio_zone .video_zoom .contentbox .right_part .swiper-container .swiper-wrapper .swiper-slide {
  height: 65%;
  padding: 0 15px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.audio_zone .video_zoom .contentbox .right_part .swiper-container .swiper-wrapper .swiper-slide .animated {
  width: 100%;
  height: 100%;
}

.audio_zone .video_zoom .contentbox .right_part .swiper-container .swiper-wrapper .swiper-slide .mask {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #112136;
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}

.audio_zone .video_zoom .contentbox .right_part .swiper-container .swiper-wrapper .swiper-slide .mask.on {
  top: -100%;
}

.audio_zone .video_zoom .contentbox .right_part .swiper-container .swiper-wrapper .swiper-slide.active {
  width: 450px !important;
  height: 100%;
}

.audio_zone .video_zoom .contentbox .video_pipup {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  overflow: hidden;
  -webkit-transition: all linear .4s;
  -o-transition: all linear .4s;
  transition: all linear .4s;
}

.audio_zone .video_zoom .contentbox .video_pipup.on {
  z-index: 500;
}

.audio_zone .video_zoom .contentbox .video_pipup.on .video_bg {
  width: 110%;
  height: 110%;
  top: 0;
  -webkit-transition: width 0 0;
  -o-transition: width 0 0;
  transition: width 0 0;
  -webkit-transition: height 0 0;
  -o-transition: height 0 0;
  transition: height 0 0;
  -webkit-transition: top .6s .2s;
  -o-transition: top .6s .2s;
  transition: top .6s .2s;
}

.audio_zone .video_zoom .contentbox .video_pipup.on .video_box .on_btn {
  display: block;
}

.audio_zone .video_zoom .contentbox .video_pipup.off {
  -webkit-transition: all 0 1.2s !important;
  -o-transition: all 0 1.2s !important;
  transition: all 0 1.2s !important;
}

.audio_zone .video_zoom .contentbox .video_pipup.off .video_bg {
  top: 120%;
}

.audio_zone .video_zoom .contentbox .video_pipup.off .video_box {
  position: absolute;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50% !important;
  top: 50% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  opacity: 0;
  -webkit-transition: all .4s linear .6s ,oacity 1s .6s;
  -o-transition: all .4s linear .6s ,oacity 1s .6s;
  transition: all .4s linear .6s ,oacity 1s .6s;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_bg {
  position: absolute;
  height: 0;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0%;
  height: 0%;
  z-index: 0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box {
  position: absolute;
  width: 0%;
  height: 0%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: height .3s,width 2s;
  -o-transition: height .3s,width 2s;
  transition: height .3s,width 2s;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box video {
  width: 100%;
  height: 100%;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #2edca1;
  background: rgba(42, 42, 42, 0.5);
  cursor: pointer;
  top: auto;
  bottom: -50%;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn.on {
  bottom: 50%;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn .linebox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn .linebox .line {
  position: absolute;
  display: block;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn .linebox .line::before {
  content: '';
  position: absolute;
  background-color: #fff;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn .linebox .line:nth-child(1) {
  width: 90%;
  height: 1px;
  top: 5px;
  right: 1px;
  -webkit-transform: rotateZ(36deg);
      -ms-transform: rotate(36deg);
          transform: rotateZ(36deg);
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn .linebox .line:nth-child(1)::before {
  width: 0%;
  height: 1px;
  right: 0;
  bottom: 0;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn .linebox .line:nth-child(2) {
  width: 1px;
  height: 100%;
  top: 0;
  left: 4px;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn .linebox .line:nth-child(2)::before {
  width: 1px;
  height: 0%;
  left: 0;
  top: 0;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn .linebox .line:nth-child(3) {
  bottom: 5px;
  left: 2px;
  width: 90%;
  height: 1px;
  -webkit-transform: rotateZ(-35deg);
      -ms-transform: rotate(-35deg);
          transform: rotateZ(-35deg);
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn .linebox .line:nth-child(3)::before {
  width: 0%;
  height: 1px;
  left: 0;
  bottom: 0;
}

@-webkit-keyframes line_1 {
  0% {
    width: 0%;
  }
  33%, 100% {
    width: 95%;
  }
}

@keyframes line_1 {
  0% {
    width: 0%;
  }
  33%, 100% {
    width: 95%;
  }
}

@-webkit-keyframes line_2 {
  0%, 33% {
    height: 0%;
  }
  66%, 100% {
    height: 100%;
  }
}

@keyframes line_2 {
  0%, 33% {
    height: 0%;
  }
  66%, 100% {
    height: 100%;
  }
}

@-webkit-keyframes line_3 {
  0%, 66% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes line_3 {
  0%, 66% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(42, 42, 42, 0.3);
  border: 2px solid rgba(42, 42, 42, 0.5);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  -webkit-animation: spread 2s linear infinite;
          animation: spread 2s linear infinite;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn:hover::before {
  color: #fff;
  -webkit-animation: fade_overn 2s linear infinite;
          animation: fade_overn 2s linear infinite;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn:hover .linebox .line:nth-child(1)::before {
  -webkit-animation: line_1 2s linear infinite;
          animation: line_1 2s linear infinite;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn:hover .linebox .line:nth-child(2)::before {
  -webkit-animation: line_2 2s linear infinite;
          animation: line_2 2s linear infinite;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .on_btnbox .on_btn:hover .linebox .line:nth-child(3)::before {
  -webkit-animation: line_3 2s linear infinite;
          animation: line_3 2s linear infinite;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .textbox {
  position: absolute;
  left: 5%;
  bottom: 15%;
  width: 25%;
  overflow: hidden;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .textbox .title {
  font-size: 28px;
}

.audio_zone .video_zoom .contentbox .video_pipup .video_box .textbox .text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
  text-align: justify;
}

.audio_zone .video_zoom .sj_imgbox {
  display: none;
}

.audio_zone .video_zoom .video_pipup .sj_btnbox {
  display: none;
}

@media (max-width: 1240px) {
  .audio_zone .video_zoom .contentbox {
    height: 50vw;
  }
  .audio_zone .video_zoom .contentbox .right_part .swiper-container .swiper-wrapper .swiper-slide.active {
    height: 100%;
    width: 400px !important;
  }
}

@media (max-width: 992px) {
  .audio_zone .video_zoom .contentbox {
    height: auto;
    padding: 0 30px;
  }
  .audio_zone .video_zoom .contentbox .left_part {
    width: 100%;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-button-prev, .audio_zone .video_zoom .contentbox .left_part .swiper-button-next {
    display: none;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper {
    display: block;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide {
    opacity: 1 !important;
    padding: 30px 0;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide::before, .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide::after {
    display: none;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide .sj_imgbox {
    display: block;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide .sj_imgbox .img {
    height: 50vw;
    position: relative;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide .sj_imgbox .img .video_go {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: inline;
    cursor: pointer;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    text-align: center;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    background-color: #caad73;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide .textbox {
    position: unset;
    margin: 0;
    padding: 20px 15px;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide .textbox .text {
    height: auto;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide .textbox .video_go {
    display: none;
  }
  .audio_zone .video_zoom .contentbox .right_part {
    display: none;
  }
  .audio_zone .video_zoom .contentbox .video_pipup {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2049;
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_bg {
    width: 120%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box {
    width: 75%;
    height: auto;
    max-height: 80%;
    top: 50%;
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box .textbox {
    bottom: auto;
    top: calc(100% + 30px);
    width: 100%;
    left: 0;
    padding: 0 15px;
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box .textbox .title {
    font-size: 26px;
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box .sj_btnbox {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 30px);
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box .sj_btnbox .tab {
    font-size: 16px;
    padding: 5px 20px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box .sj_btnbox .iconfont {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .audio_zone .video_zoom .contentbox {
    padding: 0 15px;
    margin-top: 30px;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide {
    padding: 15px 0;
  }
  .audio_zone .video_zoom .contentbox .left_part .swiper-container .swiper-wrapper .swiper-slide .textbox {
    padding: 15px 0;
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box {
    width: calc(100% - 30px);
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box .textbox {
    padding: 0;
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box .textbox .title {
    font-size: 20px;
  }
  .audio_zone .video_zoom .contentbox .video_pipup .video_box .sj_btnbox .iconfont {
    font-size: 20px;
  }
}

.audio_zone .images_zoom {
  width: 100%;
  position: relative;
}

.audio_zone .images_zoom .contentbox {
  margin-top: 50px;
  height: 80vh;
  position: relative;
  margin-bottom: 10vh;
}

.audio_zone .images_zoom .contentbox .left_part {
  width: 70%;
  height: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 30px;
  margin: -30px;
}

.audio_zone .images_zoom .contentbox .left_part .waterfallbox {
  width: 100%;
  height: 100%;
  padding: 30px;
  margin: -30px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.audio_zone .images_zoom .contentbox .left_part .waterfallbox::-webkit-scrollbar {
  display: none;
}

.audio_zone .images_zoom .contentbox .left_part .waterfallbox .waterfall {
  width: 100%;
  height: 100%;
}

.audio_zone .images_zoom .contentbox .left_part .waterfallbox .waterfall .item {
  padding: 0;
  z-index: 1;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.audio_zone .images_zoom .contentbox .left_part .waterfallbox .waterfall .item img {
  padding: 5px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.audio_zone .images_zoom .contentbox .left_part .waterfallbox .waterfall .item:hover {
  z-index: 10;
}

.audio_zone .images_zoom .contentbox .left_part .waterfallbox .waterfall .item:hover img {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}

.audio_zone .images_zoom .contentbox .left_part .loadbox {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: -1;
  background-color: #112136;
  position: absolute;
  top: -100%;
  left: 0;
  -webkit-transition: all .6s ease-in-out;
  -o-transition: all .6s ease-in-out;
  transition: all .6s ease-in-out;
  z-index: 10;
}

.audio_zone .images_zoom .contentbox .left_part .loadbox.on {
  top: 0;
}

.audio_zone .images_zoom .contentbox .left_part .loadbox .configure-border-1 {
  width: 115px;
  height: 115px;
  padding: 3px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #caad73;
  -webkit-animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
          animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
}

.audio_zone .images_zoom .contentbox .left_part .loadbox .configure-border-2 {
  width: 115px;
  height: 115px;
  padding: 3px;
  left: -200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
          animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
}

.audio_zone .images_zoom .contentbox .left_part .loadbox .configure-core {
  width: 100%;
  height: 100%;
  background-color: #37474f;
}

@-webkit-keyframes configure-clockwise {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes configure-clockwise {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  25% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  75% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes configure-xclockwise {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  25% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  50% {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  75% {
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  100% {
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
  }
}

@keyframes configure-xclockwise {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  25% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  50% {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  75% {
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  100% {
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
  }
}

.audio_zone .images_zoom .contentbox .right_part {
  display: inline-block;
  width: 30%;
  float: right;
  color: #caad73;
  height: 100%;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box {
  position: relative;
  height: 70%;
  margin-top: 10%;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container {
  height: 100%;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide {
  padding: 20px 0;
  border-bottom: 1px solid #caad73;
  position: relative;
  opacity: 0.2;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  cursor: pointer;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .title {
  color: #fff;
  font-size: 24px;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .text {
  font-size: 14px;
  margin-top: 3%;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .title, .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .databox {
  overflow: hidden;
  position: relative;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .title::before, .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .databox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #112136;
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .title.on::before, .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .databox.on::before {
  top: -100%;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .databox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 7%;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .databox .time {
  font-size: 14px;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .databox .num {
  font-size: 20px;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-slide .databox .num::before {
  margin-right: 10px;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-next, .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-prev {
  position: absolute;
  left: auto;
  top: auto;
  bottom: -15%;
  color: #caad73;
  z-index: 100;
  width: 70px;
  height: 42px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-next:focus, .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-prev:focus {
  outline: none;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-next::after, .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 400;
  -webkit-transform: rotateZ(90deg);
      -ms-transform: rotate(90deg);
          transform: rotateZ(90deg);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-next:hover, .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.5);
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-next:hover::after, .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-prev:hover::after {
  -webkit-transform: rotateZ(90deg);
      -ms-transform: rotate(90deg);
          transform: rotateZ(90deg);
  font-weight: 700;
  position: relative;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-prev:hover::after {
  -webkit-animation: td_loop 1.2s linear infinite;
          animation: td_loop 1.2s linear infinite;
}

@keyframes td_loop {
  0% {
    top: -3px;
  }
  50% {
    top: 3px;
  }
  100% {
    top: -3px;
  }
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-next {
  left: 90px;
}

.audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-button-next:hover::after {
  -webkit-animation: td_loop 1.2s linear infinite;
          animation: td_loop 1.2s linear infinite;
}

@keyframes td_loop {
  0% {
    top: 3px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 3px;
  }
}

.audio_zone .images_zoom .contentbox .bg_icon1 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  z-index: -1;
}

.audio_zone .images_zoom .contentbox .bg_icon1 img {
  width: 100%;
}

.audio_zone .images_zoom .img_pipup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.audio_zone .images_zoom .img_pipup .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.audio_zone .images_zoom .img_pipup .content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 55%;
  width: 80vw;
  height: 70vh;
}

.audio_zone .images_zoom .img_pipup .content .left_part {
  display: inline-block;
  width: 75%;
  height: 100%;
}

.audio_zone .images_zoom .img_pipup .content .left_part .swiper-container {
  height: 100%;
}

.audio_zone .images_zoom .img_pipup .content .left_part .swiper-container .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0 !important;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  height: 100%;
}

.audio_zone .images_zoom .img_pipup .content .left_part .swiper-container .swiper-slide img {
  width: auto !important;
  height: 100% !important;
}

.audio_zone .images_zoom .img_pipup .content .left_part .swiper-container .swiper-slide-active {
  opacity: 1 !important;
}

.audio_zone .images_zoom .img_pipup .content .right_part {
  width: 20%;
  height: 100%;
  float: right;
  display: inline-block;
  color: #caad73;
  position: relative;
}

.audio_zone .images_zoom .img_pipup .content .right_part .textbox {
  padding: 20px 0;
  border-bottom: 1px solid #caad73;
}

.audio_zone .images_zoom .img_pipup .content .right_part .textbox .title {
  font-size: 28px;
  line-height: 1.5 !important;
  color: #fff;
}

.audio_zone .images_zoom .img_pipup .content .right_part .textbox .text {
  font-size: 16px;
  display: block;
  margin: 15px 0;
}

.audio_zone .images_zoom .img_pipup .content .right_part .swiper-pagination {
  bottom: 10%;
  text-align: left;
  color: rgba(202, 173, 115, 0.4);
  font-size: 18px;
}

.audio_zone .images_zoom .img_pipup .content .right_part .swiper-pagination .swiper-pagination-current {
  font-size: 30px;
  color: #caad73;
}

.audio_zone .images_zoom .img_pipup .content .right_part .btnbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 42px;
}

.audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-next, .audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-prev {
  position: absolute;
  left: auto;
  top: auto;
  color: #caad73;
  z-index: 100;
  width: 70px;
  height: 42px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  margin-top: 0;
}

.audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-next:focus, .audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-prev:focus {
  outline: none;
}

.audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-next::after, .audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-next:hover, .audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.5);
}

.audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-next:hover::after, .audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-prev:hover::after {
  position: relative;
  -webkit-transform: translateX(-3px);
      -ms-transform: translateX(-3px);
          transform: translateX(-3px);
}

.audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-next {
  right: auto;
  left: 95px;
}

.audio_zone .images_zoom .img_pipup .content .right_part .btnbox .swiper-button-next:hover::after {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}

.audio_zone .images_zoom .bottom_mask {
  position: absolute;
  bottom: 10vh;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#112136), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, #112136, rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, #112136, rgba(0, 0, 0, 0));
  z-index: 15;
}

.audio_zone .images_zoom .off_btn {
  position: absolute;
  right: 0;
  top: -8%;
  font-size: 30px;
  color: #6e6e6e;
  cursor: pointer;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.audio_zone .images_zoom .off_btn:hover {
  color: #fff;
  -webkit-transform: rotateZ(90deg);
      -ms-transform: rotate(90deg);
          transform: rotateZ(90deg);
}

.audio_zone .images_zoom .sj_imgbox {
  display: none;
}

@media (max-width: 1440px) {
  .audio_zone .images_zoom .contentbox .right_part {
    width: 34%;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box {
    margin-top: 0;
  }
}

@media (max-width: 992px) {
  .audio_zone .images_zoom .bottom_mask {
    display: none;
  }
  .audio_zone .images_zoom .contentbox {
    height: auto;
  }
  .audio_zone .images_zoom .contentbox .left_part {
    display: none;
  }
  .audio_zone .images_zoom .contentbox .right_part {
    width: 100%;
  }
  .audio_zone .images_zoom .contentbox .right_part .switch {
    display: none;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper {
    display: block;
    font-size: 0;
    margin: 0 -15px;
    width: auto;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide {
    width: calc(100% / 3);
    height: auto;
    display: inline-block;
    opacity: 1;
    padding: 0 15px;
    margin-bottom: 30px;
    border-bottom: unset;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide .sj_imgbox {
    display: block;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide .sj_imgbox .img {
    height: 35vw;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide .title {
    padding: 15px 0;
    font-size: 20px;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide .databox {
    margin: 0;
    color: #fff;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide .databox .time::before {
    content: '\e606';
    font-family: 'iconfont';
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide .databox .num {
    font-size: 14px;
  }
  .audio_zone .images_zoom .sj_pipupbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 100;
    display: none;
    color: #fff;
    background-color: #0F2645;
    padding: 30px 15px;
    padding-top: 60px;
  }
  .audio_zone .images_zoom .sj_pipupbox .sj_btnbox {
    width: calc(100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 30px 0;
  }
  .audio_zone .images_zoom .sj_pipupbox .sj_btnbox .tab {
    font-size: 16px;
    padding: 5px 20px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .audio_zone .images_zoom .sj_pipupbox .sj_btnbox .iconfont {
    font-size: 24px;
  }
  .audio_zone .images_zoom .sj_pipupbox .imgbox_title {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    font-size: 18px;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox {
    margin-top: 30px;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 72vh;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox::-webkit-scrollbar {
    display: none;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox .waterfall {
    margin: 0 -5px;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox .waterfall .item {
    width: calc(100% / 3);
    margin-bottom: 10px;
    padding: 0 5px;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox .waterfall .item img {
    width: 100%;
    padding: 0;
  }
  .audio_zone .images_zoom .img_pipup .content {
    width: 90vw;
    height: auto;
    max-height: 85vh;
  }
  .audio_zone .images_zoom .img_pipup .content .left_part {
    width: 100%;
  }
  .audio_zone .images_zoom .img_pipup .content .left_part .swiper-container {
    width: 100%;
    height: auto;
  }
  .audio_zone .images_zoom .img_pipup .content .left_part .swiper-container .swiper-slide {
    width: 100% !important;
    height: auto;
  }
  .audio_zone .images_zoom .img_pipup .content .left_part .swiper-container .swiper-slide img {
    width: 100%;
    height: auto !important;
  }
  .audio_zone .images_zoom .img_pipup .content .right_part {
    display: none;
  }
  .audio_zone .images_zoom .img_pipup .off_btn {
    position: absolute;
    right: 0;
    top: -50px;
    font-size: 30px;
    color: #6e6e6e;
    cursor: pointer;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .audio_zone .images_zoom .img_pipup .off_btn:hover {
    color: #fff;
    -webkit-transform: rotateZ(90deg);
        -ms-transform: rotate(90deg);
            transform: rotateZ(90deg);
  }
}

@media (max-width: 768px) {
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide {
    width: calc(100% / 2);
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide .title {
    padding: 10px 0;
    font-size: 18px;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide .sj_imgbox .img {
    height: 50vw;
  }
  .audio_zone .images_zoom .sj_pipupbox .sj_btnbox {
    margin: 15px 0;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox {
    margin-top: 30px;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 72vh;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox::-webkit-scrollbar {
    display: none;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox .waterfall {
    margin: 0 -5px;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox .waterfall .item {
    width: calc(100% / 2);
    margin-bottom: 10px;
    padding: 0 5px;
  }
  .audio_zone .images_zoom .sj_pipupbox .waterfallbox .waterfall .item img {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 468px) {
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper {
    margin: 0 -7.5px;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide {
    padding: 0 7.5px;
  }
  .audio_zone .images_zoom .contentbox .right_part .swiper_box .swiper-container .swiper-wrapper .swiper-slide .title {
    padding: 10px 0;
    font-size: 16px;
  }
}

.cooperate {
  background: url(/static/img/web/bg/img-2.png) no-repeat;
}

.cooperate .fu-synopsis {
  padding: 100px 0 50px;
  background-position: left top;
}

.cooperate .fu-synopsis .fu-info {
  width: 600px;
  max-width: 40%;
}

.cooperate .fu-synopsis .fu-info .fu-text {
  color: #343434;
}

.cooperate .fu-synopsis .fu-info .fu-text h1 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
}

.cooperate .fu-synopsis .fu-info .fu-text p {
  margin-top: 10px;
  line-height: 2;
  font-size: 14px;
  color: #797979;
}

.cooperate .fu-synopsis .fu-title h1 {
  font-size: 32px;
  font-weight: normal;
}

.cooperate .fu-synopsis .fu-title p {
  font-size: 16px;
  color: #8b8b8b;
}

@media (max-width: 991px) {
  .cooperate .fu-synopsis .fu-info {
    max-width: 60%;
  }
}

@media (max-width: 767px) {
  .cooperate .fu-synopsis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 0 0 0;
  }
  .cooperate .fu-synopsis .fu-info {
    max-width: 100%;
  }
  .cooperate .fu-synopsis .fu-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .cooperate .fu-synopsis .fu-title h1 {
    font-size: 24px;
  }
  .cooperate .fu-synopsis .fu-title p {
    font-size: 12px;
  }
  .cooperate .fu-synopsis::after {
    display: none;
  }
}

.cooperate .proDesRes {
  background: url(/static/img/web/bg/img-1.png) center center no-repeat;
  width: 100%;
  height: 566px;
  position: relative;
}

.cooperate .proDesRes .proDesbox .proDesLine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1px;
  background-color: rgba(34, 124, 214, 0.7);
}

.cooperate .proDesRes .proDesbox .proDesDian {
  position: absolute;
  left: 0;
  top: -24px;
  width: 5px;
  height: 5px;
  padding: 7px;
  border-radius: 50%;
  background-color: #a7cbef;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.cooperate .proDesRes .proDesbox .proDesDian .proDesInner {
  background-color: #227cd6;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.cooperate .proDesRes .proDesbox .proDesMainTitle {
  color: #004a9a;
  text-align: left;
  font-size: 12px;
  line-height: 20px;
}

.cooperate .proDesRes .proDesbox .proDesSubTitle {
  color: #227cd6;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0.7;
}

.cooperate .proDesRes .ellisp1 {
  text-align: center;
}

.cooperate .proDesRes .ellisp2,
.cooperate .proDesRes .ellisp3 {
  text-align: right;
}

.cooperate .proDesRes .ellisp2 .proDesMainTitle,
.cooperate .proDesRes .ellisp3 .proDesMainTitle {
  text-align: right;
}

.cooperate .proDesRes .ellisp2 .proDesFt,
.cooperate .proDesRes .ellisp3 .proDesFt {
  left: auto;
  right: 30px;
}

.cooperate .proDesRes .ellisp1 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -136px;
  margin-top: 50px;
  width: 300px;
  height: 100px;
}

.cooperate .proDesRes .ellisp1 .proDesDian {
  position: absolute;
  left: 0;
  width: 5px;
  height: 5px;
  padding: 7px;
  background-color: #a7cbef;
  top: 0;
}

.cooperate .proDesRes .ellisp1 .proDesbox {
  position: absolute;
  bottom: 24px;
  left: 86px;
  width: 19px;
  height: 340px;
}

.cooperate .proDesRes .ellisp1 .proDesbox.proDesbox3 {
  left: -10px;
  bottom: 80px;
  height: 140px;
  text-align: center;
}

.cooperate .proDesRes .ellisp1 .proDesbox.proDesbox3 .proDesDian {
  top: -26px;
}

.cooperate .proDesRes .ellisp1 .proDesbox.proDesbox3 .proDesFt {
  top: -46px;
  left: -76px;
}

.cooperate .proDesRes .ellisp1 .proDesbox1 {
  -webkit-animation: heighSvhtAni 3s infinite;
  animation: heighSvhtAni 3s infinite;
}

.cooperate .proDesRes .ellisp1 .proDesbox2 {
  left: 172px;
  height: 46px;
  height: 150px;
}

.cooperate .proDesRes .ellisp1 .proDesbox2 .proDesDian {
  top: -26px;
}

.cooperate .proDesRes .ellisp1 .proDesbox2 .proDesFt {
  top: -46px;
  left: -76px;
}

.cooperate .proDesRes .ellisp2 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 60px 0 0 -510px;
  width: 342px;
  height: 144px;
}

.cooperate .proDesRes .ellisp2 svg {
  -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

.cooperate .proDesRes .ellisp2 .proDesbox {
  position: absolute;
  bottom: 58px;
  left: 50%;
  width: 19px;
  height: 90px;
}

.cooperate .proDesRes .ellisp2 .proDesbox.proDesbox3 {
  left: 320px;
  bottom: 40px;
  height: 62px;
  text-align: center;
}

.cooperate .proDesRes .ellisp2 .proDesbox.proDesbox3 .proDesFt {
  top: -42px;
  left: -76px;
}

.cooperate .proDesRes .ellisp2 .proDesbox2 {
  left: 221px;
  bottom: 140px;
  height: 62px;
}

.cooperate .proDesRes .ellisp3 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -80px 0 0 -364px;
  width: 300px;
}

.cooperate .proDesRes .ellisp3 svg {
  -webkit-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
      transform: rotate(-2deg);
}

.cooperate .proDesRes .ellisp3 .proDesbox {
  position: absolute;
  bottom: 72px;
  left: 155px;
  width: 19px;
  height: 90px;
}

.cooperate .proDesRes .ellisp4 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -82px 0 0 -6px;
  width: 300px;
}

.cooperate .proDesRes .ellisp4 .proDesbox {
  position: absolute;
  bottom: 80px;
  left: 148px;
  width: 19px;
  height: 64px;
}

.cooperate .proDesRes .ellisp4 svg {
  -webkit-transform: rotate(1deg);
  -ms-transform: rotate(1deg);
      transform: rotate(1deg);
}

.cooperate .proDesRes .ellisp5 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  margin: 86px 0 0 152px;
}

.cooperate .proDesRes .ellisp5 .proDesbox {
  position: absolute;
  bottom: 100px;
  left: 160px;
  width: 19px;
  height: 80px;
}

.cooperate .proDesRes .ellisp5 .proDesbox.proDesbox1 {
  bottom: auto;
  top: 50%;
}

.cooperate .proDesRes .ellisp5 .proDesbox.proDesbox1 .proDesDian {
  top: 85px;
}

.cooperate .proDesRes .proDesMainImg {
  position: absolute;
  left: 50%;
  top: 20%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.cooperate .proDesRes .ellispBorder {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
}

.cooperate .proDesRes .ellispBorder svg {
  fill: rgba(0, 255, 254, 0);
  stroke: url(#change);
  stroke-width: 2;
}

.cooperate .proDesRes .proDesFt {
  position: absolute;
  left: 32px;
  top: 0;
  width: 170px;
  height: 40px;
}

@media (max-width: 991px) {
  .cooperate .proDesRes {
    width: 1280px;
    display: table-cell;
    margin: 0 auto;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@media (max-width: 767px) {
  .cooperate .proDesRes {
    -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@media (max-width: 440px) {
  .cooperate .proDesRes {
    height: 300px;
    -webkit-transform: scale(0.4);
        -ms-transform: scale(0.4);
            transform: scale(0.4);
  }
}

@-webkit-keyframes heighSvhtAni {
  0%, 100% {
    height: 340px;
  }
  50% {
    height: 366px;
  }
}

@keyframes heighSvhtAni {
  0%, 100% {
    height: 340px;
  }
  50% {
    height: 366px;
  }
}

@-webkit-keyframes spreads {
  0% {
    opacity: .8;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes spreads {
  0% {
    opacity: .8;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.locTime > div:first-of-type::before {
  display: none;
}

.timeBtnCon {
  width: 260px;
  height: 100%;
  background: 0 0;
  border-radius: 50%;
  padding: 24px;
  margin: 0 auto;
  position: relative;
}

.timeBtnCon .timeBtnBg {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
      transform: scale(0.8);
  opacity: 0;
  background: #004188;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.timeBtnCon .timeBorCon {
  padding: 5px;
  width: 200px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.timeWrap {
  width: calc(33.3%);
  position: relative;
  margin: 0 auto;
  cursor: pointer;
}

.timeWrap:hover .timeBtnCon .timeBtnBg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
  opacity: 1;
}

.timeWrap:hover .timeBtnCon .timeBor {
  border-color: #6e93b3;
}

.timeWrap:hover .timeBtnCon .timeNum, .timeWrap:hover .timeBtnCon .timeBtnFont, .timeWrap:hover .timeBtnCon .timeUnit {
  color: #fff;
}

.timeWrap:hover .timeBorSvg {
  opacity: 1;
}

.timeWrap:hover .subWayIco {
  color: #fff;
}

.timeWrap .timeBorSvg .svg1 {
  -webkit-transition: all 0 0\0\9;
  -o-transition: all 0 0\0\9;
  transition: all 0 0\0\9;
}

.timeWrap::before {
  height: 92px;
  width: 1px;
  position: absolute;
  top: 50%;
  margin-top: -46px;
  background-color: #f1f1f1;
  left: 0;
}

.timeBor {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 5px solid transparent;
}

.timeBorSvg {
  position: absolute;
  top: -14px;
  left: -10px;
  width: 224px;
  height: 224px;
  opacity: 0;
}

.timeBorSvg .svg0 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
}

.timeBorSvg .svg1 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
  position: absolute;
  top: 2px;
  left: -2px;
}

.timeBorSvg .svg1,
.timeBorSvg svg circle {
  -webkit-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.ideaBtnAct,
.ideaCount {
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.timeFontBox {
  color: #666;
  font-size: 15px;
  position: relative;
}

.timeFontBox .timeBtnCount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.timeFontBox .timeBtnFont {
  text-align: center;
  width: 144px;
}

.timeFontBox.min_z .timeBtnCount .timeNum {
  font-size: 58px;
  line-height: 58px;
}

.timeFontBox.min_z .timeBtnCount .timeNum span {
  font-size: 50px;
  line-height: 50px;
  display: inline-block;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.timeFontBox.min_z .timeBtnFont {
  font-size: 20px;
  line-height: 20px;
}

.timeBtnCount .timeNum {
  font-size: 64px;
  line-height: 64px;
  color: #004188;
  margin-right: 6px;
}

.timeBtnCount .timeUnit {
  font-size: 16px;
  line-height: 16px;
  position: relative;
  top: -6px;
  color: #666;
}

.ideaConMainTit,
.ideaList {
  font-family: HELVETICANEUETHN, arial, "微软雅黑";
}

.timeBor,
.timeBorSvg .svg0,
.timeBtnCon .timeBorCon {
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.subWayItem .subWayIco {
  height: 36px;
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.subWayItem .timeBtnFont {
  font-size: 24px;
  line-height: 24px;
}

.clear,
.locZone,
.rentContentR .renListWrap,
.rentImgWrap,
.servise,
.serviseList li {
  overflow: hidden;
}

.locZoneCon .locZoneL,
.proButton {
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.locZoneFt .locZoneMainTit,
.timeBtnCount .timeNum {
  font-family: HELVETICANEUETHN, "微软雅黑", arial;
  font-weight: 600;
}

.locZoneFt .locZoneMainTit,
.mainTit {
  letter-spacing: 3px;
  overflow-y: hidden;
}

.ideaContentB,
.ideaMainTit,
.ideaSubTit,
.locZoneL .locZoneBtn,
.proButton,
.proDesBayTit,
.subWayItem .subWayIco,
.timeFontBox,
.wayList li .wayFont {
  text-align: center;
}

.locZone {
  position: relative;
}

.locZone #partner_bg {
  z-index: -1;
}

.locZone * {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.locZone canvas {
  position: absolute;
  bottom: 0;
  left: 0;
}

.locZone .locZoneCon {
  padding: 120px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.locZone svg path {
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
}

.locZoneCon .locZoneL {
  width: 276px;
  height: 560px;
  position: relative;
  top: 0;
  left: 0;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #0C3D77;
  padding-top: 80px;
  margin-right: 60px;
}

.locZoneCon .locZoneL.locZoneLHov {
  top: -10px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.locZoneCon .locZoneR {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 56px;
}

.locZoneL .locZoneFt {
  color: #fff;
  margin-bottom: auto;
}

.locZoneL .locZoneBtnWrap {
  background: url(/static/img/web/bg/img-44.png) center center no-repeat;
}

.locZoneL .locZoneBtnBox {
  width: 210px;
  height: 210px;
  margin: 0 auto 40px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.locZoneL .locZoneBtn {
  width: 96px;
  height: 96px;
  line-height: 96px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  font-size: 16px;
  color: #004188;
  position: relative;
  border: 1px solid #fff;
}

.locZoneFt {
  text-align: center;
}

.locZoneFt .locZoneMainTit {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 14px;
  font-weight: normal;
}

.locZoneFt .locZoneSubTit {
  font-size: 24px;
  line-height: 24px;
  overflow-y: hidden;
}

.locBtnBar,
.locBtnBar2 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  left: 0;
  top: 0;
}

.locBtnBar {
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-animation: spreads 1s infinite;
  animation: spreads 1s infinite;
}

.locBtnBar.on {
  -webkit-transform: scale(2);
  -ms-transform: scale(2);
      transform: scale(2);
  border-color: transparent;
}

.locBtnBar2 {
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
  -webkit-animation: spreads 1s infinite;
  animation: spreads 1s infinite .5s;
}

.locZoneR .wayList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  max-width: 90%;
}

.locZoneR .locTime {
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.zoomIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.zoomIn .icon1 {
  display: none;
}

.zoomIn .icon2 {
  display: inline-block;
}

.zoomIn.on .icon1 {
  display: inline-block;
}

.zoomIn.on .icon2 {
  display: none;
}

.wayList {
  padding-right: 30px;
}

.wayList li {
  cursor: pointer;
  margin-left: 0;
  color: #6c757d;
  -webkit-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
}

.wayList li i {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  font-size: 38px;
  line-height: 38px;
}

.wayList li .wayBtnWrap {
  width: 14px;
  height: 14px;
  margin: 4px auto 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.wayList li .wayBtn {
  width: 5px;
  height: 5px;
  background-color: #e5e5e5;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wayList li .wayBtn::after {
  width: 14px;
  height: 14px;
  border: 2px solid #004188;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
      transform: scale(0);
}

.wayList li .wayFont {
  font-size: 16px;
  white-space: nowrap;
}

.wayList li.on {
  color: #004188;
}

.wayList li.on .wayBtn {
  background-color: #004188;
}

.wayList li:first-of-type {
  margin-top: 43px;
  margin-left: 96px;
}

.wayList li:nth-of-type(2) {
  margin-top: 3px;
}

.wayList li:nth-of-type(3) {
  margin-top: 8px;
}

.wayList li:last-of-type {
  margin-top: 34px;
}

.timeBtnCon,
.wayList li .wayBtn::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.wayList li.on .wayBtn::after,
.wayList li:hover .wayBtn::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1);
}

.serviseList li .serviseBodySubtit::after,
.sliderBox dd::after,
.slidernav li::after,
.timeWrap::before,
.wayList li .wayBtn::after {
  content: "";
}

.locList > li {
  display: none;
}

.locList > li.on {
  display: block;
}

.locWave1,
.locWave2,
.locZoneSvg {
  position: absolute;
}

.locZoneSvg {
  top: 215px;
  left: 50%;
  -webkit-transform: translateX(-49%);
  -ms-transform: translateX(-49%);
      transform: translateX(-49%);
  z-index: 0;
  height: 60px;
}

.aniPathIng svg path {
  -webkit-animation: dash 1.5s linear;
  animation: dash 1.5s linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.timeBor,
.timeBtnCon .timeBtnBg {
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 1280px) {
  .locZoneCon .locZoneL {
    margin-right: 0;
  }
  .timeBtnCon {
    width: 210px;
  }
  .timeBtnCon .timeBorCon {
    width: 150px;
    height: 150px;
  }
  .timeBor {
    width: 150px;
    height: 150px;
  }
  .timeBorSvg {
    width: 165px;
    height: 165px;
  }
  .timeBorSvg svg {
    width: 100%;
    height: 100%;
  }
  .timeBorSvg .svg0 {
    display: none;
  }
  .wayList li:first-of-type {
    margin-top: 28px;
  }
  .wayList li:nth-child(3) {
    margin-top: 4px;
  }
}

@media (max-width: 1030px) {
  .locZoneCon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .locZoneCon .locZoneL {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  .locZoneCon .locZoneL .locZoneFt {
    margin-bottom: 0;
    margin-left: 50px;
  }
  .locZoneCon .locZoneL .locZoneBtnBox {
    margin-bottom: 0;
  }
  .locZoneCon .locZoneR .wayList {
    position: relative;
    margin-bottom: 0;
  }
  .locZoneCon .locZoneR .wayList::after {
    content: '';
    position: absolute;
    top: 59%;
    -webkit-transform: translateX(-10%);
        -ms-transform: translateX(-10%);
            transform: translateX(-10%);
    width: 200%;
    display: block;
    border-bottom: 1px solid #e5e5e5;
    z-index: -1;
  }
  .locZoneCon .locZoneR .wayList li {
    margin-top: 0 !important;
  }
  .locZoneCon .locZoneR .wayList li:first-of-type {
    margin-top: 2px !important;
  }
  .locZoneCon .locZoneR .wayList li:last-of-type {
    margin-top: 5px !important;
  }
  .locZoneCon .locZoneR .timeBtnCon {
    width: 185px;
  }
  .locZoneCon .locZoneR .timeBtnCon .timeBorCon {
    width: 125px;
    height: 125px;
  }
  .locZoneCon .locZoneR .timeBor {
    display: none;
  }
  .locZoneCon .locZoneR .timeBorSvg {
    width: 125px;
    height: 125px;
  }
  .aniPathIng {
    display: none;
  }
}

@media (max-width: 767px) {
  .locZone .locZoneCon {
    padding: 0 15px;
  }
  .locZone .locZoneCon .locZoneL .locZoneFt {
    margin-left: 20px;
  }
  .locZone .locZoneCon .locZoneL .locZoneMainTit {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .locZone .locZoneCon .locZoneL .titTrans {
    font-size: 18px;
  }
  .locZone .locZoneCon .locZoneL .locZoneBtnBox {
    width: 150px;
    height: 100px;
  }
  .locZone .locZoneCon .locZoneL .locZoneBtn {
    width: 65px;
    height: 65px;
    line-height: 65px;
  }
  .locZone .locZoneCon .locZoneL .locZoneBtn span {
    font-size: 14px;
  }
  .locZone .locZoneCon .locZoneR {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .locZone .locZoneCon .locZoneR .wayList {
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-width: 100%;
  }
  .locZone .locZoneCon .locZoneR .wayList li:first-of-type {
    margin-left: 0;
  }
  .locZone .locZoneCon .locZoneR .wayList li .wayFont {
    font-size: 14px;
  }
  .locZone .locZoneCon .locZoneR .locTime {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 20px;
  }
  .locZone .locZoneCon .locZoneR .locTime .timeWrap {
    width: 50%;
  }
  .locZone .locZoneCon .locZoneR .locTime .timeWrap::before {
    display: none;
  }
  .locZone .locZoneCon .locZoneR .timeBtnCon {
    width: 115px;
  }
  .locZone .locZoneCon .locZoneR .timeBtnCon .timeBorCon {
    width: 55px;
    height: 55px;
  }
  .locZone .locZoneCon .locZoneR .timeBtnCon .timeBorCon .timeBtnCount .timeNum {
    font-size: 32px;
    line-height: 1.2;
  }
  .locZone .locZoneCon .locZoneR .timeBtnCon .timeBorCon .timeBtnFont {
    font-size: 14px;
  }
  .locZone .locZoneCon .locZoneR .timeBorSvg {
    width: 55px;
    height: 55px;
  }
}

.wrapper {
  width: 68.75vw;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 992px) {
  .wrapper {
    width: 90%;
  }
}

.comm_sec1 {
  font-size: 0;
}

.comm_sec1 .item {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 20px);
}

.comm_sec1 .item:nth-of-type(odd) {
  margin-right: 20px;
}

.comm_sec1 .item:nth-of-type(even) {
  margin-left: 20px;
}

.comm_sec1 .item .top_box {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.comm_sec1 .item .top_box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #004188;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 1;
}

.comm_sec1 .item .top_box .img_block {
  overflow: hidden;
  position: relative;
  z-index: 2;
  cursor: url("../images/news/icon1.png") 30 30, pointer;
}

.comm_sec1 .item .top_box .img_block span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 12px;
  color: #fff;
  z-index: 1;
}

.comm_sec1 .item .top_box .img_block img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.comm_sec1 .item .top_box .img_block:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 2;
}

.comm_sec1 .item .top_box .date {
  position: absolute;
  right: 25px;
  bottom: 0;
  font-size: 60px;
  color: #d9d9d9;
  line-height: 1;
  font-family: 'DINPro-regular';
  z-index: 3;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}

.comm_sec1 .item .bot_box {
  padding: 3vw 1.5vw 0;
}

.comm_sec1 .item .bot_box span {
  font-size: 16px;
  color: #666;
}

.comm_sec1 .item .bot_box h3 {
  margin-top: 10px;
}

.comm_sec1 .item .bot_box h3 a {
  display: block;
  font-size: 24px;
  color: #333;
  font-family: 'NotoSansHans-dem';
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.comm_sec1 .item .bot_box p {
  font-size: 16px;
  line-height: 28px;
  color: #808080;
  margin-top: 20px;
}

.comm_sec1 .item:hover .top_box {
  -webkit-box-shadow: 0 0 50px rgba(51, 51, 51, 0.3);
          box-shadow: 0 0 50px rgba(51, 51, 51, 0.3);
}

.comm_sec1 .item:hover .top_box:before {
  opacity: 1;
  -webkit-transform: translate(-20px, -20px);
  -ms-transform: translate(-20px, -20px);
  transform: translate(-20px, -20px);
}

.comm_sec1 .item:hover .top_box .img_block img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.comm_sec1 .item:hover .top_box span,
.comm_sec1 .item:hover .top_box .img_block:after {
  opacity: 1;
}

.comm_sec1 .item:hover .bot_box span {
  color: #004188;
}

.comm_sec1 .item:hover .bot_box h3 a {
  color: #004188;
}

.comm_sec2 {
  margin-top: 6vw;
}

.comm_sec2 .fu-item {
  position: relative;
  float: left;
  overflow: hidden;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  background-color: #004a9a;
  margin-top: 20px;
  width: calc(50% - 10px);
}

.comm_sec2 .fu-item.ml_20 {
  margin-left: 20px;
  background-color: #caad73;
}

.comm_sec2 .fu-item:hover .list-box {
  background-color: rgba(0, 0, 0, 0.2);
}

.comm_sec2 .fu-item .list-box {
  padding: 30px 30px 40px 30px;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 2;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

.comm_sec2 .fu-item .list-box .list-time {
  font-size: 16px;
}

.comm_sec2 .fu-item .list-box .list-title {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.5;
  margin: 20px 0;
}

.comm_sec2 .fu-item .list-box .list-text {
  font-size: 16px;
}

.comm_sec2 .fu-item .list-box .mod-buttom {
  border-color: #fff;
  border-top: 0;
  color: #fff;
  position: absolute;
  left: 30px;
  bottom: 60px;
  width: 170px;
  opacity: 0;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

.comm_sec2 .fu-item.imgZoom {
  width: calc(30% - 20px);
  margin-right: 20px;
  min-height: 563px;
}

.comm_sec2 .fu-item.imgZoom .list-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

.comm_sec2 .fu-item.imgZoom .list-box .list-text {
  opacity: 0;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

.comm_sec2 .fu-item.imgZoom:nth-child(3) {
  margin-right: 0;
}

.comm_sec2 .fu-item.cur {
  width: 40%;
}

.comm_sec2 .fu-item.cur .list-box {
  background-color: rgba(0, 0, 0, 0.4);
}

.comm_sec2 .fu-item.cur .list-box .list-text {
  opacity: 1;
}

.comm_sec2 .fu-item.cur .list-box .mod-buttom {
  bottom: 30px;
  opacity: 1;
}

.comm_sec2 .fu-item.cur .list-img {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
      -ms-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}

.comm_sec2 .fu-item .list-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: none;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 2.4s ease 0s;
  -o-transition: all 2.4s ease 0s;
  transition: all 2.4s ease 0s;
}

.news_index .section1 {
  position: relative;
}

.news_index .section1 .link {
  width: 37.5%;
  position: absolute;
  top: 4.4vw;
  left: 0;
  z-index: 2;
}

.news_index .section1 .link a {
  display: block;
  font-size: 24px;
  color: #bfbfbf;
  line-height: 60px;
  padding-left: 15.625vw;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_index .section1 .link a:not(.active):hover {
  color: #004188;
}

.news_index .section1 .link a.active {
  font-size: 36px;
  color: #fff;
  font-family: 'NotoSansHans-bold';
  background-color: #004188;
  line-height: 70px;
  position: relative;
}

.news_index .section1 .link a.active::after {
  content: '';
  width: 100%;
  height: 50px;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(/static/img/web/bg/img-19.png) no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.news_index .section1 .box {
  width: 84.375%;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.news_index .section1 .box .img_block {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 55%;
}

.news_index .section1 .box .img_block a {
  cursor: url("../images/news/icon1.png") 30 30, pointer;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.news_index .section1 .box .img_block a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_index .section1 .box .img_block span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 12px;
  color: #fff;
}

.news_index .section1 .box .img_block img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.news_index .section1 .box .txt_block {
  margin-right: 15.625vw;
}

.news_index .section1 .box .txt_block p {
  margin: 2.5vw 0;
  font-size: 16px;
  line-height: 28px;
  color: #a6a6a6;
}

.news_index .section1 .box .txt_block a {
  display: block;
  width: 120px;
  font-size: 14px;
  line-height: 30px;
  color: #333;
  font-family: 'DINPro-Medium';
  text-transform: uppercase;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  padding-left: 50px;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_index .section1 .box .txt_block a:before {
  content: '';
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 49%;
  right: 90px;
  left: 0;
  -webkit-transition: left 0.2s linear, right 0.2s 0.2s linear;
  -o-transition: left 0.2s linear, right 0.2s 0.2s linear;
  transition: left 0.2s linear, right 0.2s 0.2s linear;
}

.news_index .section1 .box .txt_block a:after {
  content: '';
  width: 1px;
  height: 30px;
  background-color: #333;
  position: absolute;
  right: 15px;
  top: 0;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.news_index .section1 .box .tit_block {
  width: 18vw;
  position: absolute;
  left: 0;
  top: 25vw;
}

.news_index .section1 .box .tit_block span {
  font-size: 16px;
  color: #004188;
}

.news_index .section1 .box .tit_block h3 {
  font-size: 32px;
  line-height: 1.5;
  font-family: 'NotoSansHans-bold';
  margin-top: 15px;
}

.news_index .section1 .box .tit_block h3 a {
  color: #333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news_index .section1 .box .tit_block .date {
  font-size: 24px;
  color: #a6a6a6;
  font-family: 'DINPro-regular';
  margin-top: 5.5vw;
}

.news_index .section1 .box:hover .img_block img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.news_index .section1 .box:hover .img_block a:after {
  opacity: 1;
}

.news_index .section1 .box:hover .txt_block a {
  padding-left: 0;
}

.news_index .section1 .box:hover .txt_block a:before {
  right: 0;
  left: 90px;
  -webkit-transition: right 0.2s linear, left 0.2s 0.2s linear;
  -o-transition: right 0.2s linear, left 0.2s 0.2s linear;
  transition: right 0.2s linear, left 0.2s 0.2s linear;
}

.news_index .section1 .box:hover .txt_block a:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: .2s;
       -o-transition-delay: .2s;
          transition-delay: .2s;
}

.news_index .section1 .box:hover .tit_block h3 a {
  color: #004188;
}

.news_index .section1 .right_box {
  width: 74.07%;
  margin-right: 0;
  margin-left: auto;
}

.news_index .section2 {
  padding-bottom: 7vw;
}

.news_index .section2 .items {
  padding-bottom: 12vw;
}

.news_index .section2 .item {
  margin-top: 6vw;
}

.news_index .section2 .item:nth-of-type(even) .box {
  -webkit-transform: translateY(6vw);
  -ms-transform: translateY(6vw);
  transform: translateY(6vw);
}

.news_index .section2 .load {
  text-align: center;
  font-size: 16px;
  color: #808080;
}

.news_index .section2 .load a {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/news/icon2.png");
}

@media screen and (max-width: 1600px) {
  .comm_sec1 .item .top_box .date {
    font-size: 50px;
  }
  .comm_sec1 .item .bot_box h3 a {
    font-size: 20px;
  }
}

@media screen and (max-width: 1500px) {
  .comm_sec1 .item .top_box .date {
    font-size: 44px;
  }
  .news_index .section1 .box .tit_block {
    width: 20vw;
  }
  .news_index .section1 .box .tit_block h3,
  .news_index .section1 .link a.active {
    font-size: 26px;
  }
}

@media screen and (max-width: 1366px) {
  .comm_sec1 .item .top_box .date {
    font-size: 40px;
  }
  .comm_sec1 .item .bot_box p {
    font-size: 15px;
    line-height: 26px;
  }
  .news_index .section1 .box .tit_block h3,
  .news_index .section1 .link a.active {
    font-size: 22px;
  }
  .news_index .section1 .box .tit_block .date {
    font-size: 20px;
  }
  .news_index .section1 .link a {
    font-size: 18px;
  }
  .news_index .section2 .load a {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .comm_sec1 .item .top_box .date {
    font-size: 36px;
  }
  .news_index .section1 .link a.active {
    line-height: 50px;
  }
  .news_index .section1 .link a {
    line-height: 40px;
  }
}

@media screen and (max-width: 992px) {
  .news_index .section2 .comm_sec1 .item {
    margin-top: 30px;
    width: calc(50% - 7.5px);
  }
  .comm_sec1 .item:nth-of-type(odd) {
    margin-right: 15px;
  }
  .comm_sec1 .item:nth-of-type(even) {
    margin-left: 0px;
  }
  .news_detail .section2 .item:nth-of-type(even) .box,
  .news_index .section2 .item:nth-of-type(even) .box {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .comm_sec1 .item:hover .top_box:before {
    display: none;
  }
  .comm_sec1 .item .top_box .date {
    font-size: 30px;
  }
  .comm_sec1 .item .bot_box {
    padding: 15px 10px 0;
  }
  .comm_sec1 .item .bot_box span {
    font-size: 14px;
  }
  .comm_sec1 .item .bot_box h3 a {
    font-size: 17px;
  }
  .comm_sec1 .item .bot_box p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .news_index .section2 .item:nth-of-type(even) .box {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .news_index .section1 .link {
    width: 100%;
    position: static;
    font-size: 0;
    border-bottom: 1px solid rgba(213, 226, 231, 0.3);
  }
  .news_index .section1 .link a {
    width: 33.33%;
    display: inline-block;
    vertical-align: top;
    padding: 0;
    text-align: center;
    font-size: 16px;
  }
  .news_index .section1 .link a.active {
    font-size: 16px;
    line-height: 40px;
  }
  .news_index .section1 .box {
    width: 90%;
    margin: 20px auto 0;
  }
  .news_index .section1 .right_box {
    width: 100%;
  }
  .news_index .section1 .box .tit_block {
    width: 100%;
    position: static;
    margin-top: 15px;
  }
  .news_index .section1 .box .tit_block h3 {
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    margin-top: 10px;
  }
  .news_index .section1 .box .tit_block .date {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1;
  }
  .news_index .section1 .box .txt_block {
    margin-right: 0;
  }
  .news_index .section1 .box .txt_block p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 24px;
  }
  .news_index .section1 .box .tit_block span {
    font-size: 14px;
  }
  .news_index .section2 {
    padding-top: 20px;
  }
  .news_index .section2 .items {
    padding-bottom: 15px;
  }
  .comm_sec2 {
    margin-top: 0;
  }
  .comm_sec2 .fu-item.imgZoom {
    min-height: 400px;
  }
  .comm_sec2 .fu-item .list-box .list-title {
    font-size: 22px;
  }
  .comm_sec2 .fu-item .list-box .mod-buttom {
    width: 150px;
    padding: 10px;
  }
  .comm_sec2 .fu-item .list-box {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .news_index .section1 .box {
    width: calc(100% - 30px);
  }
  .news_index .section2 {
    padding-top: 0;
  }
  .news_index .section2 .wrapper {
    width: calc(100% - 30px);
  }
  .news_index .section2 .wrapper .pagination {
    margin-top: 35px;
  }
  .news_index .section2 .wrapper .load {
    display: none;
  }
  .news_index .section2 .wrapper .comm_sec1 .item {
    width: 100%;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item {
    width: 100%;
    margin-top: 30px;
    height: 54vw;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item.imgZoom, .news_index .section2 .wrapper .comm_sec2 .fu-item.cur {
    width: 100%;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item.imgZoom {
    min-height: auto;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item.ml_20 {
    margin-left: 0;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item .list-img {
    height: auto;
    width: 100%;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item .list-box {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item .list-box .list-time {
    font-size: 14px;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item .list-box .list-title {
    font-size: 18px;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item .list-box .list-text {
    font-size: 14px;
    opacity: 1;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item .list-box .mod-buttom {
    left: 30px;
    bottom: 30px;
    font-size: 14px;
    width: 120px;
    opacity: 1;
  }
}

@media (max-width: 468px) {
  .news_index .section2 .wrapper .comm_sec2 .fu-item {
    height: 260px;
  }
  .comm_sec2 .fu-item .list-box {
    padding: 15px;
  }
  .news_index .section2 .wrapper .comm_sec2 .fu-item .list-box .mod-buttom {
    left: 15px;
    bottom: 15px;
  }
  .comm_sec2 .fu-item .list-box .list-title {
    margin: 10px 0;
  }
}

.filter {
  -webkit-filter: blur(10px) contrast(0.8);
          filter: blur(10px) contrast(0.8);
  -webkit-transform: scale(1.01);
      -ms-transform: scale(1.01);
          transform: scale(1.01);
}

.details {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 140px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
}

.details .container {
  max-width: 1200px;
}

.details.party .details-main .details-title .time {
  background: #bd1d1d;
}

.details.party .details-main .page_box .txt:after, .details.party .details-main .page_box .txt::before {
  color: #bd1d1d !important;
}

.details .details-main {
  padding: 60px;
  position: relative;
}

.details .details-main .tool {
  position: absolute;
  left: -53px;
  top: 0;
}

.details .details-main .tool a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  background-color: #fff;
  margin-bottom: 2px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.details .details-main .tool a:hover {
  background-color: #004188;
  color: #fff;
}

.details .details-main .details-title {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  padding-left: 120px;
  position: relative;
}

.details .details-main .details-title .time {
  background-color: #004188;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: rotate(-90deg) translateX(-100%);
      -ms-transform: rotate(-90deg) translateX(-100%);
          transform: rotate(-90deg) translateX(-100%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.details .details-main .details-title h3 {
  font-size: 24px;
  color: #a9a9a9;
  font-weight: normal;
  margin-bottom: 20px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.details .details-main .details-title h1 {
  font-size: 36px;
  color: #343434;
  font-weight: normal;
  height: 3em;
  line-height: 1.5;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.details .details-main .page_box {
  border: 1px solid #e6e6e6;
  font-size: 0;
}

.details .details-main .page_box a {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  text-align: center;
  position: relative;
  font-size: 18px;
  color: #333;
  line-height: 6vw;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.details .details-main .page_box a .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.details .details-main .page_box a .bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.details .details-main .page_box a .txt {
  position: relative;
  z-index: 2;
}

.details .details-main .page_box a .txt span {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  max-width: 60%;
}

.details .details-main .page_box a:nth-of-type(1) {
  border-right: 1px solid #e6e6e6;
}

.details .details-main .page_box a:nth-of-type(1) .txt:before {
  font-family: 'icon';
  content: '\e7bd';
  color: #004188;
  font-size: 20px;
  margin: -2px 3.5vw 0 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.details .details-main .page_box a:nth-of-type(1):hover .txt:before {
  color: #fff;
}

.details .details-main .page_box a:nth-of-type(2) .txt:after {
  font-family: 'icon';
  content: '\e608';
  color: #004188;
  margin: -2px 0 0 3.5vw;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.details .details-main .page_box a:nth-of-type(2):hover .txt:after {
  color: #fff;
}

.details .details-main .page_box a:hover {
  color: #fff;
}

.details .details-main .page_box a:hover .bg {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1024;
  display: none;
}

.popup .mask {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: blur(10px) contrast(0.8);
          filter: blur(10px) contrast(0.8);
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.popup .popup-info {
  width: 900px;
  background-color: #fff;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  z-index: 1024;
  padding: 0 50px 30px;
}

.popup .popup-info .popup-title {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.popup .popup-info .popup-title h1 {
  font-size: 20px;
  font-weight: normal;
}

.popup .popup-info .popup-content .item {
  padding: 20px;
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.popup .popup-info .popup-content .item p {
  color: #004188;
  float: left;
}

.popup .popup-info .popup-content .item i {
  float: right;
  font-size: 20px;
}

.popup .popup-info .popup-content .item:hover {
  background-color: #e5e5e5;
}

.popup .popup-info .popup-content .item:hover i {
  color: #004188;
}

@media (max-width: 1300px) {
  .details .details-main .tool {
    display: none;
  }
}

@media (max-width: 1240px) {
  .details .details-main .details-title {
    padding-left: 0;
  }
  .details .details-main .details-title .time {
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    float: unset !important;
    padding: 10px 20px;
    margin-bottom: 20px;
    display: inline-block;
  }
  .details .details-main .details-title .text {
    width: 100%;
    float: unset !important;
    display: block;
  }
}

@media (max-width: 992px) {
  .details .details-main {
    padding: 30px;
  }
  .details .details-main .details-title .time {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .details .details-main .details-title h3 {
    margin-bottom: 5px;
    font-size: 20px;
  }
  .details .details-main .details-title h1 {
    font-size: 26px;
    height: auto;
  }
}

@media (max-width: 900px) {
  .popup .popup-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .details .details-main {
    padding: 20px;
  }
  .details .details-main .details-title {
    padding-bottom: 10px;
  }
  .details .details-main .details-title .time {
    margin-bottom: 10px;
    padding: 5px 20px;
    font-size: 14px;
  }
  .details .details-main .details-title h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .details .details-main .details-title h1 {
    font-size: 22px;
    height: auto;
    margin-bottom: 10px;
  }
  .details .details-main .page_box a {
    height: 50px;
    font-size: 16px;
    position: relative;
  }
  .details .details-main .page_box a .txt {
    height: 100%;
  }
  .details .details-main .page_box a .txt span {
    line-height: 50px;
  }
  .details .details-main .page_box a .txt::after, .details .details-main .page_box a .txt::before {
    margin: 0 !important;
    position: absolute;
    right: 15px;
    top: 51%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    line-height: 20px;
  }
  .details .details-main .page_box a .txt::before {
    right: auto;
    left: 15px;
  }
}

@media (max-width: 468px) {
  .details .details-main .mod-content .content p {
    font-size: 14px;
  }
  .details .details-main .page_box a {
    font-size: 14px;
  }
  .details .details-main .page_box a .txt::after, .details .details-main .page_box a .txt::before {
    right: 10px;
  }
  .details .details-main .page_box a .txt::before {
    right: auto;
    left: 10px;
  }
}

.notice-list, .search-page, .mashup_page, .mashup_list {
  padding: 100px 0;
}

.notice-list .fu-left, .search-page .fu-left, .mashup_page .fu-left, .mashup_list .fu-left {
  width: 70%;
  float: left;
}

.notice-list .fu-left .fu-list .fu-item, .search-page .fu-left .fu-list .fu-item, .mashup_page .fu-left .fu-list .fu-item, .mashup_list .fu-left .fu-list .fu-item {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  position: relative;
}

.notice-list .fu-left .fu-list .fu-item::before, .search-page .fu-left .fu-list .fu-item::before, .mashup_page .fu-left .fu-list .fu-item::before, .mashup_list .fu-left .fu-list .fu-item::before {
  content: '';
  width: 100%;
  height: 0%;
  background-color: #004188;
  background-image: url(/static/img/web/bg/img-24.png);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  background-position: bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.notice-list .fu-left .fu-list .fu-item + .fu-item, .search-page .fu-left .fu-list .fu-item + .fu-item, .mashup_page .fu-left .fu-list .fu-item + .fu-item, .mashup_list .fu-left .fu-list .fu-item + .fu-item {
  border-top: 1px solid #e5e5e5;
}

.notice-list .fu-left .fu-list .fu-item a, .search-page .fu-left .fu-list .fu-item a, .mashup_page .fu-left .fu-list .fu-item a, .mashup_list .fu-left .fu-list .fu-item a {
  padding: 50px 0;
  display: block;
}

.notice-list .fu-left .fu-list .fu-item a .lsit-time, .search-page .fu-left .fu-list .fu-item a .lsit-time, .mashup_page .fu-left .fu-list .fu-item a .lsit-time, .mashup_list .fu-left .fu-list .fu-item a .lsit-time {
  color: #343434;
  font-weight: 400;
  text-align: right;
  width: 100px;
  margin: 0 50px;
}

.notice-list .fu-left .fu-list .fu-item a .lsit-time span, .search-page .fu-left .fu-list .fu-item a .lsit-time span, .mashup_page .fu-left .fu-list .fu-item a .lsit-time span, .mashup_list .fu-left .fu-list .fu-item a .lsit-time span {
  font-size: 60px;
}

.notice-list .fu-left .fu-list .fu-item a .lsit-time p, .search-page .fu-left .fu-list .fu-item a .lsit-time p, .mashup_page .fu-left .fu-list .fu-item a .lsit-time p, .mashup_list .fu-left .fu-list .fu-item a .lsit-time p {
  font-size: 24px;
}

.notice-list .fu-left .fu-list .fu-item a .list-text, .search-page .fu-left .fu-list .fu-item a .list-text, .mashup_page .fu-left .fu-list .fu-item a .list-text, .mashup_list .fu-left .fu-list .fu-item a .list-text {
  width: calc(100% - 200px);
  padding-right: 50px;
  line-height: 2;
}

.notice-list .fu-left .fu-list .fu-item a .list-text h1, .search-page .fu-left .fu-list .fu-item a .list-text h1, .mashup_page .fu-left .fu-list .fu-item a .list-text h1, .mashup_list .fu-left .fu-list .fu-item a .list-text h1 {
  font-size: 24px;
  font-weight: normal;
}

.notice-list .fu-left .fu-list .fu-item a .list-text p, .search-page .fu-left .fu-list .fu-item a .list-text p, .mashup_page .fu-left .fu-list .fu-item a .list-text p, .mashup_list .fu-left .fu-list .fu-item a .list-text p {
  font-size: 16px;
  color: #797979;
}

.notice-list .fu-left .fu-list .fu-item a .list-text span, .search-page .fu-left .fu-list .fu-item a .list-text span, .mashup_page .fu-left .fu-list .fu-item a .list-text span, .mashup_list .fu-left .fu-list .fu-item a .list-text span {
  color: #999999;
}

.notice-list .fu-left .fu-list .fu-item a .list-text span::after, .search-page .fu-left .fu-list .fu-item a .list-text span::after, .mashup_page .fu-left .fu-list .fu-item a .list-text span::after, .mashup_list .fu-left .fu-list .fu-item a .list-text span::after {
  content: '\e608';
  font-family: 'icon';
  margin-left: 20px;
  font-size: 20px;
  position: relative;
  top: 2px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.notice-list .fu-left .fu-list .fu-item:hover, .search-page .fu-left .fu-list .fu-item:hover, .mashup_page .fu-left .fu-list .fu-item:hover, .mashup_list .fu-left .fu-list .fu-item:hover {
  background-size: contain;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-box-shadow .3s .3s;
  transition: -webkit-box-shadow .3s .3s;
  -o-transition: box-shadow .3s .3s;
  transition: box-shadow .3s .3s;
  transition: box-shadow .3s .3s, -webkit-box-shadow .3s .3s;
}

.notice-list .fu-left .fu-list .fu-item:hover::before, .search-page .fu-left .fu-list .fu-item:hover::before, .mashup_page .fu-left .fu-list .fu-item:hover::before, .mashup_list .fu-left .fu-list .fu-item:hover::before {
  height: 100%;
}

.notice-list .fu-left .fu-list .fu-item:hover a, .search-page .fu-left .fu-list .fu-item:hover a, .mashup_page .fu-left .fu-list .fu-item:hover a, .mashup_list .fu-left .fu-list .fu-item:hover a {
  color: #fff;
}

.notice-list .fu-left .fu-list .fu-item:hover a .lsit-time, .search-page .fu-left .fu-list .fu-item:hover a .lsit-time, .mashup_page .fu-left .fu-list .fu-item:hover a .lsit-time, .mashup_list .fu-left .fu-list .fu-item:hover a .lsit-time {
  color: #fff;
}

.notice-list .fu-left .fu-list .fu-item:hover a .list-text p, .search-page .fu-left .fu-list .fu-item:hover a .list-text p, .mashup_page .fu-left .fu-list .fu-item:hover a .list-text p, .mashup_list .fu-left .fu-list .fu-item:hover a .list-text p {
  color: #9ec1eb;
}

.notice-list .fu-left .fu-list .fu-item:hover a .list-text span, .search-page .fu-left .fu-list .fu-item:hover a .list-text span, .mashup_page .fu-left .fu-list .fu-item:hover a .list-text span, .mashup_list .fu-left .fu-list .fu-item:hover a .list-text span {
  color: #fff;
}

.notice-list .fu-left .fu-list .fu-item:hover a .list-text span::after, .search-page .fu-left .fu-list .fu-item:hover a .list-text span::after, .mashup_page .fu-left .fu-list .fu-item:hover a .list-text span::after, .mashup_list .fu-left .fu-list .fu-item:hover a .list-text span::after {
  margin-left: 40px;
}

.notice-list .fu-right, .search-page .fu-right, .mashup_page .fu-right, .mashup_list .fu-right {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  width: 30%;
  float: left;
  padding-left: 100px;
}

.notice-list .fu-right h1, .search-page .fu-right h1, .mashup_page .fu-right h1, .mashup_list .fu-right h1 {
  margin-bottom: 10px;
}

.notice-list .fu-right form .search-inp, .search-page .fu-right form .search-inp, .mashup_page .fu-right form .search-inp, .mashup_list .fu-right form .search-inp {
  margin-top: 20px;
}

.notice-list .fu-right form .search-inp .dropdown, .search-page .fu-right form .search-inp .dropdown, .mashup_page .fu-right form .search-inp .dropdown, .mashup_list .fu-right form .search-inp .dropdown {
  width: 100%;
}

.notice-list .fu-right form .search-inp select, .search-page .fu-right form .search-inp select, .mashup_page .fu-right form .search-inp select, .mashup_list .fu-right form .search-inp select {
  opacity: 0;
}

.notice-list .fu-right form .submit, .search-page .fu-right form .submit, .mashup_page .fu-right form .submit, .mashup_list .fu-right form .submit {
  background-color: #004188;
  width: 100%;
  line-height: 42px;
  border: none;
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
}

@media (max-width: 991px) {
  .notice-list, .search-page, .mashup_page, .mashup_list {
    padding: 50px 0;
  }
  .notice-list .fu-left, .search-page .fu-left, .mashup_page .fu-left, .mashup_list .fu-left {
    width: calc(100% - 230px);
  }
  .notice-list .fu-left .fu-list .fu-item a, .search-page .fu-left .fu-list .fu-item a, .mashup_page .fu-left .fu-list .fu-item a, .mashup_list .fu-left .fu-list .fu-item a {
    padding: 30px 0;
  }
  .notice-list .fu-left .fu-list .fu-item a .lsit-time, .search-page .fu-left .fu-list .fu-item a .lsit-time, .mashup_page .fu-left .fu-list .fu-item a .lsit-time, .mashup_list .fu-left .fu-list .fu-item a .lsit-time {
    width: 65px;
  }
  .notice-list .fu-left .fu-list .fu-item a .list-text, .search-page .fu-left .fu-list .fu-item a .list-text, .mashup_page .fu-left .fu-list .fu-item a .list-text, .mashup_list .fu-left .fu-list .fu-item a .list-text {
    width: calc(100% - 180px);
    padding-right: 0;
  }
  .notice-list .fu-right, .search-page .fu-right, .mashup_page .fu-right, .mashup_list .fu-right {
    width: 230px;
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .notice-list, .search-page, .mashup_page, .mashup_list {
    padding: 10px 0 50px 0;
  }
  .notice-list .fu-left, .search-page .fu-left, .mashup_page .fu-left, .mashup_list .fu-left {
    width: 100%;
    float: none;
  }
  .notice-list .fu-left .fu-list .fu-item:before, .search-page .fu-left .fu-list .fu-item:before, .mashup_page .fu-left .fu-list .fu-item:before, .mashup_list .fu-left .fu-list .fu-item:before {
    width: 150%;
  }
  .notice-list .fu-left .fu-list .fu-item a .lsit-time, .search-page .fu-left .fu-list .fu-item a .lsit-time, .mashup_page .fu-left .fu-list .fu-item a .lsit-time, .mashup_list .fu-left .fu-list .fu-item a .lsit-time {
    width: 100%;
    margin: 0 0 10px 0;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .notice-list .fu-left .fu-list .fu-item a .lsit-time span, .notice-list .fu-left .fu-list .fu-item a .lsit-time p, .search-page .fu-left .fu-list .fu-item a .lsit-time span, .search-page .fu-left .fu-list .fu-item a .lsit-time p, .mashup_page .fu-left .fu-list .fu-item a .lsit-time span, .mashup_page .fu-left .fu-list .fu-item a .lsit-time p, .mashup_list .fu-left .fu-list .fu-item a .lsit-time span, .mashup_list .fu-left .fu-list .fu-item a .lsit-time p {
    display: inline-block;
    font-size: 16px;
  }
  .notice-list .fu-left .fu-list .fu-item a .lsit-time span::before, .search-page .fu-left .fu-list .fu-item a .lsit-time span::before, .mashup_page .fu-left .fu-list .fu-item a .lsit-time span::before, .mashup_list .fu-left .fu-list .fu-item a .lsit-time span::before {
    content: '/';
  }
  .notice-list .fu-left .fu-list .fu-item a .list-text, .search-page .fu-left .fu-list .fu-item a .list-text, .mashup_page .fu-left .fu-list .fu-item a .list-text, .mashup_list .fu-left .fu-list .fu-item a .list-text {
    width: 100%;
  }
  .notice-list .fu-left .fu-list .fu-item a .list-text h1, .search-page .fu-left .fu-list .fu-item a .list-text h1, .mashup_page .fu-left .fu-list .fu-item a .list-text h1, .mashup_list .fu-left .fu-list .fu-item a .list-text h1 {
    font-size: 18px;
    line-height: 1.8;
  }
  .notice-list .fu-left .fu-list .fu-item a .list-text p, .search-page .fu-left .fu-list .fu-item a .list-text p, .mashup_page .fu-left .fu-list .fu-item a .list-text p, .mashup_list .fu-left .fu-list .fu-item a .list-text p {
    font-size: 14px;
  }
  .notice-list .fu-right, .search-page .fu-right, .mashup_page .fu-right, .mashup_list .fu-right {
    float: none;
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
  }
}

.search-page .fu-left {
  width: 80%;
  margin: 0 auto;
  float: none;
}

.search-page .fu-left .search-box form {
  position: relative;
}

.search-page .fu-left .search-box form .search {
  width: 100%;
  height: 126px;
  margin: 30px 0;
  border: unset;
  outline: none;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 0;
  padding-left: 5.3846%;
  padding-right: 130px;
  line-height: .8rem;
  z-index: 1;
  font-size: 20px;
  -webkit-box-shadow: 0 23px 90px -5px rgba(29, 56, 72, 0.17);
          box-shadow: 0 23px 90px -5px rgba(29, 56, 72, 0.17);
}

.search-page .fu-left .search-box form .search::-webkit-input-placeholder {
  letter-spacing: 2px;
}

.search-page .fu-left .search-box form .submit {
  position: absolute;
  right: 0%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  color: #000;
  width: 120px;
  height: 86px;
  line-height: 86px;
  text-align: center;
  border: 0;
  background: unset;
  border-left: 1px solid #dfe5e8;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  background-color: #fff;
}

.search-page .fu-left .search-box form .submit .iconfont::before {
  font-size: 22px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.search-page .fu-left .search-box form .submit:hover .iconfont::before {
  color: #004a99;
}

.search-page .fu-left .search-box .search-result {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.search-page .fu-left .search-box .search-result strong {
  margin: 0 5px;
  color: #004a99;
}

@media (max-width: 1200px) {
  .search-page .fu-left {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .search-page {
    padding: 50px 0;
  }
  .search-page .fu-left {
    width: 100%;
  }
  .search-page .fu-left .search-box form .search {
    height: 70px;
  }
  .search-page .fu-left .search-box form .submit {
    height: 70px;
    line-height: 70px;
  }
}

@media (max-width: 767px) {
  .search-page .fu-left {
    width: 100%;
  }
  .search-page .fu-left .search-box form .search {
    height: 50px;
  }
  .search-page .fu-left .search-box form .submit {
    height: 50px;
    line-height: 50px;
    width: 85px;
  }
  .search-page .fu-left .search-box .search-result {
    font-size: 18px;
    margin-bottom: 0;
  }
}

.dropdown {
  position: relative;
  width: 160px;
  cursor: pointer;
  background: #fff;
  border-radius: 3px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.dropdown,
.dropdown div,
.dropdown li,
.dropdown div::after {
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.dropdown .selected::after,
.dropdown.scrollable div::after {
  pointer-events: none;
}

.dropdown.open {
  z-index: 2;
}

.dropdown.open div {
  opacity: 1;
  z-index: 2;
}

.dropdown:hover {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.dropdown.focus {
  -webkit-box-shadow: 0 0 5px rgba(51, 102, 248, 0.4);
          box-shadow: 0 0 5px rgba(51, 102, 248, 0.4);
}

.dropdown .carat {
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 100%;
  line-height: 42px;
  background-color: #004188;
  text-align: center;
}

.dropdown .carat::after {
  font-family: 'icon';
  content: '\e772';
  font-size: 14px;
  color: #fff;
}

.dropdown.disabled .carat {
  border-top-color: #999;
}

.dropdown.disabled .selected {
  color: #999;
}

.dropdown .old {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.dropdown select {
  position: absolute;
  left: 0px;
  top: 0px;
}

.dropdown.touch .old {
  width: 100%;
  height: 100%;
}

.dropdown.touch select {
  width: 100%;
  height: 100%;
  opacity: 0;
}

.dropdown .selected {
  background-color: #f7f8f9;
}

.dropdown .selected::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
}

.dropdown div {
  position: absolute;
  height: 0;
  left: -1px;
  right: -1px;
  top: 100%;
  margin-top: -1px;
  background: #fff;
  border: 1px solid #ccc;
  border-top: 1px solid #eee;
  border-radius: 0 0 3px 3px;
  overflow: hidden;
  opacity: 0;
}

.dropdown.scrollable div::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  -webkit-box-shadow: inset 0 -50px 30px -35px #fff;
          box-shadow: inset 0 -50px 30px -35px #fff;
}

.dropdown.scrollable.bottom div::after {
  opacity: 0;
}

.dropdown.scrollable.open ul {
  overflow-y: auto;
}

.dropdown ul {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  list-style: none;
  overflow: hidden;
}

.dropdown li {
  list-style: none;
  padding: 8px 12px;
}

.dropdown li.focus {
  background: #004188;
  position: relative;
  z-index: 3;
  color: #fff;
}

.dropdown li.active {
  font-weight: 700;
}

.dropdown .selected, .dropdown li {
  display: block;
  font-size: 18px;
  line-height: 1;
  color: #000;
  padding: 0 12px;
  overflow: hidden;
  white-space: nowrap;
  line-height: 42px;
}

.mashup_page, .mashup_list {
  overflow: hidden;
}

.mashup_page .fu-left .list, .mashup_list .fu-left .list {
  margin-top: 20px;
}

.mashup_page .fu-left .list:first-child, .mashup_list .fu-left .list:first-child {
  margin-top: 0;
}

.mashup_page .fu-left .list .part_title, .mashup_list .fu-left .list .part_title {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.mashup_page .fu-left .list .part_title .title, .mashup_list .fu-left .list .part_title .title {
  display: inline-block;
  padding: 20px 0;
  border-bottom: 3px solid #004a9a;
  color: #343434;
  font-size: 28px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.mashup_page .fu-left .list .part_title .more, .mashup_list .fu-left .list .part_title .more {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  color: #5f6464;
}

.mashup_page .fu-left .list .part_title .more .iconfont, .mashup_list .fu-left .list .part_title .more .iconfont {
  display: inline-block;
  font-size: 20px;
  margin-left: 15px;
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}

.mashup_page .fu-left .list .part_title .more:hover, .mashup_list .fu-left .list .part_title .more:hover {
  color: #004a9a;
}

.mashup_page .fu-left .list .itembox, .mashup_list .fu-left .list .itembox {
  padding: 15px 0;
}

.mashup_page .fu-left .list .itembox .item, .mashup_list .fu-left .list .itembox .item {
  display: block;
  padding: 17px 0;
  width: 100%;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.mashup_page .fu-left .list .itembox .item .text, .mashup_page .fu-left .list .itembox .item .time, .mashup_list .fu-left .list .itembox .item .text, .mashup_list .fu-left .list .itembox .item .time {
  display: inline-block;
}

.mashup_page .fu-left .list .itembox .item .text, .mashup_list .fu-left .list .itembox .item .text {
  font-size: 20px;
  color: #343434;
  width: calc(100% - 100px);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.mashup_page .fu-left .list .itembox .item .text::before, .mashup_list .fu-left .list .itembox .item .text::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #e1e1e1;
  margin: 0 15px;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.mashup_page .fu-left .list .itembox .item .time, .mashup_list .fu-left .list .itembox .item .time {
  width: 80px;
  margin-left: 20px;
  font-size: 14px;
  position: relative;
  top: -4px;
  color: #797979;
}

.mashup_page .fu-left .list .itembox .item:hover, .mashup_list .fu-left .list .itembox .item:hover {
  background-color: #f7f8f9;
}

.mashup_page .fu-left .list .itembox .item:hover .text, .mashup_list .fu-left .list .itembox .item:hover .text {
  color: #004188;
}

.mashup_page .fu-left .list .itembox .item:hover .text::before, .mashup_list .fu-left .list .itembox .item:hover .text::before {
  background-color: #7d7d7d;
}

@media (max-width: 768px) {
  .mashup_page .fu-left .list .part_title .title, .mashup_list .fu-left .list .part_title .title {
    font-size: 20px;
    padding: 15px 0;
  }
  .mashup_page .fu-left .list .part_title .more, .mashup_list .fu-left .list .part_title .more {
    font-size: 14px;
  }
  .mashup_page .fu-left .list .itembox .item, .mashup_list .fu-left .list .itembox .item {
    padding: 10px 0;
  }
  .mashup_page .fu-left .list .itembox .item .text, .mashup_list .fu-left .list .itembox .item .text {
    font-size: 16px;
  }
  .mashup_page .fu-left .list .itembox .item .time, .mashup_list .fu-left .list .itembox .item .time {
    font-size: 13px;
  }
}

.mashup_page .fu-right, .mashup_list .fu-right {
  position: unset;
}

.mashup_list .fu-left .list .part_title {
  margin-bottom: 15px;
}

.mashup_list .fu-left .list .itembox {
  border-bottom: 1px dashed #e7e7e7;
  padding: 20px 0;
}

.mashup_list .fu-left .list .itembox:last-child {
  border-bottom: unset;
}

.mashup_list .fu-left .list .itembox .item {
  padding: 10px 0;
}

.directory {
  width: 100%;
  margin-top: 90px;
}

.directory .part_title {
  font-size: 28px;
  color: #343434;
  margin-bottom: 30px;
}

.directory .itembox .item {
  display: block;
  margin-bottom: 5px;
  line-height: 56px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  position: relative;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.directory .itembox .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #0868cc;
  z-index: -1;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.directory .itembox .item .iconfont {
  margin: 0 20px;
  font-size: 24px;
  color: #0868cc;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: relative;
}

.directory .itembox .item:nth-child(2n)::before {
  background-color: #e2be82;
}

.directory .itembox .item:nth-child(2n) .iconfont {
  color: #e2be82;
}

.directory .itembox .item:hover {
  color: #004188;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-5px);
      -ms-transform: translateX(-5px);
          transform: translateX(-5px);
}

.directory .itembox .item:hover .iconfont {
  -webkit-animation: td_loop 1.2s linear infinite;
          animation: td_loop 1.2s linear infinite;
}

@keyframes td_loop {
  0% {
    top: 3px;
  }
  50% {
    top: -3px;
  }
  100% {
    top: 3px;
  }
}

.directory .itembox .item:hover:nth-child(2n) {
  color: #e2be82;
}

.party-news {
  padding-bottom: 100px;
}

.party-news .pagination {
  clear: both;
  display: none;
}

.party-news .pagination li .p-item {
  font-size: 16px;
}

.party-news .pagination li .p-item.prev::after, .party-news .pagination li .p-item.next::after {
  color: #d46c6c;
  -webkit-box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 3px 24px 0px rgba(0, 0, 0, 0.09);
}

.party-news .pagination li .p-item.prev:hover, .party-news .pagination li .p-item.next:hover {
  background: #d46c6c;
}

.party-news .pagination li .p-item.prev:hover::after, .party-news .pagination li .p-item.next:hover::after {
  color: #fff;
}

.party-news .pagination li .p-item.p-num.active, .party-news .pagination li .p-item.p-num:hover {
  color: #d46c6c;
}

.party-news .fu-left {
  width: 40%;
  float: left;
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
}

.party-news .fu-left .fu-title {
  margin-bottom: 20px;
  padding-top: 6vw;
}

.party-news .fu-left .fu-bg {
  float: right;
  margin-bottom: 60px;
}

.party-news .fu-left .pagination {
  display: block;
}

.party-news .fu-right {
  width: 60%;
  float: right;
}

.party-news .fu-right .fu-list {
  padding-bottom: 100px;
}

.party-news .fu-right .fu-list .fu-item {
  width: calc(50% - 40px);
  margin-top: 6vw;
  float: left;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.party-news .fu-right .fu-list .fu-item:nth-of-type(odd) {
  margin-right: 40px;
}

.party-news .fu-right .fu-list .fu-item:nth-of-type(even) {
  margin-left: 40px;
}

.party-news .fu-right .fu-list .fu-item:nth-of-type(even) .box {
  -webkit-transform: translateY(6vw);
      -ms-transform: translateY(6vw);
          transform: translateY(6vw);
}

.party-news .fu-right .fu-list .fu-item .box {
  display: block;
}

.party-news .fu-right .fu-list .fu-item .top_box .img_block .bg-img {
  width: 100%;
  height: 0;
  padding-bottom: 130%;
  position: relative;
}

.party-news .fu-right .fu-list .fu-item .top_box .img_block .bg-img::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 130%;
  opacity: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#bf3832), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, #bf3832, rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, #bf3832, rgba(0, 0, 0, 0));
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.party-news .fu-right .fu-list .fu-item:hover .top_box .img_block .bg-img::after {
  opacity: 1;
}

.party-news .fu-right .fu-list .fu-item:hover .bot_box .fu-title {
  color: #bd1d1d;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.party-news .fu-right .fu-list .fu-item .bot_box .fu-title {
  padding-top: 0;
  font-size: 24px;
  color: #343434;
  margin: 40px 0;
  line-height: 1.5;
  height: 3em;
}

.party-news .fu-right .fu-list .fu-item .bot_box .more-box .more::after {
  content: '\e608';
  font-family: 'icon';
  margin-left: 20px;
}

@media (max-width: 1240px) {
  .party-news {
    overflow: hidden;
  }
  .party-news .pagination {
    display: block;
  }
  .party-news .fu-left {
    width: 100%;
    padding-top: 70px;
    position: unset;
  }
  .party-news .fu-left .fu-title {
    padding-top: 0;
    width: 37vw;
  }
  .party-news .fu-left .fu-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    margin: 0;
  }
  .party-news .fu-left .pagination {
    display: none;
  }
  .party-news .fu-right {
    width: 100%;
  }
  .party-news .fu-right .fu-list .fu-item {
    width: 25%;
    padding: 0 15px;
  }
  .party-news .fu-right .fu-list .fu-item:nth-last-of-type(even) {
    margin-right: 0px;
  }
  .party-news .fu-right .fu-list .fu-item:nth-last-of-type(even) .box {
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }
  .party-news .fu-right .fu-list .fu-item:nth-last-of-type(odd) {
    margin-left: 0;
  }
  .party-news .fu-right .fu-list .fu-item:nth-last-of-type(odd) .box {
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }
  .party-news .fu-right .fu-list .fu-item .bot_box .fu-title {
    margin: 30px 0;
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .party-news .fu-right .fu-list .fu-item {
    width: 33.3333333%;
  }
}

@media (max-width: 768px) {
  .party-news {
    padding-bottom: 50px;
  }
  .party-news .fu-left {
    padding-top: 50px;
  }
  .party-news .fu-left .fu-title {
    width: 50vw;
  }
  .party-news .fu-right .fu-list {
    padding-bottom: 50px;
  }
  .party-news .fu-right .fu-list .fu-item {
    width: 50%;
    margin-top: 30px;
  }
}

@media (max-width: 468px) {
  .party-news .fu-right .fu-list .fu-item {
    width: 100%;
  }
}

.culture {
  width: 100%;
  overflow: hidden;
}

.culture .mod-1 {
  border-bottom: 1px solid #e5e5e5;
  padding: 100px 15px;
}

.culture .mod-1 .fu-left {
  width: 50%;
  padding-top: 50px;
}

.culture .mod-1 .fu-left h1 {
  font-size: 40px;
  font-weight: 400;
}

.culture .mod-1 .fu-left p {
  font-size: 16px;
  color: #797979;
  line-height: 2;
  margin-top: 20px;
}

.culture .mod-1 .pull-right {
  position: relative;
  overflow: hidden;
  width: 35%;
}

.culture .mod-1 .pull-right img {
  width: 100%;
}

.culture .mod-1 .pull-right::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-animation: left_100 .8s ease-in-out 1;
          animation: left_100 .8s ease-in-out 1;
}

@-webkit-keyframes left_100 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@keyframes left_100 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@media (max-width: 991px) {
  .culture .mod-1 .fu-left {
    padding-top: 30px;
  }
  .culture .mod-1 .fu-left h1 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .culture .mod-1 {
    padding: 50px 15px;
  }
  .culture .mod-1 .fu-left {
    padding-top: 0;
    width: 100%;
    float: none !important;
  }
  .culture .mod-1 .pull-right {
    width: 430px;
    max-width: 100%;
    margin: 30px auto 0;
    float: none !important;
  }
}

.culture .mod-2 {
  background-image: url(/static/img/web/bg/img-6.png);
  margin: 30px 0 100px;
  padding: 100px 0 200px;
  position: relative;
}

.culture .mod-2 .left-bg,
.culture .mod-2 .right-bg {
  content: '';
  display: block;
  position: absolute;
  width: 710px;
  height: 100%;
  max-width: 40%;
}

.culture .mod-2 .left-bg {
  left: 0;
  bottom: 0;
  background: url(/static/img/web/bg/img-27.png) no-repeat left bottom;
  background-size: contain;
}

.culture .mod-2 .right-bg {
  right: 0;
  top: 0;
  background: url(/static/img/web/bg/img-26.png) no-repeat right top;
  background-size: contain;
}

.culture .mod-2 .fu-list .fu-item {
  width: 600px;
  position: relative;
  margin: 0 auto;
  padding-bottom: 100px;
}

.culture .mod-2 .fu-list .fu-item .num {
  font-size: 72px;
  color: #f1f3f5;
  position: absolute;
  left: 0;
  top: -50px;
  z-index: -1;
  overflow: hidden;
}

.culture .mod-2 .fu-list .fu-item .num span {
  display: block;
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}

.culture .mod-2 .fu-list .fu-item h1 {
  font-size: 36px;
  font-weight: normal;
  position: relative;
}

.culture .mod-2 .fu-list .fu-item h1 span {
  color: #004188;
}

.culture .mod-2 .fu-list .fu-item h1::after {
  content: '';
  display: inline-block;
  width: 286px;
  border-top: 1px solid #004188;
  position: absolute;
  left: 11em;
  top: 25px;
}

.culture .mod-2 .fu-list .fu-item p {
  font-size: 16px;
  color: #797979;
  line-height: 2;
  height: 6em;
  margin-top: 10px;
}

.culture .mod-2 .fu-list .fu-item:first-child {
  -webkit-transform: translateX(-45%);
      -ms-transform: translateX(-45%);
          transform: translateX(-45%);
}

.culture .mod-2 .fu-list .fu-item:nth-child(2) h1::after {
  left: auto;
  right: 105%;
}

.culture .mod-2 .fu-list .fu-item:last-child {
  -webkit-transform: translateX(30%);
      -ms-transform: translateX(30%);
          transform: translateX(30%);
}

@media (max-width: 1200px) {
  .culture .mod-2 .fu-list .fu-item h1::after {
    display: none;
  }
  .culture .mod-2 .fu-list .fu-item:first-child {
    -webkit-transform: translateX(-20%);
        -ms-transform: translateX(-20%);
            transform: translateX(-20%);
  }
}

@media (max-width: 991px) {
  .culture .mod-2 .fu-list .fu-item:first-child {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .culture .mod-2 {
    padding: 100px 0 90%;
  }
  .culture .mod-2 .fu-list .fu-item {
    width: 100%;
    -webkit-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
            transform: translateX(0) !important;
    padding: 0 50px;
  }
  .culture .mod-2 .fu-list .fu-item h1 {
    font-size: 20px;
  }
  .culture .mod-2 .left-bg {
    max-width: 80%;
  }
}

@media (max-width: 440px) {
  .culture .mod-2 {
    padding: 50px 0 100%;
  }
  .culture .mod-2 .fu-list .fu-item {
    padding: 0 20px 0 50px;
  }
  .culture .mod-2 .right-bg {
    background-position: right 80%;
  }
}

.culture .mod-3 {
  position: relative;
  padding: 100px 0 200px;
  background: url(/static/img/web/bg/img-28.png) no-repeat bottom;
  background-size: cover;
}

.culture .mod-3 .container {
  position: relative;
  z-index: 1;
}

.culture .mod-3 .container h1.tit {
  font-size: 40px;
  font-weight: 400;
  color: #343434;
  margin-bottom: 100px;
}

.culture .mod-3 .container .development {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.culture .mod-3 .container .development .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  text-align: center;
}

.culture .mod-3 .container .development .item p {
  margin-bottom: 40px;
  display: block;
  position: relative;
}

.culture .mod-3 .container .development .item p.title {
  width: 170px;
  background: #004188;
  border-radius: 20px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  margin: 0 auto;
}

.culture .mod-3 .container .development .item p.title::after {
  display: none;
}

.culture .mod-3 .container .development .item p::after {
  content: '';
  position: absolute;
  display: block;
  width: 160px;
  border-top: 1px solid #e5e5e5;
  top: 10px;
}

.culture .mod-3 .container .development .item:nth-child(1) p::after {
  left: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.culture .mod-3 .container .development .item:nth-child(2) p::after {
  left: 70%;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.culture .mod-3 .container .development .item:nth-child(2) p:nth-child(1)::after {
  width: 260px;
}

.culture .mod-3 .container .development .item:nth-child(2) p:nth-child(2)::after {
  width: 220px;
}

.culture .mod-3 .container .development .item:nth-child(2) p:nth-child(3)::after {
  width: 180px;
}

.culture .mod-3 .container .development .item:nth-child(2) p:nth-child(4)::after {
  width: 140px;
}

.culture .mod-3 .container .development .item:nth-child(2) p:nth-child(5)::after {
  width: 100px;
}

.culture .mod-3 .container .development .item:nth-child(5) p::after {
  right: 100%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

.culture .mod-3 .container .development .item:nth-child(4) p::after {
  right: 70%;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.culture .mod-3 .container .development .item:nth-child(4) p:nth-child(1)::after {
  width: 260px;
}

.culture .mod-3 .container .development .item:nth-child(4) p:nth-child(2)::after {
  width: 220px;
}

.culture .mod-3 .container .development .item:nth-child(4) p:nth-child(3)::after {
  width: 180px;
}

.culture .mod-3 .container .development .item:nth-child(4) p:nth-child(4)::after {
  width: 140px;
}

.culture .mod-3 .container .development .item:nth-child(4) p:nth-child(5)::after {
  width: 100px;
}

@media (max-width: 1380px) {
  .culture .mod-3 .container .development .item:nth-child(3) {
    min-width: 25%;
    margin-top: 10%;
  }
  .culture .mod-3 .container .development .item:nth-child(3) img {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .culture .mod-3 .container .development {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .culture .mod-3 .container .development .item {
    width: 25%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .culture .mod-3 .container .development .item:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 50%;
  }
  .culture .mod-3 .container .development .item p::after {
    left: 100% !important;
    right: auto !important;
    width: 25% !important;
    -webkit-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
  }
  .culture .mod-3 .container .development .item:last-child p::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .culture .mod-3 {
    padding: 50px 0;
  }
  .culture .mod-3 .container h1.tit {
    margin-bottom: 50px;
  }
  .culture .mod-3 .container .development {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .culture .mod-3 .container .development .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .culture .mod-3 .container .development .item p {
    width: 33.3%;
  }
  .culture .mod-3 .container .development .item p:nth-child(1) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .culture .mod-3 .container .development .item p:nth-child(2) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .culture .mod-3 .container .development .item p:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .culture .mod-3 .container .development .item p:nth-child(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .culture .mod-3 .container .development .item p:nth-child(5) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .culture .mod-3 .container .development .item p::after {
    display: none;
  }
  .culture .mod-3 .container .development .item:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .culture .mod-3 .container .development .item p.title {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-right: calc(100% - 170px);
    margin-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .culture .mod-3 .container .development .item:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
  }
}

.culture .mod-4 {
  padding: 100px 15px;
}

.culture .mod-4 h1.tit {
  font-size: 40px;
  color: #343434;
  position: relative;
  font-weight: normal;
}

.culture .mod-4 h1.tit::after {
  content: '';
  position: absolute;
  left: 5em;
  top: 30px;
  display: block;
  width: 286px;
  border-top: 1px solid #004188;
}

.culture .mod-4 .swiper-container {
  overflow: visible;
  --swiper-theme-color: #004a9a;
}

.culture .mod-4 .swiper-container .swiper-slide {
  opacity: 0 !important;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.culture .mod-4 .swiper-container .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item {
  padding: 75px;
  margin-top: 150px;
  width: 100%;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item h1 {
  font-size: 30px;
  color: #343434;
  font-weight: normal;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item h1 span {
  font-size: 14px;
  color: #797979;
  margin-left: 30px;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item .info {
  margin-bottom: 100px;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item {
  float: left;
  margin-top: 50px;
  margin-right: 100px;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item span {
  display: block;
  color: #797979;
  margin-bottom: 10px;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item p {
  font-size: 18px;
  color: #343434;
  line-height: 1.5;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item p.text {
  height: 4.5em;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item:last-child, .culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item.fu-row {
  width: 50%;
  clear: both;
}

.culture .mod-4 .swiper-container .swiper-slide .swiper-item .picture {
  position: absolute;
  right: 80px;
  bottom: 80px;
  width: 400px;
  height: 0;
  padding-bottom: 35%;
}

.culture .mod-4 .swiper-container .swiper-pagination {
  text-align: left;
  bottom: 80px;
  left: 80px;
}

.culture .mod-4 .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin-right: 30px;
}

@media (max-width: 1136px) {
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .picture {
    background-size: contain;
  }
}

@media (max-width: 991px) {
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item {
    margin-top: 50px;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .picture {
    right: 0;
    top: 80px;
  }
}

@media (max-width: 767px) {
  .culture .mod-4 {
    padding: 50px 15px;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item {
    padding: 30px;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .picture {
    position: unset;
    width: 100%;
    padding-bottom: 70%;
    margin-bottom: 30px;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item {
    margin-top: 20px;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item.fu-row {
    width: 100%;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item.fu-row p {
    text-align: justify;
  }
}

@media (max-width: 450px) {
  .culture .mod-4 h1.tit {
    font-size: 28px;
  }
  .culture .mod-4 h1.tit::after {
    display: none;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .name {
    font-size: 20px;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .info {
    margin-bottom: 30px;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item {
    margin-top: 20px;
  }
  .culture .mod-4 .swiper-container .swiper-slide .swiper-item .info .item p {
    font-size: 15px;
    height: auto !important;
  }
  .culture .mod-4 .swiper-container .swiper-pagination {
    left: 0;
    bottom: 30px;
    text-align: center;
  }
}

.introduction {
  background: url(/static/img/web/bg/img-30.png) no-repeat bottom;
  background-size: contain;
  background-position: bottom;
  padding-bottom: 250px;
}

.introduction .fu-list {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px 50px;
  background-color: #fff;
}

.introduction .fu-list .fu-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
  display: block;
}

.introduction .fu-list .fu-item:last-child {
  border: none;
}

.introduction .fu-list .fu-item h1 {
  font-size: 18px;
  font-weight: 400;
  color: #343434;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.introduction .fu-list .fu-item h1 span {
  font-size: 13px;
  color: #797979;
  margin-left: 10px;
}

.introduction .fu-list .fu-item p {
  font-size: 16px;
  color: #797979;
  line-height: 2;
  margin-top: 10px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.introduction .fu-list .fu-item p::before {
  content: '●';
  margin-right: 10px;
  font-size: 14px;
}

.introduction .fu-list .fu-item .more {
  position: absolute;
  background: #cfab6f;
  color: #fff;
  padding: 10px 20px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.introduction .fu-list .fu-item .more:hover {
  background: #004188;
}

.introduction .fu-list .fu-item:hover h1, .introduction .fu-list .fu-item:hover p {
  color: #004188;
}

@media (max-width: 1080px) {
  .introduction .fu-list .fu-item .more {
    position: unset;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    display: inline-block;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .introduction .fu-list {
    padding: 20px;
  }
}

@-webkit-keyframes moveCloud1 {
  0% {
    opacity: 1;
    background-position: 0 0;
  }
  30% {
    opacity: .5;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: .5;
  }
  100% {
    opacity: 1;
    background-position: 817px 0;
  }
}

@keyframes moveCloud1 {
  0% {
    opacity: 1;
    background-position: 0 0;
  }
  30% {
    opacity: .5;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: .5;
  }
  100% {
    opacity: 1;
    background-position: 817px 0;
  }
}

@-webkit-keyframes moveCloud2 {
  0% {
    opacity: 1;
    background-position: 408px 0;
  }
  30% {
    opacity: .5;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: .5;
  }
  100% {
    opacity: 1;
    background-position: 1225px 0;
  }
}

@keyframes moveCloud2 {
  0% {
    opacity: 1;
    background-position: 408px 0;
  }
  30% {
    opacity: .5;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: .5;
  }
  100% {
    opacity: 1;
    background-position: 1225px 0;
  }
}

@-webkit-keyframes heartbeat1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes heartbeat1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.group-info {
  background: url(/static/img/web/bg/img-32.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 920px;
  min-height: 100vh;
  display: table;
}

.group-info .cell {
  vertical-align: middle;
  padding: 100px 0;
}

.group-info .fu-left {
  width: 60%;
  max-width: 860px;
  padding-right: 100px;
  position: relative;
}

.group-info .fu-left:after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  width: 100%;
  height: 501px;
  z-index: 10;
  background: url(/static/img/web/bg/img-33.png) repeat-x;
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: moveCloud1 30s linear infinite;
          animation: moveCloud1 30s linear infinite;
}

.group-info .fu-left:before {
  position: absolute;
  display: block;
  content: "";
  bottom: 80px;
  width: 100%;
  height: 450px;
  z-index: 10;
  background: url(/static/img/web/bg/img-33.png) repeat-x;
  -webkit-transform: translateZ(0) scaleY(-1);
          transform: translateZ(0) scaleY(-1);
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-animation: moveCloud2 30s linear infinite;
          animation: moveCloud2 30s linear infinite;
}

.group-info .fu-left .bg {
  width: 100%;
}

.group-info .fu-left .after-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -50px;
  left: -50px;
  z-index: 11;
  background: url(/static/img/web/bg/img-34.png) no-repeat center;
}

.group-info .fu-left .after-bg span {
  border-radius: 50%;
  display: block;
  width: 120px;
  height: 120px;
  background: rgba(0, 74, 154, 0.3);
  position: absolute;
  margin: 0 0 0 -30px;
  -webkit-animation: heartbeat1 2s infinite;
          animation: heartbeat1 2s infinite;
}

.group-info .fu-left .after-bg span.center {
  left: 50%;
  top: 50%;
}

.group-info .fu-left .after-bg span img {
  width: 50%;
  background-color: #004A9A;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.group-info .fu-left .after-bg span:nth-child(1) {
  left: 40%;
  top: 9%;
  width: 90px;
  height: 90px;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.group-info .fu-left .after-bg span:nth-child(2) {
  left: 23%;
  top: 33%;
  width: 90px;
  height: 90px;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.group-info .fu-left .after-bg span:nth-child(3) {
  left: 41%;
  top: 27%;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.group-info .fu-left .after-bg span:nth-child(4) {
  left: 65%;
  top: 30%;
  width: 114px;
  height: 114px;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.group-info .fu-left .after-bg span:nth-child(5) {
  left: 30%;
  top: 35%;
  width: 154px;
  height: 154px;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.group-info .fu-left .after-bg span:nth-child(6) {
  left: 70%;
  top: 65%;
  width: 123px;
  height: 123px;
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.group-info .fu-left .after-bg span:nth-child(7) {
  left: 40%;
  top: 75%;
  width: 73px;
  height: 73px;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.group-info .fu-right {
  max-width: 40%;
  padding-top: 100px;
  padding-right: 15px;
}

.group-info .fu-right .title {
  font-size: 36px;
  color: #004188;
  font-weight: 400;
}

.group-info .fu-right .title::before {
  content: '';
  display: block;
  border-top: 4px solid #004188;
  margin: 20px 0;
}

.group-info .fu-right .fu-list {
  font-size: 18px;
  padding-top: 30px;
}

.group-info .fu-right .fu-list .fu-item {
  margin: 50px 0;
}

.group-info .fu-right .fu-list .fu-item .tit {
  display: inline-block;
}

.group-info .fu-right .fu-list .fu-item .tit i {
  color: #004188;
  font-size: 24px;
  margin-right: 20px;
  display: inline-block;
  -webkit-transform: translateY(4px);
      -ms-transform: translateY(4px);
          transform: translateY(4px);
}

.group-info .fu-right .fu-list .fu-item .tit h3 {
  display: inline-block;
  font-size: 17px;
  margin-right: 10px;
}

.group-info .fu-right .fu-list .fu-item p {
  display: inline-block;
}

@media (max-width: 1400px) {
  .group-info .fu-right {
    padding-top: 50px;
  }
}

@media (max-width: 1244px) {
  .group-info .fu-left .after-bg {
    background-size: 50%;
  }
  .group-info .fu-right {
    padding-top: 0;
  }
  .group-info .fu-right .title {
    font-size: 28px;
  }
  .group-info .fu-right .fu-list .fu-item {
    margin: 30px 0;
  }
}

@media (max-width: 991px) {
  .group-info .fu-left {
    width: 80%;
    float: none !important;
    margin: 0 10%;
    padding-right: 0;
  }
  .group-info .fu-right {
    float: none !important;
    width: 100%;
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .group-info .fu-left::after, .group-info .fu-left:before {
    height: 100%;
  }
  .group-info .fu-left .after-bg span:nth-child(1) {
    width: 25%;
    height: 25%;
  }
  .group-info .fu-left .after-bg span:nth-child(2) {
    width: 25%;
    height: 25%;
  }
  .group-info .fu-left .after-bg span:nth-child(3) {
    width: 20%;
    height: 20%;
  }
  .group-info .fu-left .after-bg span:nth-child(4) {
    width: 23%;
    height: 23%;
  }
  .group-info .fu-left .after-bg span:nth-child(5) {
    display: none;
  }
  .group-info .fu-left .after-bg span:nth-child(6) {
    width: 25%;
    height: 25%;
  }
  .group-info .fu-left .after-bg span:nth-child(7) {
    width: 20%;
    height: 20%;
  }
  .group-info .fu-right .title {
    font-size: 19px;
  }
  .group-info .fu-right .title:before {
    border-top: 1px solid #004188;
    margin-bottom: 10px;
  }
  .group-info .fu-right .fu-list .fu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .group-info .fu-right .fu-list .fu-item .tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .group-info .fu-right .fu-list .fu-item .tit i {
    margin-right: 10px;
  }
  .group-info .fu-right .fu-list .fu-item .tit h3 {
    white-space: nowrap;
  }
}

.branch-address {
  position: relative;
}

.branch-address .fu-left {
  width: 500px;
  max-width: calc(40% - 115px);
  position: absolute;
  right: 60%;
  top: 50px;
  margin-right: 100px;
  height: calc(100% - 100px);
  overflow-x: scroll;
}

.branch-address .fu-left::-webkit-scrollbar-thumb {
  display: none;
}

.branch-address .fu-left .fu-list .fu-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 0;
  margin-top: 10px;
  cursor: pointer;
}

.branch-address .fu-left .fu-list .fu-item .text {
  position: relative;
}

.branch-address .fu-left .fu-list .fu-item .text .tit {
  font-size: 22px;
  font-weight: 400;
  color: #343434;
  line-height: 2;
  color: inherit;
}

.branch-address .fu-left .fu-list .fu-item .text .icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: inherit;
}

.branch-address .fu-left .fu-list .fu-item .fu-info {
  background-color: #004a9a;
  color: #fff;
  padding: 0 20px;
  line-height: 2;
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.branch-address .fu-left .fu-list .fu-item.active {
  color: #004a9a;
}

.branch-address .fu-left .fu-list .fu-item.active .fu-info {
  padding: 20px;
  max-height: 500px;
}

.branch-address .fu-right {
  width: 60%;
  height: 100vh;
  min-height: 920px;
  background-color: #004188;
}

.branch-address .fu-right #map {
  width: 100%;
  height: 100%;
}

.branch-address .fu-right #map .BMap_cpyCtrl {
  display: none;
}

@media (max-width: 1500px) {
  .branch-address .fu-left {
    margin: 0 40px;
  }
}

@media (max-width: 1180px) {
  .branch-address .fu-left {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 40px;
    position: unset;
    height: auto;
  }
  .branch-address .fu-right {
    width: 100%;
    height: 65vh;
    min-height: 65vh;
  }
}

@media (max-width: 991px) {
  .branch-address .fu-left {
    padding: 15px;
  }
  .branch-address .fu-left .fu-list .fu-item .text .tit {
    font-size: 16px;
    font-weight: 700;
  }
}

.business-title, .property .mod-1 .fu-left h1, .other-business .mod-1 .fu-right h1, .other-business .mod-2 .title h1 {
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 40px;
  position: relative;
  line-height: 1;
}

.business-title::after, .property .mod-1 .fu-left h1::after, .other-business .mod-1 .fu-right h1::after, .other-business .mod-2 .title h1::after {
  content: '';
  width: 7px;
  height: 100%;
  background-color: #caad73;
  position: absolute;
  left: -50px;
  top: 3px;
}

@media (max-width: 992px) {
  .business-title, .property .mod-1 .fu-left h1, .other-business .mod-1 .fu-right h1, .other-business .mod-2 .title h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .business-title::after, .property .mod-1 .fu-left h1::after, .other-business .mod-1 .fu-right h1::after, .other-business .mod-2 .title h1::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .business-title, .property .mod-1 .fu-left h1, .other-business .mod-1 .fu-right h1, .other-business .mod-2 .title h1 {
    font-size: 26px;
  }
}

@media (max-width: 468px) {
  .business-title, .property .mod-1 .fu-left h1, .other-business .mod-1 .fu-right h1, .other-business .mod-2 .title h1 {
    font-size: 24px;
  }
}

.business-menu, .property .mod-2 .fu-menu, .other-business .mod-2 .fu-left .fu-menu {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}

.business-menu::after, .property .mod-2 .fu-menu::after, .other-business .mod-2 .fu-left .fu-menu::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  display: block;
  width: 100%;
  border-top: 1px solid #ccc;
  z-index: -1;
}

.business-menu li, .property .mod-2 .fu-menu li, .other-business .mod-2 .fu-left .fu-menu li {
  cursor: pointer;
  display: inline-block;
  font-size: 22px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  width: 30vw;
}

.business-menu li p, .property .mod-2 .fu-menu li p, .other-business .mod-2 .fu-left .fu-menu li p {
  margin-top: 15px;
}

.business-menu li i, .property .mod-2 .fu-menu li i, .other-business .mod-2 .fu-left .fu-menu li i {
  display: block;
  width: 28px;
  height: 28px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  background-color: #fff;
}

.business-menu li i::after, .property .mod-2 .fu-menu li i::after, .other-business .mod-2 .fu-left .fu-menu li i::after {
  content: '';
  display: block;
  width: 9.33333px;
  height: 9.33333px;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: inherit;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.business-menu li.active, .property .mod-2 .fu-menu li.active, .other-business .mod-2 .fu-left .fu-menu li.active, .business-menu li:hover, .property .mod-2 .fu-menu li:hover, .other-business .mod-2 .fu-left .fu-menu li:hover {
  color: #004188;
}

.business-menu li.active i, .property .mod-2 .fu-menu li.active i, .other-business .mod-2 .fu-left .fu-menu li.active i, .business-menu li:hover i, .property .mod-2 .fu-menu li:hover i, .other-business .mod-2 .fu-left .fu-menu li:hover i {
  width: 28px;
  height: 28px;
  border-width: 5px;
  border-color: #fff;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-box-shadow: 0 0 30px rgba(0, 65, 136, 0.4);
          box-shadow: 0 0 30px rgba(0, 65, 136, 0.4);
}

.business-menu li.active i::after, .property .mod-2 .fu-menu li.active i::after, .other-business .mod-2 .fu-left .fu-menu li.active i::after, .business-menu li:hover i::after, .property .mod-2 .fu-menu li:hover i::after, .other-business .mod-2 .fu-left .fu-menu li:hover i::after {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 5px solid #004188;
}

@media (max-width: 1240px) {
  .business-menu, .property .mod-2 .fu-menu, .other-business .mod-2 .fu-left .fu-menu {
    margin-bottom: 75px;
  }
}

@media (max-width: 992px) {
  .business-menu, .property .mod-2 .fu-menu, .other-business .mod-2 .fu-left .fu-menu {
    margin-bottom: 50px;
  }
  .business-menu li, .property .mod-2 .fu-menu li, .other-business .mod-2 .fu-left .fu-menu li {
    font-size: 20px;
  }
  .business-menu li p, .property .mod-2 .fu-menu li p, .other-business .mod-2 .fu-left .fu-menu li p {
    margin-top: 10px;
  }
  .business-menu li i, .property .mod-2 .fu-menu li i, .other-business .mod-2 .fu-left .fu-menu li i {
    width: 24px;
    height: 24px;
  }
  .business-menu li i::after, .property .mod-2 .fu-menu li i::after, .other-business .mod-2 .fu-left .fu-menu li i::after {
    width: 8px;
    height: 8px;
  }
  .business-menu li.active i, .property .mod-2 .fu-menu li.active i, .other-business .mod-2 .fu-left .fu-menu li.active i, .business-menu li:hover i, .property .mod-2 .fu-menu li:hover i, .other-business .mod-2 .fu-left .fu-menu li:hover i {
    width: 24px;
    height: 24px;
    border-width: 4px;
  }
  .business-menu li.active i::after, .property .mod-2 .fu-menu li.active i::after, .other-business .mod-2 .fu-left .fu-menu li.active i::after, .business-menu li:hover i::after, .property .mod-2 .fu-menu li:hover i::after, .other-business .mod-2 .fu-left .fu-menu li:hover i::after {
    width: 16px;
    height: 16px;
    border: 4px solid #004188;
  }
}

@media (max-width: 768px) {
  .business-menu, .property .mod-2 .fu-menu, .other-business .mod-2 .fu-left .fu-menu {
    margin-bottom: 35px;
  }
  .business-menu li, .property .mod-2 .fu-menu li, .other-business .mod-2 .fu-left .fu-menu li {
    font-size: 18px;
  }
  .business-menu li p, .property .mod-2 .fu-menu li p, .other-business .mod-2 .fu-left .fu-menu li p {
    margin-top: 5px;
  }
  .business-menu li i, .property .mod-2 .fu-menu li i, .other-business .mod-2 .fu-left .fu-menu li i {
    width: 20px;
    height: 20px;
  }
  .business-menu li i::after, .property .mod-2 .fu-menu li i::after, .other-business .mod-2 .fu-left .fu-menu li i::after {
    width: 6.66667px;
    height: 6.66667px;
  }
  .business-menu li.active i, .property .mod-2 .fu-menu li.active i, .other-business .mod-2 .fu-left .fu-menu li.active i, .business-menu li:hover i, .property .mod-2 .fu-menu li:hover i, .other-business .mod-2 .fu-left .fu-menu li:hover i {
    width: 20px;
    height: 20px;
    border-width: 3px;
  }
  .business-menu li.active i::after, .property .mod-2 .fu-menu li.active i::after, .other-business .mod-2 .fu-left .fu-menu li.active i::after, .business-menu li:hover i::after, .property .mod-2 .fu-menu li:hover i::after, .other-business .mod-2 .fu-left .fu-menu li:hover i::after {
    width: 13.33333px;
    height: 13.33333px;
    border: 3px solid #004188;
  }
}

.business-dev {
  margin-top: 90px;
  height: calc(100vh - 90px);
  position: relative;
  overflow: hidden;
}

.business-dev .txt_block .box {
  position: absolute;
  left: 65%;
  bottom: 50%;
  width: 28vw;
  opacity: 0;
  -webkit-transform: translateY(55%);
  -ms-transform: translateY(55%);
  transform: translateY(55%);
  -webkit-transition: opacity 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06), transform 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06);
  -webkit-transition: opacity 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06), -webkit-transform 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06);
  transition: opacity 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06), -webkit-transform 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06);
  -o-transition: opacity 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06), transform 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06);
  transition: opacity 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06), transform 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06);
  transition: opacity 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06), transform 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06), -webkit-transform 0.4s cubic-bezier(0.47, 0.04, 0.5, -0.06);
  z-index: 1;
}

.business-dev .txt_block .box.active {
  opacity: 1;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  z-index: 2;
}

.business-dev .txt_block h3 {
  font-size: 36px;
  color: #343434;
  font-family: 'NotoSansHans-bold';
  line-height: 1.1;
  font-weight: 400;
}

.business-dev .txt_block h4 {
  font-size: 14px;
  color: #8b8b8b;
  font-family: 'NotoSansHans-bold';
  line-height: 1.1;
  font-weight: 400;
  margin-top: 20px;
}

.business-dev .txt_block p {
  font-size: 16px;
  line-height: 28px;
  color: #797979;
  margin-top: 20px;
  text-align: justify;
}

.business-dev .txt_block .more {
  display: inline-block;
  padding: 15px 30px;
  background-color: #004188;
  color: #fff;
  font-size: 16px;
  margin-top: 70px;
}

.business-dev .txt_block .more::after {
  content: '\e608';
  font-family: 'icon';
  margin-left: 50px;
}

.business-dev .circle {
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -50vw;
  width: 100vw;
  height: 100vw;
  border: 1px solid rgba(230, 0, 18, 0.1);
  border-radius: 50%;
}

.business-dev .circle .bg_box {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  left: 6px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.business-dev .circle .bg_box .bg {
  width: 50%;
  height: 100vh;
  margin-top: calc((100% - 100vh) / 2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.business-dev .circle .bg_box.active {
  opacity: 1;
}

.business-dev .circle .bg_box.active .bg {
  -webkit-animation: circle_zoom 10s alternate linear infinite;
  animation: circle_zoom 10s alternate linear infinite;
}

.business-dev .circle li {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: left;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0, 0.1, 1);
  -o-transition: all 0.4s cubic-bezier(0.55, 0, 0.1, 1);
  transition: all 0.4s cubic-bezier(0.55, 0, 0.1, 1);
  cursor: pointer;
}

.business-dev .circle li:before {
  content: '●';
  display: block;
  color: #d9d9d9;
  border-radius: 50%;
  -webkit-transform: translateX(-10px);
      -ms-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.business-dev .circle li span {
  font-size: 16px;
  line-height: 1;
  margin: 5px 0;
  color: #333;
  font-family: 'DINPro-Medium';
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.business-dev .circle li p {
  font-size: 14px;
  color: #808080;
  line-height: 21px;
  height: 42px;
  width: 4em;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.business-dev .circle li.active:before {
  content: '\e602';
  font-family: 'iconfont';
  color: #004188;
  background: none;
  -webkit-transform: scale(1.6) translateX(0);
  -ms-transform: scale(1.6) translateX(0);
  transform: scale(1.6) translateX(0);
}

.business-dev .circle li.active span {
  color: #004188;
  font-size: 50px;
}

.business-dev .circle li.active p {
  color: #004188;
  font-size: 18px;
}

.business-dev .circle li:nth-of-type(1) {
  -webkit-transform: translate(50%, 0%) translate(51.5vw, -19vw) translate(-50%, 0%) translate(-36px, 0px);
  -ms-transform: translate(50%, 0%) translate(51.5vw, -19vw) translate(-50%, 0%) translate(-36px, 0px);
  transform: translate(50%, 0%) translate(51.5vw, -19vw) translate(-50%, 0%) translate(-36px, 0px);
}

.business-dev .circle li:nth-of-type(2) {
  -webkit-transform: translate(50%, 0%) translate(53.5vw, -10vw) translate(-50%, 0%) translate(-36px, 0px);
  -ms-transform: translate(50%, 0%) translate(53.5vw, -10vw) translate(-50%, 0%) translate(-36px, 0px);
  transform: translate(50%, 0%) translate(53.5vw, -10vw) translate(-50%, 0%) translate(-36px, 0px);
}

.business-dev .circle li:nth-of-type(3) {
  -webkit-transform: translate(50%, 0%) translate(54.5vw, -1vw) translate(-50%, 0%) translate(-36px, 0px);
  -ms-transform: translate(50%, 0%) translate(54.5vw, -1vw) translate(-50%, 0%) translate(-36px, 0px);
  transform: translate(50%, 0%) translate(54.5vw, -1vw) translate(-50%, 0%) translate(-36px, 0px);
}

.business-dev .circle li:nth-of-type(4) {
  -webkit-transform: translate(50%, 0%) translate(53.5vw, 8vw) translate(-50%, 0%) translate(-36px, 0px);
  -ms-transform: translate(50%, 0%) translate(53.5vw, 8vw) translate(-50%, 0%) translate(-36px, 0px);
  transform: translate(50%, 0%) translate(53.5vw, 8vw) translate(-50%, 0%) translate(-36px, 0px);
}

.business-dev .circle li:nth-of-type(5) {
  -webkit-transform: translate(50%, 0%) translate(51.5vw, 17vw) translate(-50%, 0%) translate(-36px, 0px);
  -ms-transform: translate(50%, 0%) translate(51.5vw, 17vw) translate(-50%, 0%) translate(-36px, 0px);
  transform: translate(50%, 0%) translate(51.5vw, 17vw) translate(-50%, 0%) translate(-36px, 0px);
}

@media (max-width: 992px) {
  .business-dev .circle[data-active="0"] li:nth-of-type(1) {
    -webkit-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="0"] li:nth-of-type(2) {
    -webkit-transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="0"] li:nth-of-type(3) {
    -webkit-transform: translate(50%, 0%) translate(29vw, 44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(29vw, 44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(29vw, 44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="0"] li:nth-of-type(4) {
    -webkit-transform: translate(50%, 0%) translate(0vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(0vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(0vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    opacity: 0;
  }
  .business-dev .circle[data-active="0"] li:nth-of-type(5) {
    -webkit-transform: translate(50%, 0%) translate(0vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(0vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(0vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    opacity: 0;
  }
  .business-dev .circle[data-active="1"] li:nth-of-type(1) {
    -webkit-transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="1"] li:nth-of-type(2) {
    -webkit-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="1"] li:nth-of-type(3) {
    -webkit-transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="1"] li:nth-of-type(4) {
    -webkit-transform: translate(50%, 0%) translate(29vw, 44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(29vw, 44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(29vw, 44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="1"] li:nth-of-type(5) {
    -webkit-transform: translate(50%, 0%) translate(0vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(0vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(0vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    opacity: 0;
  }
  .business-dev .circle[data-active="2"] li:nth-of-type(1) {
    -webkit-transform: translate(50%, 0%) translate(29vw, -44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(29vw, -44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(29vw, -44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="2"] li:nth-of-type(2) {
    -webkit-transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="2"] li:nth-of-type(3) {
    -webkit-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="2"] li:nth-of-type(4) {
    -webkit-transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="2"] li:nth-of-type(5) {
    -webkit-transform: translate(50%, 0%) translate(29vw, 44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(29vw, 44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(29vw, 44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="3"] li:nth-of-type(1) {
    -webkit-transform: translate(50%, 0%) translate(0, 0) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(0, 0) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(0, 0) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    opacity: 0;
  }
  .business-dev .circle[data-active="3"] li:nth-of-type(2) {
    -webkit-transform: translate(50%, 0%) translate(29vw, -44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(29vw, -44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(29vw, -44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="3"] li:nth-of-type(3) {
    -webkit-transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="3"] li:nth-of-type(4) {
    -webkit-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="3"] li:nth-of-type(5) {
    -webkit-transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(46vw, 25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="4"] li:nth-of-type(1) {
    -webkit-transform: translate(50%, 0%) translate(0, 0) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(0, 0) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(0, 0) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    opacity: 0;
  }
  .business-dev .circle[data-active="4"] li:nth-of-type(2) {
    -webkit-transform: translate(50%, 0%) translate(0, 0) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(0, 0) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(0, 0) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    opacity: 0;
  }
  .business-dev .circle[data-active="4"] li:nth-of-type(3) {
    -webkit-transform: translate(50%, 0%) translate(29vw, -44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(29vw, -44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(29vw, -44vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="4"] li:nth-of-type(4) {
    -webkit-transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(46vw, -25vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
  .business-dev .circle[data-active="4"] li:nth-of-type(5) {
    -webkit-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    -ms-transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
    transform: translate(50%, 0%) translate(52vw, 0vw) translate(-50%, 0%) translate(-36px, 0px) rotateZ(-90deg);
  }
}

.business-dev .business_devbg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 280px;
  z-index: -1;
}

.business-dev .business_devbg .img {
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .business-dev {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    margin-top: 50px;
    height: 110vw;
  }
  .business-dev .circle {
    right: auto;
    left: 50%;
    top: 0%;
    -webkit-transform: translateX(-50%) rotateZ(90deg);
        -ms-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotateZ(90deg);
  }
  .business-dev .circle li {
    display: inline-block;
    text-align: center;
    z-index: 100;
    -webkit-transform-origin: top;
        -ms-transform-origin: top;
            transform-origin: top;
  }
  .business-dev .circle li span {
    margin: 5px 0;
    display: block;
  }
  .business-dev .circle li p {
    width: auto;
    width: 6em;
    white-space: normal;
    height: auto;
  }
  .business-dev .circle li::before {
    text-align: center;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .business-dev .circle li.active span {
    font-size: 30px;
  }
  .business-dev .circle li.active p {
    font-size: 16px;
  }
  .business-dev .circle .bg_box .bg {
    height: 100%;
    margin-top: 0;
    bottom: 0;
    width: 100%;
    -webkit-transform: rotateZ(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotateZ(-90deg);
    -webkit-transform-origin: unset;
        -ms-transform-origin: unset;
            transform-origin: unset;
  }
  .business-dev .txt_block h3 {
    font-size: 30px;
  }
  .business-dev .txt_block .box {
    width: 50vw;
    text-align: center;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .business-dev .txt_block .box p {
    text-align: center;
  }
  .business-dev .txt_block .box.active {
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .business-dev .txt_block .more {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .business-dev {
    min-height: 750px;
  }
  .business-dev .txt_block .box {
    width: calc(100% - 30px);
  }
  .business-dev .txt_block .box h3 {
    font-size: 26px;
  }
  .business-dev .txt_block .box .more {
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .business-dev .circle li p {
    font-size: 12px;
  }
}

.investment .mod-1 {
  padding: 100px 0;
  position: relative;
}

.investment .mod-1::after {
  content: '';
  display: block;
  width: 45%;
  height: 0;
  padding-bottom: 20%;
  background-color: #004188;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.investment .mod-1 .fu-left {
  width: 55%;
  text-align: right;
}

.investment .mod-1 .fu-left img {
  display: inline-block;
  max-width: 100%;
}

.investment .mod-1 .fu-left img:last-child {
  margin: 50px 50px 0 0;
}

.investment .mod-1 .fu-right {
  width: 45%;
  padding-left: 100px;
}

.investment .mod-1 .fu-right .tit {
  margin-bottom: 20px;
  padding: 0 50px;
  position: relative;
}

.investment .mod-1 .fu-right .tit h1 {
  color: #343434;
  font-weight: 400;
  font-size: 40px;
}

.investment .mod-1 .fu-right .tit::after {
  content: '';
  position: absolute;
  display: block;
  width: 200px;
  border-top: 1px solid #e5e5e5;
  right: 100%;
  bottom: 0;
}

.investment .mod-1 .fu-right .text {
  padding: 0px 5px 0;
  padding-left: 35px;
  border-left: 1px dashed #e5e5e5;
  position: relative;
}

.investment .mod-1 .fu-right .text.sm_text {
  padding-top: 15px;
}

.investment .mod-1 .fu-right .text.sm_text i:nth-child(1) {
  top: 22px;
}

.investment .mod-1 .fu-right .text.sm_text p {
  padding: 0px 15px;
}

.investment .mod-1 .fu-right .text p {
  font-size: 16px;
  color: #797979;
  padding: 15px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.investment .mod-1 .fu-right .text i {
  position: absolute;
  left: -5px;
  top: 0;
  width: 9px;
  height: 9px;
  background: #caad73;
  border-radius: 50%;
}

.investment .mod-1 .fu-right .text i:nth-child(1) {
  top: 10%;
}

.investment .mod-1 .fu-right .text i:nth-child(2) {
  top: 50%;
}

.investment .mod-1 .fu-right .text i:nth-child(3) {
  top: 80%;
}

.investment .mod-2 {
  height: 920px;
  height: calc(100vh - 90px);
  background-color: #1e4d81;
  overflow: hidden;
  position: relative;
}

.investment .mod-2 .left {
  width: 66%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #0f3065;
  overflow: hidden;
  z-index: 1;
}

.investment .mod-2 .left .bg {
  position: absolute;
  top: 0;
  padding-top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/static/img/web/bg/img-36.png");
  background-size: auto 100%;
}

.investment .mod-2 .left .main {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.investment .mod-2 .left .ring {
  position: relative;
  z-index: 2;
}

.investment .mod-2 .left .ring img {
  display: block;
  height: 60vh;
  max-height: 778px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.investment .mod-2 .left .high_way .line {
  position: absolute;
  z-index: 1;
}

.investment .mod-2 .left .high_way .line img {
  display: block;
  width: 100%;
  opacity: .5;
}

.investment .mod-2 .left .high_way .line img.yellow {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.investment .mod-2 .left .high_way .line span {
  position: absolute;
  font-size: 12px;
  color: #fff;
  font-family: 'NotoSansHans-light';
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  display: block;
  white-space: nowrap;
  opacity: .5;
}

.investment .mod-2 .left .high_way .line:nth-of-type(1) {
  width: 32.9%;
  top: 63.88%;
  right: 68.97%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(1) span {
  left: 3%;
  bottom: 10%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(2) {
  width: 28.71%;
  top: 59%;
  left: 8.9%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(3) {
  width: 160%;
  bottom: 44.7%;
  left: 8.5%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(3) span {
  left: 65%;
  bottom: 22px;
}

.investment .mod-2 .left .high_way .line:nth-of-type(4) {
  width: 37.22%;
  bottom: 49.48%;
  left: 2.3%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(5) {
  width: 22.79%;
  top: 42.27%;
  left: 17.46%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(6) {
  width: 21.5%;
  bottom: 75.19%;
  right: 63.2%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(6) span {
  left: 0;
  bottom: 46%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(7) {
  width: 24.81%;
  bottom: 57.4%;
  right: 53.34%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(7) span {
  right: 0;
  bottom: 38%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(8) {
  width: 8.94%;
  bottom: 63.6%;
  left: 56.7%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(8) span {
  left: 110%;
  bottom: 70%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(9) {
  width: 23.66%;
  bottom: 57.4%;
  left: 56%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(9) span {
  left: 75%;
  bottom: 40%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(10) {
  width: 21.93%;
  bottom: 72.49%;
  left: 70.4%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(10) span {
  left: 63%;
  bottom: 60%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(11) {
  width: 104.32%;
  top: 19.79%;
  left: 64%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(11) span {
  left: 41%;
  top: 36%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(12) {
  width: 85.42%;
  top: 58.74%;
  left: 76.19%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(12) span {
  left: 38%;
  top: 50%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(13) {
  width: 100%;
  top: 61.92%;
  left: 68.25%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(13) span {
  left: 30%;
  top: 36%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(14) {
  width: 39.53%;
  top: 68.28%;
  left: 75.5%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(14) span {
  left: 52%;
  top: 40%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(15) {
  width: 35.49%;
  top: 68.5%;
  left: 61.47%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(15) span {
  left: 60%;
  top: 50%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(16) {
  width: 7.79%;
  top: 76.47%;
  left: 55.55%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(16) span {
  left: 60%;
  top: 50%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(17) {
  width: 3.03%;
  top: 90.35%;
  left: 46.75%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(17) span {
  left: 100%;
  top: 24%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(18) {
  width: 3.89%;
  top: 65.03%;
  left: 37.22%;
}

.investment .mod-2 .left .high_way .line:nth-of-type(18) span {
  left: 100%;
  top: 16%;
}

.investment .mod-2 .left .high_way .line.active img.yellow {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.investment .mod-2 .left .high_way .line.active span {
  color: #fbca4d;
  opacity: 1;
}

.investment .mod-2 .left .other_pro .icon {
  width: 20px;
  height: 20px;
  position: absolute;
  margin: -10px 0 0 -10px;
  z-index: 3;
}

.investment .mod-2 .left .other_pro .icon:before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
  background-color: rgba(203, 131, 12, 0.9);
  -webkit-animation: sec3Ring 1s linear infinite;
  animation: sec3Ring 1s linear infinite;
}

.investment .mod-2 .left .other_pro .icon:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: #cb830c;
  border-radius: 50%;
}

.investment .mod-2 .left .other_pro .icon span {
  font-size: 12px;
  position: absolute;
  white-space: nowrap;
  color: #fff;
  line-height: 16px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(1) {
  top: 55.96%;
  left: 7%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(1) span {
  top: 24px;
  left: 50%;
  margin-left: -54px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(2) {
  top: 14.26%;
  left: 33.33%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(2):before {
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(2) span {
  top: 2px;
  left: 27px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(3) {
  top: 13.36%;
  left: 57.14%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(3):before {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(3) span {
  top: 24px;
  left: 50%;
  margin-left: -30px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(4) {
  top: 11.98%;
  left: 77.35%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(4):before {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(4) span {
  top: 24px;
  left: 50%;
  margin-left: -36px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(5) {
  top: 20.07%;
  left: 77.35%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(5):before {
  -webkit-animation-delay: .7s;
          animation-delay: .7s;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(5) span {
  top: 2px;
  right: 27px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(6) {
  top: 30%;
  left: 64.49%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(6):before {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(6) span {
  top: 24px;
  left: 50%;
  margin-left: -50px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(7) {
  top: 52.72%;
  left: 72.7%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(7):before {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(7) span {
  top: 2px;
  left: 27px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(8) {
  top: 48.84%;
  left: 63.45%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(8):before {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(8) span {
  top: 24px;
  left: 50%;
  margin-left: -48px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(9) {
  top: 57.84%;
  left: 96.52%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(9):before {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(9) span {
  bottom: 24px;
  left: 50%;
  margin-left: -42px;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(10) {
  top: 78.66%;
  left: 34%;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(10):before {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.investment .mod-2 .left .other_pro .icon:nth-of-type(10) span {
  bottom: 24px;
  left: 50%;
  margin-left: -60px;
}

.investment .mod-2 .left .pro .item {
  width: 30px;
  height: 30px;
  position: absolute;
  margin: -15px 0 0 -15px;
  z-index: 5;
  cursor: pointer;
}

.investment .mod-2 .left .pro .item .dot {
  position: relative;
  width: 100%;
  height: 100%;
}

.investment .mod-2 .left .pro .item .dot:before {
  content: '';
  width: 8.6vw;
  height: 8.6vw;
  background-color: rgba(251, 202, 77, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4.3vw 0 0 -4.3vw;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.investment .mod-2 .left .pro .item .dot i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(251, 202, 77, 0.6);
  -webkit-animation: sec3Ring 1.5s linear infinite;
  animation: sec3Ring 1.5s linear infinite;
  border-radius: 50%;
}

.investment .mod-2 .left .pro .item .dot:after {
  content: '';
  width: 14px;
  height: 14px;
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #fbca4d;
  border-radius: 50%;
}

.investment .mod-2 .left .pro .item .icon {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
}

.investment .mod-2 .left .pro .item span.tit {
  font-size: 14px;
  color: #fff;
  opacity: .6;
  white-space: nowrap;
  position: absolute;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.investment .mod-2 .left .pro .item .square {
  position: absolute;
  border-radius: 50%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
}

.investment .mod-2 .left .pro .item .square:after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}

.investment .mod-2 .left .pro .item .square span {
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  z-index: 2;
  position: relative;
}

.investment .mod-2 .left .pro .item .railway {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.investment .mod-2 .left .pro .item .railway img {
  width: 100%;
  display: block;
}

.investment .mod-2 .left .pro .item .railway span {
  position: absolute;
  font-size: 12px;
  color: #23ac38;
  font-family: 'NotoSansHans-light';
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  display: block;
  white-space: nowrap;
}

.investment .mod-2 .left .pro .item .subway {
  width: 19px;
  height: 19px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.investment .mod-2 .left .pro .item .subway i {
  display: block;
  width: 19px;
  height: 19px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.investment .mod-2 .left .pro .item .subway span {
  position: absolute;
  font-size: 12px;
  color: #fff;
  font-family: 'NotoSansHans-light';
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  display: block;
  white-space: nowrap;
}

.investment .mod-2 .left .pro .item:nth-of-type(1) {
  bottom: 6.16%;
  left: 37.08%;
}

.investment .mod-2 .left .pro .item:nth-of-type(1) .icon {
  width: 65px;
  height: 58px;
  right: 37px;
  bottom: 6px;
}

.investment .mod-2 .left .pro .item:nth-of-type(1) span.tit {
  right: 8px;
  top: 40px;
}

.investment .mod-2 .left .pro .item:nth-of-type(2) {
  top: 15.55%;
  left: 15.72%;
}

.investment .mod-2 .left .pro .item:nth-of-type(2) .icon {
  width: 95px;
  height: 39px;
  left: 24px;
  bottom: 29px;
}

.investment .mod-2 .left .pro .item:nth-of-type(2) span.tit {
  left: 45px;
  top: 4px;
}

.investment .mod-2 .left .pro .item:nth-of-type(3) {
  top: 5.65%;
  left: 44.29%;
}

.investment .mod-2 .left .pro .item:nth-of-type(3) .icon {
  width: 91px;
  height: 57px;
  left: 37px;
  bottom: -3px;
}

.investment .mod-2 .left .pro .item:nth-of-type(3) span.tit {
  left: 0;
  top: 40px;
}

.investment .mod-2 .left .pro .item:nth-of-type(4) {
  top: 69.02%;
  left: 78.78%;
}

.investment .mod-2 .left .pro .item:nth-of-type(4) .icon {
  width: 64px;
  height: 56px;
  left: -6px;
  bottom: 35px;
}

.investment .mod-2 .left .pro .item:nth-of-type(4) span.tit {
  left: 45px;
  top: 4px;
}

.investment .mod-2 .left .pro .item:nth-of-type(5) {
  top: 44.55%;
  left: 63.65%;
}

.investment .mod-2 .left .pro .item:nth-of-type(5) .icon {
  width: 64px;
  height: 56px;
  left: -6px;
  bottom: 35px;
}

.investment .mod-2 .left .pro .item:nth-of-type(5) span.tit {
  left: 45px;
  top: 4px;
}

.investment .mod-2 .left .pro .item:nth-of-type(6) {
  top: 35.55%;
  left: 80.65%;
}

.investment .mod-2 .left .pro .item:nth-of-type(6) .icon {
  width: 64px;
  height: 56px;
  left: -6px;
  bottom: 35px;
}

.investment .mod-2 .left .pro .item:nth-of-type(6) span.tit {
  left: 45px;
  top: 4px;
}

.investment .mod-2 .left .pro .item:nth-of-type(7) {
  top: 37.55%;
  left: 4.65%;
}

.investment .mod-2 .left .pro .item:nth-of-type(7) .icon {
  width: 64px;
  height: 56px;
  left: -6px;
  bottom: 35px;
}

.investment .mod-2 .left .pro .item:nth-of-type(7) span.tit {
  left: 45px;
  top: 4px;
}

.investment .mod-2 .left .pro .item:nth-of-type(8) {
  top: 65.55%;
  left: 30.65%;
}

.investment .mod-2 .left .pro .item:nth-of-type(8) .icon {
  width: 64px;
  height: 56px;
  left: -6px;
  bottom: 35px;
}

.investment .mod-2 .left .pro .item:nth-of-type(8) span.tit {
  left: 45px;
  top: 4px;
}

.investment .mod-2 .left .pro .item:nth-of-type(9) {
  top: 85.55%;
  left: 50.65%;
}

.investment .mod-2 .left .pro .item:nth-of-type(9) .icon {
  width: 64px;
  height: 56px;
  left: -6px;
  bottom: 35px;
}

.investment .mod-2 .left .pro .item:nth-of-type(9) span.tit {
  left: 45px;
  top: 4px;
}

.investment .mod-2 .left .pro .item:nth-of-type(10) {
  top: 53.55%;
  left: 0.65%;
}

.investment .mod-2 .left .pro .item:nth-of-type(10) .icon {
  width: 64px;
  height: 56px;
  left: -6px;
  bottom: 35px;
}

.investment .mod-2 .left .pro .item:nth-of-type(10) span.tit {
  left: 8px;
  top: 40px;
}

.investment .mod-2 .left .pro .item.active .dot:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.investment .mod-2 .left .pro .item.active .dot i {
  -webkit-animation: none;
  animation: none;
}

.investment .mod-2 .left .pro .item.active .tit {
  opacity: 1;
  font-size: 16px;
}

.investment .mod-2 .left .pro .item.active .square,
.investment .mod-2 .left .pro .item.active .railway,
.investment .mod-2 .left .pro .item.active .subway {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.investment .mod-2 .left .pro .item.active .square {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.investment .mod-2 .left .pro .item.active .square1 {
  -webkit-transition-delay: .2s;
       -o-transition-delay: .2s;
          transition-delay: .2s;
}

.investment .mod-2 .left .pro .item.active .square1:after {
  -webkit-animation: sec3Ring 2s linear infinite;
  animation: sec3Ring 2s linear infinite;
}

.investment .mod-2 .left .pro .item.active .square2 {
  -webkit-transition-delay: .4s;
       -o-transition-delay: .4s;
          transition-delay: .4s;
}

.investment .mod-2 .left .pro .item.active .square2:after {
  -webkit-animation: sec3Ring 2s 0.2s linear infinite;
  animation: sec3Ring 2s 0.2s linear infinite;
}

.investment .mod-2 .left .pro .item.active .railway {
  -webkit-transition-delay: .8s;
       -o-transition-delay: .8s;
          transition-delay: .8s;
}

.investment .mod-2 .left .pro .item.active .subway {
  -webkit-transition-delay: .6s;
       -o-transition-delay: .6s;
          transition-delay: .6s;
}

.investment .mod-2 .left .radial {
  position: absolute;
  width: 66vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 4;
  background: -o-radial-gradient(rgba(22, 38, 64, 0), rgba(15, 48, 101, 0.5));
  background: radial-gradient(rgba(22, 38, 64, 0), rgba(15, 48, 101, 0.5));
}

.investment .mod-2 .right {
  width: 34%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  -webkit-box-shadow: 0 0 150px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 150px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

@media screen and (min-width: 992px) {
  .investment .mod-2 .right {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.investment .mod-2 .right .swiper-container {
  width: 100%;
  height: 100%;
}

.investment .mod-2 .right .swiper_btnbox {
  display: none;
}

.investment .mod-2 .right .item {
  padding: 0 4.5vw;
  padding-bottom: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-height: 90%;
  overflow: scroll;
  overflow-x: hidden;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.investment .mod-2 .right .item.active {
  opacity: 1;
  visibility: inherit;
}

.investment .mod-2 .right .item::-webkit-scrollbar {
  display: none;
}

.investment .mod-2 .right h3 {
  font-size: 28px;
  font-family: 'NotoSansHans-bold';
  line-height: 1.5;
  margin-bottom: 38px;
  font-weight: normal;
}

.investment .mod-2 .right h3 span {
  font-size: 20px;
  font-family: 'NotoSansHans-medium';
}

.investment .mod-2 .right img {
  display: block;
  width: 100%;
}

.investment .mod-2 .right .desc {
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investment .mod-2 .right p {
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
}

.investment .mod-2 .right a {
  display: block;
  width: 140px;
  line-height: 40px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  background-color: #caad73;
  margin-top: 2.5vw;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.investment .mod-2 .right a i {
  margin-left: 20px;
}

.investment .mod-2 .right a:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 20px rgba(202, 173, 115, 0.2);
          box-shadow: 0 5px 20px rgba(202, 173, 115, 0.2);
}

.investment .mod-2.active .right {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: .5s;
       -o-transition-delay: .5s;
          transition-delay: .5s;
}

.investment .fu-left, .investment .fu-right, .investment h1 {
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

@media (max-width: 1240px) {
  .investment .mod-1::after {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    top: 10%;
  }
  .investment .mod-1 .fu-right {
    padding-left: 30px;
  }
  .investment .mod-1 .fu-right .tit h1 {
    font-size: 30px;
  }
  .investment .mod-2 .right .swiper-slide {
    height: 100%;
  }
  .investment .mod-2 .right .swiper-slide .item {
    height: 100%;
  }
}

@media (max-width: 992px) {
  .investment .mod-1 {
    position: relative;
  }
  .investment .mod-1::after {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    top: 15%;
  }
  .investment .mod-1 .fu-right {
    padding-left: 0px;
  }
  .investment .mod-1 .fu-right .tit::after {
    display: none;
  }
  .investment .mod-1 .fu-right .tit h1 {
    font-size: 26px;
  }
  .investment .mod-1 .fu-right .text {
    padding-left: 5px;
    margin-left: 20px;
  }
  .investment .mod-2 {
    height: auto;
    background-color: #0F3065;
  }
  .investment .mod-2 .left {
    display: none;
  }
  .investment .mod-2 .right {
    width: 100%;
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }
  .investment .mod-2 .right h3 {
    margin: 38px 0;
  }
  .investment .mod-2 .right p {
    text-align: center;
  }
  .investment .mod-2 .right a {
    margin: 0 auto;
  }
  .investment .mod-2 .right .desc {
    border-bottom: unset;
  }
  .investment .mod-2 .right .item {
    max-height: 100%;
    overflow: unset;
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    text-align: center;
    padding-bottom: 0;
  }
  .investment .mod-2 .right .swiper_btnbox {
    display: block;
    text-align: center;
    padding: 30px 0;
  }
  .investment .mod-2 .right .swiper_btnbox .swiper-pagination {
    display: inline-block;
    position: unset;
    width: auto;
    margin: 0 20px;
  }
  .investment .mod-2 .right .swiper_btnbox .swiper-pagination span {
    display: inline-block;
    line-height: 40px;
  }
  .investment .mod-2 .right .swiper_btnbox .swiper-button-prev, .investment .mod-2 .right .swiper_btnbox .swiper-button-next {
    position: unset;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    margin: 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    outline: none;
  }
  .investment .mod-2 .right .swiper_btnbox .swiper-button-prev::after, .investment .mod-2 .right .swiper_btnbox .swiper-button-next::after {
    font-size: 18px;
    outline: none;
  }
}

@media (max-width: 768px) {
  .investment .mod-1 {
    position: relative;
    padding: 0;
    margin: 120px 0 50px;
  }
  .investment .mod-1::after {
    top: 0%;
    width: 100%;
    height: 26%;
  }
  .investment .mod-1 .fu-left {
    width: 100%;
    padding: 0 15px;
  }
  .investment .mod-1 .fu-left img:last-child {
    margin: 0;
    margin-top: 35px;
  }
  .investment .mod-1 .fu-right {
    width: 100%;
  }
  .investment .mod-1 .fu-right .tit {
    position: absolute;
    bottom: calc(100%);
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0;
    width: 100%;
  }
  .investment .mod-1 .fu-right .tit h1 {
    font-size: 24px;
    text-align: center;
  }
  .investment .mod-1 .fu-right .text {
    margin-top: 30px;
    padding: 0;
  }
  .investment .mod-1 .fu-right .text p {
    text-align: center;
  }
  .investment .mod-1 .fu-right .text.sm_text {
    margin-top: 0;
  }
  .investment .mod-2 .right h3 {
    font-size: 24px;
    margin: 19px;
  }
}

.comprehensive {
  width: 100%;
  overflow: hidden;
}

.comprehensive .mod-1 {
  position: relative;
  padding: 100px 0;
}

.comprehensive .mod-1 .fu-left {
  height: 100%;
  margin: 100px;
  display: inline-block;
  vertical-align: top;
}

.comprehensive .mod-1 .fu-left .main {
  width: 450px;
  height: 450px;
  margin: 0 auto;
  position: relative;
}

.comprehensive .mod-1 .fu-left .ring {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid #afbdd1;
  border-radius: 50%;
}

.comprehensive .mod-1 .fu-left .ring span {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #afbdd1;
  border-radius: 50%;
  top: 0;
  left: 0;
  -webkit-animation: sec5Ring 1s linear infinite;
  animation: sec5Ring 1s linear infinite;
}

.comprehensive .mod-1 .fu-left .ring span:nth-of-type(1) {
  -webkit-transform-origin: center 51%;
      -ms-transform-origin: center 51%;
          transform-origin: center 51%;
}

.comprehensive .mod-1 .fu-left .ring span:nth-of-type(2) {
  -webkit-transform-origin: 51% 51%;
      -ms-transform-origin: 51% 51%;
          transform-origin: 51% 51%;
}

.comprehensive .mod-1 .fu-left .ring span:nth-of-type(3) {
  -webkit-transform-origin: 51% center;
      -ms-transform-origin: 51% center;
          transform-origin: 51% center;
}

.comprehensive .mod-1 .fu-left .ring span:nth-of-type(4) {
  -webkit-transform-origin: 49% 49%;
      -ms-transform-origin: 49% 49%;
          transform-origin: 49% 49%;
}

.comprehensive .mod-1 .fu-left .txt_block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  text-align: center;
}

.comprehensive .mod-1 .fu-left .txt_block .cell_box {
  height: 100%;
}

.comprehensive .mod-1 .fu-left .txt_block .num {
  height: 280px;
}

.comprehensive .mod-1 .fu-left .txt_block .num span {
  font-size: 250px;
  line-height: 1;
  display: inline-block;
  font-family: 'DINPro';
  color: transparent;
  background: -o-linear-gradient(320deg, #95b9ed, #002e73);
  background: linear-gradient(130deg, #95b9ed, #002e73);
  -webkit-background-clip: text;
  text-shadow: 0 20px 60px rgba(18, 63, 130, 0.5);
}

.comprehensive .mod-1 .fu-left .txt_block h3 {
  font-size: 26px;
  color: #333;
  font-family: 'NotoSansHans-bold';
  margin-top: -20px;
}

.comprehensive .mod-1 .fu-left .item {
  position: absolute;
  z-index: 3;
  cursor: pointer;
}

.comprehensive .mod-1 .fu-left .item .icon {
  width: 100px;
  height: 100px;
  position: relative;
}

.comprehensive .mod-1 .fu-left .item .icon:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #002e73;
  border-radius: 50%;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.comprehensive .mod-1 .fu-left .item .icon i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.comprehensive .mod-1 .fu-left .item .txt {
  font-size: 18px;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.comprehensive .mod-1 .fu-left .item .txt h3 {
  font-size: 24px;
  color: #333;
  font-family: 'NotoSansHans-dem';
  white-space: nowrap;
}

.comprehensive .mod-1 .fu-left .item .txt h4 {
  font-size: 12px;
  color: #808080;
  text-transform: uppercase;
  white-space: nowrap;
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(1) {
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(1) .icon i {
  background-image: url("/static/img/web/icon/icon-2.png");
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(1) .txt {
  text-align: center;
  bottom: 60%;
  left: 50%;
  padding-bottom: 10px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(1):hover .txt {
  bottom: 100%;
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(2) {
  top: 70%;
  right: 0;
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(2) .icon i {
  background-image: url("/static/img/web/icon/icon-2.png");
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(2) .txt {
  top: 20px;
  left: 60%;
  padding-left: 10px;
  text-align: left;
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(2):hover .txt {
  left: 100%;
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(3) {
  top: 70%;
  left: 0;
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(3) .icon i {
  background-image: url("/static/img/web/icon/icon-2.png");
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(3) .txt {
  top: 20px;
  right: 60%;
  padding-right: 10px;
  text-align: right;
}

.comprehensive .mod-1 .fu-left .item:nth-of-type(3):hover .txt {
  right: 100%;
}

.comprehensive .mod-1 .fu-left .item:hover .icon:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-box-shadow: 0 10px 30px rgba(0, 46, 115, 0.5);
          box-shadow: 0 10px 30px rgba(0, 46, 115, 0.5);
}

.comprehensive .mod-1 .fu-left .item:hover .icon i {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: .4s;
       -o-transition-delay: .4s;
          transition-delay: .4s;
}

.comprehensive .mod-1 .fu-right {
  width: 600px;
  height: 450px;
  float: right;
  position: relative;
  z-index: 10;
}

.comprehensive .mod-1 .fu-right .title {
  color: #343434;
  font-weight: 400;
  font-size: 40px;
  position: relative;
  width: 6em;
}

.comprehensive .mod-1 .fu-right .title::after {
  content: '';
  position: absolute;
  left: -30px;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #caad73;
}

.comprehensive .mod-1 .fu-right .text {
  margin-top: 30px;
}

.comprehensive .mod-1 .fu-right .text p {
  line-height: 2;
  font-size: 16px;
  color: #797979;
}

.comprehensive .mod-1 .fu-right .text p:first-child {
  font-weight: 700;
}

.comprehensive .mod-2 {
  position: relative;
  margin-bottom: 100px;
}

.comprehensive .mod-2 .max-wid {
  width: 84%;
  max-width: 1200px;
  margin: auto;
}

.comprehensive .mod-2 .con .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 0.4rem;
}

.comprehensive .mod-2 .con .col .left {
  width: 50%;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.comprehensive .mod-2 .con .col .left img {
  width: 84%;
}

.comprehensive .mod-2 .con .col .right {
  width: 50%;
}

.comprehensive .mod-2 .con .col .msg {
  padding: 5% 12%;
  position: relative;
  width: 60%;
}

.comprehensive .mod-2 .con .col .msg > em {
  font-size: 0.18rem;
  display: block;
  margin: 15px 0;
  position: relative;
  z-index: 10;
  font-size: 16px;
  font-style: normal;
}

.comprehensive .mod-2 .con .col .msg > b {
  margin: 15px 0;
  white-space: nowrap;
  font-size: 0.24rem;
  font-weight: normal;
  display: block;
  position: relative;
  z-index: 10;
  font-size: 24px;
}

@media (max-width: 767px) {
  .comprehensive .mod-2 .con .col .msg > b {
    white-space: normal;
  }
}

.comprehensive .mod-2 .con .col.top {
  position: relative;
  z-index: 10;
}

.comprehensive .mod-2 .con .col.top .left .msg {
  background-color: #004188;
}

.comprehensive .mod-2 .con .col.btm {
  position: relative;
  z-index: 9;
}

.comprehensive .mod-2 .con .col.btm .right .msg .bg {
  position: absolute;
  width: 160%;
  bottom: 0;
  right: 0;
}

.comprehensive .mod-3 {
  padding: 8vw;
  background: url(/static/img/web/bg/img-40.png) no-repeat;
  background-position: right;
}

.comprehensive .mod-3 h1.title {
  font-size: 36px;
  color: #343434;
  font-weight: normal;
  padding-left: 30px;
  position: relative;
  margin-bottom: 100px;
  line-height: 1;
}

.comprehensive .mod-3 h1.title::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 100%;
  background-color: #caad73;
}

.comprehensive .mod-3 .wrap {
  position: relative;
}

.comprehensive .mod-3 .wrap::after {
  content: '';
  display: block;
  width: 100vw;
  height: 100px;
  background: url(/static/img/web/bg/img-41.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -40%);
      -ms-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  z-index: -1;
}

.comprehensive .mod-3 .fu-next,
.comprehensive .mod-3 .fu-prev {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #caad73;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  outline: none;
}

.comprehensive .mod-3 .fu-next:hover,
.comprehensive .mod-3 .fu-prev:hover {
  background-color: #004188;
  color: #fff;
}

.comprehensive .mod-3 .fu-prev {
  left: -100px;
}

.comprehensive .mod-3 .fu-next {
  right: -80px;
}

.comprehensive .mod-3 .fu-left {
  display: inline-block;
  width: 30%;
  max-width: 100%;
  vertical-align: middle;
  position: relative;
}

.comprehensive .mod-3 .fu-left .item {
  background-color: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  padding-bottom: 143px;
  display: block;
}

.comprehensive .mod-3 .fu-left .item .img {
  width: 100%;
  height: 270px;
}

.comprehensive .mod-3 .fu-left .item .img img {
  width: 100%;
}

.comprehensive .mod-3 .fu-left .item .text {
  position: absolute;
  left: 0;
  top: calc(100% - 143px);
  height: 100%;
  padding: 30px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  background-color: #fff;
}

.comprehensive .mod-3 .fu-left .item .text h1 {
  font-size: 22px;
  color: #343434;
  font-weight: normal;
  margin-bottom: 10px;
}

.comprehensive .mod-3 .fu-left .item .text p {
  line-height: 1.6;
}

.comprehensive .mod-3 .fu-left .item:hover .text {
  top: 0;
  background-color: #004188;
  color: #fff;
}

.comprehensive .mod-3 .fu-left .item:hover .text h1 {
  color: #fff;
}

.comprehensive .mod-3 .fu-left .remind {
  position: absolute;
  left: 90%;
  top: 95%;
  white-space: nowrap;
}

.comprehensive .mod-3 .fu-left .remind .icon {
  width: 85px;
  -webkit-animation: ts2 2.4s linear infinite;
          animation: ts2 2.4s linear infinite;
  position: relative;
  z-index: 10;
}

.comprehensive .mod-3 .fu-left .remind .icon img {
  width: 100%;
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
}

@-webkit-keyframes ts2 {
  0% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  10% {
    -webkit-transform: translate(-30%, -30%);
            transform: translate(-30%, -30%);
  }
  20% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  30% {
    -webkit-transform: translate(-30%, -30%);
            transform: translate(-30%, -30%);
  }
  40% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}

@keyframes ts2 {
  0% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  10% {
    -webkit-transform: translate(-30%, -30%);
            transform: translate(-30%, -30%);
  }
  20% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  30% {
    -webkit-transform: translate(-30%, -30%);
            transform: translate(-30%, -30%);
  }
  40% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}

.comprehensive .mod-3 .fu-left .remind .textc {
  margin-top: 15px;
  white-space: nowrap;
  color: #A8833A;
  font-size: 18px;
}

.comprehensive .mod-3 .fu-left .remind .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: -21%;
  top: -15%;
}

.comprehensive .mod-3 .fu-left .remind .circle .x {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: .7;
}

.comprehensive .mod-3 .fu-left .remind .circle .r {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  opacity: .3;
  -webkit-animation: y_bd 2.4s linear infinite;
          animation: y_bd 2.4s linear infinite;
}

.comprehensive .mod-3 .fu-left .remind .circle .r:last-child {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

@-webkit-keyframes y_bd {
  0% {
    width: 100%;
    height: 100%;
  }
  100% {
    opacity: .3;
  }
  100% {
    width: 800%;
    height: 800%;
    opacity: 0;
  }
}

@keyframes y_bd {
  0% {
    width: 100%;
    height: 100%;
  }
  100% {
    opacity: .3;
  }
  100% {
    width: 800%;
    height: 800%;
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .comprehensive .mod-3 .fu-left .remind {
    display: none;
  }
}

.comprehensive .mod-3 .fu-right {
  width: 65%;
  display: inline-block;
  vertical-align: middle;
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-slide-next {
  -webkit-transform: translateY(-25%);
      -ms-transform: translateY(-25%);
          transform: translateY(-25%);
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-slide {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-slide .item {
  text-align: center;
  cursor: pointer;
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-slide .item.active .img {
  width: 100px;
  height: 100px;
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-slide .item.active .img::after {
  -webkit-animation: bodong 2s ease infinite;
          animation: bodong 2s ease infinite;
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-slide .img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  position: relative;
  margin: 30px auto;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-slide .img .bg-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-slide .img::after {
  content: '';
  display: block;
  width: 110%;
  height: 110%;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid #002e73;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes bodong {
  0% {
    width: 110%;
    height: 110%;
    opacity: 1;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}

@keyframes bodong {
  0% {
    width: 110%;
    height: 110%;
    opacity: 1;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}

.comprehensive .mod-3 .fu-right .swiper-container .swiper-slide h3 {
  font-weight: normal;
}

@media (max-width: 1240px) {
  .comprehensive .mod-1 {
    position: relative;
    padding: 75px;
  }
  .comprehensive .mod-1 .fu-left {
    margin: 0;
  }
  .comprehensive .mod-1 .fu-left .main {
    width: 40vw;
    height: 40vw;
  }
  .comprehensive .mod-1 .fu-right {
    width: 45vw;
    height: auto;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 0 5vw;
  }
  .comprehensive .mod-1 .fu-right .title::after {
    display: none;
  }
}

@media (max-width: 992px) {
  .comprehensive .mod-1 {
    padding: 50px;
  }
  .comprehensive .mod-1 .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .comprehensive .mod-1 .container .fu-left, .comprehensive .mod-1 .container .fu-right {
    width: 100%;
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    float: none;
  }
  .comprehensive .mod-1 .container .fu-right {
    margin-bottom: 75px;
    text-align: center;
  }
  .comprehensive .mod-1 .container .fu-right .title {
    margin: 0 auto;
    font-size: 30px;
  }
  .comprehensive .mod-2 {
    margin-bottom: 50px;
  }
  .comprehensive .mod-2 .con .col .msg {
    width: 80%;
    padding: 30px;
  }
  .comprehensive .mod-2 .con .col .msg > em {
    font-size: 15px;
  }
  .comprehensive .mod-2 .con .col .msg > b {
    font-size: 18px;
  }
  .comprehensive .mod-3 {
    padding: 30px;
    background-image: unset;
  }
  .comprehensive .mod-3 .container {
    padding: 0;
  }
  .comprehensive .mod-3 .wrap::after {
    top: 90%;
  }
  .comprehensive .mod-3 .wrap .fu-left, .comprehensive .mod-3 .wrap .fu-right {
    width: 100%;
  }
  .comprehensive .mod-3 .wrap .fu-left .item .img {
    height: auto;
  }
  .comprehensive .mod-3 .wrap .fu-left .item .img .bg-img {
    height: 0;
    padding-bottom: 65%;
  }
  .comprehensive .mod-3 .wrap .fu-right {
    margin: 50px 0;
  }
  .comprehensive .mod-3 h1.title {
    font-size: 30px;
    padding-left: 0;
    margin-bottom: 50px;
  }
  .comprehensive .mod-3 h1.title::after {
    display: none;
  }
  .comprehensive .mod-3 .fu-next,
  .comprehensive .mod-3 .fu-prev {
    display: none;
  }
}

@media (max-width: 768px) {
  .comprehensive .mod-1 {
    padding: 35px 0 50px;
  }
  .comprehensive .mod-1 .container .fu-left .main {
    width: 60vw;
    height: 60vw;
  }
  .comprehensive .mod-1 .container .fu-left .txt_block {
    height: auto;
  }
  .comprehensive .mod-1 .container .fu-left .txt_block .num {
    height: auto;
    margin-bottom: 20px;
  }
  .comprehensive .mod-1 .container .fu-left .txt_block .num span {
    font-size: 40vw;
  }
  .comprehensive .mod-1 .container .fu-left .txt_block h3 {
    font-size: 4vw;
  }
  .comprehensive .mod-1 .container .fu-right {
    padding: 0;
  }
  .comprehensive .mod-1 .container .fu-right .title {
    font-size: 26px;
  }
  .comprehensive .mod-1 .container .fu-right .text {
    margin-top: 20px;
  }
  .comprehensive .mod-2 {
    margin-bottom: 35px;
  }
  .comprehensive .mod-2 .con .col .msg {
    padding: 5px 15px;
  }
  .comprehensive .mod-2 .con .col .msg > em {
    font-size: 14px;
    margin: 10px 0;
  }
  .comprehensive .mod-2 .con .col .msg > b {
    font-size: 16px;
    margin: 10px 0;
  }
  .comprehensive .mod-3 {
    padding: 15px;
  }
  .comprehensive .mod-3 h1.title {
    font-size: 24px;
    padding-left: 0;
    margin-bottom: 35px;
    text-align: center;
  }
  .comprehensive .mod-3 .wrap .fu-left .item {
    padding-bottom: 108px;
  }
  .comprehensive .mod-3 .wrap .fu-left .item .text {
    top: calc(100% - 108px);
    height: 100%;
    padding: 15px;
  }
  .comprehensive .mod-3 .wrap .fu-left .item .text h1 {
    font-size: 18px;
  }
  .comprehensive .mod-3 .wrap .fu-left .item:hover .text {
    top: 0;
  }
  .comprehensive .mod-3 .wrap .fu-right {
    margin: 35px 0;
    height: 155px;
  }
  .comprehensive .mod-3 .wrap .fu-right .swiper-container .swiper-slide .item .img {
    width: 40px;
    height: 40px;
    margin: 30px auto 15px;
  }
  .comprehensive .mod-3 .wrap .fu-right .swiper-container .swiper-slide .item.active .img {
    width: 80px;
    height: 80px;
  }
  .comprehensive .mod-3 .wrap .fu-right .swiper-container .swiper-slide h3 {
    font-size: 14px;
  }
  .comprehensive .mod-3 .wrap::after {
    top: 83%;
  }
}

@media (max-width: 468px) {
  .comprehensive .mod-2 {
    margin-bottom: 30px;
  }
  .comprehensive .mod-2 .max-wid {
    width: 100%;
  }
  .comprehensive .mod-2 .max-wid .con .col .msg {
    padding: 5px 10px;
  }
  .comprehensive .mod-2 .max-wid .con .col .msg > em {
    font-size: 12px;
    margin: 5px 0;
  }
  .comprehensive .mod-2 .max-wid .con .col .msg > b {
    font-size: 14px;
    margin: 5px 0;
  }
  .comprehensive .mod-2 .max-wid .con .col .left img {
    width: 100%;
  }
  .comprehensive .mod-3 .wrap .fu-right {
    margin: 30px 0;
    height: 155px;
  }
  .comprehensive .mod-3 .wrap .fu-right .swiper-container .swiper-slide .item .img {
    width: 30px;
    height: 30px;
    margin: 30px auto 15px;
  }
  .comprehensive .mod-3 .wrap .fu-right .swiper-container .swiper-slide .item.active .img {
    width: 60px;
    height: 60px;
  }
  .comprehensive .mod-3 .wrap .fu-right .swiper-container .swiper-slide h3 {
    font-size: 12px;
  }
}

.property {
  width: 100%;
  overflow: hidden;
}

.property .mod-1 {
  background: url(/statics/web/images/bg/img-39.png) no-repeat;
  background-position: bottom;
  background-size: contain;
}

.property .mod-1 .fu-left {
  float: left;
  width: 540px;
  margin-top: 100px;
}

.property .mod-1 .fu-left p {
  font-size: 16px;
  color: #797979;
  line-height: 2;
  margin-top: 30px;
  text-align: justify;
}

.property .mod-1 .fu-right {
  float: right;
}

.property .mod-2 {
  padding-bottom: 100px;
}

.property .mod-2 h1.title {
  font-size: 36px;
  color: #343434;
  font-weight: normal;
  text-align: center;
  margin: 100px 0;
}

.property .mod-2 .main-swiper .container {
  position: relative;
}

.property .mod-2 .main-swiper .sub-swiper {
  padding-bottom: 100px;
}

.property .mod-2 .main-swiper .sub-swiper .bg-img {
  width: 100%;
  padding-bottom: 40%;
}

.property .mod-2 .main-swiper .fu-info {
  background: #fff;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  width: 50%;
  position: absolute;
  right: 15px;
  bottom: 30px;
  z-index: 10;
  padding: 50px;
  opacity: 0;
}

.property .mod-2 .main-swiper .fu-info .tit {
  font-size: 22px;
  font-weight: 400;
  color: #343434;
}

.property .mod-2 .main-swiper .fu-info .operation {
  color: #d0d0d0;
  margin: 20px 0;
}

.property .mod-2 .main-swiper .fu-info .operation span {
  margin: 0 10px;
}

.property .mod-2 .main-swiper .fu-info .operation .num {
  display: inline-block;
  font-size: 22px;
}

.property .mod-2 .main-swiper .fu-info .operation .num .cur {
  color: #004188;
}

.property .mod-2 .main-swiper .fu-info .operation .icon {
  font-size: 22px;
  cursor: pointer;
  outline: none;
}

.property .mod-2 .main-swiper .fu-info .desc {
  font-size: 16px;
  color: #343434;
  line-height: 1.7;
}

@media (max-width: 1240px) {
  .property .mod-1 {
    position: relative;
  }
  .property .mod-1 .fu-left {
    width: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-left: 30px;
    margin-top: 0;
  }
  .property .mod-1 .fu-right {
    display: inline-block;
    width: 50%;
    padding-left: 30px;
  }
  .property .mod-1 .fu-right img {
    width: 100%;
  }
  .property .mod-2 {
    padding-bottom: 75px;
  }
  .property .mod-2 h1.title {
    margin: 75px 0;
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  .property .mod-2 {
    padding-bottom: 50px;
  }
  .property .mod-2 h1.title {
    margin: 50px 0;
    font-size: 26px;
  }
  .property .mod-2 .main-swiper .sub-swiper {
    padding-bottom: 0;
  }
  .property .mod-2 .main-swiper .sub-swiper .bg-img {
    padding-bottom: 60%;
  }
  .property .mod-2 .main-swiper .fu-info {
    padding: 30px;
    position: unset;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    width: 100%;
    text-align: center;
  }
  .property .mod-2 .main-swiper .fu-info .tit {
    font-size: 20px;
  }
  .property .mod-2 .main-swiper .fu-info .operation i {
    font-size: 18px;
  }
  .property .mod-2 .main-swiper .fu-info .operation .num {
    margin: 0 20%;
    font-size: 18px;
  }
  .property .mod-2 .main-swiper .desc {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .property .mod-1 .fu-left {
    position: unset;
    width: 100%;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    padding: 0;
    text-align: center;
  }
  .property .mod-1 .fu-left p {
    text-align: center;
    font-size: 15px;
  }
  .property .mod-1 .fu-right {
    width: 100%;
    float: none;
    padding: 0;
  }
  .property .mod-1 .fu-right img {
    -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
            transform: translateX(20px);
  }
  .property .mod-2 {
    padding-bottom: 35px;
  }
  .property .mod-2 h1.title {
    margin: 35px 0;
    font-size: 24px;
  }
  .property .mod-2 .main-swiper .fu-info {
    padding: 15px;
  }
  .property .mod-2 .main-swiper .fu-info .tit {
    font-size: 18px;
  }
  .property .mod-2 .main-swiper .fu-info .operation .num {
    font-size: 16px;
  }
  .property .mod-2 .main-swiper .desc {
    font-size: 14px;
  }
}

.other-business .mod-1 {
  padding-bottom: 9vh;
}

.other-business .mod-1 .container {
  position: relative;
}

.other-business .mod-1 .bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.other-business .mod-1 .fu-left {
  width: 45%;
  padding-bottom: 50px;
  position: relative;
}

.other-business .mod-1 .fu-left img {
  width: 90%;
  width: calc(100% - 50px);
  display: block;
}

.other-business .mod-1 .fu-left .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: -1;
  width: 85%;
  height: 0;
  width: calc(100% - 100px);
  padding-bottom: 30%;
  background-color: #004188;
}

.other-business .mod-1 .fu-right {
  width: 45%;
}

.other-business .mod-1 .fu-right p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #797979;
  line-height: 1.8;
}

.other-business .mod-2 {
  padding-top: 50px;
}

.other-business .mod-2 .title p {
  font-size: 32px;
  color: #dbdbdb;
}

.other-business .mod-2 .fu-left {
  width: 40%;
  padding-left: 10%;
}

.other-business .mod-2 .fu-left .fu-menu {
  width: 100%;
  height: 450px;
  text-align: left;
}

.other-business .mod-2 .fu-left .fu-menu::after {
  top: 0;
  left: 14px;
  width: auto;
  height: 100%;
  border-top: none;
  border-left: 1px solid #ccc;
}

.other-business .mod-2 .fu-left .fu-menu li {
  display: block;
  width: auto;
  max-width: 100%;
  height: 55px;
  margin-top: 30px;
}

.other-business .mod-2 .fu-left .fu-menu li i {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.other-business .mod-2 .fu-left .fu-menu li p {
  display: inline-block;
  font-size: 18px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.other-business .mod-2 .fu-left .fu-menu li:hover {
  color: #000;
}

.other-business .mod-2 .fu-left .fu-menu li:hover p {
  font-size: 20px;
}

.other-business .mod-2 .fu-left .fu-menu li.active {
  color: #004188;
}

.other-business .mod-2 .fu-left .fu-menu li.active p {
  font-size: 24px;
}

.other-business .mod-2 .fu-right {
  width: 60%;
  position: relative;
}

.other-business .mod-2 .fu-right .item {
  position: absolute;
  width: 100%;
}

.other-business .mod-2 .fu-right .item .img,
.other-business .mod-2 .fu-right .item .fu-info {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: none;
}

.other-business .mod-2 .fu-right .item.active .img,
.other-business .mod-2 .fu-right .item.active .fu-info {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: block;
}

.other-business .mod-2 .fu-right .img {
  width: 100%;
}

.other-business .mod-2 .fu-right .img .bg-img {
  width: 100%;
  padding-bottom: 55%;
}

.other-business .mod-2 .fu-right .fu-info {
  position: absolute;
  right: 0;
  bottom: -100px;
  background-color: rgba(8, 82, 165, 0.9);
  color: #fff;
  width: 70%;
  padding: 30px;
}

.other-business .mod-2 .fu-right .fu-info h1 {
  font-weight: normal;
  margin-bottom: 20px;
}

.other-business .mod-2 .fu-right .fu-info p {
  line-height: 2;
}

.other-business.page_mode2 .mod-1 .fu-left img {
  width: 85%;
}

@media (max-width: 992px) {
  .other-business.page_mode2 .mod-1 .container .fu-left img {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .other-business.page_mode2 .mod-1 .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (max-width: 992px) {
  .other-business .mod-1 {
    padding: 0 30px;
  }
  .other-business .mod-1 .bg {
    width: 10vw;
    top: 60%;
  }
  .other-business .mod-1 .bg img {
    width: 100%;
  }
  .other-business .mod-1 .fu-left {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50%;
    padding-bottom: 2vw;
  }
  .other-business .mod-1 .fu-left img {
    width: calc(100% - 20px);
  }
  .other-business .mod-1 .fu-right p {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .other-business .mod-2 .fu-left {
    width: 100%;
    padding-left: 0;
  }
  .other-business .mod-2 .fu-left .title p {
    display: none;
  }
  .other-business .mod-2 .fu-left .fu-menu {
    height: auto;
    min-height: 160px;
    margin-bottom: 0;
    margin-left: 15px;
  }
  .other-business .mod-2 .fu-left .fu-menu::after {
    left: 12px;
  }
  .other-business .mod-2 .fu-right {
    float: none;
    width: 100%;
    margin-bottom: 50px;
  }
  .other-business .mod-2 .fu-right .item .fu-info {
    position: unset;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    width: 100%;
  }
  .other-business .mod-2 .fu-right .item .fu-info h1 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .other-business .mod-1 {
    padding: 0 15px;
  }
  .other-business .mod-1 .container {
    padding: 0;
  }
  .other-business .mod-1 .container .fu-left {
    position: unset;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    width: 100%;
    padding-bottom: 0vw;
    float: none;
  }
  .other-business .mod-1 .container .fu-left img {
    width: calc(100%);
  }
  .other-business .mod-1 .container .fu-left .bg {
    display: none;
  }
  .other-business .mod-1 .container .fu-right {
    margin-top: 30px;
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 30px;
  }
  .other-business .mod-1 .container .fu-right .item .fu-info {
    padding: 15px;
  }
  .other-business .mod-1 .container .fu-right .item .fu-info h1 {
    font-size: 24px;
  }
  .other-business .mod-1 .container .fu-right p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .other-business .mod-2 {
    padding-top: 35px;
  }
  .other-business .mod-2 .fu-left .fu-menu::after {
    left: 10px;
  }
  .other-business .mod-2 .fu-left .fu-menu li p {
    font-size: 16px;
  }
  .other-business .mod-2 .fu-left .fu-menu li.active p {
    font-size: 20px;
  }
  .other-business .mod-2 .fu-right .item .fu-info {
    padding: 15px;
  }
  .other-business .mod-2 .fu-right .item .fu-info h1 {
    font-size: 24px;
  }
}

.productions {
  width: 100%;
  overflow: hidden;
}

.productions .part_1 {
  padding: 102px 0 60px;
  text-align: center;
  position: relative;
}

.productions .part_1 .bottom_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35vw;
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  -webkit-animation: height_bt 5s linear 1;
          animation: height_bt 5s linear 1;
}

.productions .part_1 .part_title {
  text-align: center;
}

.productions .part_1 .part_title p {
  display: inline-block;
}

.productions .part_1 .part_title .title {
  color: #343434;
  font-size: 40px;
  position: relative;
}

.productions .part_1 .part_title .title::before {
  content: '';
  width: 5px;
  height: 55%;
  position: absolute;
  left: -20px;
  top: 50%;
  display: inline-block;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #cfb684;
}

.productions .part_1 .part_title .min_title {
  width: 600px;
  margin-top: 30px;
  font-size: 16px;
  color: #797979;
  line-height: 2;
}

.productions .part_1 .part_content {
  display: inline-block;
  width: 780px;
  height: 780px;
  position: relative;
  margin-top: 50px;
  border-radius: 50%;
  font-size: 0;
}

.productions .part_1 .part_content .circle_bg {
  position: absolute;
  top: 0%;
  left: 0%;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  display: inline-block;
  -webkit-animation: circle_turn 15s linear infinite;
          animation: circle_turn 15s linear infinite;
}

.productions .part_1 .part_content .imgbox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 65%;
  height: 65%;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.productions .part_1 .part_content .imgbox .box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 20px solid #ebeae9;
  overflow: hidden;
}

.productions .part_1 .part_content .imgbox .box .img {
  width: 100%;
  height: 100%;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.productions .part_1 .part_content .imgbox .more_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  padding: 10px 20px;
  overflow: hidden;
}

.productions .part_1 .part_content .imgbox .more_btn::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: '';
  width: 0px;
  height: 0px;
  border-radius: 50%;
  z-index: -1;
  background-color: #d1af6c;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.productions .part_1 .part_content .imgbox .more_btn:hover::before {
  width: 120px;
  height: 120px;
}

.productions .part_1 .part_content .itembox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.productions .part_1 .part_content .itembox .item {
  display: inline-block;
  text-align: center;
}

.productions .part_1 .part_content .itembox .item .btnc {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 180px;
  cursor: pointer;
}

.productions .part_1 .part_content .itembox .item .btnc::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  border: 3px solid #f2f2f2;
  position: absolute;
  left: 0%;
  top: 0;
  border-radius: 50%;
  z-index: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.productions .part_1 .part_content .itembox .item .btnc .text {
  font-size: 20px;
  color: #666666;
  line-height: 1.5;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.productions .part_1 .part_content .itembox .item .btnc .text strong {
  font-size: 22px;
  font-weight: 700;
}

.productions .part_1 .part_content .itembox .item .btnc.active::before {
  background-color: #d1af6c;
  border: 3px solid #ebdbba;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.productions .part_1 .part_content .itembox .item .btnc.active .text {
  color: #fff;
}

.productions .part_1 .part_content .itembox .item:nth-child(1) {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
      -ms-transform: translate(-50%, -30%);
          transform: translate(-50%, -30%);
}

.productions .part_1 .part_content .itembox .item:nth-child(2) {
  position: absolute;
  top: 30%;
  right: 0%;
  -webkit-transform: translate(30%, -50%);
      -ms-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
}

.productions .part_1 .part_content .itembox .item:nth-child(3) {
  position: absolute;
  top: 80%;
  right: 0%;
  -webkit-transform: translate(30%, -50%);
      -ms-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
}

.productions .part_1 .part_content .itembox .item:nth-child(4) {
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
}

.productions .part_1 .part_content .itembox .item:nth-child(5) {
  position: absolute;
  top: 80%;
  left: 0%;
  -webkit-transform: translate(-30%, -50%);
      -ms-transform: translate(-30%, -50%);
          transform: translate(-30%, -50%);
}

.productions .part_1 .part_content .itembox .item:nth-child(6) {
  position: absolute;
  top: 30%;
  left: 0%;
  -webkit-transform: translate(-30%, -50%);
      -ms-transform: translate(-30%, -50%);
          transform: translate(-30%, -50%);
}

.productions .part_2 {
  padding: 85px 0;
  color: #fff;
}

.productions .part_2 .part_title {
  font-size: 36px;
}

.productions .part_2 .msg_box {
  margin-top: 40px;
}

.productions .part_2 .msg_box .num {
  font-size: 16px;
}

.productions .part_2 .msg_box .num strong {
  font-size: 40px;
}

.productions .part_2 .msg_box .text {
  font-size: 15px;
}

.productions .part_2 .msg_box.swiper_msgbox {
  display: none;
}

.productions .part_2 .content_box {
  margin-top: 100px;
}

.productions .part_2 .content_box .part_title {
  font-size: 20px;
  margin-bottom: 30px;
}

.productions .part_2 .content_box .left_part .itembox .item {
  line-height: 40px;
  text-align: center;
  border: 1px solid #A3A2A0;
  font-size: 16px;
  margin-bottom: 15px;
  padding: 0 15px;
}

.productions .part_2 .content_box .right_part {
  text-align: center;
  padding-left: 6%;
  position: relative;
}

.productions .part_2 .content_box .right_part .swiper-container .swiper-slide {
  text-align: left;
}

.productions .part_2 .content_box .right_part .swiper-container .swiper-slide .item {
  padding: 10px;
  border: 5px solid #fff;
  height: 240px;
}

.productions .part_2 .content_box .right_part .swiper-container .swiper-slide .item .textbox {
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 10px;
  position: relative;
}

.productions .part_2 .content_box .right_part .swiper-container .swiper-slide .item .textbox .title_e {
  font-size: 15px;
  text-transform: uppercase;
  display: block;
}

.productions .part_2 .content_box .right_part .swiper-container .swiper-slide .item .textbox .qg {
  font-size: 16px;
  text-align: right;
  margin-top: 60px;
}

.productions .part_2 .content_box .right_part .swiper-container .swiper-slide .item .textbox .bottom_text {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: calc(100% - 20px);
  text-align: right;
  font-size: 18px;
}

.productions .part_2 .content_box .right_part .swiper-pagination {
  margin-top: 20px;
  position: unset;
}

.productions .part_2 .content_box .right_part .swiper-pagination .swiper-pagination-bullet,
.productions .part_2 .content_box .right_part .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  margin: 0 5px;
}

.productions .part_2 .content_box .right_part .swiper-pagination .swiper-pagination-bullet {
  opacity: .3;
}

.productions .part_2 .content_box .right_part .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.productions .part_3 {
  padding: 100px 0;
}

.productions .part_3 .container {
  padding: 0 80px;
}

.productions .part_3 .container .part_title {
  font-size: 36px;
  color: #343434;
  margin-left: -80px;
}

.productions .part_3 .container .swiper-container {
  overflow: visible;
  margin-top: 80px;
  height: 310px;
  position: relative;
}

.productions .part_3 .container .swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.productions .part_3 .container .swiper-container .swiper-slide .img {
  width: 100%;
  opacity: .6;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.productions .part_3 .container .swiper-container .swiper-slide:hover .img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
      -ms-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.productions .part_3 .container .swiper-container .swiper-slide-active .img,
.productions .part_3 .container .swiper-container .swiper-slide-next .img {
  opacity: 1;
}

.productions .part_3 .container .swiper-button-prev,
.productions .part_3 .container .swiper-button-next {
  color: #ffdb9c;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  left: -100px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.productions .part_3 .container .swiper-button-prev::after,
.productions .part_3 .container .swiper-button-next::after {
  font-size: 14px;
}

.productions .part_3 .container .swiper-button-prev:hover,
.productions .part_3 .container .swiper-button-next:hover {
  background-color: #ffdb9c;
  color: #fff;
}

.productions .part_3 .container .swiper-button-next {
  left: auto;
  right: -100px;
}

.productions .part_3 .container .swiper-pagination {
  display: none;
}

@media (max-width: 1600px) {
  .productions .part_3 .container .swiper-container .swiper-button-prev {
    left: 0;
  }
  .productions .part_3 .container .swiper-container .swiper-button-next {
    right: 0;
  }
}

@media (max-width: 1240px) {
  .productions .part_2 {
    padding: 70px 0;
  }
  .productions .part_2 .msg_box {
    display: none;
  }
  .productions .part_2 .msg_box.swiper_msgbox {
    display: block;
    position: relative;
    padding: 0 30px;
  }
  .productions .part_2 .msg_box.swiper_msgbox .swiper-container .swiper-slide {
    text-align: center;
  }
  .productions .part_2 .msg_box.swiper_msgbox .swiper-button-next, .productions .part_2 .msg_box.swiper_msgbox .swiper-button-prev {
    left: -5px;
    outline: none;
  }
  .productions .part_2 .msg_box.swiper_msgbox .swiper-button-next::after, .productions .part_2 .msg_box.swiper_msgbox .swiper-button-prev::after {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
  }
  .productions .part_2 .msg_box.swiper_msgbox .swiper-button-next {
    left: auto;
    right: -5px;
  }
  .productions .part_2 .content_box .left_part .itembox .col-sm-5 {
    width: 50%;
  }
  .productions .part_3 .container .part_title {
    margin-left: 0;
  }
  .productions .part_3 .container .swiper-container .swiper-slide .img {
    width: auto;
    height: 100%;
  }
}

@media (max-width: 992px) {
  .productions .part_1 {
    padding: 60px 0 60px;
  }
  .productions .part_1 .part_title .title {
    font-size: 30px;
  }
  .productions .part_1 .part_content {
    width: 80vw;
    height: 80vw;
  }
  .productions .part_1 .part_content .itembox .item .btnc {
    width: 150px;
    height: 150px;
  }
  .productions .part_2 {
    padding: 60px 0;
  }
  .productions .part_2 .part_title {
    font-size: 30px;
    text-align: center;
  }
  .productions .part_2 .content_box {
    margin-top: 60px;
  }
  .productions .part_2 .content_box .left_part, .productions .part_2 .content_box .right_part {
    width: 100%;
    text-align: center;
  }
  .productions .part_2 .content_box .right_part {
    margin-top: 60px;
  }
  .productions .part_3 {
    padding: 65px 0;
  }
  .productions .part_3 .container .part_title {
    font-size: 30px;
    text-align: center;
    margin-left: 0;
  }
  .productions .part_3 .container .swiper-container {
    margin-top: 65px;
  }
}

@media (max-width: 768px) {
  .productions .part_1 {
    padding: 40px 0;
  }
  .productions .part_1 .part_title .title {
    font-size: 26px;
  }
  .productions .part_1 .part_title .min_title {
    margin-top: 20px;
    width: calc(100% - 30px);
  }
  .productions .part_1 .part_content {
    width: 90vw;
    height: 90vw;
    margin-top: 30px;
  }
  .productions .part_1 .part_content .imgbox .more_btn {
    font-size: 14px;
  }
  .productions .part_1 .part_content .itembox .item .btnc {
    width: 130px;
    height: 130px;
  }
  .productions .part_1 .part_content .itembox .item .btnc .text {
    font-size: 18px;
  }
  .productions .part_1 .part_content .itembox .item .btnc .text strong {
    font-size: 18px;
  }
  .productions .part_2 {
    padding: 50px 0;
  }
  .productions .part_2 .part_title {
    font-size: 26px;
  }
  .productions .part_2 .content_box {
    margin-top: 40px;
  }
  .productions .part_2 .content_box .left_part .itembox .col-sm-5 {
    width: 50%;
    float: left;
  }
  .productions .part_2 .content_box .left_part .itembox .col-sm-5 .item {
    font-size: 14px;
    padding: 0 5px;
  }
  .productions .part_2 .content_box .right_part {
    margin-top: 40px;
  }
  .productions .part_3 {
    padding: 50px 0 70px;
    position: relative;
  }
  .productions .part_3 .part_title {
    font-size: 20px;
  }
  .productions .part_3 .container {
    padding: 0;
  }
  .productions .part_3 .container .part_tite {
    font-size: 26px;
  }
  .productions .part_3 .container .swiper-container {
    margin-top: 20px;
    overflow: hidden;
  }
  .productions .part_3 .container .swiper-container .swiper-slide .img {
    width: 100%;
    height: auto;
  }
  .productions .part_3 .container .swiper-container .swiper-button-prev, .productions .part_3 .container .swiper-container .swiper-button-next {
    display: none;
  }
  .productions .part_3 .container .swiper-pagination {
    display: block;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 30px);
  }
  .productions .part_3 .container .swiper-pagination .swiper-pagination-bullet {
    margin: 0 10px;
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 500px) {
  .productions .part_1 {
    padding: 30px 0;
  }
  .productions .part_1 .part_title .title {
    font-size: 24px;
  }
  .productions .part_1 .part_title .min_title {
    margin-top: 10px;
  }
  .productions .part_1 .part_content .itembox .item .btnc {
    width: 90px;
    height: 90px;
  }
  .productions .part_1 .part_content .itembox .item .btnc .text {
    font-size: 14px;
  }
  .productions .part_1 .part_content .itembox .item .btnc .text strong {
    font-size: 14px;
  }
  .productions .part_2 {
    padding: 36px 0;
  }
  .productions .part_2 .part_title {
    font-size: 26px;
  }
  .productions .part_2 .msg_box {
    margin-top: 20px;
  }
  .productions .part_2 .content_box {
    margin-top: 36px;
  }
  .productions .part_2 .content_box .part_title {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .productions .part_2 .content_box .left_part .itembox .col-sm-5 {
    width: 50%;
    float: left;
  }
  .productions .part_2 .content_box .left_part .itembox .col-sm-5 .item {
    font-size: 14px;
    padding: 0 5px;
  }
  .productions .part_2 .content_box .right_part {
    margin-top: 30px;
  }
  .productions .part_3 {
    padding: 36px 0 76px;
  }
  .productions .part_3 .container .swiper-container {
    height: 200px;
  }
  .productions .part_3 .container .swiper-pagination {
    bottom: 25px;
  }
}

.execution {
  position: relative;
}

.execution .part_bg {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background-size: 1200px;
  background-repeat: no-repeat;
  background-position: right top;
  z-index: -1;
}

.execution .content {
  margin: 100px 0;
}

.execution .content .part_titlebox .title {
  font-size: 40px;
  color: #343434;
}

.execution .content .part_titlebox .title i {
  display: none;
}

.execution .content .part_titlebox .text {
  margin-top: 30px;
  color: #797979;
  font-size: 16px;
  width: 35%;
  line-height: 2;
}

.execution .content .row {
  margin: 0 -55px;
}

.execution .content .row .itembox {
  margin-top: 64px;
  font-size: 0;
  padding: 0;
}

.execution .content .row .itembox .item {
  cursor: pointer;
  padding: 0 55px;
  padding-bottom: 100px;
  display: inline-block;
}

.execution .content .row .itembox .item .imgbox {
  position: relative;
  overflow: hidden;
}

.execution .content .row .itembox .item .imgbox .img {
  height: 435px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.execution .content .row .itembox .item .imgbox .btnc {
  width: 96px;
  height: 96px;
  line-height: 96px;
  text-align: center;
  background-color: #044c9d;
  font-size: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.execution .content .row .itembox .item .imgbox .btnc::before {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  color: #fff;
}

.execution .content .row .itembox .item .text {
  font-size: 20px;
  color: #343434;
  margin-top: 20px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.execution .content .row .itembox .item:nth-child(2) {
  padding-top: 150px;
}

.execution .content .row .itembox .item:hover .imgbox .img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.execution .content .row .itembox .item:hover .imgbox .btnc {
  background-color: #fff;
  border: 1px solid #044c9d;
}

.execution .content .row .itembox .item:hover .imgbox .btnc::before {
  margin-left: 10px;
  color: #044c9d;
}

.execution .content .row .itembox .item:hover .text {
  color: #044c9d;
}

@media (max-width: 1440px) {
  .execution div, .execution p, .execution a, .execution span, .execution i {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .execution .content .part_titlebox {
    padding: 0 15px;
  }
  .execution .content .row {
    margin: 0;
  }
  .execution .content .row .itembox .item {
    padding: 0 15px;
    padding-bottom: 100px;
  }
  .execution .content .row .itembox .item:nth-child(2) {
    padding-top: 150px;
  }
  .execution .content .row .itembox .item .imgbox .img {
    height: 23vw;
  }
  .execution .content .row .itembox .item .imgbox .btnc {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .execution .content .row .itembox .item .text {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .execution .content {
    margin: 0 0 20px;
  }
  .execution .content .part_titlebox {
    margin: 50px 0;
    padding: 0 15px;
  }
  .execution .content .part_titlebox .title {
    font-size: 30px;
  }
  .execution .content .part_titlebox .text {
    width: calc(100% - 36px);
    display: inline-block;
  }
  .execution .content .row {
    margin: 0;
  }
  .execution .content .row .itembox {
    margin-top: 0;
  }
  .execution .content .row .itembox .item {
    padding: 0 15px;
    padding-bottom: 30px;
  }
  .execution .content .row .itembox .item:nth-child(2) {
    padding-top: 0px;
  }
  .execution .content .row .itembox .item .imgbox .img {
    height: 23vw;
  }
  .execution .content .row .itembox .item .text {
    height: 3em;
  }
}

@media (max-width: 768px) {
  .execution .content .part_titlebox {
    margin: 37px 0;
    padding: 0;
    text-align: center;
  }
  .execution .content .part_titlebox .title {
    font-size: 24px;
  }
  .execution .content .part_titlebox .title i {
    display: inline;
  }
  .execution .content .part_titlebox .text {
    width: 100%;
    font-size: 14px;
    margin-top: 12px;
  }
  .execution .content .row {
    margin: 0;
  }
  .execution .content .row .itembox {
    margin-top: 0;
  }
  .execution .content .row .itembox .item {
    padding: 0;
    padding-bottom: 30px;
    width: 100%;
  }
  .execution .content .row .itembox .item .imgbox .img {
    height: 58vw;
  }
  .execution .content .row .itembox .item .text {
    margin-top: 12px;
    font-size: 16px;
    height: auto;
  }
}

@media (max-width: 468px) {
  .execution .content .row {
    margin: 0;
  }
  .execution .content .row .itembox {
    margin-top: 0;
  }
  .execution .content .row .itembox .item .imgbox .btnc {
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
  .execution .content .row .itembox .item .imgbox .btnc .iconfont {
    font-size: 24px;
  }
  .execution .content .row .itembox .item:hover .imgbox .btnc::before {
    margin-left: 0;
  }
}

.hotel_business {
  background-color: #fefefe;
}

.hotel_business #sub_menu {
  margin-bottom: 0;
}

.hotel_business .part_title {
  font-size: 40px;
  color: #343434;
  position: relative;
  line-height: 40px;
}

.hotel_business .part_title::before {
  content: '';
  width: 5px;
  height: 80%;
  position: absolute;
  left: -35px;
  top: 60%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #caad73;
}

.hotel_business .part1 {
  position: relative;
  padding: 100px 0;
}

.hotel_business .part1 .part_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hotel_business .part1 .container {
  position: relative;
  z-index: 1;
}

.hotel_business .part1 .left_part {
  padding-top: 200px;
}

.hotel_business .part1 .left_part .text {
  font-size: 16px;
  margin-top: 50px;
  line-height: 2;
  color: #797979;
  padding-right: 30%;
  text-align: justify;
}

.hotel_business .part1 .right_part {
  text-align: center;
}

.hotel_business .part1 .right_part .imgbox {
  width: 655px;
  height: 570px;
  display: inline-block;
}

.hotel_business .part1 .right_part .imgbox .img {
  width: 100%;
  height: 100%;
}

.hotel_business .part2 {
  margin-top: 100px;
}

.hotel_business .part2 .top_box .part_title {
  display: inline-block;
}

.hotel_business .part2 .top_box .part_nav {
  float: right;
}

.hotel_business .part2 .top_box .part_nav .item {
  float: left;
  color: #ccc;
  font-size: 18px;
  cursor: pointer;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.hotel_business .part2 .top_box .part_nav .item span {
  margin: 0 10px;
  color: #ccc;
}

.hotel_business .part2 .top_box .part_nav .item.active {
  color: #343434;
}

.hotel_business .part2 .content {
  margin: 80px 0 120px;
}

.hotel_business .part2 .content .sj_swiper {
  display: none;
}

.hotel_business .part2 .content .left_part .row {
  margin: 0 -10px;
}

.hotel_business .part2 .content .left_part .row .itembox {
  position: relative;
  padding-bottom: 136px;
  padding-left: 19%;
}

.hotel_business .part2 .content .left_part .row .itembox .item {
  padding: 0 10px;
  position: relative;
  width: 50%;
  float: left;
  display: inline-block;
  cursor: pointer;
  z-index: 0;
}

.hotel_business .part2 .content .left_part .row .itembox .item .imgbox {
  overflow: hidden;
}

.hotel_business .part2 .content .left_part .row .itembox .item .imgbox .img {
  padding-bottom: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.hotel_business .part2 .content .left_part .row .itembox .item .name {
  position: absolute;
  bottom: 15px;
  left: 25px;
  color: #fff;
  font-size: 28px;
}

.hotel_business .part2 .content .left_part .row .itembox .item:nth-child(1) {
  position: absolute;
  bottom: 0;
  left: 0px;
  z-index: 10;
  width: 40%;
}

.hotel_business .part2 .content .left_part .row .itembox .item:last-child {
  margin-top: 140px;
}

.hotel_business .part2 .content .left_part .row .itembox .item.active {
  z-index: 100;
}

.hotel_business .part2 .content .left_part .row .itembox .item.active .img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.hotel_business .part2 .content .right_part {
  padding-left: 6%;
  padding-top: 12%;
}

.hotel_business .part2 .content .right_part .itembox {
  position: relative;
}

.hotel_business .part2 .content .right_part .itembox .item {
  position: absolute;
  top: 20px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.hotel_business .part2 .content .right_part .itembox .item .title {
  font-size: 40px;
  color: #343434;
}

.hotel_business .part2 .content .right_part .itembox .item .text {
  font-size: 16px;
  color: #797979;
  padding: 50px 0;
  position: relative;
  line-height: 1.5;
}

.hotel_business .part2 .content .right_part .itembox .item .text::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d7d7d7;
}

.hotel_business .part2 .content .right_part .itembox .item.active {
  opacity: 1;
  top: 0;
  z-index: 10;
}

@media (max-width: 1600px) {
  .hotel_business div, .hotel_business p, .hotel_business a, .hotel_business span, .hotel_business i {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .hotel_business .part_title::before {
    display: none;
  }
  .hotel_business .part1 {
    position: relative;
  }
  .hotel_business .part1 .row .left_part {
    padding-top: 0%;
    position: absolute;
    left: 0;
    top: 18vw;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .hotel_business .part1 .row .left_part .text {
    padding-right: 20%;
  }
  .hotel_business .part1 .row .right_part {
    float: right;
  }
  .hotel_business .part1 .row .right_part .imgbox {
    width: 90%;
    height: 37vw;
  }
  .hotel_business .part2 .content .left_part .row .itembox {
    padding-bottom: 7vw;
  }
}

@media (max-width: 1240px) {
  .hotel_business .part_title {
    font-size: 36px;
  }
  .hotel_business .part1 {
    padding: 75px 0;
  }
  .hotel_business .part1 .row .left_part .text {
    margin-top: 30px;
    padding-right: 10%;
  }
  .hotel_business .part2 .content .left_part .row .itembox .item .name {
    font-size: 24px;
  }
  .hotel_business .part2 .content .right_part {
    padding-left: 3%;
  }
  .hotel_business .part2 .content .right_part .itembox .item .title {
    font-size: 32px;
  }
  .hotel_business .part2 .content .right_part .itembox .item .text {
    padding: 35px 0;
  }
}

@media (max-width: 992px) {
  .hotel_business .part_title {
    font-size: 30px;
  }
  .hotel_business .part1 {
    padding: 50px 0;
  }
  .hotel_business .part1 .row .left_part .text {
    margin-top: 10px;
    padding-right: 0%;
    font-size: 15px;
  }
  .hotel_business .part2 {
    margin-top: 50px;
  }
  .hotel_business .part2 .content {
    margin: 50px 0;
  }
  .hotel_business .part2 .content .sj_swiper {
    display: block;
    width: 100%;
  }
  .hotel_business .part2 .content .sj_swiper .swiper-slide .item {
    position: relative;
  }
  .hotel_business .part2 .content .sj_swiper .swiper-slide .item .imgbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48vw;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .hotel_business .part2 .content .sj_swiper .swiper-slide .item .imgbox .img {
    width: 100%;
    height: 80%;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }
  .hotel_business .part2 .content .sj_swiper .swiper-slide .item .name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 24px;
    color: #fff;
    display: none;
  }
  .hotel_business .part2 .content .sj_swiper .swiper-slide.swiper-slide-active .item .imgbox .img {
    height: 100%;
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
  .hotel_business .part2 .content .left_part {
    display: none;
  }
  .hotel_business .part2 .content .right_part {
    width: 100%;
    padding: 40px 30px 10px;
    text-align: center;
  }
  .hotel_business .part2 .content .right_part .itembox .item {
    width: 100%;
  }
  .hotel_business .part2 .content .right_part .itembox .item .title {
    font-size: 26px;
  }
  .hotel_business .part2 .content .right_part .itembox .item .text {
    padding: 20px 0 0;
  }
  .hotel_business .part2 .content .right_part .itembox .item .text::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hotel_business .part_title {
    font-size: 26px;
  }
  .hotel_business .part1 {
    padding: 30px 0;
  }
  .hotel_business .part1 .part_bg {
    background-size: 100% 85%;
    background-position: 0 90%;
  }
  .hotel_business .part1 .row .left_part {
    text-align: center;
    position: unset;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .hotel_business .part1 .row .left_part .text {
    text-align: center;
    margin-top: 20px;
  }
  .hotel_business .part1 .row .right_part {
    width: 100%;
    margin-top: 30px;
  }
  .hotel_business .part1 .row .right_part .imgbox {
    height: 75vw;
  }
  .hotel_business .part2 {
    margin-top: 35px;
  }
  .hotel_business .part2 .top_box .part_title {
    width: 100%;
    text-align: center;
  }
  .hotel_business .part2 .top_box .part_nav {
    width: 100%;
    float: unset;
    text-align: center;
    margin-top: 30px;
  }
  .hotel_business .part2 .top_box .part_nav .item {
    display: inline-block;
    float: unset;
  }
  .hotel_business .part2 .content {
    margin: 35px 0;
  }
  .hotel_business .part2 .content .right_part {
    padding: 30px 30px 10px;
  }
  .hotel_business .part2 .content .right_part .itembox .item .title {
    font-size: 22px;
  }
  .hotel_business .part2 .content .right_part .itembox .item .text {
    font-size: 15px;
  }
}

@media (max-width: 468px) {
  .hotel_business .part_title {
    font-size: 24px;
  }
  .hotel_business .part1 .row .left_part .text {
    margin-top: 15px;
    font-size: 14px;
  }
  .hotel_business .part1 .row .right_part {
    margin-top: 20px;
  }
}

.roject_details .header {
  display: none;
}

.roject_details .page_conent {
  position: relative;
}

.roject_details .page_conent .logo_box {
  position: absolute;
  left: 30px;
  top: 25px;
  z-index: 1000;
  height: 40px;
}

.roject_details .page_conent .logo_box img {
  height: 100%;
}

.roject_details .page_conent .swiper-container {
  width: 100vw;
  height: 100vh;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  overflow-x: hidden;
  overflow-y: scroll;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .mask_bg {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 0;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .part_bg {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: no-repeat;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-right: 210px;
  top: 0;
  left: 0;
  color: #fff;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox {
  height: 100vh;
  position: relative;
  width: 70%;
  opacity: 1;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: opacity .6s,-webkit-transform 1.2s;
  transition: opacity .6s,-webkit-transform 1.2s;
  -o-transition: opacity .6s,transform 1.2s;
  transition: opacity .6s,transform 1.2s;
  transition: opacity .6s,transform 1.2s,-webkit-transform 1.2s;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .cathet_nav {
  display: none;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .sj_imhbg {
  display: none;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox.he {
  opacity: 0;
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text {
  position: absolute;
  top: 20%;
  left: 160px;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text .min_title {
  font-size: 18px;
  margin-left: -30%;
  opacity: 0;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text .title {
  font-size: 44px;
  margin-left: -30%;
  opacity: 0;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .bottom_text {
  position: absolute;
  bottom: 10%;
  left: 160px;
  width: 48%;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .bottom_text .title {
  font-size: 28px;
  margin-left: -30%;
  opacity: 0;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .bottom_text .line {
  height: 2px;
  width: 50px;
  background-color: #fff;
  margin: 20px 0;
  opacity: .4;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .bottom_text .min_title {
  font-size: 18px;
  margin-left: -30%;
  opacity: 0;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0px;
  position: relative;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav {
  position: absolute;
  right: 30px;
  top: -50px;
  opacity: 0;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav a {
  color: #fff;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item {
  float: left;
  position: relative;
  margin: 0 20px;
  display: inline-block;
  cursor: pointer;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item::before {
  content: '';
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item:first-child::before {
  display: none;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item .main_nav {
  position: relative;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item .main_nav .iconfont::before {
  display: inline-block;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item .main_nav::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item .main_nav:hover .iconfont::before {
  -webkit-transform: rotateZ(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotateZ(-180deg);
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item .main_nav:hover::before {
  width: 100%;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item .sub_nav {
  position: absolute;
  width: 200%;
  left: 50%;
  text-align: center;
  bottom: 100%;
  padding-bottom: 10px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item .sub_nav .box {
  background-color: rgba(50, 53, 56, 0.8);
  border-radius: 10px;
  padding: 10px 0;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item .sub_nav .box .z_href {
  display: block;
  padding: 5px 10px;
  color: #fff;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav .item .sub_nav .box .z_href:hover {
  color: #d5b574;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav.active {
  opacity: 1;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox.active {
  background-color: rgba(0, 0, 0, 0.3);
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .scroll_title {
  bottom: 100px;
  left: 100px;
  color: #fff;
  font-size: 26px;
  display: inline-block;
  position: fixed;
  width: 30%;
  -webkit-transition: all .4s, padding-left 1s;
  -o-transition: all .4s, padding-left 1s;
  transition: all .4s, padding-left 1s;
  opacity: 0;
  padding-left: 40px;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .scroll_title.on {
  opacity: 1;
  padding-left: 0px;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .scroll_title::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  width: 5px;
  height: 80%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #d5b574;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .right_contentbox {
  width: 50%;
  float: right;
  background-color: #292c2f;
  border-radius: 20px 0 0 0;
  padding: 80px 80px 40px;
  min-height: 300px;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .right_contentbox p {
  line-height: 2;
  font-size: 16px;
  text-indent: 2em;
  margin-bottom: 40px;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .right_contentbox p img {
  width: 100%;
  display: block;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .part_bg,
.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .min_title,
.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .title,
.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .scrollbox {
  -webkit-transition: 1.2s;
  -o-transition: 1.2s;
  transition: 1.2s;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide.active .part_bg {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide.active .title,
.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide.active .min_title {
  margin-left: 0 !important;
  opacity: 1 !important;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide.active .min_title {
  -webkit-transition-delay: .6s;
       -o-transition-delay: .6s;
          transition-delay: .6s;
}

.roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide.active .scrollbox {
  margin-top: -220px;
}

.roject_details .cathet_nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 210px;
  height: 100%;
  background-color: rgba(24, 28, 32, 0.9);
  z-index: 100;
  padding: 40px 0;
  -webkit-transition: all 1.2s;
  -o-transition: all 1.2s;
  transition: all 1.2s;
}

.roject_details .cathet_nav.active {
  right: 0;
}

.roject_details .cathet_nav .logobox {
  text-align: center;
}

.roject_details .cathet_nav .logobox img {
  width: 60px;
}

.roject_details .cathet_nav .navbox {
  text-align: center;
  margin-top: 35px;
  position: relative;
  overflow: hidden;
}

.roject_details .cathet_nav .navbox .item {
  display: block;
  color: #fff;
  height: 60px;
  line-height: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  position: relative;
}

.roject_details .cathet_nav .navbox .item::before {
  content: '';
  width: 0px;
  height: 3px;
  background-color: #d5b574;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.roject_details .cathet_nav .navbox .item:hover, .roject_details .cathet_nav .navbox .item.active {
  color: #d5b574;
}

.roject_details .cathet_nav .navbox .item:hover::before, .roject_details .cathet_nav .navbox .item.active::before {
  width: 30px;
}

.roject_details .cathet_nav .out_swiper_box .swiper-pagination {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  position: unset;
}

.roject_details .cathet_nav .out_swiper_box .swiper-pagination .swiper-pagination-current {
  font-size: 28px;
  color: white;
}

.roject_details .cathet_nav .out_swiper_box .swiper-pagination .active {
  font-size: 28px;
  color: white;
}

.roject_details .cathet_nav .out_swiper_box .swiper-pagination .line {
  margin: 0 10px;
}

.roject_details .cathet_nav .out_swiper_box .box {
  margin-top: 30px;
  text-align: center;
}

.roject_details .cathet_nav .out_swiper_box .box .swiper-button-prev,
.roject_details .cathet_nav .out_swiper_box .box .swiper-button-next {
  width: auto;
  height: auto;
  position: unset;
  display: block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #323538;
  color: #d5b574;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  outline: none;
}

.roject_details .cathet_nav .out_swiper_box .box .swiper-button-prev::after,
.roject_details .cathet_nav .out_swiper_box .box .swiper-button-next::after {
  font-size: 14px;
}

.roject_details .cathet_nav .out_swiper_box .box .swiper-button-prev:hover,
.roject_details .cathet_nav .out_swiper_box .box .swiper-button-next:hover {
  background-color: #d5b574;
  color: #fff;
}

.roject_details .cathet_nav .out_swiper_box .box .swiper-button-next {
  margin-top: 10px;
}

.roject_details .cathet_nav .back_page {
  color: #fff;
  font-size: 16px;
  text-align: center;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}

.roject_details .cathet_nav .back_page .box .text, .roject_details .cathet_nav .back_page .box .iconfont {
  display: block;
  text-align: center;
}

.roject_details .cathet_nav .back_page .box .iconfont {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: #323538;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 20px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  margin-bottom: 5px;
}

.roject_details .cathet_nav .back_page .box .text {
  margin-left: 5px;
  font-size: 14px;
}

.roject_details .cathet_nav .back_page:hover .box .iconfont {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

@media (max-width: 1600px) {
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text, .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .bottom_text {
    left: 30px;
  }
}

@media (max-width: 1440px) {
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text .title {
    font-size: 36px;
  }
  .roject_details .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .bottom_text .title {
    font-size: 24px;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .right_contentbox {
    width: 60%;
  }
}

@media (max-width: 1240px) {
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text .title {
    font-size: 32px;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .bottom_text .title {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide::-webkit-scrollbar {
    display: none;
  }
  .roject_details .header {
    display: block;
  }
  .roject_details .cathet_nav {
    right: -0px;
  }
  .roject_details .cathet_nav .back_page {
    display: none;
  }
  .roject_details .page_conent .logo_box {
    display: none;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox {
    padding-right: 0;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox {
    width: 100%;
    position: relative;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .cathet_nav {
    display: block;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .sj_imhbg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: block;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .sj_imhbg .img {
    width: 100%;
    height: 100%;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox.he {
    opacity: 1;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text {
    top: 15%;
    width: 85%;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text .min_title {
    margin-bottom: 10px !important;
    opacity: 0.8 !important;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text .title {
    font-size: 26px;
    letter-spacing: 2px;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .bottom_text {
    display: none;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox {
    margin-top: -50px;
    position: relative;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox::before {
    content: '项目简介';
    font-size: 22px;
    position: absolute;
    top: -60px;
    left: 30px;
    color: #fff;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .junior_nav {
    display: none;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .scroll_title {
    display: none;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .right_contentbox {
    width: 100%;
    padding: 50px;
    min-height: 100px;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .right_contentbox p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .roject_details .cathet_nav {
    width: 160px;
    height: calc(100% - 50px);
    display: none;
    padding: 50px 0 0;
    top: 0px;
    background-color: unset;
    -webkit-transition: all 0s linear;
    -o-transition: all 0s linear;
    transition: all 0s linear;
    z-index: 2000;
  }
  .roject_details .cathet_nav .cathet_btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #292C2F;
    position: absolute;
    right: -70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
  }
  .roject_details .cathet_nav .cathet_btn .text {
    width: 10px;
    position: absolute;
    top: 50%;
    left: 20%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .roject_details .cathet_nav .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 28, 32, 0.9);
    top: 0;
    left: 100%;
    opacity: 1;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .roject_details .cathet_nav .off_btn {
    position: absolute;
    right: 30px;
    top: 30px;
    display: none;
  }
  .roject_details .cathet_nav .off_btn .iconfont {
    font-size: 24px;
  }
  .roject_details .cathet_nav .logobox {
    position: relative;
    left: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .roject_details .cathet_nav .logobox img {
    width: 50px;
  }
  .roject_details .cathet_nav .navbox {
    width: 100%;
    margin-top: 0;
    margin-top: 30px;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
    position: relative;
    left: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .roject_details .cathet_nav .navbox .item {
    border-top: unset;
    line-height: 1.5;
    height: auto;
    margin-bottom: 20px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
  }
  .roject_details .cathet_nav .out_swiper_box {
    position: absolute;
    width: 100%;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .roject_details .cathet_nav .out_swiper_box .swiper-pagination .line {
    margin: 0;
  }
  .roject_details .cathet_nav .out_swiper_box .box {
    margin-top: 30px;
  }
  .roject_details .cathet_nav .out_swiper_box .box .swiper-button-prev,
  .roject_details .cathet_nav .out_swiper_box .box .swiper-button-next {
    background-color: unset;
    border: 1px solid #fff;
    color: #fff;
  }
  .roject_details .cathet_nav.on .mask {
    left: 0;
  }
  .roject_details .cathet_nav.on .navbox {
    display: block;
    left: 0;
  }
  .roject_details .cathet_nav.on .cathet_btn {
    display: none;
  }
  .roject_details .cathet_nav.on .logobox {
    left: 0%;
  }
}

@media (max-width: 768px) {
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text {
    left: 15px;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text .min_title {
    font-size: 16px;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .topbox .top_text .title {
    font-size: 24px;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox::before {
    font-size: 20px;
    left: 15px;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .right_contentbox {
    padding: 50px 15px;
  }
  .roject_details .page_conent .swiper-container .swiper-wrapper .swiper-slide .max_scrollbox .scrollbox .right_contentbox p {
    font-size: 14px;
  }
}

/* 业务发展-建材生产-60年详情 */
.production_details {
  height: 100vh;
}

.production_details .w_25 {
  width: 25%;
  display: inline-block;
}

.production_details .w_50 {
  width: 50%;
  display: inline-block;
}

.production_details .top_content {
  height: 30%;
  width: 100%;
  font-size: 0;
  position: relative;
}

.production_details .top_content .sj_offbtn {
  position: absolute;
  right: 30px;
  top: 15px;
  display: none;
}

.production_details .top_content .sj_offbtn .iconfont {
  font-size: 28px;
}

.production_details .top_content .left_part,
.production_details .top_content .middle_part,
.production_details .top_content .right_part {
  float: left;
  height: 100%;
}

.production_details .top_content .left_part {
  text-align: center;
  height: 100%;
  position: relative;
}

.production_details .top_content .left_part .yearbox {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #044c9d;
}

.production_details .top_content .left_part .yearbox .year {
  font-size: 14px;
}

.production_details .top_content .left_part .yearbox .num {
  font-size: 140px;
  line-height: 140px;
}

.production_details .top_content .left_part .yearbox .text {
  font-size: 18px;
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

.production_details .top_content .left_part .yearbox .text span {
  padding: 0 8px;
}

.production_details .top_content .left_part .yearbox .text::after, .production_details .top_content .left_part .yearbox .text::before {
  content: '';
  width: 100%;
  position: absolute;
  height: 3px;
  top: 0;
  left: 0;
  background-color: #044c9d;
}

.production_details .top_content .left_part .yearbox .text::after {
  top: auto;
  bottom: 0;
}

.production_details .top_content .middle_part {
  font-size: 16px;
  position: relative;
  border-left: 1px solid #eeeff0;
  border-right: 1px solid #eeeff0;
}

.production_details .top_content .middle_part .textbox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  width: 100%;
  font-size: #343434;
  padding: 0 40px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.production_details .top_content .middle_part .textbox.active {
  opacity: 1;
}

.production_details .top_content .middle_part .textbox .title {
  font-size: 22px;
}

.production_details .top_content .middle_part .textbox .num_title {
  font-size: 36px;
}

.production_details .top_content .middle_part .textbox .text {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.8;
  color: #797979;
}

.production_details .top_content .right_part {
  font-size: 16px;
  position: relative;
}

.production_details .top_content .right_part .navbox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  padding-left: 50px;
}

.production_details .top_content .right_part .navbox a {
  color: #797979;
}

.production_details .top_content .right_part .navbox .main_li {
  float: left;
  position: relative;
  padding: 0 15px;
}

.production_details .top_content .right_part .navbox .main_li::before {
  content: '';
  width: 1px;
  height: 80%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ccc;
}

.production_details .top_content .right_part .navbox .main_li .a_item {
  font-size: 14px;
  position: relative;
}

.production_details .top_content .right_part .navbox .main_li .a_item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  background-color: #044c9d;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  width: 0;
}

.production_details .top_content .right_part .navbox .main_li .a_item:hover::after {
  width: 100%;
}

.production_details .top_content .right_part .navbox .main_li .sub_nav {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 150%;
  padding-top: 10px;
  display: none;
}

.production_details .top_content .right_part .navbox .main_li .sub_nav .box li {
  font-size: 12px;
  padding: 6px 10px;
  display: block;
  width: 100%;
  text-align: center;
}

.production_details .top_content .right_part .navbox .main_li .sub_nav .box li a {
  display: inline-block;
  position: relative;
}

.production_details .top_content .right_part .navbox .main_li .sub_nav .box li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  background-color: #044c9d;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  width: 0;
}

.production_details .top_content .right_part .navbox .main_li .sub_nav .box li a:hover::after {
  width: 100%;
}

.production_details .top_content .right_part .navbox .main_li:first-child::before {
  display: none;
}

.production_details .top_content .right_part .back_btn {
  position: absolute;
  right: 60px;
  top: 30px;
}

.production_details .top_content .right_part .back_btn a {
  color: #797979;
  font-size: 14px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.production_details .top_content .right_part .back_btn a:hover {
  color: #044c9d;
}

.production_details .swiper_content {
  height: calc(70% - 120px);
}

.production_details .swiper_content .swiper_box {
  height: 100%;
}

.production_details .swiper_content .swiper_box .swiper-container {
  height: 100%;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper {
  height: 100%;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide {
  font-size: 0;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part,
.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .middle_part,
.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .right_part {
  height: 100%;
  font-size: 16px;
  float: left;
  color: #fff;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part {
  background-color: #064182;
  position: relative;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part .contentbox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part .contentbox .year {
  font-size: 66px;
  padding: 50px 0;
  line-height: 66px;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part .contentbox .swiper-button-prev,
.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part .contentbox .swiper-button-next {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotateZ(-90deg);
      -ms-transform: translateX(-50%) rotate(-90deg);
          transform: translateX(-50%) rotateZ(-90deg);
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part .contentbox .swiper-button-prev::after,
.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part .contentbox .swiper-button-next::after {
  content: '\e605';
  font-family: "iconfont" !important;
  color: #fff;
  font-size: 50px;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part .contentbox .swiper-button-prev::before,
.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part .contentbox .swiper-button-next::before {
  color: #fff;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .left_part .contentbox .swiper-button-next {
  top: 100%;
  right: auto;
  left: 50%;
  -webkit-transform: translateX(-50%) rotateZ(90deg);
      -ms-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotateZ(90deg);
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .middle_part .imgbox {
  height: 100%;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .middle_part .imgbox .img {
  height: 100%;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .right_part {
  position: relative;
  background-color: #caad73;
}

.production_details .swiper_content .swiper_box .swiper-container .swiper-wrapper .swiper-slide .right_part .textbox {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 16px;
  width: 100%;
  padding: 0 50px;
  line-height: 1.8;
}

.production_details .paginationbox {
  height: 120px;
  background-color: #eeeff0;
  position: relative;
}

.production_details .paginationbox .max_swiper_pagination {
  position: absolute;
  width: 100%;
  bottom: -5px;
  font-size: 0;
}

.production_details .paginationbox .max_swiper_pagination::before {
  content: '';
  position: absolute;
  bottom: 58px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 110%;
  height: 1px;
  background-color: #064182;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet {
  font-size: 14px;
  width: 14.28571%;
  height: auto;
  background-color: unset !important;
  opacity: 1;
  outline: none;
  display: inline-block;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet .years {
  color: #999;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet span {
  white-space: nowrap;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet .cur {
  width: 100%;
  height: 55px;
  background-color: unset;
  display: inline-block;
  position: relative;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet .cur::before {
  content: '';
  position: absolute;
  left: 0;
  top: -10px;
  width: 1px;
  height: 20px;
  background-color: #064182;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet .cur .years {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #BEBFC0;
  display: none;
  width: 100%;
  white-space: pre-wrap;
  padding: 0 5px;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .years {
  color: #333;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .cur {
  background-color: #064182;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .cur .years {
  color: #fff;
}

.production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet:last-child .cur::after {
  content: '';
  position: absolute;
  right: 0;
  top: -10px;
  width: 1px;
  height: 20px;
  background-color: #064182;
}

@media (max-width: 992px) {
  .production_details {
    height: auto;
  }
  .production_details .w_25, .production_details .w_50 {
    width: 100%;
    display: block;
  }
  .production_details .top_content {
    padding: 50px 0;
    height: auto;
  }
  .production_details .top_content .sj_offbtn {
    display: block;
  }
  .production_details .top_content .left_part {
    position: relative;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    float: none;
  }
  .production_details .top_content .left_part .yearbox {
    position: unset;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .production_details .top_content .middle_part {
    margin-top: 40px;
  }
  .production_details .top_content .middle_part .textbox {
    position: unset;
    text-align: center;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .production_details .top_content .right_part {
    display: none;
  }
  .production_details .swiper_content {
    height: auto;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part {
    height: auto;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox {
    position: unset;
    text-align: center;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    padding: 0 20px;
    height: 120px;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .year {
    padding: 0;
    font-size: 50px;
    display: inline-block;
    line-height: 120px;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-prev, .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-next {
    display: inline-block;
    position: unset;
    -webkit-transform: translate(0) rotateZ(0);
        -ms-transform: translate(0) rotate(0);
            transform: translate(0) rotateZ(0);
    font-size: 0;
    height: 120px;
    width: 50px;
    float: right;
    margin: 0;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-prev::after, .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-next::after {
    line-height: 120px;
    display: inline-block;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-prev {
    float: left;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-prev::after {
    -webkit-transform: translate(0) rotateZ(-180deg);
        -ms-transform: translate(0) rotate(-180deg);
            transform: translate(0) rotateZ(-180deg);
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .middle_part {
    height: auto;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .middle_part .imgbox {
    height: auto;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .middle_part .imgbox .img {
    width: 100%;
    height: 66vw;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .right_part {
    height: auto;
    height: 120px;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .right_part .textbox {
    text-align: center;
    position: unset;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
  }
  .production_details .paginationbox {
    height: 90px;
  }
  .production_details .paginationbox .max_swiper_pagination::before {
    width: 100%;
  }
  .production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet .years {
    display: none;
  }
  .production_details .paginationbox .max_swiper_pagination .swiper-pagination-bullet .cur .years {
    display: block;
  }
}

@media (max-width: 768px) {
  .production_details .top_content {
    padding: 30px 0;
  }
  .production_details .top_content .left_part .yearbox .num {
    font-size: 120px;
    line-height: 120px;
  }
  .production_details .top_content .middle_part {
    margin-top: 30px;
  }
  .production_details .top_content .middle_part .textbox {
    padding: 0 15px;
  }
  .production_details .top_content .middle_part .textbox .title {
    font-size: 20px;
  }
  .production_details .top_content .middle_part .textbox .num_title {
    font-size: 30px;
    font-weight: 700;
  }
  .production_details .top_content .middle_part .textbox .text {
    font-size: 15px;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox {
    height: 60px;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-prev, .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-next {
    height: 60px;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-prev::after, .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .swiper-button-next::after {
    line-height: 60px;
    font-size: 40px;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .left_part .contentbox .year {
    line-height: 60px;
    font-size: 35px;
    font-weight: 700;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .right_part {
    height: auto;
    padding: 15px 0;
  }
  .production_details .swiper_content .swiper_box .max_slide .swiper-container .swiper-slide .right_part .textbox {
    padding: 0 15px;
  }
}
