

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.simple-form-basic, .simple-text, .simple-textarea, .simple-select {
  border: 1px solid #ccc;
  padding: 4px;
  vertical-align: middle; }
  .simple-form-basic:focus, .simple-text:focus, .simple-textarea:focus, .simple-select:focus {
    outline: 0 none; }

.simple-text {
  height: 18px;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); }
  .simple-text:focus {
    border-color: rgba(82, 168, 236, 0.8);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); }

.simple-textarea {
  height: 18px;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  height: 80px;
  width: 500px;
  vertical-align: top; }
  .simple-textarea:focus {
    border-color: rgba(82, 168, 236, 0.8);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); }

.simple-select {
  *margin-top: 5px;
  *margin-bottom: 5px;
  *vertical-align: top; }

.reset-radio-checkbox {
  margin: 0 5px 0 0;
  padding: 0;
  font-size: 13px;
  *width: 13px;
  *height: 13px; }

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 0. sassCore's style
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  overflow-y: scroll;
  /* 0 */
  -webkit-overflow-scrolling: touch;
  /* 0 */ }

/**
 * 1. Remove default margin
 * 0. sassCore's style.
 */
body {
  margin: 0;
  /* 1 */
  font-size: 12px;
  /* 0 */
  line-height: 2;
  /* 0 */
  color: #333;
  /* 0 */
  background-color: #fff;
  /* 0 */ }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 * 3. Correct `inline-block` display in IE 6/7.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
  *display: inline;
  /* 3 */
  *zoom: 1;
  /* 3 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background color from active links in IE 10.
 * 2. Improve readability when focused and also mouse hovered in all browsers.
 * 0. sassCore's style.
 */
a {
  background: transparent;
  /* 1 */
  /* 0 */
  text-decoration: none;
  color: #08c; }
  a:active, a:hover {
    outline: 0;
    /* 2 */ }
  a:hover {
    color: #006699; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improve image quality when scaled in IE 7.
 * 0. sassCore's style.
 */
img {
  border: 0;
  /* 1 */
  vertical-align: middle;
  /* 0 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * 1. Contain overflow in all browsers.
 * 2. Improve readability of pre-formatted text in all browsers.
 */
pre {
  overflow: auto;
  /* 1 */
  white-space: pre;
  /* 2 */
  white-space: pre-wrap;
  /* 2 */
  word-wrap: break-word;
  /* 2 */ }

/**
 * 1. Address odd `em`-unit font size rendering in all browsers.
 * 2. Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  _font-family: 'courier new', monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea:focus,
input:focus {
  outline: none; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="text"] {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/**
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 0. sassCore's style
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 0 */ }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none; }

html,
button,
input,
select,
textarea {
  font-family: "Source Han Sans CN", "Noto Sans S Chinese Light", "Microsoft Yahei", "Microsoft YaHei Light", "Pingfang sc regular", "Helvetica Neue", Helvetica, Tahoma, sans-serif; }

h1, h2, h3, h4, h5, h6, p, figure, form, blockquote {
  margin: 0; }

ul, ol, li, dl, dd {
  margin: 0;
  padding: 0; }

ul, ol {
  list-style: none outside none; }

h1, h2, h3 {
  line-height: 2;
  font-weight: normal; }

h1 {
  font-size: 18px; }

h2 {
  font-size: 15.6px; }

h3 {
  font-size: 14.04px; }

h4 {
  font-size: 12px; }

h5, h6 {
  font-size: 10.2px;
  text-transform: uppercase; }

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ccc; }

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc; }

html {
  overflow: hidden;
  overflow-y: scroll; }

button, input, textarea, select {
  border: none;
  border-radius: 0;
  outline: none;
  padding: 0; }

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased; }

img {
  display: block;
  max-width: 100%; }

.clear {
  clear: both; }

.f-cb {
  zoom: 1; }

.f-cb:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  content: "."; }

.fl {
  float: left; }

.fr {
  float: right; }

.por {
  position: relative; }

.poa {
  position: absolute; }

.pof {
  position: fixed; }

.poa-f {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.ovh {
  overflow: hidden; }

.noselect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }

.dn {
  display: none; }

.w-f {
  width: 100%; }

.h-f {
  height: 100%; }

.loader {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  font-size: 10px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  border-right: 2px solid rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  border-left: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  animation: spinner 700ms infinite linear; }

.loader.white {
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  border-right: 2px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  border-left: 2px solid rgba(255, 255, 255, 0.5); }

@keyframes spinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
/*手机上a链接有黑色透明底怎么去掉
给a加这个样式*/
a {
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0); }

select, input {
  outline: none; }

/*ie 去掉自带关闭*/
input::-ms-clear {
  display: none; }

/*网站单位设置*/
@media only screen and (min-width: 360px) {
  html {
    font-size: 26px !important; } }
@media only screen and (min-width: 435px) {
  html {
    font-size: 30px !important; } }
/*@media only screen and(min-width: 500px) {
  html {
    font-size: 36px!important
  }
}*/
@media (min-width: 769px) {
  html {
    font-size: 34px !important; } }
@media only screen and (min-width: 1024px) {
  html {
    font-size: 28px !important; } }
@media only screen and (min-width: 1200px) {
  html {
    font-size: 30px !important; } }
@media only screen and (min-width: 1440px) {
  html {
    font-size: 34px !important; } }
@media only screen and (min-width: 1680px) {
  html {
    font-size: 40px !important; } }
::-moz-selection {
  background: red;
  color: #fff; }

::selection {
  background: red;
  color: #fff; }

::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1); }

::-webkit-scrollbar-thumb {
  background: #000; }

::-webkit-scrollbar-thumb:window-inactive {
  background: #000; }

::-webkit-scrollbar-thumb:vertical:hover {
  background: #000; }

/*==常用颜色==*/
.col-fff {
  color: #fff; }

.col-000 {
  color: #000; }

.col-111 {
  color: #111; }

.col-222 {
  color: #222; }

.col-333 {
  color: #333; }

.col-444 {
  color: #444; }

.col-555 {
  color: #555; }

.col-666 {
  color: #666; }

.col-777 {
  color: #666; }

.col-888 {
  color: #666; }

.col-999 {
  color: #999; }

/*==常用字号==*/
.tit-12 {
  font-size: 12px;
  line-height: 2; }

.tit-13 {
  font-size: 13px;
  line-height: 2; }

.tit-14 {
  font-size: 14px;
  line-height: 2; }

.tit-15 {
  font-size: 15px;
  line-height: 2; }

.tit-16 {
  line-height: 1.8;
  font-size: 16px; }

.tit-17 {
  line-height: 1.8;
  font-size: 17px; }

.tit-18 {
  line-height: 1.8;
  font-size: 18px; }

.tit-19 {
  line-height: 1.8;
  font-size: 19px; }

.tit-20 {
  line-height: 1.8;
  font-size: 20px; }

.tit-21 {
  line-height: 1.8;
  font-size: 21px; }

.tit-22 {
  line-height: 1.8;
  font-size: 22px; }

.tit-23 {
  line-height: 1.8;
  font-size: 23px; }

.tit-24 {
  line-height: 1.8;
  font-size: 24px; }

.tit-25 {
  line-height: 1.8;
  font-size: 25px; }

.tit-26 {
  line-height: 1.8;
  font-size: 26px; }

.tit-27 {
  line-height: 1.8;
  font-size: 27px; }

.tit-28 {
  line-height: 1.8;
  font-size: 28px; }

.tit-29 {
  line-height: 1.8;
  font-size: 29px; }

.tit-30 {
  line-height: 1.8;
  font-size: 30px; }

.tit-31 {
  line-height: 1.8;
  font-size: 31px; }

.tit-32 {
  line-height: 1.8;
  font-size: 32px; }

.tit-33 {
  line-height: 1.8;
  font-size: 33px; }

.tit-34 {
  line-height: 1.8;
  font-size: 34px; }

.tit-35 {
  line-height: 1.8;
  font-size: 35px; }

.tit-36 {
  line-height: 1.8;
  font-size: 36px; }

.tit-37 {
  line-height: 1.8;
  font-size: 37px; }

.tit-38 {
  line-height: 1.8;
  font-size: 38px; }

.tit-39 {
  line-height: 1.8;
  font-size: 39px; }

.tit-40 {
  line-height: 1.8;
  font-size: 40px; }

.tit-41 {
  line-height: 1.8;
  font-size: 41px; }

.tit-42 {
  line-height: 1.8;
  font-size: 42px; }

.tit-43 {
  line-height: 1.8;
  font-size: 43px; }

.tit-44 {
  line-height: 1.8;
  font-size: 44px; }

.tit-45 {
  line-height: 1.8;
  font-size: 45px; }

.tit-46 {
  line-height: 1.8;
  font-size: 46px; }

.tit-47 {
  line-height: 1.8;
  font-size: 47px; }

.tit-48 {
  line-height: 1.8;
  font-size: 48px; }

.tit-49 {
  line-height: 1.8;
  font-size: 49px; }

.tit-50 {
  line-height: 1.8;
  font-size: 50px; }

.tit-51 {
  line-height: 1.8;
  font-size: 51px; }

.tit-52 {
  line-height: 1.8;
  font-size: 52px; }

.tit-53 {
  line-height: 1.8;
  font-size: 53px; }

.tit-54 {
  line-height: 1.8;
  font-size: 54px; }

.tit-55 {
  line-height: 1.8;
  font-size: 55px; }

.tit-56 {
  line-height: 1.8;
  font-size: 56px; }

.tit-57 {
  line-height: 1.8;
  font-size: 57px; }

.tit-58 {
  line-height: 1.8;
  font-size: 58px; }

.tit-59 {
  line-height: 1.8;
  font-size: 59px; }

.tit-60 {
  line-height: 1.8;
  font-size: 60px; }

.tit-61 {
  line-height: 1.8;
  font-size: 61px; }

.tit-62 {
  line-height: 1.8;
  font-size: 62px; }

.tit-63 {
  line-height: 1.8;
  font-size: 63px; }

.tit-64 {
  line-height: 1.8;
  font-size: 64px; }

.tit-65 {
  line-height: 1.8;
  font-size: 65px; }

.tit-66 {
  line-height: 1.8;
  font-size: 66px; }

.tit-67 {
  line-height: 1.8;
  font-size: 67px; }

.tit-68 {
  line-height: 1.8;
  font-size: 68px; }

.tit-69 {
  line-height: 1.8;
  font-size: 69px; }

.tit-70 {
  line-height: 1.8;
  font-size: 70px; }

.tit-71 {
  line-height: 1.8;
  font-size: 71px; }

.tit-72 {
  line-height: 1.8;
  font-size: 72px; }

.tit-73 {
  line-height: 1.8;
  font-size: 73px; }

.tit-74 {
  line-height: 1.8;
  font-size: 74px; }

.tit-75 {
  line-height: 1.8;
  font-size: 75px; }

.tit-76 {
  line-height: 1.8;
  font-size: 76px; }

.tit-77 {
  line-height: 1.8;
  font-size: 77px; }

.tit-78 {
  line-height: 1.8;
  font-size: 78px; }

.tit-79 {
  line-height: 1.8;
  font-size: 79px; }

.tit-80 {
  line-height: 1.8;
  font-size: 80px; }

@media (max-width: 1681px) {
  /*==常用字号==*/
  .tit-12 {
    font-size: 12px; }

  .tit-13 {
    font-size: 13px; }

  .tit-14 {
    font-size: 13px; }

  .tit-15 {
    font-size: 14px; }

  .tit-16 {
    font-size: 15px; }

  .tit-17 {
    font-size: 16px; }

  .tit-18 {
    font-size: 17px; }

  .tit-19 {
    font-size: 18px; }

  .tit-20 {
    font-size: 18px; }

  .tit-21 {
    font-size: 19px; }

  .tit-22 {
    font-size: 20px; }

  .tit-23 {
    font-size: 21px; }

  .tit-24 {
    font-size: 22px; }

  .tit-25 {
    font-size: 23px; }

  .tit-26 {
    font-size: 24px; }

  .tit-27 {
    font-size: 25px; }

  .tit-28 {
    font-size: 26px; }

  .tit-29 {
    font-size: 27px; }

  .tit-30 {
    font-size: 27px; }

  .tit-31 {
    font-size: 28px; }

  .tit-32 {
    font-size: 29px; }

  .tit-33 {
    font-size: 30px; }

  .tit-34 {
    font-size: 31px; }

  .tit-35 {
    font-size: 32px; }

  .tit-36 {
    font-size: 33px; }

  .tit-37 {
    font-size: 34px; }

  .tit-38 {
    font-size: 35px; }

  .tit-39 {
    font-size: 36px; }

  .tit-40 {
    font-size: 37px; }

  .tit-42 {
    font-size: 38px; }

  .tit-43 {
    font-size: 39px; }

  .tit-44 {
    font-size: 40px; }

  .tit-45 {
    font-size: 41px; }

  .tit-46 {
    font-size: 42px; }

  .tit-47 {
    font-size: 43px; }

  .tit-48 {
    font-size: 44px; }

  .tit-50 {
    font-size: 45px; }

  .tit-51 {
    font-size: 46px; }

  .tit-52 {
    font-size: 47px; }

  .tit-53 {
    font-size: 48px; }

  .tit-54 {
    font-size: 49px; }

  .tit-55 {
    font-size: 50px; }

  .tit-56 {
    font-size: 51px; }

  .tit-57 {
    font-size: 52px; }

  .tit-58 {
    font-size: 53px; }

  .tit-59 {
    font-size: 54px; }

  .tit-60 {
    font-size: 54px; }

  .tit-61 {
    font-size: 55px; }

  .tit-62 {
    font-size: 56px; }

  .tit-63 {
    font-size: 57px; }

  .tit-64 {
    font-size: 58px; }

  .tit-65 {
    font-size: 59px; }

  .tit-66 {
    font-size: 60px; }

  .tit-67 {
    font-size: 61px; }

  .tit-68 {
    font-size: 62px; }

  .tit-69 {
    font-size: 63px; }

  .tit-70 {
    font-size: 62px; }

  .tit-71 {
    font-size: 63px; }

  .tit-72 {
    font-size: 64px; }

  .tit-73 {
    font-size: 65px; }

  .tit-74 {
    font-size: 66px; }

  .tit-75 {
    font-size: 67px; }

  .tit-76 {
    font-size: 68px; }

  .tit-77 {
    font-size: 69px; }

  .tit-78 {
    font-size: 70px; }

  .tit-79 {
    font-size: 71px; }

  .tit-80 {
    font-size: 72px; } }
@media (max-width: 1481px) {
  /*==常用字号==*/
  .tit-13 {
    font-size: 12px; }

  .tit-14 {
    font-size: 12px; }

  .tit-15 {
    font-size: 13px; }

  .tit-16 {
    font-size: 14px; }

  .tit-17 {
    font-size: 15px; }

  .tit-18 {
    font-size: 16px; }

  .tit-19 {
    font-size: 17px; }

  .tit-20 {
    font-size: 18px; }

  .tit-20 {
    font-size: 16px; }

  .tit-21 {
    font-size: 17px; }

  .tit-22 {
    font-size: 18px; }

  .tit-23 {
    font-size: 19px; }

  .tit-24 {
    font-size: 20px; }

  .tit-25 {
    font-size: 21px; }

  .tit-26 {
    font-size: 22px; }

  .tit-27 {
    font-size: 23px; }

  .tit-28 {
    font-size: 24px; }

  .tit-29 {
    font-size: 25px; }

  .tit-30 {
    font-size: 26px; }

  .tit-31 {
    font-size: 25px; }

  .tit-32 {
    font-size: 26px; }

  .tit-33 {
    font-size: 27px; }

  .tit-34 {
    font-size: 28px; }

  .tit-35 {
    font-size: 29px; }

  .tit-36 {
    font-size: 30px; }

  .tit-37 {
    font-size: 31px; }

  .tit-38 {
    font-size: 32px; }

  .tit-39 {
    font-size: 33px; }

  .tit-40 {
    font-size: 34px; }

  .tit-41 {
    font-size: 35px; }

  .tit-42 {
    font-size: 36px; }

  .tit-43 {
    font-size: 37px; }

  .tit-44 {
    font-size: 38px; }

  .tit-45 {
    font-size: 37px; }

  .tit-46 {
    font-size: 38px; }

  .tit-47 {
    font-size: 39px; }

  .tit-48 {
    font-size: 40px; }

  .tit-49 {
    font-size: 41px; }

  .tit-50 {
    font-size: 42px; }

  .tit-51 {
    font-size: 43px; }

  .tit-52 {
    font-size: 44px; }

  .tit-53 {
    font-size: 45px; }

  .tit-54 {
    font-size: 46px; }

  .tit-55 {
    font-size: 47px; }

  .tit-56 {
    font-size: 48px; }

  .tit-57 {
    font-size: 49px; }

  .tit-58 {
    font-size: 50px; }

  .tit-59 {
    font-size: 51px; }

  .tit-60 {
    font-size: 52px; }

  .tit-61 {
    font-size: 51px; }

  .tit-62 {
    font-size: 52px; }

  .tit-63 {
    font-size: 53px; }

  .tit-64 {
    font-size: 54px; }

  .tit-65 {
    font-size: 55px; }

  .tit-66 {
    font-size: 56px; }

  .tit-67 {
    font-size: 57px; }

  .tit-68 {
    font-size: 58px; }

  .tit-69 {
    font-size: 59px; }

  .tit-70 {
    font-size: 60px; }

  .tit-71 {
    font-size: 55px; }

  .tit-72 {
    font-size: 56px; }

  .tit-73 {
    font-size: 57px; }

  .tit-74 {
    font-size: 58px; }

  .tit-75 {
    font-size: 59px; }

  .tit-76 {
    font-size: 60px; }

  .tit-77 {
    font-size: 61px; }

  .tit-78 {
    font-size: 62px; }

  .tit-79 {
    font-size: 63px; }

  .tit-80 {
    font-size: 64px; } }
@media (max-width: 1281px) {
  /*==常用字号==*/
  .tit-13 {
    font-size: 12px; }

  .tit-14 {
    font-size: 12px; }

  .tit-15 {
    font-size: 12px; }

  .tit-16 {
    font-size: 13px; }

  .tit-17 {
    font-size: 16px; }

  .tit-18 {
    font-size: 15px; }

  .tit-19 {
    font-size: 16px; }

  .tit-20 {
    font-size: 17px; }

  .tit-22 {
    font-size: 18px; }

  .tit-24 {
    font-size: 19px; }

  .tit-25 {
    font-size: 20px; }

  .tit-26 {
    font-size: 21px; }

  .tit-27 {
    font-size: 22px; }

  .tit-28 {
    font-size: 23px; }

  .tit-29 {
    font-size: 24px; }

  .tit-30 {
    font-size: 25px; }

  .tit-31 {
    font-size: 26px; }

  .tit-32 {
    font-size: 27px; }

  .tit-33 {
    font-size: 24px; }

  .tit-34 {
    font-size: 25px; }

  .tit-35 {
    font-size: 26px; }

  .tit-36 {
    font-size: 27px; }

  .tit-37 {
    font-size: 28px; }

  .tit-38 {
    font-size: 29px; }

  .tit-39 {
    font-size: 30px; }

  .tit-40 {
    font-size: 31px; }

  .tit-41 {
    font-size: 32px; }

  .tit-42 {
    font-size: 33px; }

  .tit-43 {
    font-size: 34px; }

  .tit-44 {
    font-size: 35px; }

  .tit-45 {
    font-size: 36px; }

  .tit-46 {
    font-size: 37px; }

  .tit-47 {
    font-size: 38px; }

  .tit-48 {
    font-size: 39px; }

  .tit-49 {
    font-size: 40px; }

  .tit-50 {
    font-size: 38px; }

  .tit-51 {
    font-size: 39px; }

  .tit-52 {
    font-size: 40px; }

  .tit-53 {
    font-size: 41px; }

  .tit-54 {
    font-size: 42px; }

  .tit-55 {
    font-size: 43px; }

  .tit-56 {
    font-size: 44px; }

  .tit-57 {
    font-size: 45px; }

  .tit-58 {
    font-size: 46px; }

  .tit-59 {
    font-size: 47px; }

  .tit-60 {
    font-size: 48px; }

  .tit-61 {
    font-size: 49px; }

  .tit-62 {
    font-size: 50px; }

  .tit-63 {
    font-size: 51px; }

  .tit-64 {
    font-size: 52px; }

  .tit-65 {
    font-size: 53px; }

  .tit-66 {
    font-size: 54px; }

  .tit-67 {
    font-size: 55px; }

  .tit-68 {
    font-size: 56px; }

  .tit-69 {
    font-size: 57px; }

  .tit-70 {
    font-size: 58px; }

  .tit-71 {
    font-size: 51px; }

  .tit-72 {
    font-size: 52px; }

  .tit-73 {
    font-size: 53px; }

  .tit-74 {
    font-size: 54px; }

  .tit-75 {
    font-size: 55px; }

  .tit-76 {
    font-size: 56px; }

  .tit-77 {
    font-size: 57px; }

  .tit-78 {
    font-size: 58px; }

  .tit-79 {
    font-size: 59px; }

  .tit-80 {
    font-size: 60px; } }
@media (max-width: 1024px) {
  .tit-24 {
    font-size: 16px; }

  .tit-25 {
    font-size: 17px; }

  .tit-26 {
    font-size: 18px; }

  .tit-27 {
    font-size: 19px; }

  .tit-28 {
    font-size: 20px; }

  .tit-29 {
    font-size: 21px; }

  .tit-30 {
    font-size: 22px; }

  .tit-31 {
    font-size: 23px; }

  .tit-32 {
    font-size: 24px; }

  .tit-33 {
    font-size: 21px; }

  .tit-34 {
    font-size: 22px; }

  .tit-35 {
    font-size: 23px; }

  .tit-36 {
    font-size: 24px; }

  .tit-37 {
    font-size: 25px; }

  .tit-38 {
    font-size: 26px; }

  .tit-39 {
    font-size: 27px; }

  .tit-40 {
    font-size: 28px; }

  .tit-41 {
    font-size: 29px; }

  .tit-42 {
    font-size: 30px; }

  .tit-43 {
    font-size: 31px; }

  .tit-44 {
    font-size: 32px; }

  .tit-45 {
    font-size: 33px; }

  .tit-46 {
    font-size: 34px; }

  .tit-47 {
    font-size: 35px; }

  .tit-48 {
    font-size: 36px; }

  .tit-49 {
    font-size: 37px; }

  .tit-50 {
    font-size: 34px; }

  .tit-51 {
    font-size: 35px; }

  .tit-52 {
    font-size: 36px; }

  .tit-53 {
    font-size: 37px; }

  .tit-54 {
    font-size: 38px; }

  .tit-55 {
    font-size: 39px; }

  .tit-56 {
    font-size: 40px; }

  .tit-57 {
    font-size: 41px; }

  .tit-58 {
    font-size: 42px; }

  .tit-59 {
    font-size: 43px; }

  .tit-60 {
    font-size: 44px; }

  .tit-61 {
    font-size: 45px; }

  .tit-62 {
    font-size: 46px; }

  .tit-63 {
    font-size: 47px; }

  .tit-64 {
    font-size: 48px; }

  .tit-65 {
    font-size: 49px; }

  .tit-66 {
    font-size: 50px; }

  .tit-67 {
    font-size: 51px; }

  .tit-68 {
    font-size: 52px; }

  .tit-69 {
    font-size: 53px; }

  .tit-70 {
    font-size: 54px; }

  .tit-71 {
    font-size: 47px; }

  .tit-72 {
    font-size: 48px; }

  .tit-73 {
    font-size: 49px; }

  .tit-74 {
    font-size: 50px; }

  .tit-75 {
    font-size: 51px; }

  .tit-76 {
    font-size: 52px; }

  .tit-77 {
    font-size: 53px; }

  .tit-78 {
    font-size: 54px; }

  .tit-79 {
    font-size: 55px; }

  .tit-80 {
    font-size: 56px; } }
@media (max-width: 768px) {
  .tit-16 {
    font-size: 12px; }

  .tit-18 {
    font-size: 14px; }

  .tit-20 {
    font-size: 16px; }

  .tit-33 {
    font-size: 20px; }

  .tit-34 {
    font-size: 21px; }

  .tit-35 {
    font-size: 22px; }

  .tit-36 {
    font-size: 23px; }

  .tit-37 {
    font-size: 24px; }

  .tit-38 {
    font-size: 25px; }

  .tit-39 {
    font-size: 26px; }

  .tit-40 {
    font-size: 24px; }

  .tit-41 {
    font-size: 25px; }

  .tit-42 {
    font-size: 26px; }

  .tit-43 {
    font-size: 27px; }

  .tit-44 {
    font-size: 28px; }

  .tit-45 {
    font-size: 29px; }

  .tit-46 {
    font-size: 30px; }

  .tit-47 {
    font-size: 31px; }

  .tit-48 {
    font-size: 32px; }

  .tit-49 {
    font-size: 33px; }

  .tit-50 {
    font-size: 28px; }

  .tit-51 {
    font-size: 29px; }

  .tit-52 {
    font-size: 30px; }

  .tit-53 {
    font-size: 31px; }

  .tit-54 {
    font-size: 32px; }

  .tit-55 {
    font-size: 33px; }

  .tit-56 {
    font-size: 34px; }

  .tit-57 {
    font-size: 35px; }

  .tit-58 {
    font-size: 36px; }

  .tit-59 {
    font-size: 37px; }

  .tit-60 {
    font-size: 36px; }

  .tit-61 {
    font-size: 37px; }

  .tit-62 {
    font-size: 38px; }

  .tit-63 {
    font-size: 39px; }

  .tit-64 {
    font-size: 40px; }

  .tit-65 {
    font-size: 41px; }

  .tit-66 {
    font-size: 42px; }

  .tit-67 {
    font-size: 43px; }

  .tit-68 {
    font-size: 44px; }

  .tit-69 {
    font-size: 45px; }

  .tit-70 {
    font-size: 46px; }

  .tit-70 {
    font-size: 42px; }

  .tit-71 {
    font-size: 43px; }

  .tit-72 {
    font-size: 44px; }

  .tit-73 {
    font-size: 45px; }

  .tit-74 {
    font-size: 46px; }

  .tit-75 {
    font-size: 47px; }

  .tit-76 {
    font-size: 48px; }

  .tit-77 {
    font-size: 49px; }

  .tit-78 {
    font-size: 50px; }

  .tit-79 {
    font-size: 51px; }

  .tit-80 {
    font-size: 52px; } }
/*正文字号*/
.conbox-14 {
  font-size: 14 px;
  line-height: 1.8; }

.conbox-15 {
  font-size: 15 px;
  line-height: 1.8; }

.conbox-16 {
  font-size: 16 px;
  line-height: 1.8; }

.conbox-17 {
  font-size: 17 px;
  line-height: 1.8; }

.conbox-18 {
  font-size: 18 px;
  line-height: 1.8; }

.conbox-19 {
  font-size: 19 px;
  line-height: 1.8; }

.conbox-20 {
  font-size: 20 px;
  line-height: 1.8; }

.conbox-21 {
  font-size: 21 px;
  line-height: 1.8; }

.conbox-22 {
  font-size: 22 px;
  line-height: 1.8; }

.conbox-23 {
  font-size: 23 px;
  line-height: 1.8; }

.conbox-24 {
  font-size: 24 px;
  line-height: 1.8; }

@media (max-width: 1481px) {
  .conbox-18 {
    font-size: 16px; }

  .conbox-20 {
    font-size: 18px; }

  .conbox-24 {
    font-size: 20px; } }
@media (max-width: 1281px) {
  .conbox-14 {
    font-size: 13px; }

  .conbox-16 {
    font-size: 14px; }

  .conbox-18 {
    font-size: 15px; }

  .conbox-20 {
    font-size: 15px; }

  .conbox-24 {
    font-size: 16px; } }
/*弹性盒样式*/
.f-no {
  display: flex;
  flex-flow: row wrap; }

.f-no-b-center {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center; }

.f-no-b-start {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start; }

.f-no-b-stretch {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch; }

.f-no-c-center {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center; }

.f-no-c-start {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start; }

.f-no-c-stretch {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: stretch; }

.f-no-s-center {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center; }

.f-no-s-start {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start; }

.f-no-s-end {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-end; }

.f-no-s-stretch {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch; }

.f-no-end-start {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end; }

.f-no-col {
  display: flex;
  flex-flow: column wrap; }

.f-no-col-b-center {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: center; }

.f-no-col-c-center {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center; }

.f-no-col-s-center {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: center; }

.f-no-col-s-end {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-end; }

.f-no-col-c-start {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: flex-start; }

.f-no-col-b-start {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: flex-start; }

.f-no-col-end-start {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-end;
  align-items: flex-start; }

/*响应隐藏样式*/
.pc-block {
  display: block; }

.pc-block-768 {
  display: block; }

.pc-block-767 {
  display: block; }

.m-block {
  display: none; }

.m-block-767 {
  display: none; }

.m-block-768 {
  display: none; }

@media (max-width: 1024px) {
  .pc-block {
    display: none; }

  .m-block {
    display: block; } }
@media (max-width: 768px) {
  .pc-block-768 {
    display: none; }

  .m-block-768 {
    display: block; } }
@media (max-width: 767px) {
  .pc-block-767 {
    display: none; }

  .m-block-767 {
    display: block; } }
/*常用样式类名*/
.poa-middle {
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto; }

.tran-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.text-hide {
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.img-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.pointer {
  cursor: pointer; }

.bgtop {
  background-position: top; }

.containbg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justif {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-bold {
  font-weight: bold; }

.centerh {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.centerv {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.centerblock {
  margin-left: auto;
  margin-right: auto; }

.shadow1 {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15); }

.full {
  width: 100%;
  height: 100%; }

.fullw {
  width: 100%; }

.fullh {
  height: 100%; }

.fullvh {
  height: 100vh; }

.top {
  top: 0; }

.btm {
  bottom: 0; }

.lt {
  left: 0; }

.rt {
  right: 0; }

.block {
  display: block; }

.inlineblock {
  display: inline-block; }

.notrans {
  -webkit-transition-duration: 0s !important;
  -o-transition-duration: 0s !important;
  transition-duration: 0s !important; }

.no-hover {
  pointer-events: none !important;
  cursor: default; }

.trans3d0 {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.round {
  border-radius: 50%; }

.mt0 {
  margin-top: 0; }

.mb0 {
  margin-bottom: 0; }

.in-block {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/*网站主体区域宽度样式*/
.w100 {
  width: 100%; }

.w1720 {
  max-width: 1720px;
  width: 90%;
  margin: 0 auto; }

.w1480 {
  width: 1480px;
  margin: 0 auto; }
  @media (max-width: 1580px) {
    .w1480 {
      width: 90%; } }

.w1080 {
  width: 1080px;
  margin: 0 auto; }
  @media (max-width: 1100px) {
    .w1080 {
      width: 90%; } }

.w1070 {
  width: 1070px;
  margin: 0 auto; }
  @media (max-width: 1100px) {
    .w1070 {
      width: 90%; } }

/*分页样式*/
.wpage {
  text-align: center; }

.page {
  padding: 40px 0 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  clear: both;
  display: inline-block; }

.page a {
  text-decoration: none;
  color: #d2d2d2;
  width: 38px;
  height: 38px;
  line-height: 38px;
  margin: 0 2px;
  /*background:#f0efef;*/
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  float: left;
  transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
  box-sizing: content-box; }

.page a.active {
  background: #0054A3;
  color: #fff;
  transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1); }

.page span.laypage_curr {
  width: 38px;
  height: 38px;
  line-height: 38px;
  margin: 0 2px;
  display: inline-block;
  background: #0054A3;
  color: #fff;
  transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1); }

.page a:hover {
  text-decoration: none;
  color: #fff;
  background: #0054A3;
  transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1); }

/*分页样式end*/
@media (max-width: 767px) {
  .wrap {
    padding: 30px; } }
.wrap-sm {
  padding: 30px; }

@media (max-width: 767px) {
  .wrap-sm {
    padding: 15px; } }
.wrap-xs {
  padding: 20px; }

@media (max-width: 767px) {
  .wrap-xs {
    padding: 10px; } }
.p-v-xs {
  padding-top: 20px;
  padding-bottom: 20px; }

@media (max-width: 767px) {
  .p-v-xs {
    padding-top: 10px;
    padding-bottom: 10px; } }
.p-v-sm {
  padding-top: 30px;
  padding-bottom: 30px; }

@media (max-width: 767px) {
  .p-v-sm {
    padding-top: 20px;
    padding-bottom: 20px; } }
.p-v-md {
  padding-top: 60px;
  padding-bottom: 60px; }

@media (max-width: 959px) {
  .p-v-md {
    padding-top: 40px;
    padding-bottom: 40px; } }
@media (max-width: 767px) {
  .p-v-md {
    padding-top: 30px;
    padding-bottom: 30px; } }
.p-v-lg {
  padding-top: 100px;
  padding-bottom: 100px; }

@media (max-width: 959px) {
  .p-v-lg {
    padding-top: 70px;
    padding-bottom: 70px; } }
@media (max-width: 767px) {
  .p-v-lg {
    padding-top: 50px;
    padding-bottom: 50px; } }
.p-h-sm {
  padding-left: 30px;
  padding-right: 30px; }

@media (max-width: 767px) {
  .p-h-sm {
    padding-left: 20px;
    padding-right: 20px; } }
.pt0 {
  padding-top: 0; }

.pb0 {
  padding-bottom: 0; }

.m-v-lg {
  margin-top: 100px;
  margin-bottom: 100px; }

@media (max-width: 959px) {
  .m-v-lg {
    margin-top: 70px;
    margin-bottom: 70px; } }
@media (max-width: 767px) {
  .m-v-lg {
    margin-top: 50px;
    margin-bottom: 50px; } }
.m-b-xxs {
  margin-bottom: 5px; }

.m-b-xs {
  margin-bottom: 10px; }

.m-b-sm {
  margin-bottom: 20px; }

@media (max-width: 767px) {
  .m-b-sm {
    margin-bottom: 15px; } }
.m-b-md {
  margin-bottom: 30px; }

@media (max-width: 767px) {
  .m-b-md {
    margin-bottom: 20px; } }
.m-b-lg {
  margin-bottom: 60px; }

@media (max-width: 767px) {
  .m-b-lg {
    margin-bottom: 40px; } }
.m-b-xl {
  margin-bottom: 100px; }

@media (max-width: 959px) {
  .m-b-xl {
    margin-bottom: 70px; } }
@media (max-width: 767px) {
  .m-b-xl {
    margin-bottom: 50px; } }
.m-t-xxs {
  margin-top: 5px; }

.m-t-xs {
  margin-top: 10px; }

.m-t-sm {
  margin-top: 20px; }

@media (max-width: 767px) {
  .m-t-sm {
    margin-top: 15px; } }
.m-t-md {
  margin-top: 30px; }

@media (max-width: 767px) {
  .m-t-md {
    margin-top: 20px; } }
.m-t-lg {
  margin-top: 60px; }

@media (max-width: 767px) {
  .m-t-lg {
    margin-top: 40px; } }
.m-r-xxs {
  margin-right: 5px; }

.m-r-xs {
  margin-right: 10px; }

.m-r-sm {
  margin-right: 20px; }

@media (max-width: 767px) {
  .m-r-sm {
    margin-right: 10px; } }
.m-l-xxs {
  margin-left: 5px; }

.m-l-xs {
  margin-left: 10px; }

.m-l-sm {
  margin-left: 20px; }

@media (max-width: 767px) {
  .m-l-sm {
    margin-left: 10px; } }
@media (max-width: 767px) and (orientation: portrait) {
  .phone-v-fullw {
    width: 100%; }

  .phone-v-p0 {
    padding: 0; } }
/*常用css3动画样式*/
.trans {
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all 0.4s; }

.trans2 {
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1); }

.trans-md {
  -webkit-transition: all .8s;
  -o-transition: all .8s;
  transition: all 0.8s; }

.trans-md2 {
  -webkit-transition: all 0.8s cubic-bezier(1, 0, 0, 1);
  -o-transition: all 0.8s cubic-bezier(1, 0, 0, 1);
  transition: all 0.8s cubic-bezier(1, 0, 0, 1); }

/*loadering动画样式2*/
.anim-loader {
  animation: loader 1829ms linear infinite, loader_dash 2156ms ease-in-out infinite; }

.anim-fade-out {
  -webkit-animation: fade_out .5s ease forwards;
  animation: fade_out 0.5s ease forwards; }

/*模块加载的loading-2*/
.ajax-loader {
  background: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  z-index: 1036; }

.tt-ajax-loader .ajax-loader {
  visibility: visible;
  opacity: 1; }

.tt-ajax-loader .ajax-loader .loader-icon .line {
  -webkit-animation: loader 1829ms linear infinite,loader_dash 2156ms ease-in-out infinite;
  animation: loader 1829ms linear infinite, loader_dash 2156ms ease-in-out infinite; }

/*end*/
/*入场动画样式*/
.cssanimations .anim_emt, .cssanimations .anim_group .anim_item {
  visibility: hidden; }

.cssanimations .anim_emt.visb, .cssanimations .anim_group .anim_item.visb {
  visibility: inherit; }

.anim_emt.start {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.anim_emt.start.scale_up {
  -webkit-animation-name: mk_scale;
  animation-name: mk_scale; }

.anim_emt.start.fade_in {
  -webkit-animation-name: mk_fade;
  animation-name: mk_fade; }

.anim_emt.start.r_to_l {
  -webkit-animation-name: mk_right_to_left;
  animation-name: mk_right_to_left; }

.anim_emt.start.l_to_r {
  -webkit-animation-name: mk_left_to_right;
  animation-name: mk_left_to_right; }

.anim_emt.start.t_to_b {
  -webkit-animation-name: mk_top_to_bottom;
  animation-name: mk_top_to_bottom; }

.anim_emt.start.b_to_t {
  -webkit-animation-name: mk_bottom_to_top;
  animation-name: mk_bottom_to_top; }

.slide_anim {
  visibility: hidden; }

.slide_anim.start {
  visibility: visible; }

.slide_anim.b_to_t.start {
  -webkit-animation: mk_bottom_to_top .6s;
  animation: mk_bottom_to_top 0.6s; }

.anim_emt.palx_img.start {
  overflow: hidden;
  -webkit-animation-name: tt_palx_wrap;
  animation-name: tt_palx_wrap; }

.anim_emt.palx_img.start .img-wrap {
  -webkit-animation: tt_palx_img .6s;
  animation: tt_palx_img 0.6s; }

@keyframes tt_palx_wrap {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
@keyframes tt_palx_img {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes loader {
  to {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg); } }
@keyframes loader_dash {
  from {
    stroke-dasharray: 0 150;
    stroke-dashoffset: 0; }
  to {
    stroke-dasharray: 100 150;
    stroke-dashoffset: -140; } }
@keyframes line_w100 {
  to {
    left: 100%; } }
@keyframes rotate_360 {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes fade_out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fade_in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fade_out_in {
  0%,100% {
    opacity: 1; }
  50% {
    opacity: 0; } }
@keyframes mk_scale {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }
@keyframes mk_fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes mk_left_to_right {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
@keyframes mk_right_to_left {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
@keyframes mk_bottom_to_top {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
@keyframes mk_top_to_bottom {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
@keyframes mk_spt {
  0% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
.js-m {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.8s cubic-bezier(0.79, -0.27, 0.21, 0.82); }

.js-m.animate {
  opacity: 1;
  transform: translate(0, 0); }

.js-m-2-1 {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.8s cubic-bezier(0.79, -0.27, 0.21, 0.82); }

.js-m-2-1.animate {
  opacity: 1;
  transform: translate(0, 0); }

.a-del1 {
  animation-delay: 0.1s; }

.a-del2 {
  animation-delay: 0.2s; }

.a-del3 {
  animation-delay: 0.3s; }

.a-del4 {
  animation-delay: 0.4s; }

.a-del5 {
  animation-delay: 0.5s; }

.a-del6 {
  animation-delay: 0.6s; }

.a-del7 {
  animation-delay: 0.7s; }

.a-del8 {
  animation-delay: 0.8s; }

.a-del9 {
  animation-delay: 0.9s; }

.a-del10 {
  animation-delay: 1s; }

.a-dur1 {
  animation-duration: 0.3s; }

.a-dur2 {
  animation-duration: 0.4s; }

.a-dur3 {
  animation-duration: 0.5s; }

.a-dur4 {
  animation-duration: 0.6s; }

.a-dur5 {
  animation-duration: 0.7s; }

.a-dur6 {
  animation-duration: 0.8s; }

.a-dur7 {
  animation-duration: 0.9s; }

.a-dur8 {
  animation-duration: 1s; }

.a-dur9 {
  animation-duration: 1.1s; }

.a-dur10 {
  animation-duration: 1.2s; }

.a-dur11 {
  animation-duration: 1.3s; }

.a-dur12 {
  animation-duration: 1.4s; }

.a-dur13 {
  animation-duration: 1.5s; }

.a-dur14 {
  animation-duration: 1.6s; }

.a-dur15 {
  animation-duration: 1.7s; }

.a-dur16 {
  animation-duration: 1.8s; }

.a-dur17 {
  animation-duration: 1.9s; }

.a-dur18 {
  animation-duration: 2s; }

.t-del1 {
  transition-delay: 0.1s; }

.t-del2 {
  transition-delay: 0.2s; }

.t-del3 {
  transition-delay: 0.3s; }

.t-del4 {
  transition-delay: 0.4s; }

.t-del5 {
  transition-delay: 0.5s; }

.t-del6 {
  transition-delay: 0.6s; }

.t-del7 {
  transition-delay: 0.7s; }

.t-del8 {
  transition-delay: 0.8s; }

.t-del9 {
  transition-delay: 0.9s; }

.t-del10 {
  transition-delay: 1s; }

/*ie10以下显示*/
.browsers {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff url(../image/iebgimg.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: 99; }

.line-1 {
  line-height: 1.1; }

.line-2 {
  line-height: 1.2; }

.line-3 {
  line-height: 1.3; }

.line-4 {
  line-height: 1.4; }

.line-5 {
  line-height: 1.5; }

.line-6 {
  line-height: 1.6; }

.line-7 {
  line-height: 1.7; }

.line-8 {
  line-height: 1.8; }

.line-9 {
  line-height: 1.9; }

.line-10 {
  line-height: 2; }

.line-11 {
  line-height: 2.1; }

.line-12 {
  line-height: 2.2; }

/*毛玻璃*/
.some-class-zxx {
  background-color: #fff; }

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .some-class-zxx {
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px); } }
/*文字引用*/
/*@include font-face($font-family:'ad', $file-path:"../fonts/BEBAS", $weight: normal, $style: normal);
@include simple-text($borderColorFocus:#000);
@include simple-textarea($borderColorFocus:#52a8ec, $width:500px, $height:80px)
@include simple-btn($formbtn:false, $bgColor: $primary, $textColor:$white);
/*@include triangle(left, 10px, #000 )*/
/*@include triangle($direction, $size, $borderColor )*/
/*.conbox-16{
  color:nth($infoColor,1);
  background:nth($infoColor,2);
  border:1px solid nth($infoColor,3);
}*/
/*@include placeholder(#999);*/
/*margin-right: pe(16px);*/
/*@extend .in-block;*/
/*初始样式结束*/
/*首页加载loading*/
body.loading {
  overflow: hidden; }

#pageloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f3f0;
  overflow: hidden;
  z-index: 5000; }

#pageloader .logo {
  width: auto;
  height: 51px; }

.darkmode #pageloader {
  background: #252525; }

body.init #pageloader {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1); }

body.init #pageloader .cont {
  opacity: 0;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all 0.6s; }

body.init #pageloader .logo, body.init #pageloader div {
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  transition: all 0.6s; }

body.init #pageloader .logo {
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px); }

body.init #pageloader .small {
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px); }

body.init #pageloader .loader-line {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0); }

.loader-line {
  width: 50vw;
  max-width: 300px;
  height: 2px;
  background: #A96B41;
  overflow: hidden; }

.loader-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%; }

.loader-icon .line {
  fill: none;
  stroke: #fff;
  stroke-width: 4px;
  stroke-linecap: round;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg); }

/*.loader-line .gradient,.loader-line .gradient2 {
  width:40%;
  height:100%;
  left:-40%;
  background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(218,157,119,0)),color-stop(50%,#DA9D77),to(rgba(218,157,119,0)));
  background-image:-o-linear-gradient(left,rgba(218,157,119,0) 0,#DA9D77 50%,rgba(218,157,119,0) 100%);
  background-image:linear-gradient(to right,rgba(218,157,119,0) 0,#DA9D77 50%,rgba(218,157,119,0) 100%);
  -webkit-animation:line_w100 2s cubic-bezier(.165,.84,.44,1) infinite;
  animation:line_w100 2s cubic-bezier(.165,.84,.44,1) infinite
}
.loader-line .gradient2 {
  -webkit-animation-delay:1s;
  animation-delay:1s
}*/
/*首页加载loading-end*/
.warp-header4 {
  position: relative;
  width: 100%;
  height: 2.75rem;
  z-index: 9; }

.header4 {
  height: 2.75rem;
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 12;
  background: #fff;
  transition: all .5s; }
  .header4 .leftbox .li {
    height: 2.75rem;
    line-height: 2.75rem;
    margin: 0 .6rem;
    transition: all .4s; }
    .header4 .leftbox .li > a {
      position: relative; }
      .header4 .leftbox .li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: #0054A3;
        left: 0;
        bottom: 0;
        z-index: 2;
        opacity: 0;
        transform: scale(0.4, 1);
        transition: all .4s; }
  .header4 .leftbox .li:hover > a:before {
    opacity: 1;
    transform: scale(1, 1); }
  .header4 .leftbox .li a {
    transition: all .4s; }
  .header4 .leftbox .li:hover > a {
    color: #0054A3; }
  .header4 .leftbox .sub-list {
    position: absolute;
    width: 170px;
    left: 0;
    top: 2.75rem;
    padding-left: 32%;
    opacity: 0;
    transform: translate(0, -10px);
    transition: all .4s;
    visibility: hidden; }
    .header4 .leftbox .sub-list:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(2px);
      z-index: 1; }
    .header4 .leftbox .sub-list .nli {
      display: block;
      height: 55px;
      line-height: 55px;
      color: #333;
      width: 100%;
      position: relative;
      z-index: 3; }
    .header4 .leftbox .sub-list .nli:hover {
      color: #0054A3; }
    .header4 .leftbox .sub-list .nli:hover:before {
      opacity: 1;
      transform: scale(1, 1); }
  .header4 .leftbox .li:hover .sub-list {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible; }
  .header4 .rightbox {
    position: relative;
    padding-left: 1rem;
    margin-left: .55rem;
    height: 2.75rem;
    border-left: 1px solid #E6E6E6; }
    .header4 .rightbox .searchbtn {
      width: auto;
      height: 30px;
      margin-right: .65rem;
      cursor: pointer; }
      .header4 .rightbox .searchbtn .icon {
        width: 16px;
        height: 16px;
        fill: #999; }
  .header4 h1 {
    height: 1.725rem; }
    .header4 h1 a {
      display: block; }
    .header4 h1 img {
      height: 1.725rem;
      transition: all .4s;
       }

.header4.on {
  background: #fff;
  height: 80px; 
  border-bottom: 1px solid #e6e6e6;
}
  .header4.on .leftbox .li {
    height: 80px;
    line-height: 80px; }
  .header4.on .leftbox .sub-list {
    /*height: 80px; */
    top:80px;
  }
  .header4.on .rightbox {
    height: 80px; }
  .header4.on h1 {
    height: 60px; }
    .header4.on h1 img {
      height: 60px; }

/*.warp-header4.active{
  position: relative;

  .header4{
    background:#fff;
    
    .leftbox{
      .li>a{
        color:#333;
      }
    }
    .rightbox{
      .langbox{
        .sp{
          color:#333;
        }
      }
      .searchbtn{
        &:before{
          border-left:1px solid rgba(0,0,0,.15);
        }
        .icon{
          fill:#333;
        }
      }
    }
    h1{
      .img1{
        opacity:0;
        visibility: hidden;
      }
      .img2{
        opacity:1;
        visibility: visible;
      }
    }
  }
}*/
@media (max-width: 1380px) {
  .header4 .leftbox .li {
    margin: 0 .35rem; } }
.m-bocweb-header3 {
  /*position:fixed;*/
  position: relative;
  width: 100%;
  height: 60px;
  z-index: 99; }
  .m-bocweb-header3 .header2 {
    background: #fff;
    height: 60px;
    padding: 0 4%;
    box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 99; }
    .m-bocweb-header3 .header2 .logo {
      display: block;
      position: relative;
      z-index: 12;
      height: 36px; }
      .m-bocweb-header3 .header2 .logo img {
        max-height: 100%; }
      .m-bocweb-header3 .header2 .logo a {
        display: block; }
    .m-bocweb-header3 .header2 .nav .tit {
      width: 100%;
      padding: .65rem 0;
      line-height: 60px;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .m-bocweb-header3 .header2 .nav .tit {
      line-height: 1.5; }
    .m-bocweb-header3 .header2 .warp-nav {
      height: calc(100vh - 60px);
      padding: 0 0 45px;
      position: fixed;
      background: #fff;
      width: 100%;
      left: 0;
      top: 60px;
      z-index: 9;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: none; }
    .m-bocweb-header3 .header2 .nav {
      font-size: .65rem;
      color: #333;
      position: absolute;
      width: 100%;
      overflow-y: auto;
      height: calc(100vh - 60px - 1rem);
      /*.lilang{
        background:#063274;
        .tit{
          border-bottom:none;
        }
        .langicon{
          margin-right:.35rem;
        }
        .icon2{
          margin-left:.25rem;
          width:.5rem;
          height:.5rem;
          fill:#00559E ;
        }

        .sub-tit:after{
          display:none;
        }
      }*/ }
      .m-bocweb-header3 .header2 .nav .li {
        position: relative;
        width: 100%; }
      .m-bocweb-header3 .header2 .nav .li:hover > a {
        color: #333; }
      .m-bocweb-header3 .header2 .nav .li:nth-child(odd) {
        background: #f8f8f8; }
      .m-bocweb-header3 .header2 .nav .icon {
        width: 16px;
        height: 16px;
        fill: #999;
        transition: all .4s; }
      .m-bocweb-header3 .header2 .nav .warp-btn {
        /*display:block;*/
        padding: .65rem 5%;
        line-height: 1.5;
        position: relative;
        transition: all .3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        /*border-top:1px solid rgba(255,255,255,.2);*/ }
        .m-bocweb-header3 .header2 .nav .warp-btn .btn {
          position: absolute;
          width: 20px;
          height: 20px;
          display: block;
          margin-right: 5px;
          top: 50%;
          margin-top: -10px;
          left: 0; }
          .m-bocweb-header3 .header2 .nav .warp-btn .btn img {
            position: absolute;
            left: 0;
            top: 0; }
      .m-bocweb-header3 .header2 .nav .sec-list {
        padding: .35rem 5%;
        background: #0054A3; }
    .m-bocweb-header3 .header2 .nav .sub-tit.on {
      background: #0054A3;
      color: #fff; }
    .m-bocweb-header3 .header2 .nav .sub-tit.on .icon {
      transform: rotate(-90deg);
      fill: #fff; }
    .m-bocweb-header3 .header2 .nav .sec-list {
      /*line-height:40px;*/
      padding: .35rem 6% 1.5rem;
      display: none;
      font-size: .6rem;
      border-bottom: 1px solid #555; }
      .m-bocweb-header3 .header2 .nav .sec-list a {
        padding: .3rem 0;
        display: block; }
    .m-bocweb-header3 .header2 .hamburger-inner {
      margin-top: -1px; }
    .m-bocweb-header3 .header2 .hamburger-inner::before {
      top: -6px; }
    .m-bocweb-header3 .header2 .hamburger-inner::after {
      bottom: -6px; }
    .m-bocweb-header3 .header2 .hamburger {
      padding: 0;
      height: 17px; }
    .m-bocweb-header3 .header2 .hamburger-box {
      width: 18px;
      height: 17px; }
    .m-bocweb-header3 .header2 .hamburger-inner, .m-bocweb-header3 .header2 .hamburger-inner::before, .m-bocweb-header3 .header2 .hamburger-inner::after {
      width: 18px;
      height: 2px;
      background: #333; }
    .m-bocweb-header3 .header2 .hamburger.is-active .hamburger-inner, .m-bocweb-header3 .header2 .hamburger.is-active .hamburger-inner::before, .m-bocweb-header3 .header2 .hamburger.is-active .hamburger-inner::after {
      background: #333; }
    .m-bocweb-header3 .header2 .hamburger--3dx-r .hamburger-inner {
      transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0.5s 0s cubic-bezier(0.645, 0.045, 0.355, 1) !important; }
    .m-bocweb-header3 .header2 .hamburger--3dx-r .hamburger-inner::before, .m-bocweb-header3 .header2 .hamburger--3dx-r .hamburger-inner::after {
      transition: transform 0.6s 0s cubic-bezier(0.645, 0.045, 0.355, 1) !important; }
    .m-bocweb-header3 .header2 .hamburger .hamburger-inner:hover, .m-bocweb-header3 .header2 .hamburger .hamburger-inner:hover::before, .m-bocweb-header3 .header2 .hamburger .hamburger-inner:hover::after {
      background: #333; }
    .m-bocweb-header3 .header2 .warp-nav1-sub {
      transform: translate(0, 0);
      transition: all .5s; }
    .m-bocweb-header3 .header2 .warp-nav1-sub.active {
      transform: translate(-100%, 0); }
    .m-bocweb-header3 .header2 .warp-nav2-sub {
      transform: translate(100%, 0);
      transition: all .5s 0s; }
    .m-bocweb-header3 .header2 .warp-nav2-sub.active {
      transform: translate(0, 0);
      transition: all .5s .2s; }
    .m-bocweb-header3 .header2 .h-right span {
      margin-left: .25rem; }
  .m-bocweb-header3 .searchbtn {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all .4s; }
    .m-bocweb-header3 .searchbtn .icon {
      width: 15px;
      height: 15px;
      fill: #333; }
  .m-bocweb-header3 .line {
    width: 1px;
    height: 10px;
    background: #000;
    opacity: .2;
    margin: 0 .5rem 0 .25rem; }
  .m-bocweb-header3 .search {
    width: 90%;
    margin: 0 auto;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    .m-bocweb-header3 .search .input1 {
      padding: 0 .5rem;
      height: 40px;
      width: 100%;
      background: transparent;
      border-radius: 3px;
      border: 1px solid rgba(255, 255, 255, 0.3); }
      .m-bocweb-header3 .search .input1::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #fff; }
      .m-bocweb-header3 .search .input1:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #fff; }
      .m-bocweb-header3 .search .input1::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #fff; }
      .m-bocweb-header3 .search .input1:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #fff; }
    .m-bocweb-header3 .search .input2 {
      width: 30px;
      height: 30px;
      background: url(http://ytwl.intmedic.com/bocstatic/web/img/search.png) no-repeat center center;
      background-size: 15px 16px;
      position: absolute;
      right: 3%;
      top: 50%;
      margin-top: -15px; }
  .m-bocweb-header3 .langbtn {
    margin-right: .25rem; }

.m-bocweb-header3.active .header2 .hamburger-inner::before, .m-bocweb-header3.active .header2 .hamburger-inner::after {
  background: #0054A3 !important; }

@media (max-width: 768px) {
  .m-bocweb-header3 .header2 {
    height: 60px; }

  .m-bocweb-header3 {
    height: 60px; }

  .m-bocweb-header3 .header2 .hamburger-box {
    width: 18px;
    height: 20px; }

  .m-bocweb-header3 .header2 .hamburger {
    height: 20px; }

  .m-bocweb-header3 .hamburger-inner::before {
    top: -6px; }

  .m-bocweb-header3 .hamburger-inner::after {
    bottom: -6px; }

  .m-bocweb-header3 .header2 .hamburger-inner, .m-bocweb-header3 .header2 .hamburger-inner::before, .m-bocweb-header3 .header2 .hamburger-inner::after {
    width: 18px;
    height: 2px; }

  .m-bocweb-header3 .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 6px, 0) rotate(45deg); }

  .m-bocweb-header3 .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -6px, 0) rotate(-45deg); } }
@media (max-width: 767px) {
  .m-bocweb-header3 .header2 .warp-nav {
    padding: 0 0 45px; }

  .m-bocweb-header3 .header2 .nav {
    font-size: .55rem; }

  .m-bocweb-header3 .header2 .nav .warp-btn, .m-bocweb-header3 .header2 .nav .tit {
    padding: .5rem 5%; }

  .m-bocweb-header3 .header2 .logo {
    height: 38px; }

  .m-bocweb-header3 .header2 .nav .sec-list a {
    padding: .2rem 0;
    padding-left: 1.5rem;
    font-size: .55rem;
    border-bottom: 1px solid #0e5ca5;
    position: relative; }
    .m-bocweb-header3 .header2 .nav .sec-list a:before {
      content: "";
      position: absolute;
      width: 5px;
      height: 5px;
      background: #fff;
      border-radius: 50%;
      left: .5rem;
      top: 50%;
      margin-top: -2.5px; } }
.footer {
  background: #0059B2; }
  .footer .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1); }
    .footer .footer-top .leftbox {
      padding: 3.25rem 0 1.6rem;
      width: 73%; }
      .footer .footer-top .leftbox .tit3 {
        margin-bottom: .85rem;
        display: block;
        transition: all .4s; }
      .footer .footer-top .leftbox .tit5 {
        color: #A0D5FD;
        margin-bottom: .15rem;
        display: block;
        transition: all .4s; }
      .footer .footer-top .leftbox .item {
        margin-right: 16.6%; }
      .footer .footer-top .leftbox .tit3:hover {
        color: #fff; }
      .footer .footer-top .leftbox .tit5:hover {
        color: #fff; }
    .footer .footer-top .rightbox {
      padding: 3.25rem .75rem 0;
      width: 27%;
      border-left: 1px solid rgba(255, 255, 255, 0.1); }

      .footer .footer-top .rightbox .tit-tip {
        margin-bottom: .25rem; }
        .footer .footer-top .rightbox .tit-tip span {
          color: #A0D5FD; }
      .footer .footer-top .rightbox .wximg {
        width: 2.25rem; }
      .footer .footer-top .rightbox p {
        color: #A0D5FD;
        margin-top: .15rem; }
  .footer .footer-bot {
    border-right: 1px solid rgba(255, 255, 255, 0.1); }
    .footer .footer-bot .leftbox {
      padding: .85rem 0 0;
      width: 73%; }
      .footer .footer-bot .leftbox .li {
        width: 33.3%;
        padding-right: 3%;
        margin-bottom: .65rem; }
      .footer .footer-bot .leftbox .icon {
        width: 17px;
        height: 19px;
        margin-right: 10px;
        margin-top: 5px; }
      .footer .footer-bot .leftbox .tit6 {
        color: #A0D5FD; }
    .footer .footer-bot .rightbox {
      padding: .85rem 0 .85rem 1rem;
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      width: 27%; }
      .footer .footer-bot .rightbox p {
        color: rgba(160,213,253,.5);
        /*opacity: .5;*/
        margin-bottom: .7rem; }
        .footer .footer-bot .rightbox p a {
        color: #A0D5FD;
        opacity: .5; }
      .footer .footer-bot .rightbox .hrefbox a {
        color: #A0D5FD;
        opacity: .5; }

@media (max-width: 1024px) {
  .footer .footer-top .leftbox {
    display: none; }

  .footer .footer-top .rightbox {
    border-left: none;
    border-right: none;
    padding: 1.5rem 0.75rem 1rem;
    width: 100%; } }
@media (max-width: 768px) {
  .footer .footer-bot .leftbox {
    width: 100%; }

  .footer .footer-top {
    border-right: none; }

  .footer .footer-top .rightbox {
    padding: 1.5rem 0 1rem; }

  .footer .footer-bot .rightbox {
    width: 100%;
    padding: 0 0 .75rem;
    border-left: none; }

  .footer .footer-bot {
    border-right: none; }

  .footer .footer-bot .rightbox p {
    margin-bottom: .3rem; } }
@media (max-width: 767px) {
  .footer .footer-bot .leftbox .li {
    width: 50%; }

  .footer .footer-bot .leftbox .icon {
    margin-bottom: 10px;
    margin-right: 0; }

  .footer .footer-bot .leftbox span {
    display: block;
    width: 100%; } }
/*搜索弹框样式2*/
.search-btn2 svg {
  width: 45px;
  height: 45px; }

.search-alert2 {
  position: fixed;
  z-index: 100;
  background-color: #222222;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none; }

.search-alert2 .close {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 38px;
  right: 2.6%;
  cursor: pointer;
  transition: transform 0.3s ease 0s; }

.search-alert2 .close svg {
  width: 30px;
  height: 30px;
  fill: #fff; }

.search-alert2 .cent-form {
  position: absolute;
  width: 94.8%;
  left: 2.6%;
  top: 50%;
  height: 2rem;
  margin-top: -63px;
  border-bottom: 1px solid #515151; }

.search-alert2 .cent-form .tex {
  border: none;
  font-size: 1.2rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  color: #555;
  background: none;
  padding-right: 3.5rem; }

.search-alert2 .cent-form .sub-butn {
  border: none;
  height: 1.5rem;
  font-size: .8rem;
  line-height: 1.5rem;
  color: #555;
  text-align: right;
  background: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 3.5rem;
  text-align: center; }

.search-alert2 .close:hover {
  transform: rotate(90deg); }

.ibanner {
  height: 21.5rem;
  position: relative;
  z-index: 1; }
  .ibanner .swiper-slide {
    height: 21.5rem;
    overflow: hidden; }
  .ibanner .bg {
    height: 21.5rem; }
  .ibanner .banner-pagination {
    bottom: 4rem !important;
    padding-left: calc(50vw - 740px);
    z-index: 5; }
    .ibanner .banner-pagination span {
      width: 18px;
      height: 18px;
      position: relative;
      background: transparent;
      opacity: 1;
      margin: 0 .2rem !important;
      transition: all .4s; }
      .ibanner .banner-pagination span:before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: #0059B2;
        transition: all .4s; }
    .ibanner .banner-pagination span.swiper-pagination-bullet-active {
      width: 18px;
      height: 18px;
      box-shadow: inset 0 0 0 1px #FF7D0C; }
      .ibanner .banner-pagination span.swiper-pagination-bullet-active:before {
        height: 8px;
        width: 8px;
        border-radius: 8px;
        background: #FF7D0C;
        box-shadow: none;
        transform: translate(-50%, -50%) scale(1, 1); }

@media (max-width: 1560px) {
  .ibanner .banner-pagination {
    padding-left: 5%; } }
@media (max-width: 1024px) {
  .ibanner, .ibanner .swiper-slide, .ibanner .bg {
    height: 21rem; } }
@media (max-width: 768px) {
  .ibanner, .ibanner .swiper-slide, .ibanner .bg {
    height: 90vh; } }
@media (max-width: 767px) {
  .ibanner, .ibanner .swiper-slide, .ibanner .bg {
    height: 70vh; }

  .ibanner .banner-pagination {
    bottom: 1rem !important;
    padding-left: 5%;
    z-index: 5; } }
.search-list1 {
  background: #F3F2F0;
  padding: .8rem 0; }

.search-list1 .searchbox {
  width: 100%;
  height: 68px;
  background: transparent;
  border: none;
  position: relative; }

.search-list1 .input1 {
  width: 100%;
  height: 66px;
  background: transparent;
  border: none; }

.search-list1 .input2 {
  width: 124px;
  height: 42px;
  background: #0054A3 url(../image/searchbtn2.png) no-repeat 75px center;
  border-radius: 21px;
  background-size: 21px auto;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -21px;
  padding-left: 35px;
  text-align: left; }

.search-list1 form {
  width: 100%; }

@media (max-width: 767px) {
  .search-list1 .input2 {
    width: 100px;
    padding-left: 25px;
    background: #0054A3 url(../image/searchbtn2.png) no-repeat 60px center;
    background-size: 16px auto; }

  .search-list1 .input1, .search-list1 .searchbox {
    height: 45px; } }
.search-list2 {
  padding: 1.25rem 0 2rem;
  background: #fff; }

.search-list2 span {
  color: #0054A3; }

.search-list2 .tip {
  padding-bottom: .5rem;
  border-bottom: 2px solid #F3F2F0; }

.search-list2 .tab-ul {
  padding: 0 .35rem;
  border-bottom: 2px solid #F3F2F0; }

.search-list2 .tab-ul .li {
  margin: 0 .5rem;
  position: relative;
  height: 52px;
  line-height: 52px;
  -webkit-transition: all .4s;
  transition: all .4s; }

.search-list2 .tab-ul .li:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background: #0054A3;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .4s;
  transition: all .4s; }

.search-list2 .tab-ul .li:hover, .search-list2 .tab-ul .li.cur {
  color: #0054A3; }

.search-list2 .tab-ul .li:hover:before, .search-list2 .tab-ul .li.cur:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.search-list2 .ulbox {
  margin-top: 1.25rem; }

.search-list2 .ulbox span {
  color: #cc0000; }

.search-list2 .ulbox .li {
  width: 48%;
  padding-bottom: .3rem;
  margin-bottom: .85rem;
  border-bottom: 1px solid rgba(214, 214, 214, 0.8);
  padding-left: 22px;
  position: relative; }

.search-list2 .ulbox .li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  background: #0054a3;
  margin-top: -12px; }

@media (max-width: 767px) {
  .search-list2 {
    padding-bottom: 2.5rem; }

  .search-list2 .tab-ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }

  .search-list2 .ulbox .li {
    width: 100%;
    padding-left: 18px; }

  .search-list2 .page {
    padding-top: 1rem; }

  .search-list2 .ulbox .li:before {
    width: 6px;
    height: 6px;
    margin-top: -7px; } }
.n-banner {
  height: 17.5rem;
  position: relative; }
  .n-banner .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1; }
  .n-banner .text {
    position: absolute;
    z-index: 2;
    margin-top: 2.85rem; }
  .n-banner .tit3 {
    margin-bottom: .45rem; }
  .n-banner .tit4 {
    opacity: .5; }

@media (max-width: 767px) {
  .n-banner {
    height: 9.5rem; }

  .n-banner .text {
    margin-top: 1.2rem; } }
.nwarp-nav {
  position: relative;
  height: 2.2rem;
  margin-top: -25px;
  z-index: 3; }
  .nwarp-nav .subbox {
    padding: 0 5rem;
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(19, 31, 71, 0.1); }
    .nwarp-nav .subbox a {
      padding: 0 15px;
      height: 2.2rem;
      line-height: 2.2rem;
      position: relative; }
    .nwarp-nav .subbox a:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      background: #0054A3;
      bottom: 0;
      left: 0;
      z-index: 1;
      opacity: 0;
      transition: all .3s; }
  .nwarp-nav a:hover, .nwarp-nav a.cur {
    color: #0054A3; }
  .nwarp-nav a:hover:before, .nwarp-nav a.cur:before {
    opacity: 1; }
  .nwarp-nav .subbox2 {
    padding: 0; }
    .nwarp-nav .subbox2 a {
      text-align: center;
      width: 16.6%; }
    .nwarp-nav .subbox2 a:before {
      width: 2.4rem;
      left: 50%;
      margin-left: -1.2rem; }
  .nwarp-nav .subbox3 {
    padding: 0; }
    .nwarp-nav .subbox3 a {
      text-align: center;
      width: 50%; }
    .nwarp-nav .subbox3 a:before {
      width: 2.4rem;
      left: 50%;
      margin-left: -1.2rem; }

@media (max-width: 1024px) {
  .nwarp-nav .subbox {
    padding: 0 2rem; }

  .nwarp-nav .subbox a {
    height: 60px;
    line-height: 60px; }

  .nwarp-nav {
    height: 60px; } }
.news-list1 {
  background: #F5F5F5;
  padding: 1.5rem 0 1rem;
  position: relative;
  z-index: 2; }
  .news-list1 .searchbox {
    width: 100%;
    height: 68px;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    border-radius: 5px;
    position: relative; }
  .news-list1 .input1 {
    width: 100%;
    height: 66px;
    border-radius: 5px;
    text-indent: .5rem; }
  .news-list1 .input2 {
    width: 25px;
    height: 25px;
    background: url(../image/searchbtn.png) no-repeat center center;
    background-size: 21px auto;
    position: absolute;
    right: .5rem;
    top: 50%;
    margin-top: -12.5px; }
  .news-list1 form {
    width: 100%; }
  .news-list1 .img-container {
    width: 100%;
    margin-top: .75rem;
    padding-bottom: 50px; }
  .news-list1 .img img {
    transition: all .4s; }
  .news-list1 .swiper-slide:hover .img img {
    transform: scale(1.1); }
  .news-list1 .swiper-slide:hover .tit3 {
    color: #0054A3; }
  .news-list1 .text {
    margin-top: .6rem; }
  .news-list1 .tit3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: .35rem; }
  .news-list1 .tit4 {
    height: 52px;
    line-height: 26px;
    overflow: hidden;
    margin-bottom: .65rem; }
  .news-list1 .swiper-slide a {
    display: block; }
  .news-list1 .time {
    opacity: .5; }
    .news-list1 .time .icon {
      width: 14px;
      height: 14px;
      margin-right: 8px;
      fill: #666;
      opacity: .5; }
  .news-list1 .img-container .img-pagination {
    bottom: 0; }
    .news-list1 .img-container .img-pagination span {
      width: 10px;
      height: 10px;
      margin: 0 10px; }

@media (max-width: 1024px) {
  .news-list1 {
    padding: 2rem 0 1rem; }

  .news-list1 .input1, .news-list1 .searchbox {
    height: 45px; }

  .news-list1 .input2 {
    width: 18px;
    height: 18px;
    background-size: 18px auto;
    position: absolute;
    margin-top: -9px; } }
@media (max-width: 768px) {
  .news-list1 .img-container .img-pagination span {
    width: 8px;
    height: 8px;
    margin: 0 5px; } }
.news-list2 {
  padding: 1.75rem 0 3.75rem;
  background: #fff; }
  .news-list2 .ul {
    width: 100%; }
  .news-list2 .li {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin-bottom: 10px; }
  .news-list2 .img {
    width: 20%; }
    .news-list2 .img img {
      transition: all .3s; }
  .news-list2 .text {
    width: 77.5%; }
  .news-list2 .tit3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: .35rem;
    transition: all .3s; }
  .news-list2 .tit4 {
    margin-bottom: .7rem; }
  .news-list2 .wpage {
    width: 100%; }
  .news-list2 .li:hover .img img {
    transform: scale(1.1); }
  .news-list2 .li:hover .tit3 {
    color: #0054A3; }

@media (max-width: 768px) {
  .news-list2 .img {
    width: 30%; }

  .news-list2 .text {
    width: 65.5%; } }
@media (max-width: 767px) {
  .news-list2 .img {
    width: 100%;
    margin-bottom: .85rem; }

  .news-list2 .img img {
    width: 100%; }

  .news-list2 .text {
    width: 100%; } }
.n-info {
  padding: 2rem 0 3rem;
  background: #F3F2F0; }
  .n-info .title-top {
    padding: 0 220px 1.05rem;
    width: 100%;
    border-bottom: 1px solid #ccc; }
  .n-info .time {
    margin-top: .75rem; }
  .n-info .backbtn {
    width: 126px;
    height: 40px;
    background: #0054A3;
    border-radius: 20px;
    position: absolute;
    right: 0;
    top: 0; }
    .n-info .backbtn .icon {
      width: 10px;
      height: 10px;
      fill: #fff;
      margin-left: 5px; }
  .n-info .backbtn:hover {
    color: #fff; }
  .n-info .n-text {
    padding: 1.5rem 3.75rem 1.75rem;
    border-bottom: 1px solid #ccc; }
  .n-info .n-bot {
    width: 100%;
    padding: .85rem 0 0; }
    .n-info .n-bot a {
      max-width: 48%; }
      .n-info .n-bot a span {
        color: #0054A3; }

@media (max-width: 1024px) {
  .n-info .title-top {
    padding: 0 140px 1.05rem; }

  .n-info .n-text {
    padding: 1.5rem 0  1.75rem; } }
@media (max-width: 768px) {
  .n-info .title-top {
    padding-left: 0; }

  .n-info .title-top .title {
    text-align: left; }

  .n-info .title-top .time {
    text-align: left; } }
@media (max-width: 767px) {
  .n-info .n-bot a {
    max-width: 100%;
    margin-bottom: .5rem; }

  .n-info .n-bot a {
    margin-bottom: .25rem; }

  .n-info .title-top {
    padding-right: 0; }

  .n-info .title-top .backbtn {
    display: none; }

  .n-info .backbtn {
    margin-top: .65rem;
    position: relative; } }
.contact-list1 {
  padding: 1.7rem 0 2.75rem; }
  .contact-list1 .tit2 {
    color: #0054A3;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .contact-list1 .ul {
    width: 100%; }
    .contact-list1 .ul .li {
      width: 33.3%;
      border-right: 1px solid rgba(0, 0, 0, 0.1); }
    .contact-list1 .ul .icon {
      margin-bottom: .2rem; }
    .contact-list1 .ul .tit4 {
      color: #010D2C;
      margin-top: .55rem; }
    .contact-list1 .ul .li:nth-child(3) {
      border-right: none; }
  .contact-list1 #allmap {
    width: 100%;
    height: 15.5rem;
    margin-top: 1.25rem; }

@media (max-width: 767px) {
  .contact-list1 .ul .li {
    width: 100%;
    border: none;
    margin-bottom: 1rem; }

  .contact-list1 .ul .icon {
    width: 40px;
    height: 40px; }

  .contact-list1 #allmap {
    height: 10.5rem;
    margin-top: .8rem; } }
.about-list1 {
  padding: 1.75rem 0 2rem;
  background: #fff; }
  .about-list1 .leftbox {
    width: 52.85%; }
    .about-list1 .leftbox .tit2 {
      margin-bottom: 1rem; }
    .about-list1 .leftbox .tit5 {
      max-height: 12rem;
      padding-right: 28px;
      overflow-y: auto; }
    .about-list1 .leftbox .tit5::-webkit-scrollbar {
      width: 13px;
      height: 5px; }
    .about-list1 .leftbox .tit5::-webkit-scrollbar-track {
      background: rgba(204, 204, 204, 0.25); }
    .about-list1 .leftbox .tit5::-webkit-scrollbar-thumb {
      background: #0054A3; }
    .about-list1 .leftbox .tit5::-webkit-scrollbar-thumb:window-inactive {
      background: #0054A3; }
    .about-list1 .leftbox .tit5::-webkit-scrollbar-thumb:vertical:hover {
      background: #0054A3; }
  .about-list1 .rightbox {
    width: 44%; }

@media (max-width: 1024px) {
  .about-list1 .leftbox {
    width: 100%;
    margin-bottom: 1rem; }

  .about-list1 .rightbox {
    width: 100%; }

  .about-list1 .leftbox .tit5 {
    height: auto;
    overflow: hidden; }

  .about-list1 .leftbox .tit4 {
    height: 1.25rem; }

  .about-list1 .leftbox .tit5 {
    padding-right: 0; } }
.about-list2 {
  padding: 1.75rem 0 2.5rem;
  background: rgba(51, 51, 51, 0.05); }
  .about-list2 .line {
    width: 100%;
    position: absolute;
    height: 1px;
    background: #333333;
    opacity: 0.2;
    top: 1.5rem;
    z-index: 1; }
  .about-list2 .time-container {
    width: 100px;
    height: 194px;
    margin-top: 1.8rem; }
  .about-list2 .ncontentbox {
    width: 100%; }
  .about-list2 .text {
    width: 80%;
    position: relative;
    z-index: 3; }
  .about-list2 .timeday {
    width: 38%;
    padding-bottom: .5rem;
    border-bottom: 1px solid #0054A3; }
  .about-list2 .tit3 {
    color: #0054A3; }
  .about-list2 .ntext {
    width: 62%;
    background: #fff;
    padding: 1rem; }
  .about-list2 .img {
    width: 46%; }
  .about-list2 .p {
    width: 45.8%; }
  .about-list2 .year {
    color: #0054A3;
    margin-left: .7rem; }
  .about-list2 .swiper-slide.swiper-slide-active {
    color: #0054a3; }
  .about-list2 .btnbox {
    width: 77px;
    height: 166px;
    position: absolute;
    left: 25%;
    top: 32%; }
    .about-list2 .btnbox .swiper-button-prev {
      position: relative;
      width: 77px;
      height: 41px;
      margin-top: auto;
      top: auto;
      left: auto;
      background: none !important; }
      .about-list2 .btnbox .swiper-button-prev .icon {
        width: 77px;
        height: 55px;
        transform: rotate(90deg);
        fill: rgba(0, 0, 0, 0.2);
        transition: all .4s; }
    .about-list2 .btnbox .swiper-button-next {
      position: relative;
      width: 77px;
      height: 41px;
      margin-top: auto;
      top: auto;
      right: auto;
      background: none !important;
      margin-top: 80px; }
      .about-list2 .btnbox .swiper-button-next .icon {
        width: 77px;
        height: 55px;
        transform: rotate(-90deg);
        fill: rgba(0, 0, 0, 0.2);
        transition: all .4s; }
    .about-list2 .btnbox .swiper-button-prev:hover .icon {
      fill: #0054a3; }
    .about-list2 .btnbox .swiper-button-next:hover .icon {
      fill: #0054a3; }

@media (max-width: 768px) {
  .about-list2 .time-container {
    width: 100%;
    /*display:none;*/ }

  .about-list2 .text {
    width: 100%; }

  .about-list2 .time-container {
    margin-top: .8rem; }

  .about-list2 .time-container {
    height: auto;
    margin-bottom: 1rem; }

  .about-list2 .line {
    top: 1.85rem; }

  .about-list2 .timeday {
    display: none; }

  .about-list2 .ntext {
    width: 100%; } }
@media (max-width: 767px) {
  .about-list2 {
    padding-bottom: 2rem; }

  .about-list2 .img {
    width: 100%;
    margin-bottom: .35rem; }

  .about-list2 .img img {
    width: 100%; }

  .about-list2 .p {
    width: 100%; }

  .about-list2 .ntext {
    padding: .75rem .5rem; } }
.about-list3 {
  padding: 1.9rem 0 2.5rem;
  background: #fff;
  overflow: hidden; }
  .about-list3 .img {
    margin-top: 1rem; }

.about-list4 {
  /*background:rgba(0, 84, 163, 1);*/
  padding: 2rem 0 0;
  position: relative; }
  .about-list4:before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    height: calc(100% - 7.5rem);
    background: url(../image/aboutimg5.png) no-repeat center top;
    background-size: cover;
    z-index: 2; }
  .about-list4 .bg {
    width: 100%;
    height: 8.2rem;
    background: #E8F5FC url(../image/aboutimg4.png) no-repeat left top;
    position: relative;
    margin-top: -6.5rem;
    z-index: 1; }
  .about-list4 .contentbox {
    position: relative;
    z-index: 3; }
  .about-list4 .imgbot {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.5; }
  .about-list4 .bot {
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 0;
    z-index: 1; }
  .about-list4 .p {
    padding-left: 3rem; }
  .about-list4 .tit3 {
    color: #fff;
    opacity: .5;
    margin-bottom: 1rem; }
  .about-list4 .text {
    width: 34%; }
    .about-list4 .text .item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      padding: .45rem 0; }
    .about-list4 .text .sp {
      width: 120px;
      margin-top: .1rem; }
    .about-list4 .text .item:last-child {
      border-bottom: none; }
  .about-list4 .textbot {
    margin-top: 3rem; }
    .about-list4 .textbot .tit6 {
      color: #0059B3;
      margin-bottom: .4rem; }
    .about-list4 .textbot .tit7 {
      opacity: .6; }
  .about-list4 .warp-videobox {
    width: 58%; }
  .about-list4 .contentbox {
    position: relative;
    margin-left: calc(50vw - 700px);
    z-index: 2; }
  .about-list4 .tit4 {
    margin-top: 1.25rem; }
  .about-list4 .tit5 {
    max-width: 90%;
    margin-top: .55rem; }

.about-list4 .warp-videobox .swiper-pagination {
  display: flex;
  flex-flow: row wrap;
  padding-left: 1rem;
  bottom: .75rem; }
  .about-list4 .warp-videobox .swiper-pagination span {
    background: #fff;
    opacity: 1; }
  .about-list4 .warp-videobox .swiper-pagination span.swiper-pagination-bullet-active {
    background: #FF7D00; }

@media (max-width: 1500px) {
  .about-list4 .contentbox {
    margin-left: 5%;
    width: 95%; } }
@media (max-width: 1200px) {
  .about-list4 .text .sp {
    width: 90px; } }
@media (max-width: 768px) {
  .about-list4 .text, .about-list4 .warp-videobox {
    width: 100%; }

  .about-list4 .textbot {
    margin: 1.5rem 0; }

  .about-list4 .textbot .tit6 {
    color: #fff; }

  .about-list4 .textbot .tit7 {
    color: #fff; }

  .about-list4 .bot {
    width: 100%; } }
@media (max-width: 767px) {
  .about-list4 .text .sp {
    width: 72px; }

  .about-list4 .text .tit-24 {
    font-size: 14px; }

  .about-list4 .video-btn {
    width: 2.25rem;
    height: 2.25rem; }

  .about-list4 .tit5 {
    font-size: 14px; }

  .about-list4:before {
    height: calc(100% - 6.5rem); }

  .about-list4 .bg {
    height: 7.2rem;
    margin-top: -6.5rem; }

  .about-list4 .tit5 {
    margin-top: .25rem; }

  .about-list4 .tit4 {
    margin-top: 1.1rem; } }
.about-list5 {
  padding: 2rem 0 2.25rem; }
  .about-list5 .ulbox {
    margin-top: 1rem; }
    .about-list5 .ulbox .li {
      width: 25%;
      padding: .75rem;
      background: #fff;
      transition: all .4s; }
    .about-list5 .ulbox .text {
      padding: 1rem 0 0; }
      .about-list5 .ulbox .text p {
        height: 50px;
        line-height: 25px; }
    .about-list5 .ulbox .honorimg {
      padding: 0 55px; }
    .about-list5 .ulbox .li:hover {
      box-shadow: 0px 0 30px 0px rgba(11, 20, 45, 0.25);
      position: relative;
      z-index: 2; }
  .about-list5 .morebtn {
    margin-top: 1.5rem; }
    .about-list5 .morebtn .icon {
      width: 30px;
      height: 30px;
      margin-bottom: .3rem; }

@media (max-width: 767px) {
  .about-list5 .ulbox .li {
    width: 50%;
    padding: .5rem; }

  .about-list5 .ulbox .text {
    padding-top: .5rem; }

  .about-list5 {
    padding: 1.25rem 0 2rem; } }
.logistics-list1 {
  background: #fff;
  padding: 2.25rem 0 2.25rem; }
  .logistics-list1 .tit2 {
    margin-bottom: .6rem; }
  .logistics-list1 .tit3 {
    width: 1080px;
    max-width: 90%;
    margin: 0 auto 1.2rem; }
  .logistics-list1 .warp-tabulbox {
    margin: .55rem 0 1.15rem;
    position: relative; }
    .logistics-list1 .warp-tabulbox:before {
      content: "";
      position: absolute;
      width: 100%;
      top: 40px;
      height: 2px;
      background: #ddd;
      left: 0;
      z-index: 1; }
    .logistics-list1 .warp-tabulbox .tabulbox {
      position: relative;
      z-index: 2; }
      .logistics-list1 .warp-tabulbox .tabulbox .li {
        cursor: pointer; }
      .logistics-list1 .warp-tabulbox .tabulbox .img {
        width: 63px;
        height: 63px;
        background-position: center top;
        background-size: 63px auto;
        transition: background-position .4s; }
      .logistics-list1 .warp-tabulbox .tabulbox .tit4 {
        margin-top: 12px;
        transition: all .4s; }
      .logistics-list1 .warp-tabulbox .tabulbox .li.cur .img {
        background-position: center bottom; }
      .logistics-list1 .warp-tabulbox .tabulbox .li.cur .tit4 {
        color: #0057be; }
  .logistics-list1 .ulbox-container {
    margin-top: 1.25rem; }
  .logistics-list1 .warptext {
    background: #F7F8F9;
    overflow: hidden;
    flex-flow: row-reverse wrap; }
    .logistics-list1 .warptext .text {
      width: 13rem;
      height: 13.75rem;
      padding: 1.2rem 1.5rem; }
      .logistics-list1 .warptext .text .tit5 {
        margin-bottom: .1rem; }
      .logistics-list1 .warptext .text .tit7 {
        margin-bottom: .6rem; }
    .logistics-list1 .warptext .bg2 {
      width: calc(100% - 13rem);
      height: 13.75rem; }
    .logistics-list1 .warptext .item {
      padding: 0 .5rem;
      height: 36px;
      line-height: 36px;
      display: inline-block;
      background: #0057be;
      border-radius: 6px;
      margin-right: .25rem; }
    .logistics-list1 .warptext .item:hover {
      color: #fff; }
    .logistics-list1 .warptext .more {
      margin-top: 2.25rem;
      color: #666; }
      .logistics-list1 .warptext .more .icon {
        width: 1.2rem;
        height: 1.2rem;
        fill: #0057be;
        margin-right: .25rem; }

.logistics-list1 .ulbox-container .swiper-pagination {
  display: none; }

@media (max-width: 768px) {
  .logistics-list1 .warp-tabulbox .tabulbox {
    display: none; } }
@media (max-width: 768px) {
  .logistics-list1 {
    padding: 1.5rem 5%; }

  .logistics-list1 .warp-tabulbox {
    margin-bottom: 0; }

  .logistics-list1 .warptext .bg2 {
    width: 100%;
    height: 7rem; }

  .logistics-list1 .warptext .text {
    width: 100%;
    height: auto;
    padding: 1rem .65rem 1.5rem;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center; }

  .logistics-list1 .warptext .text .tit6 {
    text-align: center; }

  .logistics-list1 .tit2 {
    margin-bottom: .35rem; }

  .logistics-list1 .ulbox-container {
    margin-top: .5rem;
    padding-bottom: 2rem; }

  .logistics-list1 .ulbox-container .swiper-pagination {
    bottom: 0;
    display: block; }

  .logistics-list1 .ulbox-container span {
    border-radius: 0;
    margin: 0 .25rem !important; }

  .logistics-list1 .ulbox-container span.swiper-pagination-bullet-active {
    background: #0057BE; }

  .logistics-list1 .warptext .more {
    margin-top: 1rem; } }
.logistics-list2 {
  padding: 1.7rem 0 3.7rem;
  background: #F5F6F6 url(../image/logisticsimg2.jpg) no-repeat center top;
  background-size: 100% auto; }
  .logistics-list2 .title {
    width: 100%;
    padding-bottom: .65rem;
    border-bottom: 2px solid #ddd;
    margin-bottom: 1.25rem; }
  .logistics-list2 .leftbox {
    width: 32.4%; }
    .logistics-list2 .leftbox .wximg {
      width: 7rem; }
    .logistics-list2 .leftbox .tit3 {
      color: #210F05;
      margin-top: .25rem;
      margin-bottom: .35rem; }
  .logistics-list2 .rightbox {
    width: 55.8%; }
    .logistics-list2 .rightbox .tit3 {
      margin-bottom: .7rem; }
    .logistics-list2 .rightbox .sptop {
      padding: .5rem .55rem;
      border: 1px solid #D9DDE0;
      transition: all .4s; }
    .logistics-list2 .rightbox .icon {
      width: 20px;
      height: 20px;
      fill: #666;
      transition: all .4s; }
    .logistics-list2 .rightbox .text {
      width: 100%;
      padding: .5rem;
      border: 1px solid #D9DDE0;
      border-top: none;
      display: none; }
      .logistics-list2 .rightbox .text span {
        width: calc(100% - 40px); }
    .logistics-list2 .rightbox .tip {
      width: 30px; }
    .logistics-list2 .rightbox .sptop-left {
      width: calc(100% - 50px); }
      .logistics-list2 .rightbox .sptop-left span {
        width: calc(100% - 40px); }
    .logistics-list2 .rightbox .sptop.active {
      background: #0059B3;
      color: #fff; }
      .logistics-list2 .rightbox .sptop.active .icon {
        transform: rotate(-180deg);
        fill: #fff; }
    .logistics-list2 .rightbox .item-li {
      margin-bottom: .5rem; }

@media (max-width: 768px) {
  .logistics-list2 .leftbox {
    width: 100%;
    margin-bottom: 1rem; }

  .logistics-list2 .rightbox {
    width: 100%; } }
@media (max-width: 767px) {
  .logistics-list2 .leftbox .wximg {
    width: 5rem; }

  .logistics-list2 .leftbox .tit3 {
    text-align: center;
    font-size: 16px; }

  .logistics-list2 {
    padding-bottom: 2rem; } }
.logistics-list3 {
  padding: 2rem 0 1rem; }
  .logistics-list3 .ulbox {
    margin-top: 1.7rem; }
  .logistics-list3 .itembox {
    background: #F7F8F9;
    margin-bottom: 1.5rem; }
  .logistics-list3 .tit4 {
    width: 860px;
    max-width: 100%;
    margin: .65rem auto 0; }
  .logistics-list3 .text {
    width: 48%;
    padding: 2rem 2rem 1rem; }
  .logistics-list3 .tit3 {
    margin-bottom: .15rem; }
  .logistics-list3 .tit6 {
    margin-top: .85rem; }
  .logistics-list3 .tit5 {
    color: #0059B2;
    margin-bottom: .5rem; }
  .logistics-list3 .img {
    width: 52%; }
  .logistics-list3 .itembox:nth-child(even) {
    flex-flow: row-reverse wrap; }

@media (max-width: 768px) {
  .logistics-list3 .img {
    width: 100%; }

  .logistics-list3 .text {
    width: 100%;
    padding: 1.5rem 1rem; } }
.join-list1 {
  padding: 2rem 0 1.25rem;
  background: #fff; }
  .join-list1 .tit3 {
    width: 650px;
    max-width: 100%;
    margin: .8rem auto 0; }
  .join-list1 .li {
    width: 48.5%;
    padding: .75rem 1rem 3.5rem;
    position: relative; }
  .join-list1 .tit4 {
    margin-bottom: .3rem; }
  .join-list1 .ulbox {
    margin-top: 1.5rem; }
    .join-list1 .ulbox .li {
      border: 1px solid #ddd;
      border-top: 4px solid #005FB8;
      margin-right: 3%;
      margin-bottom: 3%; }
    .join-list1 .ulbox .li:nth-child(2n) {
      margin-right: 0; }
  .join-list1 .item p {
    position: relative;
    padding-left: 25px;
    margin-bottom: .15rem; }
    .join-list1 .item p:before {
      content: "";
      position: absolute;
      width: 8px;
      height: 8px;
      background: #0059B2;
      border-radius: 50%;
      left: 0;
      top: 50%;
      margin-top: -4px; }
  .join-list1 .icon {
    height: 2.5rem;
    position: absolute;
    right: 1rem;
    bottom: 1rem; }

@media (max-width: 767px) {
  .join-list1 .ulbox .li {
    width: 100%;
    margin-right: 0; }

  .join-list1 .item p:before {
    width: 6px;
    height: 6px;
    top: 14px; } }
.join-list2 {
  padding-top: 1.7rem;
  padding-bottom: 4.5rem; }
  .join-list2 .title {
    margin-bottom: .85rem; }
  .join-list2 .recruitop {
    height: 70px;
    background: rgba(1, 13, 44, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333333; }
    .join-list2 .recruitop .item {
      height: 70px; }
    .join-list2 .recruitop .item:nth-child(1) {
      width: 22%;
      padding: 0 .75rem;
      /*border-right:1px solid rgba(0,0,0,.1); */ }
    .join-list2 .recruitop .item:nth-child(2) {
      width: 33%;
      padding: 0 .75rem;
      /*border-right:1px solid rgba(0,0,0,.1);*/ }
    .join-list2 .recruitop .item:nth-child(3) {
      width: 25%;
      padding: 0 .75rem;
      /*border-right:1px solid rgba(0,0,0,.1);*/ }
    .join-list2 .recruitop .item:nth-child(4) {
      width: 20%;
      padding: 0 .75rem; }
  .join-list2 .item-li {
    margin-top: 14px; }
    .join-list2 .item-li .recruitop {
      background: transparent;
      border: 1px solid rgba(0, 0, 0, 0.1);
      transition: all .4s; }
      .join-list2 .item-li .recruitop .item {
        border: none; }
    .join-list2 .item-li .recruitop.cur {
      background: #0054A3;
      color: #fff; }
    .join-list2 .item-li .recruitext {
      padding: .75rem 1.25rem 1.25rem;
      background: #f8f8f8;
      display: none;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-top: none; }
    .join-list2 .item-li .spbox {
      padding-bottom: .55rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
      .join-list2 .item-li .spbox span {
        color: #999; }
      .join-list2 .item-li .spbox .sp {
        width: 20%;
        border-right: 1px solid rgba(0, 0, 0, 0.2); }
      .join-list2 .item-li .spbox .sp:last-child {
        border-right: none; }
    .join-list2 .item-li .text {
      margin-top: .75rem;
      margin-bottom: 1rem; }
    .join-list2 .item-li .ntext {
      width: 50%; }
    .join-list2 .item-li .tit4 {
      color: #010D2C; }
    .join-list2 .item-li .tit5 {
      margin-top: .25rem; }
    .join-list2 .item-li .ntext:nth-child(1) {
      padding-right: 1.25rem;
      border-right: 1px solid rgba(0, 0, 0, 0.1); }
    .join-list2 .item-li .ntext:nth-child(2) {
      padding-left: 1.25rem; }
    .join-list2 .item-li .more {
      width: 160px;
      height: 44px;
      background: #F18A00;
      border-radius: 2px; }
      .join-list2 .item-li .more img {
        height: 14px;
        margin-left: .3rem; }
    .join-list2 .item-li .colsebtn {
      color: #0054A3; }
  .join-list2 .formbox {
    width: 20rem;
    max-width: 100%;
    height: 48px;
    border: 2px solid #0059B2;
    margin: 0 auto 1rem;
    position: relative; }
    .join-list2 .formbox .input1 {
      padding-left: 110px;
      width: calc(100% - 140px);
      height: 30px; }
    .join-list2 .formbox .input2 {
      width: 130px;
      height: 44px;
      padding-left: 20px;
      background: #0059B2 url(../image/sbtn.png) no-repeat 20px center; }
    .join-list2 .formbox .selectbox {
      width: 95px;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 3; }
      .join-list2 .formbox .selectbox .sp {
        padding: 0 .25rem;
        height: 44px;
        background: #fff;
        position: relative;
        z-index: 2; }
        .join-list2 .formbox .selectbox .sp:before {
          content: "";
          position: absolute;
          width: 1px;
          background: #ddd;
          height: 20px;
          top: 50%;
          margin-top: -10px;
          right: 0; }
      .join-list2 .formbox .selectbox .icon {
        width: 15px;
        height: 15px;
        margin-left: .15rem;
        fill: #666; }
      .join-list2 .formbox .selectbox .spbox {
        position: absolute;
        width: 100%;
        top: 0;
        padding-top: 48px;
        background: #fff;
        max-height: 220px;
        z-index: 1;
        overflow-y: auto;
        display: none; }
      .join-list2 .formbox .selectbox .item {
        padding: .1rem .25rem; }
      .join-list2 .formbox .selectbox .item:last-child {
        border-bottom: none; }
      .join-list2 .formbox .selectbox .item:hover {
        color: #fff;
        background: #0054A3; }

@media (max-width: 767px) {
  .join-list2 .leftbox {
    width: 100%;
    margin-bottom: .25rem; }

  .join-list2 .rightbox {
    width: 100%; }

  .join-list2 .recruitop .item, .join-list2 .recruitop {
    height: 50px; }

  .join-list2 .item-li .recruitop .item {
    font-size: 12px; }

  .join-list2 .recruitop .item:nth-child(3) {
    padding: 0;
    padding-left: 10px; }

  .join-list2 .item-li .spbox .sp {
    width: 100%;
    border-right: none;
    justify-content: flex-start; }

  .join-list2 .item-li .ntext {
    width: 100%;
    border-right: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-bottom: .35rem; }

  .join-list2 .item-li .more {
    width: 120px;
    height: 40px; }

  .join-list2 .item-li .recruitext {
    padding: 0.75rem .75rem 1.25rem; }

  .join-list2 {
    padding-bottom: 2.5rem; }

  .join-list2 .recruitop .item:nth-child(1) {
    width: 100%; }

  .join-list2 .recruitop .item:nth-child(2), .join-list2 .recruitop .item:nth-child(3), .join-list2 .recruitop .item:nth-child(4) {
    display: none; }

  .join-list2 .formbox .selectbox {
    width: 80px; }

  .join-list2 .formbox .input2 {
    width: 105px; }

  .join-list2 .formbox .input1 {
    padding-left: 90px;
    width: calc(100% - 110px); }

  .join-list2 .formbox .selectbox .icon {
    width: 12px;
    height: 12px; } }
.join-list3 {
  padding: 1.8rem 0 3.5rem;
  background: #F5F5F5; }
  .join-list3 .title {
    margin-bottom: 1.7rem;
    width: 100%; }
  .join-list3 .textbox {
    width: 42.5%; }
  .join-list3 .imgbox {
    width: 49%; }
    .join-list3 .imgbox .button-prev {
      cursor: pointer;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #fff;
      position: absolute;
      top: 50%;
      margin-top: -28px;
      left: -28px;
      z-index: 3;
      transition: all .4s; }
      .join-list3 .imgbox .button-prev .icon {
        transform: rotate(-180deg); }
    .join-list3 .imgbox .button-next {
      cursor: pointer;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #fff;
      position: absolute;
      top: 50%;
      margin-top: -28px;
      right: -28px;
      z-index: 3;
      transition: all .4s; }
    .join-list3 .imgbox .icon {
      width: 20px;
      height: 20px;
      fill: #999;
      transition: all .4s; }
    .join-list3 .imgbox .button-prev:hover {
      background: #0056B5; }
      .join-list3 .imgbox .button-prev:hover .icon {
        fill: #fff; }
    .join-list3 .imgbox .button-next:hover {
      background: #0056B5; }
      .join-list3 .imgbox .button-next:hover .icon {
        fill: #fff; }
  .join-list3 .tit4 {
    margin-bottom: .7rem; }
    .join-list3 .tit4 span {
      color: #0059B2; }

@media (max-width: 768px) {
  .join-list3 .textbox {
    width: 100%;
    margin-bottom: 1rem; }

  .join-list3 .imgbox {
    width: 100%; } }
@media (max-width: 767px) {
  .join-list3 {
    padding-bottom: 2rem; }

  .join-list3 .imgbox .button-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    left: -15px; }

  .join-list3 .imgbox .icon {
    width: 12px;
    height: 12px; }

  .join-list3 .imgbox .button-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    right: -15px; } }
.news-list6-dialog3 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden; }
  .news-list6-dialog3 .dialog__overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    visibility: hidden;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s; }
  .news-list6-dialog3 .dialog__content {
    position: relative;
    z-index: 5;
    overflow-x: auto;
    padding: 0;
    max-width: 980px;
    width: 90%;
    border-radius: 0px;
    background: transparent;
    box-shadow: none;
    text-align: center;
    opacity: 0; }
  .news-list6-dialog3 .title {
    padding: 0 .75rem;
    height: 66px;
    background: #0054a3; }
  .news-list6-dialog3 .closebtn {
    position: absolute;
    right: .75rem;
    top: 50%;
    margin-top: -10px;
    z-index: 3;
    width: 20px;
    height: 20px;
    text-align: center;
    cursor: pointer;
    transition: all .3s; }
    .news-list6-dialog3 .closebtn svg {
      width: 20px;
      height: 20px;
      fill: #fff; }
  .news-list6-dialog3 .contentbox {
    padding: 1rem;
    background: #fff; }
  .news-list6-dialog3 .tit4 {
    height: 62px;
    background: #f9f9f9;
    border: 1px solid #D6D6D6;
    margin-bottom: .25rem;
    width: 100%;
    padding: 0 .75rem; }
  .news-list6-dialog3 .input1 {
    width: 48.5%;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #D6D6D6;
    padding: 0 .75rem;
    margin-bottom: .25rem; }
  .news-list6-dialog3 .input2 {
    width: 100%;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #D6D6D6;
    padding: 0 .75rem;
    margin-bottom: .25rem; }
  .news-list6-dialog3 .btn {
    position: absolute;
    width: 100px;
    height: 32px;
    line-height: 32px;
    border-radius: 32px;
    left: 0;
    top: 0;
    background: #0054a3;
    z-index: 1; }
  .news-list6-dialog3 .input3 {
    position: relative;
    width: 100px;
    height: 32px;
    z-index: 2;
    opacity: 0; }
  .news-list6-dialog3 .input4 {
    width: 37%;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #D6D6D6;
    padding: 0 .75rem; }
  .news-list6-dialog3 .box {
    margin-bottom: .25rem; }
  .news-list6-dialog3 .coadbox {
    width: 100%;
    margin-bottom: .75rem; }
    .news-list6-dialog3 .coadbox img {
      width: auto;
      height: 44px;
      margin-left: 12px; }
  .news-list6-dialog3 .line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.25);
    margin-bottom: .65rem; }
  .news-list6-dialog3 .botbox {
    width: 100%; }
  .news-list6-dialog3 .input5 {
    width: 195px;
    height: 48px;
    background: #0054A3;
    border-radius: 4px;
    margin: 0 15px; }
  .news-list6-dialog3 .input6 {
    width: 195px;
    height: 48px;
    background: #666666;
    border-radius: 4px;
    margin: 0 15px; }

.news-list6-dialog3.dialog--open {
  opacity: 1;
  visibility: visible; }

.news-list6-dialog3.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  backdrop-filter: blur(5px); }

.news-list6-dialog3.dialog--open #video {
  opacity: 1;
  visibility: visible;
  transition: all .3s ease; }

.news-list6-dialog3.dialog--close #video {
  opacity: 0;
  visibility: hidden; }

.news-list6-dialog3.dialog--open .dialog__content, .news-list6-dialog3.dialog--close .dialog__content {
  opacity: 1;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.news-list6-dialog3.dialog--open .dialog__content {
  -webkit-animation-name: anim-open3;
  animation-name: anim-open3; }

.news-list6-dialog3 .dialog__overlay {
  background: rgba(0, 0, 0, 0.8); }

.news-list6-dialog3.dialog--close .dialog__content {
  -webkit-animation-name: anim-close3;
  animation-name: anim-close3; }

@media (max-width: 1024px) {
  .news-list6-dialog3 .closebtn {
    background: #de0000;
    color: #fff; }

  .news-list6-dialog3 .dialog__content .p {
    font-size: 14px;
    width: 90%;
    margin-top: .5rem; } }
@media (max-width: 767px) {
  .news-list6-dialog3 .dialog__content {
    width: 100%;
    padding: .6rem 3%; }

  .news-list6-dialog3 .closebtn {
    right: 3%; } }
@media (max-width: 767px) {
  .news-list6-dialog3 .tit4 {
    height: 45px; }

  .news-list6-dialog3 .input5, .news-list6-dialog3 .input6 {
    width: 110px;
    height: 40px;
    margin: 0 5px; }

  .news-list6-dialog3 .input4 {
    width: 45%; } }
.i-index2 {
  padding: 2.25rem 0 0;
  background: #fff; }
  .i-index2 .title {
    margin-bottom: 2rem; }
  .i-index2 .contentbox {
    width: 1560px;
    max-width: 90%;
    margin: 0 auto; }
  .i-index2 .img {
    position: absolute;
    width: 40%;
    left: 0;
    top: 0;
    z-index: 2;
    margin-left:2.25rem; 
  }
  .i-index2 .tabul .item {
    border-right: 1px solid RGBA(223, 223, 223, 0.8); }
  .i-index2 .tabul .item:nth-child(4) {
    border-right: none; }
  .i-index2 .tabul .icon {
    height: .7rem; }
  .i-index2 .tabul p {
    margin-top: .35rem; }
  .i-index2 .n-text {
    width: 1200px;
    max-width: 90%;
    margin-left: 2.25rem;
    margin-bottom: 1.5rem; }
    .i-index2 .n-text .tabul {
      padding-left: 53%;
      width: 100%;
      margin-bottom: 1.5rem; }
      .i-index2 .n-text .tabul .item {
        width: 25%; }
    .i-index2 .n-text .text {
      width: 100%;
      border: 10px solid #0059B2;
      padding: 1.25rem;
      padding-left:55%; }
    .i-index2 .n-text .tit4 {
      color: #FF7D0C;
      margin-bottom: .5rem; }
    .i-index2 .n-text .tit5 {
      margin-bottom: 1.25rem; }
    .i-index2 .n-text .more .icon2 {
      width: 15px;
      height: 15px;
      fill: #333;
      margin-left: .15rem; }
    .i-index2 .n-text .more:hover {
      color: #333; }
      .i-index2 .n-text .more:hover .icon2 {
        fill: #333; }
  .i-index2 .botimg {
    padding-bottom: 2.5rem; }
    .i-index2 .botimg .img1 {
      position: absolute;
      width: 100%;
      bottom: 0;
      z-index: 1; }
    .i-index2 .botimg .itemli {
      position: relative;
      z-index: 3;
      padding: 0 2rem;
      border-right: 1px solid RGBA(223, 223, 223, 0.8); }
    .i-index2 .botimg .itemli:nth-child(4) {
      border-right: none; }
    .i-index2 .botimg .img2 {
      height: 19px;
      margin-bottom: 10px;
      margin-left: -5px; }

@media (max-width: 1560px) {
  .i-index2 .botimg .itemli {
    padding: 0 1.3rem; }

  .i-index2 .n-text .tabul {
    padding-left: 46%; }

  .i-index2 .n-text .text {
    padding-left: 48%; } 
}
@media (max-width: 768px) {
  .i-index2 .img {
    position: relative;
    width: 100%; 
    margin-left:0;
  }

  .i-index2 .n-text {
    margin-left: 0;
    margin-top: 1rem; }

  .i-index2 .n-text .tabul {
    padding-left: 0; }

  .i-index2 .n-text .text {
    padding-left: 1.5rem;
    border: 5px solid #0059B2; }

  .i-index2 .n-text {
    max-width: 100%; }

  .i-index2 .botimg .img1 {
    display: none; }

  .i-index2 .botimg .itemli:nth-child(2n) {
    border-right: none; }

  .i-index2 .botimg .itemli {
    padding: 0;
    margin-bottom: .5rem;
    width: 50%; }

  .i-index2 .botimg .itemli .tit5 {
    font-size: 1.2rem; } }
@media (max-width: 767px) {
  .i-index2 {
    padding: 1.5rem 0 0; }

  .i-index2 .title {
    margin-bottom: 1rem; }

  .i-index2 .n-text .text {
    padding: .75rem; }

  .i-index2 .n-text .tit5 {
    margin-bottom: .75rem; }

  .i-index2 .botimg .itemli .tit5 {
    font-size: 1rem; }

  .i-index2 .botimg .img2 {
    margin-bottom: 2px;
    margin-left: -3px;
    height: 15px; }

  .i-index2 .botimg {
    padding-bottom: 1rem; }

  .i-index2 .tabul p {
    font-size: 12px; } }
.i-index3 {
  background: #F3F3F3;
  padding: 3rem 0 3.5rem; }
  .i-index3 .title-top {
    margin-bottom: 1.25rem; }
  .i-index3 .tabul .li {
    width: 130px;
    height: 50px;
    text-align: center;
    transition: all .4s;
    cursor: pointer;
    position: relative; }
    .i-index3 .tabul .li .icon {
      position: absolute;
      width: 16px;
      height: 16px;
      fill: #FF7D0C;
      left: 50%;
      top: 44px;
      margin-left: -8px;
      opacity: 0;
      transition: all .4s; }
  .i-index3 .tabul .li:hover {
    background: #FF7D0C;
    color: #fff; }
  .i-index3 .tabul .li:hover .icon {
    opacity: 1; }
  .i-index3 .tabul .li.cur {
    background: #FF7D0C;
    color: #fff; }
  .i-index3 .tabul .li.cur .icon {
    opacity: 1; }
  .i-index3 .imgbox {
    width: 47%; }
    .i-index3 .imgbox .tit3 {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .i-index3 .imgbox .img {
      margin-bottom: .85rem; }
    .i-index3 .imgbox .time {
      margin: .15rem 0 .25rem; }
  .i-index3 .imgbox .img img {
    width: 100%;
    transform: scale(1.01);
    transition: all .4s; }
  .i-index3 .imgbox:hover .img img {
    transform: scale(1.1); }
  .i-index3 .rightbox {
    width: 50%; }
    .i-index3 .rightbox .li {
      margin-bottom: 1.2rem; }
    .i-index3 .rightbox .li:nth-child(3) {
      margin-bottom: 0; }
    .i-index3 .rightbox .img {
      width: 35.8%; }
    .i-index3 .rightbox .titbox {
      width: 60%; }
    .i-index3 .rightbox .tit4 {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .i-index3 .rightbox .tit5 {
      margin: .12rem 0 .3rem; }
    .i-index3 .rightbox .tit6 {
      height: 52px;
      line-height: 26px;
      overflow: hidden;
      margin-bottom: .4rem; }
    .i-index3 .rightbox .more .icon2 {
      width: 12px;
      height: auto;
      margin-left: .2rem;
      fill: #999; }
    .i-index3 .rightbox .li .img img {
      transform: scale(1.01);
      transition: all .4s; }
    .i-index3 .rightbox .li:hover .img img {
      transform: scale(1.1); }

@media (max-width: 1024px) {
  .i-index3 .rightbox .li {
    margin-bottom: 0.65rem; }

  .i-index3 .rightbox .tit6 {
    height: 44px;
    line-height: 22px;
    margin-bottom: .3rem; } }
@media (max-width: 768px) {
  .i-index3 .imgbox {
    width: 100%;
    margin-bottom: 1rem; }

  .i-index3 .rightbox {
    width: 100%; }

  .i-index3 .tabul .li {
    width: 120px;
    height: 40px; }

  .i-index3 .tabul .li .icon {
    top: 35px; } }
@media (max-width: 767px) {
  .i-index3 {
    padding: 1.5rem 0; }

  .i-index3 .title-top .title {
    width: 100%;
    text-align: center; }

  .i-index3 .title-top .tabul {
    width: 100%;
    margin-top: 1rem; }

  .i-index3 .tabul .li {
    width: 25%;
    font-size: 12px; }

  .i-index3 .rightbox .tit6 {
    display: none; } }

/*# sourceMappingURL=boc_reset.css.map */


.news-list6-dialog3 .title{
  width:100%;
}

.footer .footer-top .rightbox .tit3{
  margin-bottom:.85rem;
}
.about-list4 .tit5,.about-list4 .text .sp{
  opacity:.6;
}
.n-info img{
  display:inline-block;
}
.i-index2 .n-text .text a{
  transition: all .4s;
}
.i-index2 .n-text .text a .icon2{
  transition: all .4s;
}
.i-index2 .n-text .text a:hover{
  color:#0059B2;
}
.i-index2 .n-text .text a:hover .icon2{
  fill:#0059B2;
}
.join-list1 .ulbox .li{
  transition: all .3s;
}
.join-list1 .ulbox .li:hover{
  border:1px solid #005FB8;
  border-top:4px solid #005FB8;
}