@charset "UTF-8";

/*!
	Important comments included in minified output.
	https://www.bocweb.cn/
	2021-03-15
	©2021 博采网络 ALL RIGHTS RESERVED. 博采网络
*/
@font-face {
  font-family: 'SourceHanSansCN';
  /* 你自己起的名字，随便取 */
  src: url('../css/fonts/SourceHanSansCN-VF.otf.woff2') format('woff2'),
    url('../css/fonts/SourceHanSansCN-Regular.otf') format('opentype');
  font-weight: 400;
  /* 常规字重 */
  font-style: normal;
  font-display: swap;
  /* 先显示备用字体，加载完再替换 */
}










.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: "SourceHanSansCN" !important;
}

p {
  font-family: "SourceHanSansCN" !important;
  line-height: 1.8 !important;
  font-size: 16px !important;
}

p span {
  font-family: "SourceHanSansCN" !important;
  line-height: 1.8 !important;
  font-size: 16px !important;
}

@media (max-width: 1440px) {
  p {
    font-size: 15px !important;
  }

  p span {
    font-size: 15px !important;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 14px !important;
  }

  p span {
    font-size: 14px !important;
  }
}

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: inline-block;
  max-width: 100%;
  /*图片清晰处理*/
  image-rendering: crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -o-crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.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 !important;
  line-height: 2;
}

.tit-13 {
  font-size: 13px !important;
  line-height: 2;
}

.tit-14 {
  font-size: 14px !important;
  line-height: 2;
}

.tit-15 {
  font-size: 15px !important;
  line-height: 2;
}

.tit-16 {
  line-height: 1.8;
  font-size: 16px !important;
}

.tit-17 {
  line-height: 1.8;
  font-size: 17px !important;
}

.tit-18 {
  line-height: 1.8;
  font-size: 18px !important;
}

.tit-19 {
  line-height: 1.8;
  font-size: 19px !important;
}

.tit-20 {
  line-height: 1.8;
  font-size: 20px !important;
}

.tit-21 {
  line-height: 1.8;
  font-size: 21px !important;
}

.tit-22 {
  line-height: 1.8;
  font-size: 22px !important;
}

.tit-23 {
  line-height: 1.8;
  font-size: 23px !important;
}

.tit-24 {
  line-height: 1.8;
  font-size: 24px !important;
}

.tit-25 {
  line-height: 1.8;
  font-size: 25px !important;
}

.tit-26 {
  line-height: 1.8;
  font-size: 26px !important;
}

.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 !important;
  }

  .tit-13 {
    font-size: 13px !important;
  }

  .tit-14 {
    font-size: 13px !important;
  }

  .tit-15 {
    font-size: 14px !important;
  }

  .tit-16 {
    font-size: 15px !important;
  }

  .tit-17 {
    font-size: 16px !important;
  }

  .tit-18 {
    font-size: 17px !important;
  }

  .tit-19 {
    font-size: 18px !important;
  }

  .tit-20 {
    font-size: 18px !important;
  }

  .tit-21 {
    font-size: 19px !important;
  }

  .tit-22 {
    font-size: 20px !important;
  }

  .tit-23 {
    font-size: 21px !important;
  }

  .tit-24 {
    font-size: 22px !important;
  }

  .tit-25 {
    font-size: 23px !important;
  }

  .tit-26 {
    font-size: 24px !important;
  }

  .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 !important;
  }

  .tit-14 {
    font-size: 12px !important;
  }

  .tit-15 {
    font-size: 13px !important;
  }

  .tit-16 {
    font-size: 14px !important;
  }

  .tit-17 {
    font-size: 15px !important;
  }

  .tit-18 {
    font-size: 16px !important;
  }

  .tit-19 {
    font-size: 17px !important;
  }

  .tit-20 {
    font-size: 18px !important;
  }

  .tit-20 {
    font-size: 16px !important;
  }

  .tit-21 {
    font-size: 17px !important;
  }

  .tit-22 {
    font-size: 18px !important;
  }

  .tit-23 {
    font-size: 19px !important;
  }

  .tit-24 {
    font-size: 20px !important;
  }

  .tit-25 {
    font-size: 21px !important;
  }

  .tit-26 {
    font-size: 22px !important;
  }

  .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 !important;
  }

  .tit-14 {
    font-size: 12px !important;
  }

  .tit-15 {
    font-size: 12px !important;
  }

  .tit-16 {
    font-size: 13px !important;
  }

  .tit-17 {
    font-size: 16px !important;
  }

  .tit-18 {
    font-size: 15px !important;
  }

  .tit-19 {
    font-size: 16px !important;
  }

  .tit-20 {
    font-size: 17px !important;
  }

  .tit-22 {
    font-size: 18px !important;
  }

  .tit-24 {
    font-size: 19px !important;
  }

  .tit-25 {
    font-size: 20px !important;
  }

  .tit-26 {
    font-size: 21px !important;
  }

  .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 !important;
  }

  .tit-25 {
    font-size: 17px !important;
  }

  .tit-26 {
    font-size: 18px !important;
  }

  .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 !important;
  }

  .tit-18 {
    font-size: 14px !important;
  }

  .tit-20 {
    font-size: 16px !important;
  }

  .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-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(calc(-50%), calc(-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-l {
  text-transform: lowercase;
}

.text-u {
  text-transform: uppercase;
}

.text-c {
  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%;
}

.w1640 {
  max-width: 1640px;
  width: 88%;
  margin: 0 auto;
}

.w1600 {
  max-width: 1600px;
  width: 88%;
  margin: 0 auto;
}

.w1300 {
  width: 1300px;
  margin: 0 auto;
}

@media (max-width: 1350px) {
  .w1300 {
    width: 94%;
  }
}

.w1080 {
  width: 1080px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .w1080 {
    width: 94%;
  }
}

.w1070 {
  width: 1070px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .w1070 {
    width: 94%;
  }
}

/*分页样式*/
.wpage {
  width: 100%;
  text-align: center;
}

.page {
  padding: 2.5rem 0 0;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  clear: both;
  display: inline-block;
}

.page a {
  text-decoration: none;
  color: #666666;
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  margin: 0 3px;
  display: block;
  float: left;
  transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.page a.active {
  color: #0565b3;
  transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.page span.laypage_curr {
  width: 58px;
  height: 58px;
  line-height: 58px;
  margin: 0 3px;
  display: inline-block;
  color: #1947ba;
  transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.page a:hover {
  text-decoration: none;
  color: #0565b3;
  transition: 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}

.page a[rel="prev"] {
  margin-right: 0.5rem;
}

.page a[rel="next"] {
  margin-left: 0.5rem;
}

.page a[rel="next"],
.page a[rel="prev"] {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  background: rgba(230, 230, 230, 0.9);
  transition: all 0.5s;
}

.page a[rel="next"] .icon,
.page a[rel="prev"] .icon {
  width: 25px;
  height: 25px;
  fill: #000;
}

.page a[rel="next"]:hover,
.page a[rel="prev"]:hover {
  background: linear-gradient(90deg, #0462ae 0%, #1692f6 100%);
  color: #fff;
}

.page a[rel="next"]:hover .icon,
.page a[rel="prev"]:hover .icon {
  fill: #fff;
}

@media (max-width: 768px) {
  .wpage .page {
    padding-top: 1rem;
  }
}

/*分页样式end*/
@media (max-width: 767px) {
  .wrap {
    padding: 30px;
  }

  .page a {
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    border-radius: 0.25rem;
    margin: 0 3px;
  }
}

/*分页样式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 0.4s;
  -o-transition: all 0.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 0.8s;
  -o-transition: all 0.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 0.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: 1.2s;
  animation-duration: 1.2s;
  -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 1.2s;
  animation: mk_bottom_to_top 1.2s;
}

.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 1.2s;
  animation: tt_palx_img 1.2s;
}

@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(../../img/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 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

body.init #pageloader .logo,
body.init #pageloader div {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.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*/
.warpheader {
  height: 2.5rem;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

.warpheader .header {
  height: 2.5rem;
  padding: 0 1.25rem;
}

.warpheader .header .logo {
  padding-top: 15px;
}

.warpheader .header .logo span {
  margin-top: 5px;
  color: rgba(25, 90, 161, 0.4);
  text-transform: uppercase;
}

.warpheader .header .logo .zlogo {
  position: relative;
  padding-right: 0.6rem;
  margin-right: 0.6rem;
}

.warpheader .header .logo .zlogo:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background: #195aa1;
  right: 0;
  top: 50%;
  margin-top: -9px;
  right: 0;
  display: none;
}

.warpheader .header .logo img {
  /*width: 153px;*/
  height: 1.4rem;
}

.warpheader .header .logo .licon0 {
  /*width: 153px;*/
  height: 1.4rem;
}

.warpheader .header .logo .licon1 {
  /*width: 127px;*/
  height: 0.75rem;
}

.warpheader .header .nav {
  padding-top: 0.55rem;
  display: flex;
  flex-flow: row nowrap;
}

.warpheader .header .nav .li {
  padding: 0.7rem 0.55rem;
}

.warpheader .header .nav .li>a {
  display: block;
  white-space: nowrap;
  transition: all 0.6s;
}

.warpheader .header .nav .li>a:hover,
.warpheader .header .nav .li>a.cur {
  color: #0f589f;
}

.warpheader .header .rightbox {
  padding-top: 0.55rem;
}

.warpheader .header .rightbox .li {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  cursor: pointer;
  position: relative;
}

.warpheader .header .rightbox .li .icon {
  width: 25px;
  height: 25px;
  fill: #195aa1;
}

.warpheader .header .rightbox .li .wximg {
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  left: 50%;
  margin-left: -2.2rem;
  top: 0.7rem;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.warpheader .header .rightbox .li:nth-child(3) .icon {
  width: 22px;
  height: 22px;
}

.warpheader .header .rightbox .li:hover .wximg {
  opacity: 1;
  visibility: visible;
}

.m-bocweb-header3 {
  /*position:fixed;*/
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 99;
}

.m-bocweb-header3 .header2 {
  height: 60px;
  padding: 0 5%;
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 99;
}

.m-bocweb-header3 .header2:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  backdrop-filter: blur(1px);
  z-index: -1;
}

.m-bocweb-header3 .header2 .zlogo {
  position: relative;
  padding-right: 0.6rem;
  margin-right: 0.6rem;
}

.m-bocweb-header3 .header2 .zlogo:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background: #195aa1;
  right: 0;
  top: 50%;
  margin-top: -9px;
  right: 0;
  display: none;
}

.m-bocweb-header3 .header2 .logo {
  position: relative;
  z-index: 12;
  height: 35px;
}

.m-bocweb-header3 .header2 .logo img {
  height: 1.35rem;
}

@media screen and (max-width: 600px) {
  .m-bocweb-header3 .header2 .logo img {
    height: 1.1rem;
  }
}

.m-bocweb-header3 .header2 .nav .tit {
  width: 100%;
  padding: 0.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;
  overflow: auto;
}

.m-bocweb-header3 .header2 .nav {
  font-size: 0.65rem;
  color: #333;
  position: relative;
  width: 100%;
  /* overflow-y: auto; */
  /* height: calc(100vh - 60px - 1rem); */
  /*.li:nth-child(odd) {
      background: rgb(248,248,248);
  }*/
}

.m-bocweb-header3 .header2 .warp-nav .rightbox {
  margin-top: 1rem;
  justify-content: flex-end;
  padding: 0.5rem 5%;
}

.m-bocweb-header3 .header2 .warp-nav .rightbox .line {
  margin: 0 0.4rem;
}

.m-bocweb-header3 .header2 .warp-nav .rightbox .li {
  position: relative;
}

.m-bocweb-header3 .header2 .warp-nav .rightbox .li .wximg {
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  left: 50%;
  margin-left: -2.2rem;
  top: 0.7rem;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.m-bocweb-header3 .header2 .warp-nav .rightbox .li .icon {
  width: 20px;
  height: 20px;
}



.m-bocweb-header3 .header2 .rightbox .li:hover .wximg {
  opacity: 1;
  visibility: visible;
}

.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 .icon {
  width: 16px;
  height: 16px;
  fill: #999;
  transition: all 0.4s;
}

.m-bocweb-header3 .header2 .nav .warp-btn {
  /*display:block;*/
  padding: 0.65rem 5%;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 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: 0.35rem 5%;
  background: #fff;
}

.m-bocweb-header3 .header2 .nav .item .tit {
  color: #fff;
  padding: 0.3rem 0 0.3rem 5%;
}

.m-bocweb-header3 .header2 .nav .item .icon {
  fill: #fff;
}

.m-bocweb-header3 .header2 .nav .prosec {
  overflow: hidden;
}

.m-bocweb-header3 .header2 .nav .prosec p {
  width: 48%;
  float: left;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
}

.m-bocweb-header3 .header2 .nav .prosec p:nth-child(2n) {
  margin-left: 4%;
}

.m-bocweb-header3 .header2 .nav .sub-tit.on {
  background: #fff;
}

.m-bocweb-header3 .header2 .nav .sub-tit.on .icon {
  transform: rotate(-90deg);
}

.m-bocweb-header3 .header2 .nav .sec-list {
  /*line-height:40px;*/
  padding: 0.35rem 6% 1rem;
  display: none;
  font-size: 0.6rem;
  /*border-bottom:1px solid #555;*/
}

.m-bocweb-header3 .header2 .nav .sec-list a {
  padding: 0.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: #000;
}

.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: #000;
}

.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: #000;
}

.m-bocweb-header3 .header2 .warp-nav1-sub {
  transform: translate(0, 0);
  transition: all 0.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 0.5s 0s;
}

.m-bocweb-header3 .header2 .warp-nav2-sub.active {
  transform: translate(0, 0);
  transition: all 0.5s 0.2s;
}

.m-bocweb-header3 .header2 .h-right span {
  margin-left: 0.25rem;
}

.m-bocweb-header3 .searchbtn {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.4s;
}

.m-bocweb-header3 .searchbtn .icon {
  width: 15px;
  height: 15px;
  fill: #333;
}

.m-bocweb-header3 .line {
  width: 1px;
  height: 10px;
  background: #999;
  opacity: 0.2;
  margin: 0 0.25rem;
}

.m-bocweb-header3 .langbtn {
  margin-right: 0.25rem;
}

.m-bocweb-header3 .rightbox .li {
  /* width: 22px;
  height: 22px; */
}

.m-bocweb-header3 .rightbox .li .icon {
  width: 16px;
  height: 16px;
  fill: #333;
}

.m-bocweb-header3 .spicon {
  width: 18px;
  height: 18px;
}

.m-bocweb-header3 .spicon .icon {
  width: 18px;
  height: auto;
  fill: #333;
}

.m-bocweb-header3.active .line {
  opacity: 0.5;
}

.m-bocweb-header3.active .header2:before {
  /*background: rgba(0,0,0,1);*/
}

.m-bocweb-header3.active .header2 .hamburger-inner::before,
.m-bocweb-header3.active .header2 .hamburger-inner::after {
  background: #000 !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: 0.55rem;
  }

  .m-bocweb-header3 .header2 .nav .warp-btn,
  .m-bocweb-header3 .header2 .nav .tit {
    padding: 0.5rem 5%;
  }

  .m-bocweb-header3 .header2 .logo {
    height: 32px;
  }

  .m-bocweb-header3 .header2 .nav .sec-list a {
    padding: 0.2rem 0;
    padding-left: 1.5rem;
    font-size: 0.55rem;
    color: #333;
    /*border-bottom:1px solid #0e5ca5;*/
    position: relative;
  }

  .m-bocweb-header3 .header2 .nav .sec-list a:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: #666;
    border-radius: 50%;
    left: 0.5rem;
    top: 50%;
    margin-top: -2.5px;
  }
}

.h-searchbox {
  position: absolute;
  top: 2.5rem;
  width: 100%;
  left: 0;
  padding: 1rem 0 1rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  z-index: 6;
  display: none;
}

.h-searchbox .close {
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 3%;
  top: 3%;
  cursor: pointer;
  z-index: 3;
}

.h-searchbox .close svg {
  width: 0.5rem;
  height: 0.5rem;
  fill: #ffb700;
}

.h-searchbox .formbox {
  width: 960px;
  margin: 0 auto;
  max-width: 88%;
  position: relative;
  z-index: 3;
}

.h-searchbox .input1 {
  width: 100%;
  height: 58px;
  background: #f6f6f6;
  width: calc(100% - 140px - 20px);
  border: none;
  padding-left: 1rem;
}

.h-searchbox .input2 {
  width: 140px;
  height: 58px;
  background: #195aa1 url(../img/searchbtn2.png) no-repeat 30px center;
  border-radius: 2px;
  background-size: 21px auto;
  padding-left: 60px;
  text-align: left;
  transition: all 0.6s;
}

.h-searchbox .input2:hover {
  background: #ffb700 url(../img/searchbtn2.png) no-repeat 30px center;
  background-size: 21px auto;
}

.h-searchbox form {
  width: 100%;
}

.h-searchbox .bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: calc(100vh - 2.5rem);
  background: transparent;
  z-index: 1;
}

.h-searchbox .tipbox {
  margin-top: 0.4rem;
  padding-left: 1rem;
}

.h-searchbox .tipbox span {
  margin-right: 0.35rem;
}

.h-searchbox .tipbox a {
  margin-right: 0.5rem;
}

@media (max-width: 1024px) {
  .h-searchbox {
    top: 60px;
    position: fixed;
    padding: 2rem 0;
  }

  .h-searchbox .inputbox .input2 {
    background-size: 0.85rem auto;
  }

  .h-searchbox .close svg {
    width: 0.65rem;
    height: 0.65rem;
  }
}

@media (max-width: 767px) {
  .h-searchbox .input1 {
    height: 40px;
    width: calc(100% - 100px - 10px);
    padding-left: 10px;
  }

  .h-searchbox .input2 {
    width: 100px;
    height: 40px;
    background: #195aa1 url(../img/searchbtn2.png) no-repeat 22px center;
    border-radius: 2px;
    background-size: 21px auto;
    padding-left: 50px;
  }

  .h-searchbox .tipbox {
    padding-left: 10px;
  }
}

.n-banner {
  position: relative;
  z-index: 4;
}

.n-banner .subnav {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.n-banner .text {
  z-index: 3;
  top: 42%;
  width: 100%;
}

.n-banner .text .icon {
  height: 2rem;
  margin-top: 0.8rem;
}

.n-banner .n-nav .li {
  line-height: 1.5rem;
  position: relative;
}

.n-banner .n-nav .li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: #fff;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.6s;
}

.n-banner .n-nav .li:hover,
.n-banner .n-nav .li.cur {
  color: #fff;
}

.n-banner .n-nav .li:hover:before,
.n-banner .n-nav .li.cur:before {
  opacity: 1;
}

.n-banner .n-nav1 {
  width: 450px;
}

.n-banner .n-nav2 {
  width: 700px;
}

.n-banner .n-nav3 {
  width: 1275px;
  max-width: 88%;
}

.n-banner .n-nav4 {
  width: 940px;
  max-width: 88%;
}

.ibanner {
  height: calc(100vh - 2.5rem);
}

.ibanner .swiper-slide {
  overflow: hidden;
}

.ibanner .slide-inner {
  height: 100%;
}

.ibanner .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.ibanner .tit3 {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 3;
}

.ibanner .tit4 {
  margin-bottom: 0.35rem;
}

.scrollbtn {
  width: auto;
  position: absolute;
  z-index: 3;
  bottom: 0;
  /*animation: arrow2 2s infinite linear;*/
}

.scrollbtn span {
  margin-bottom: 0.5rem;
}

.scrollbtn .downline {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.scrollbtn .downline:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  top: 0;
  background: #fff;
  animation: arrow2 2s infinite linear;
}

@keyframes arrow2 {
  0% {
    height: 0%;
    opacity: 1;
  }

  50%,
  55% {
    height: 100%;
    opacity: 1;
  }

  75% {
    height: 100%;
    opacity: 1;
  }

  90% {
    height: 0;
    opacity: 0;
  }
}

.ibanner .textbox {
  width: 960px;
  max-width: 88%;
}

.ibanner .button-prev {
  width: 5.25rem;
  height: 5.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  left: -1.25rem;
  z-index: 4;
  border-radius: 50%;
  cursor: pointer;
  background: none;
}

.ibanner .button-prev .icon {
  width: 0.7rem;
  height: 0.7rem;
  fill: #fff;
  margin-right: 0.35rem;
}

.ibanner .button-next {
  width: 5.25rem;
  height: 5.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  right: -1.25rem;
  z-index: 4;
  border-radius: 50%;
  cursor: pointer;
  background: none;
}

.ibanner .button-next .icon {
  width: 0.7rem;
  height: 0.7rem;
  fill: #fff;
  transform: rotate(-180deg);
  margin-left: 0.35rem;
}

.ibanner .button-prev.swiper-button-disabled {
  opacity: 0;
}

.ibanner .button-next.swiper-button-disabled {
  opacity: 0;
}

.ibanner .button-prev .icon,
.ibanner .button-next .icon {
  transition: all 0.4s;
}

.ibanner .button-prev:hover .icon {
  margin-right: 20px;
}

.ibanner .button-next:hover .icon {
  margin-left: 20px;
}

.indexbox1 {
  position: relative;
  z-index: 3;
  padding: 0 1.25rem;
  height: 100vh;
}

.indexbox1 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}

.indexbox1 .title {
  padding-top: 2.25rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #ebebeb;
}

.indexbox1 .title .icon {
  width: 30px;
  height: 30px;
  fill: #333;
  margin-right: 0.25rem;
}

.indexbox1 .contentbox {
  padding-top: 1.75rem;
  position: relative;
  z-index: 2;
}

.indexbox1 .contentbox .leftbox {
  width: 19.45rem;
}

.indexbox1 .contentbox .leftbox .tit2 span {
  color: #0f81dc;
}

.indexbox1 .contentbox .leftbox .tit3 {
  margin-top: 1rem;
}

.indexbox1 .contentbox .leftbox .zmore {
  width: 150px;
  height: 40px;
  background: linear-gradient(90deg, #0462ae 0%, #1692f6 100%);
  border-radius: 20px;
  margin-top: 3rem;
  transition: all 0.6s;
}

.indexbox1 .contentbox .leftbox .zmore .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 5px;
}

.indexbox1 .contentbox .leftbox .zmore:hover {
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  /*background:rgba(25, 90, 161, 1);*/
}

.indexbox1 .contentbox .rightbox {
  max-width: calc(100% - 22rem);
  margin-right: 1.25rem;
}

.indexbox1 .contentbox .rightbox .li {
  margin-bottom: 1.2rem;
}

.indexbox1 .contentbox .rightbox .li span {
  font-size: 2.25rem;
  color: #f29101;
}

.indexbox1 .contentbox .rightbox .li p {
  color: #f29101;
}

.indexbox1 .zicon {
  height: 8rem;
  position: absolute;
  right: 2.75rem;
  z-index: 2;
  bottom: 0;
}

.indexbox3 {
  position: relative;
  height: 100vh;
  z-index: 2;
}

.indexbox3 .ul {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.indexbox3 .ul .li {
  width: 20%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: width 0.6s;
}

.indexbox3 .ul .li .bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.indexbox3 .ul .li .text {
  position: absolute;
  top: 15.7vh;
  width: 20vw;
  padding: 0 0 0 1rem;
  left: 0;
  z-index: 2;
  transition: all 0.6s 0.6s;
}

.indexbox3 .ul .li .text .tip {
  opacity: 0.4;
  margin-bottom: 0.85rem;
}

.indexbox3 .ul .li .text .tit5 {
  letter-spacing: -7px;
}

.indexbox3 .ul .li .text .tit5 span {
  color: #f29200;
}

.indexbox3 .ul .li .text2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}

.indexbox3 .ul .li .text2:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.indexbox3 .ul .li .btn {
  width: 1.85rem;
  height: 1.85rem;
  background: #fff;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
  transition: all 0.6s;
}

.indexbox3 .ul .li .btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: #0566b5;
}

.indexbox3 .ul .li .titbox {
  position: absolute;
  padding: 0 1.5rem 17.5vh;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.indexbox3 .ul .li .titbox .icon2 {
  width: 1.85rem;
  height: 1.85rem;
}

.indexbox3 .ul .li .titbox p {
  margin-top: 0.75rem;
}

.indexbox3 .ul .li .text3 {
  position: absolute;
  left: 1.25rem;
  z-index: 4;
  bottom: 31.85vh;
  z-index: 4;
  opacity: 0;
  transition: all 0.6s;
}

.indexbox3 .ul .li .text3 .tit4 {
  width: 13.5rem;
  margin-top: 0.85rem;
}

.indexbox3 .ul .li .zmore {
  width: 150px;
  height: 40px;
  background: linear-gradient(90deg, #0462ae 0%, #1692f6 100%);
  border-radius: 20px;
  margin-top: 2.5rem;
  transition: all 0.6s;
}

.indexbox3 .ul .li .zmore .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 5px;
}

.indexbox3 .ul .li .zmore:hover {
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  /*background:rgba(25, 90, 161, 1);*/
}

.indexbox3 .ul .li .text2 .btn {
  cursor: pointer;
}

.indexbox3 .ul .nli:hover .text2 .btn {
  opacity: 1;
}

.indexbox3 .ul .nli.cur .text3 {
  transition: all 0.6s 0.6s;
  opacity: 1;
}

.indexbox3 .ul .nli:hover .text {
  opacity: 0;
  transition: all 0.6s;
}

.indexbox3 .ul .nli:hover .text2 {
  opacity: 1;
  transition: all 0.6s;
}

.indexbox3 .ul .li .text2:before {
  transition: all 0.6s;
}

.indexbox3 .ul .nli:hover .text2:before {
  opacity: 0;
}

.indexbox3 .ul .nli.cur .text2 {
  opacity: 0;
}

.indexbox3 .ul .li .downbox3 {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: all 0.6s 0s;
}

.indexbox3 .ul .nli.cur .downbox3 {
  opacity: 1;
  transition: all 0.6s 0.6s;
  transform: translate(0, 0);
}

.indexbox3 .downbox3 {
  position: absolute;
  width: 46vw;
  height: 2rem;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: #0462ae;
}

.indexbox3 .downbox3 .scrollbtn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  margin-top: -0.7rem;
}

.indexbox3 .downbox3 .downline {
  height: 1.4rem;
  margin-right: 0.4rem;
}

.indexbox3 .downbox3 span {
  margin-bottom: 0;
}

.indexbox4 {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
}

.indexbox4 .contentbox-top {
  padding: 10vh 1.25rem 5vh;
  align-items: flex-end;
}

.indexbox4 .contentbox-top .tit4 {
  margin-bottom: 0.8rem;
  color: #0f81dc;
}

.indexbox4 .contentbox-top .tit5 span {
  color: #0f81dc;
}

.indexbox4 .contentbox-top .zmore {
  width: 150px;
  height: 40px;
  background: linear-gradient(90deg, #0462ae 0%, #1692f6 100%);
  border-radius: 20px;
  transition: all 0.6s;
}

.indexbox4 .contentbox-top .zmore .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 5px;
}

.indexbox4 .contentbox-top .zmore:hover {
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  /*background:rgba(25, 90, 161, 1);*/
}

.indexbox4 .news-container {
  padding-top: 8.75vh;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.indexbox4 .news-container .img {
  width: 100%;
  height: 8.75rem;
  overflow: hidden;
}

.indexbox4 .news-container .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.indexbox4 .news-container .titbox {
  padding-top: 0.85rem;
}

.indexbox4 .news-container .titbox .line {
  width: 1px;
  height: 11px;
  background: #e8e9eb;
  margin: 0 0.4rem;
}

.indexbox4 .news-container .titbox .tit5 {
  margin-top: 0.35rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.6s;
}

.indexbox4 .news-container .swiper-scrollbar {
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1;
}

.indexbox4 .news-container .swiper-scrollbar:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  background: #eeeeee;
  left: 0;
}

.indexbox4 .news-container .swiper-scrollbar .swiper-scrollbar-drag {
  background: #f29200;
}

.indexbox4 .news-container .item:hover .img img {
  transform: scale(1.1);
}

.indexbox4 .news-container .item:hover .titbox .tit5 {
  color: #0462ae;
}

.indexbox5 {
  position: relative;
  height: 100vh;
  z-index: 2;
  background: url(../img/img62.png) no-repeat center center;
  background-size: cover;
}

.indexbox5 .contentbox-top {
  padding: 10vh 1.25rem 5vh;
  align-items: flex-end;
}

.indexbox5 .contentbox-top .tit4 {
  margin-bottom: 0.8rem;
}

.indexbox5 .contentbox-top .tit5 {
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.indexbox5 .contentbox-top .tit5 span {
  color: #f29200;
}

.indexbox5 .contentbox-top .titbox .li {
  margin-right: 1.5rem;
}

.indexbox5 .contentbox-top .titbox .li:last-child {
  margin-right: 0;
}

.indexbox5 .contentbox-top .titbox .icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.3rem;
}

.indexbox5 .contentbox-top .titbox .icon img {
  max-width: 100%;
  max-height: 100%;
}

.indexbox5 .contentbox-top .wximg {
  width: 4.15rem;
  height: 4.15rem;
  margin-left: 4.5rem;
}

.indexbox5 .ul2 {
  margin-top: 12vh;
  padding: 0 1.25rem;
}

.indexbox5 .ul2 .li {
  width: 100%;
  overflow: hidden;
  display: block;
}

.indexbox5 .ul2 .li img {
  width: 100%;
  border-radius: 0.55rem;
  height: 6.5rem;
  object-fit: cover;
}

.indexbox5 .ul2 .li:nth-child(4n) {
  margin-right: 0;
}

.indexbox5 .ul2 .hyimg-container {}

.indexbox5 .ul2 .hyimg-container .mirror-gradient {
  position: relative;
  width: 100%;
  height: 2.5rem;
  overflow: hidden;
  border-radius: 0.5rem;
  opacity: 0.1;
}

.indexbox5 .ul2 .hyimg-container .mirror-gradient:before {
  content: "";
  position: absolute;
  z-index: 2;
  background: linear-gradient(0,
      #2c70af 0%,
      rgba(44, 112, 175, 0.5) 70%,
      transparent 100%);
  width: 100%;
  height: 100%;
}

.indexbox5 .ul2 .hyimg-container .mirror-gradient .bimg {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 100%;
  transform: scaleY(-1);
}

.indexbox5 .zmore {
  width: 150px;
  height: 40px;
  background: linear-gradient(90deg, #0462ae 0%, #1692f6 100%);
  border-radius: 20px;
  margin: 0.5rem auto 0;
  transition: all 0.6s;
}

.indexbox5 .zmore .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 5px;
}

.indexbox5 .zmore:hover {
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  /*background:rgba(25, 90, 161, 1);*/
}

.indexbox6 {
  position: relative;
  height: 100vh;
  z-index: 2;
}

.indexbox6 .contentbox {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.indexbox6 .contentbox .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.indexbox6 .contentbox .textbox {
  position: absolute;
  padding: 0 1.25rem;
  left: 0;
  top: 14.81vh;
  color: #fff;
  z-index: 3;
}

.indexbox6 .contentbox .textbox .tip span {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.indexbox6 .contentbox .textbox .tit2 {
  margin-top: 23.5vh;
  margin-bottom: 15.7vh;
}

.indexbox6 .contentbox .textbox .tit3 {
  width: 9rem;
}

.indexbox6 .contentbox .textbox .zmore {
  width: 150px;
  height: 40px;
  background: linear-gradient(90deg, #0462ae 0%, #1692f6 100%);
  border-radius: 20px;
  margin: 1.5rem 0 0;
  transition: all 0.6s;
}

.indexbox6 .contentbox .textbox .zmore .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 5px;
}

.indexbox6 .contentbox .textbox .zmore:hover {
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  /*background:rgba(25, 90, 161, 1);*/
}

.indexbox6 .contentbox2 {
  position: absolute;
  width: 50%;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 4;
}

.indexbox6 .contentbox2 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.indexbox6 .contentbox2 .text {
  padding: 15.7vh 5% 1rem;
}

.indexbox6 .contentbox2 .line {
  width: 1px;
  height: 5rem;
  background: #fff;
  margin: 20vh auto 0.6rem;
}

.indexbox6 .contentbox2 .btn {
  width: 1.75rem;
  height: 1.75rem;
  position: relative;
  margin-bottom: 0.45rem;
}

.indexbox6 .contentbox2 .btn .quan {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.6s;
}

.indexbox6 .contentbox2 .btn .icon {
  width: 0.65rem;
  height: 0.65rem;
  fill: #fff;
}

.indexbox6 .contentbox2 .btn:hover .quan {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .ibanner .tit3 br {
    display: none;
  }

  .ibanner .textbox .icon2 {
    width: 5rem;
  }

  .ibanner .hrefbtn {
    width: 120px;
    height: 35px;
    margin-top: 1rem;
  }

  .ibanner .btn {
    display: none;
  }

  .ibanner .pagination {
    bottom: 0.9rem !important;
  }

  .ibanner .pagination span {
    width: 6px !important;
    height: 6px !important;
  }
}

.indexbox7 {
  padding: 3rem 0 3.2rem;
  background: url(../img/img1.jpg) no-repeat center center;
  background-size: cover;
}

.indexbox7 .li {
  width: 25%;
  position: relative;
}

.indexbox7 .li .icon {
  width: 1rem;
  height: 1rem;
  margin-bottom: 0.9rem;
}

.indexbox7 .li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 1.75rem;
  right: 0;
  top: 50%;
  margin-top: -0.875rem;
  background: #e7e8ea;
  background: #e7e8ea;
}

.indexbox7 .li:last-child:before {
  display: none;
}

.footer {
  background: #fff;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}

.footer .footer-top {
  padding: 1.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid #ebebeb;
}

.footer .footer-top img {
  /* width: 153px; */
  height: 49px;
}

.footer .footer-middle {
  padding: 1.5rem 1.25rem 3.5rem;
}

.footer .footer-middle .leftbox {
  width: 300px;
}

.footer .footer-middle .leftbox .tit3 {
  color: #195aa1;
  margin-bottom: 0.6rem;
}

.footer .footer-middle .leftbox .li {
  position: relative;
  cursor: pointer;
}

.footer .footer-middle .leftbox .li .wximg {
  position: absolute;
  padding: 8px;
  width: 123px;
  height: 123px;
  background: #e7e8ea;
  left: 0;
  top: 44px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.footer .footer-middle .leftbox .li .wximg:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #e7e8ea;
  left: 8px;
  top: -6px;
}

.footer .footer-middle .leftbox .li .wximg img {
  width: 115px;
  height: 115px;
}

.footer .footer-middle .leftbox .li:hover .wximg {
  opacity: 1;
  visibility: visible;
}

.footer .footer-middle .sharebox .li {
  width: 32px;
  height: 32px;
  margin-right: 23px;
}

.footer .footer-middle .sharebox .li .tit3 {
  margin-bottom: 0.7rem;
}

.footer .footer-middle .sharebox .li img {
  max-height: 100%;
}

.footer .footer-middle .navul {
  width: 71.42%;
}

.footer .footer-middle .navul a {
  display: block;
  transition: all 0.6s;
}

.footer .footer-middle .navul .tit3 {
  margin-bottom: 0.7rem;
}

.footer .footer-middle .navul .tit4 {
  margin-bottom: 5px;
}

.footer .footer-middle .navul a:hover {
  color: #0462ae;
}

.footer .footer-box {
  padding: 0.7rem 1.25rem;
  background: #f0f0f0;
}

.footer .footer-box .pleft div {
  margin: 0 13px;
}

.footer .footer-box .pleft a {
  color: #000;
}

.footer .footer-box .langbox {
  position: relative;
  z-index: 2;
}

.footer .footer-box .langbox .sp {
  cursor: pointer;
}

.footer .footer-box .langbox .sp .icon {
  width: 15px;
  height: 15px;
  fill: #222;
  margin-left: 5px;
}

.footer .footer-box .langbox .langdown {
  position: absolute;
  right: 0px;
  padding: 10px;
  width: calc(100% + 10px);
  bottom: 20px;
  z-index: 2;
  background: #f0f0f0;
  display: none;
}

.footer .footer-box .langbox .langdown a {
  margin-bottom: 10px;
  display: block;
  transition: all 0.6s;
}

.footer .footer-box .langbox .langdown a:last-child {
  margin-bottom: 0;
}

.footer .footer-box .langbox .langdown a:hover {
  color: #0462ae;
}

.ntips .icon {
  width: 20px;
  height: 20px;
  fill: #f29200;
  margin-right: 0.35rem;
}

.ntips a {
  color: #808080;
  transition: all 0.6s;
}

.ntips span {
  color: #202020;
}

.ntips a:hover {
  color: #195aa1;
}

.n-news {
  padding: 1.5rem 1.25rem 3rem;
}

.n-news .ul2 {
  margin-top: 2.5rem;
}

.n-news .ul2 .li {
  width: 31%;
  margin-right: 3.5%;
}

.n-news .ul2 .li:nth-child(3n) {
  margin-right: 0;
}

.n-news .ul2 .img {
  height: 9.5rem;
  position: relative;
  z-index: 1;
}

.n-news .ul2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.n-news .ul2 .timebox {
  position: absolute;
  left: 22px;
  width: 71px;
  height: 108px;
  background: linear-gradient(125deg, #f29200 0%, #f4af45 100%);
  top: -50px;
  z-index: 3;
}

.n-news .ul2 .li:hover .img img {
  transform: scale(1.1);
}

.n-news .ul2 .li:hover .p span {
  color: #195aa1;
}

.n-news .ul2 .p {
  margin-top: 0.7rem;
  position: relative;
  z-index: 3;
}

.n-news .ul2 .p span {
  padding-left: 119px;
  width: calc(100% - 1.7rem);
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.6s;
}

.n-news .ul2 .news-container.cur {
  padding-bottom: 1.5rem;
}

.n-news .ul2 .news-container.cur .swiper-pagination {
  bottom: 0;
}

.n-news .ul2 .news-container.cur .swiper-pagination span {
  background: #195aa1;
}

.news-list2 {
  position: relative;
  padding: 2.25rem 0;
  z-index: 2;
}

.news-list2 .formbox .input1 {
  width: 280px;
  height: 50px;
  background: #fff;
  border: 2px solid #e3e3e3;
  padding: 0 50px 0 0.5rem;
  border-radius: 0.2rem;
}

.news-list2 .formbox .input2 {
  width: 30px;
  height: 30px;
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}

.news-list2 .formbox .btn {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0.35rem;
  top: 50%;
  margin-top: -15px;
}

.news-list2 .formbox .btn .icon {
  width: 22px;
  height: 22px;
  fill: #999;
}

.news-list2 .warpselectbox {
  width: 255px;
  position: relative;
  z-index: 3;
}

.news-list2 .warpselectbox .selectbox {
  width: 120px;
  height: 50px;
  margin-right: 10px;
  position: relative;
  z-index: 3;
}

.news-list2 .warpselectbox .selectbox:last-child {
  margin-right: 0;
}

.news-list2 .warpselectbox .selectbox span {
  margin-right: 10px;
}

.news-list2 .warpselectbox .selectbox .icon {
  width: 12px;
  height: 12px;
  fill: #000;
  transition: all 0.6s;
}

.news-list2 .warpselectbox .selectbox .selecttop {
  width: 100%;
  height: 50px;
  background: #fff;
  border: 2px solid #e3e3e3;
  border-radius: 0.2rem;
  cursor: pointer;
  padding: 0 0.4rem;
  position: relative;
  z-index: 3;
}

.news-list2 .warpselectbox .selectbox .selecttop.cur .icon {
  transform: rotate(-180deg);
}

.news-list2 .warpselectbox .selectbox .selectitem {
  position: absolute;
  left: 0;
  top: 42px;
  width: 100%;
  background: #f4f4f4;
  max-height: 150px;
  padding: 15px 5px 10px;
  border-radius: 0.2rem;
  overflow-y: auto;
  display: none;
}

.news-list2 .warpselectbox .selectbox .item {
  height: 0.8rem;
  line-height: 0.8rem;
  padding: 0 15px;
  background: transparent;
  cursor: pointer;
  border-bottom: none;
}

.news-list2 .warpselectbox .selectbox .item:hover {
  color: #fff;
  background: #000;
}

.news-list2 .warpselectbox .selectbox:hover .selecttop {
  color: #999;
}

.news-list2 .warpselectbox .selectbox:hover .icon {
  fill: #999;
}

.news-list3 .li {
  width: 49.48%;
  background: #fff;
  overflow: hidden;
  margin-bottom: 0.92rem;
}

.news-list3 .li .img {
  width: 44%;
}

.news-list3 .li .img img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
  transform: scale(1.01);
  transition: all 0.5s;
}

.news-list3 .li .text {
  width: 56%;
  padding: 1.25rem 1rem;
}

.news-list3 .li .text .tit2 {
  margin-bottom: 0.35rem;
  transition: all 0.5s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list3 .li .text .tit3 {
  color: #808080;
  line-height: 28px;
  height: 56px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.news-list3 .li .text .more {
  width: 80px;
  height: 30px;
  border-radius: 6px;
  overflow: hidden;
  color: #f29200;
  margin-right: 16px;
  position: relative;
  border: 2px solid #f29200;
  transition: all 0.5s;
  border-radius: 30px;
  box-sizing: content-box;
}

.news-list3 .li:hover .img img {
  transform: scale(1.1);
}

.news-list3 .li:hover .text .tit2 {
  color: #195aa1;
}

.news-list3 .li:hover .text .more {
  background: #195aa1;
  border: 2px solid #195aa1;
  color: #fff;
}

@media (max-width: 1024px) {
  .news-list2 {
    padding: 1rem 0;
  }

  .news-list3 {
    padding: 1rem 0 2.5rem;
  }
}

@media (max-width: 768px) {
  .news-list3 .li {
    width: 100%;
  }

  .news-list2 .warpselectbox {
    width: 100%;
    margin-bottom: 0.6rem;
  }

  .news-list2 .warpselectbox .selectbox {
    width: 31%;
  }

  .news-list2 .warpselectbox .selectbox:last-child {
    margin-right: 0;
  }

  .news-list2 .formbox {
    width: 100%;
  }

  .news-list2 .formbox .input1 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .news-list3 .li .img {
    width: 100%;
    height: 8rem;
  }

  .news-list3 .li .text {
    width: 100%;
  }

  .news-list2 .warpselectbox .selectbox {
    width: 100%;
    margin-bottom: 0.4rem;
    margin-right: 0;
  }

  .news-list2 .warpselectbox .select1 {
    position: relative;
    z-index: 5;
  }

  .news-list2 .warpselectbox .select2 {
    position: relative;
    z-index: 4;
  }

  .news-list2 .warpselectbox .select3 {
    position: relative;
    z-index: 3;
  }

  .news-list2 .warpselectbox {
    margin-bottom: 0;
  }

  .news-list3 .li .text .tit3 {
    line-height: 20px;
    height: 40px;
    margin-bottom: 0.4rem;
  }
}

.n-info {
  padding: 1.25rem 2rem 3.85rem;
  background: #fafafa;
}

.n-info .contentbox {
  margin-top: 2.2rem;
  padding: 0 2rem;
}

.n-info .textbox {
  padding-left: 10px;
  width: calc(100% - 10.5rem - 2.75rem);
}

.n-info .titlebox {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
}

.n-info .titlebox .tit2 {
  color: #2261a5;
  margin-bottom: 1.25rem;
}

.n-info .titlebox .tbox {
  color: #262626;
}

.n-info .titlebox .tbox span {
  margin: 0 0.5rem;
  color: #bfbfbf;
}

.n-info .titlebox .tbox .social-share {
  margin-left: 5px;
}

.n-info .text {
  color: #4d4d4d;
  padding-top: 1.5rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
  margin-bottom: 1.5rem;
  min-height: 400px;
}

.n-info .text video {
  width: 100% !important;
  height: auto !important;
}

.n-info .text img {
  max-width: 100%;
  display: inline-block;
}

.n-info .news-nav .nav-l {
  width: 55%;
  position: relative;
}

.n-info .news-nav .nav-l span {
  line-height: 1.2;
  margin-right: 0.25rem;
  color: #999;
}

.n-info .news-nav .nav-l p {
  width: calc(100% - 80px);
  line-height: 1.6;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.n-info .news-nav .nav-l a {
  max-width: 100%;
  margin-bottom: 0.2rem;
}

.n-info .news-nav .nav-l a:hover {
  color: #2261a5;
}

.n-info .news-nav .nav-l a:nth-child(2) {
  padding-right: 3rem;
}

.n-info .news-nav .nav-l a:nth-child(3) {
  padding-left: 1.75rem;
}

.n-info .news-nav .backbtn {
  width: 150px;
  height: 52px;
  background: #f29200;
  border-radius: 26px;
}

.n-info .news-nav .backbtn .icon {
  width: 15px;
  height: 15px;
  margin-right: 0.25rem;
  margin-top: -3px;
  fill: #fff;
}

.n-info .news-nav .backbtn:hover {
  background: #f29200;
  color: #fff;
}

.n-info .textright {
  width: 10.5rem;
  margin-top: 3.2rem;
}

.n-info .textright .wformbox {
  width: 100%;
  background: url(../img/img6.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.5rem 4.5rem;
}

.n-info .textright .wformbox .tit3 {
  margin-bottom: 1rem;
}

.n-info .textright .wformbox .ipnut2 {
  width: 100%;
  height: 47px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 0.4rem;
  padding: 0 0.5rem;
}

.n-info .textright .wformbox .ipnut2::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff;
}

.n-info .textright .wformbox .ipnut2:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}

.n-info .textright .wformbox .ipnut2::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}

.n-info .textright .wformbox .ipnut2:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}

.n-info .textright .wformbox .formbox .input1 {
  width: 100%;
  height: 47px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0 50px 0 0.5rem;
  border-radius: 2px;
}

.n-info .textright .wformbox .formbox .input1::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff;
}

.n-info .textright .wformbox .formbox .input1:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}

.n-info .textright .wformbox .formbox .input1::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}

.n-info .textright .wformbox .formbox .input1:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}

.n-info .textright .wformbox .formbox .input3 {
  width: 30px;
  height: 30px;
  background: transparent;
  z-index: 2;
}

.n-info .textright .wformbox .formbox .btn {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0.35rem;
  top: 50%;
  margin-top: -15px;
}

.n-info .textright .wformbox .formbox .btn .icon {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.n-info .textright .wformbox .tit3-1 {
  margin-top: 1.65rem;
}

.n-info .textright .wformbox .sharebox {
  margin-top: 0.7rem;
}

.n-info .textright .wformbox .sharebox .li {
  position: relative;
  cursor: pointer;
}

.n-info .textright .wformbox .sharebox .li .wximg {
  position: absolute;
  padding: 8px;
  width: 123px;
  height: 123px;
  background: #fff;
  left: 0;
  top: 44px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.n-info .textright .wformbox .sharebox .li .wximg:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  left: 8px;
  top: -6px;
}

.n-info .textright .wformbox .sharebox .li .wximg img {
  width: 115px;
  height: 115px;
}

.n-info .textright .wformbox .sharebox .li:hover .wximg {
  opacity: 1;
  visibility: visible;
}

.n-info .textright .wformbox .sharebox .li {
  width: 32px;
  height: 32px;
  margin-right: 23px;
}

.n-info .textright .wformbox .sharebox .li .tit3 {
  margin-bottom: 0.7rem;
}

.n-info .textright .wformbox .sharebox .li img {
  max-height: 100%;
}

.n-info .textright .ul {
  width: 100%;
  margin-top: 20px;
}

.n-info .textright .ul img {
  width: 100%;
}

.n-info3 {
  padding: 1.25rem 4.25rem 3.85rem;
  position: relative;
  background: #fafafa;
}

.n-info3 .textbox {
  width: calc(100% - 10.5rem - 2.5rem);
}

.n-travel {
  background: whitesmoke;
}

.travel-list1 {
  position: relative;
  padding: 3.85rem 0 3.5rem;
  background: whitesmoke url(../img/img11.png) no-repeat center top;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.travel-list1 .img1 {
  position: absolute;
  width: 6rem;
  /*top:9.75rem;*/
  right: 0;
  top: -5rem;
  z-index: 1;
}

.travel-list1 .contentbox {
  margin-bottom: 4.25rem;
}

.travel-list1 .contentbox .tit2 {
  margin-bottom: 1.75rem;
}

.travel-list1 .contentbox2 .tit2 {
  margin-bottom: 2rem;
}

.travel-list1 .contentbox2 .warpimgbox1 {
  width: 17px;
  position: relative;
  width: 100%;
}

.travel-list1 .contentbox2 .warpimgbox1 .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.travel-list1 .contentbox2 .warpimgbox1 .button-prev {
  width: 17px;
  height: 34px;
  background: #f6b400;
  position: absolute;
  left: -45px;
  top: 50%;
  margin-top: calc(-17px - 0.5rem);
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
  cursor: pointer;
}

.travel-list1 .contentbox2 .warpimgbox1 .button-next {
  width: 17px;
  height: 34px;
  background: #f6b400;
  position: absolute;
  right: -45px;
  top: 50%;
  margin-top: calc(-17px - 0.5rem);
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
  cursor: pointer;
}

.travel-list1 .contentbox2 .warpimgbox1 .button-next .icon {
  transform: rotate(-180deg);
}

.travel-list1 .contentbox2 .imgbox1-container {
  width: 100%;
  padding-bottom: 1rem;
}

.travel-list1 .contentbox2 .imgbox1-container .li {
  position: relative;
}

.travel-list1 .contentbox2 .imgbox1-container .li img {
  width: 100%;
  height: 16.75rem;
  object-fit: cover;
  transition: all 0.6s;
}

.travel-list1 .contentbox2 .imgbox1-container .swiper-slide.swiper-slide-active .text {
  opacity: 1;
}

.travel-list1 .contentbox2 .imgbox1-container .text {
  position: absolute;
  bottom: 0;
  padding: 0 2rem 1.5rem;
  z-index: 3;
  opacity: 0;
  transition: all 0.6s;
}

.travel-list1 .contentbox2 .imgbox1-container .text .tit3 {
  margin-bottom: 1rem;
}

.travel-list1 .contentbox2 .imgbox1-container .text .more {
  width: 150px;
  height: 50px;
  color: #fff;
  border-radius: 50px;
  border: 2px solid #ffffff;
  box-sizing: content-box;
  transition: all 0.6s;
}

.travel-list1 .contentbox2 .imgbox1-container .text .more .icon {
  width: 12px;
  height: 12px;
  fill: #fff;
  margin-left: 10px;
}

.travel-list1 .contentbox2 .imgbox1-container .li:hover img {
  transform: scale(1.1);
}

.travel-list1 .contentbox2 .imgbox1-container .li:hover .more {
  border: 2px solid #1a5aa2;
  background: #1a5aa2;
}

.travel-list2 {
  padding: 3.5rem 0 2rem;
  position: relative;
  z-index: 2;
}

.travel-list2 .tit3 span {
  color: #0f579f;
}

.travel-list2 .imgbox {
  margin-top: 3.5rem;
}

.travel-list2 .img1 {
  position: absolute;
  width: 4.5rem;
  left: 0;
  top: 0;
  z-index: 1;
}

.travel-list3 {
  padding: 2rem 0 4.25rem;
  position: relative;
  z-index: 2;
}

.travel-list3 .tit3 span {
  color: #0f579f;
}

.travel-list3 .contentbox {
  margin-top: 3rem;
}

.travel-list3 .p {
  width: 100%;
  margin-bottom: 1.5rem;
  line-height: 2;
  margin-bottom: 1.25rem;
}

.travel-list3 .tip {
  margin-top: 1.7rem;
  width: 100%;
  text-align: left;
}

.travel-list3 .warpimgbox {
  width: 17px;
  position: relative;
  width: 100%;
}

.travel-list3 .warpimgbox .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
}

.travel-list3 .warpimgbox .button-prev {
  width: 17px;
  height: 34px;
  background: #f6b400;
  position: absolute;
  left: -45px;
  top: 50%;
  margin-top: calc(-17px - 0.5rem);
  border-top-left-radius: 17px;
  border-bottom-left-radius: 17px;
  cursor: pointer;
}

.travel-list3 .warpimgbox .button-next {
  width: 17px;
  height: 34px;
  background: #f6b400;
  position: absolute;
  right: -45px;
  top: 50%;
  margin-top: calc(-17px - 0.5rem);
  border-top-right-radius: 17px;
  border-bottom-right-radius: 17px;
  cursor: pointer;
}

.travel-list3 .warpimgbox .button-next .icon {
  transform: rotate(-180deg);
}

.travel-list3 .imgbox-container {
  width: 100%;
  padding-bottom: 1rem;
}

.travel-list3 .imgbox-container .swiper-scrollbar-drag {
  background: #d3d3d3;
}

.travel-list3 .imgbox-container .swiper-scrollbar {
  background: #eee;
}

.travel-list3 .imgbox-container .li img {
  width: 100%;
}

.n-info2 {
  padding: 1.25rem 2rem 3.85rem;
  background: #fafafa;
}

.n-info2 .contentbox {
  width: 1068px;
  max-width: 88%;
  margin: 2.2rem auto 0;
}

.n-info2 .titlebox {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
}

.n-info2 .titlebox .tit2 {
  color: #2261a5;
  margin-bottom: 1.25rem;
}

.n-info2 .text {
  color: #4d4d4d;
  padding-top: 1.5rem;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid rgba(27, 27, 27, 0.08);
  margin-bottom: 1.5rem;
  min-height: 400px;
}

.n-info2 .text img {
  max-width: 100%;
  display: inline-block;
}

.n-info2 .news-nav .nav-l {
  width: 55%;
  position: relative;
}

.n-info2 .news-nav .nav-l span {
  line-height: 1.2;
  margin-right: 0.25rem;
  color: #999;
}

.n-info2 .news-nav .nav-l p {
  width: calc(100% - 80px);
  line-height: 1.6;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.n-info2 .news-nav .nav-l a {
  max-width: 100%;
  margin-bottom: 0.2rem;
}

.n-info2 .news-nav .nav-l a:hover {
  color: #2261a5;
}

.n-info2 .news-nav .nav-l a:nth-child(2) {
  padding-right: 3rem;
}

.n-info2 .news-nav .nav-l a:nth-child(3) {
  padding-left: 1.75rem;
}

.n-info2 .news-nav .backbtn {
  width: 150px;
  height: 52px;
  background: #f29200;
  border-radius: 26px;
}

.n-info2 .news-nav .backbtn .icon {
  width: 15px;
  height: 15px;
  margin-right: 0.25rem;
  margin-top: -3px;
  fill: #fff;
}

.n-info2 .news-nav .backbtn:hover {
  background: #f29200;
  color: #fff;
}

.zmore {
  width: 150px;
  height: 40px;
  background: linear-gradient(90deg, #0462ae 0%, #1692f6 100%);
  border-radius: 20px;
}

.n-solution .imgbox-container {
  height: calc(100vh - 2.5rem);
  background: #000;
  width: 100%;
  overflow: hidden;
}

.n-solution .imgbox-container .swiper-slide {
  position: relative;
}

.n-solution .imgbox-container .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
}

.n-solution .imgbox-container .bg2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 2;
}

.n-solution .imgbox-container .textbox {
  position: absolute;
  width: 15.9rem;
  right: 2.25rem;
  bottom: 2.5rem;
  z-index: 5;
}

.n-solution .imgbox-container .zmore {
  margin-top: 1.25rem;
  text-transform: uppercase;
}

.n-solution .imgbox-container .zmore .icon {
  width: 10px;
  height: 10px;
  fill: #fff;
  margin-left: 5px;
}

.n-solution .imgbox-container .zmore:hover {
  color: #fff;
}

.n-solution .imgbox-container .videobtn {
  width: 2.25rem;
  height: 2.25rem;
  border: 5px solid #f29200;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
  transition: all 0.6s;
}

.n-solution .imgbox-container .videobtn:hover {
  border: 5px solid #155aa1;
}

.n-solution .imgbox-container .videobtn .icon2 {
  width: 34px;
  height: 34px;
  fill: #f29200;
  transition: all 0.4s;
}

.n-solution .imgbox-container .videobtn:hover {
  border: 5px solid #155aa1;
}

.n-solution .imgbox-container .videobtn:hover .icon2 {
  fill: #155aa1;
}

.n-solution .imgbox-container .swiper-pagination span {
  background: #fff;
  opacity: 0.6;
}

.n-solution .imgbox-container .swiper-pagination span.swiper-pagination-bullet-active {
  background: #195aa1;
  opacity: 1;
}

.n-solution .tabul {
  position: absolute;
  left: 1.4rem;
  bottom: 0;
  z-index: 7;
  padding-bottom: 2.65rem;
}

.n-solution .tabul:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #fff;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.n-solution .tabul .li {
  padding-left: 1rem;
  margin-bottom: 1.35rem;
  opacity: 0.2;
  cursor: pointer;
  transition: all 0.6s;
}

.n-solution .tabul .li:hover {
  opacity: 0.8;
  transform: translate(10px, 0);
}

.n-solution .tabul .li.cur {
  opacity: 1;
}

.n-banner .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.n-banner .p2 {
  width: 1080px;
  margin: 1.25rem auto 0;
  max-width: 88%;
}

.n-banner .ntips {
  padding: 0 2rem;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60px;
  background: url(../img/img29.png) no-repeat center center;
  background-size: cover;
}

.n-banner .ntips a {
  color: #fff;
}

.n-banner .ntips span {
  color: #fff;
}

.n-bannerinfo {
  position: relative;
  z-index: 2;
}

.n-bannerinfo:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 75%;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(to top, #195aa1, rgba(25, 90, 161, 0));
}

.n-business {
  padding: 3.65rem 0 2.5rem;
  background: url(../img/img25.jpg) no-repeat center 9rem;
  background-size: 100% auto;
}

.n-business .textbox {
  padding-bottom: 2.5rem;
}

.n-business .textbox .tipimg {
  font-size: 4.5rem;
  font-weight: bold;
  background-image: linear-gradient(180deg,
      rgba(237, 237, 237, 1) 20%,
      rgba(237, 237, 237, 0) 65%,
      rgba(237, 237, 237, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

.n-business .textbox .p {
  width: 960px;
  max-width: 88%;
  margin: -2rem auto 0;
}

.n-business .warpbox {
  padding: 0 1.25rem;
  margin-top: 2rem;
}

.n-business .item {
  position: relative;
  height: 75vh;
  border-radius: 0.5rem;
  overflow: hidden;
}

.n-business .item .img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
}

.n-business .item .imgbg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  object-fit: cover;
}

.n-business .item .tit3 {
  margin-bottom: 0.75rem;
}

.n-business .item .text {
  position: absolute;
  width: 700px;
  left: 2.5rem;
  bottom: 3.5rem;
  z-index: 4;
}

.n-business .item .tit4 {
  margin-bottom: 0.65rem;
}

.n-business .item .tit5 {
  overflow-y: auto;
  padding-right: 5px;
  max-height: 6rem;
}

.n-business .item .tit5 p {
  font-size: 14px !important;
}

.n-business .item .zmore {
  width: 150px;
  height: 52px;
  background: #f29200;
  border-radius: 52px;
  margin-top: 1.2rem;
  transition: all 0.6s;
}

.n-business .item .zmore .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 5px;
}

.n-business .item .zmore:hover {
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  background: #195aa1;
}

.business-info {
  padding: 5rem 0 2.35rem;
  position: relative;
  z-index: 2;
  background: #f5f5f5;
}

.business-info .imgbox-container {
  width: 80%;
  padding-bottom: 2.85rem;
  position: relative;
}

.business-info .imgbox-container .item {
  position: relative;
}

.business-info .imgbox-container .item .img {
  height: 14.25rem;
  width: 100%;
  overflow: hidden;
}

.business-info .imgbox-container .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.business-info .imgbox-container .item .text {
  margin-top: 0.9rem;
  position: relative;
}

.business-info .imgbox-container .item .tit4 {
  width: 70%;
  margin-bottom: 0.55rem;
}

.business-info .imgbox-container .item .numbox {
  position: absolute;
  right: 0;
  top: -0.5rem;
}

.business-info .imgbox-container .item .numbox span {
  z-index: 2;
}

.business-info .imgbox-container .swiper-pagination {
  width: calc(80vw / 1.5 - 50px);
  bottom: 0 !important;
  top: auto;
  background: transparent;
}

.business-info .imgbox-container .swiper-pagination .swiper-pagination-progressbar {
  border-radius: 4px;
  overflow: hidden;
}

.business-info .imgbox-container .swiper-pagination:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #cfcfcf;
  left: 0;
  top: 50%;
}

.business-info .tabul {
  width: calc(20% - 3rem);
  left: 1.25rem;
  position: absolute;
  top: 16rem;
}

.business-info .tabul .li {
  margin-bottom: 0.55rem;
  color: #808080;
  cursor: pointer;
  transition: all 0.6s;
}

.business-info .tabul .li:hover,
.business-info .tabul .li.cur {
  color: #000;
  font-weight: bold;
}

.about-list1 {
  padding: 2.25rem 1.25rem 13.9rem;
  position: relative;
  z-index: 1;
  background: #fff url(../img/img32.png) no-repeat center calc(100% + 3rem);
  background-size: 100% auto;
}

.about-list1 .title {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #ebebeb;
}

.about-list1 .title .icon {
  width: 26px;
  height: 26px;
  fill: #333;
  margin-right: 0.25rem;
}

.about-list1 .tit2 {
  margin-top: 2rem;
}

.about-list1 .tit2 span {
  color: #0f81dc;
}

.about-list1 .contetbox {
  padding-top: 1.5rem;
}

.about-list1 .textbox {
  width: 66%;
}

.about-list1 .textbox .tipimg {
  height: 2.3rem;
}

.about-list1 .textbox .p {
  margin-top: -0.7rem;
  width: 100%;
  line-height: 26px;
}

.about-list1 .downbtn {
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
}

.about-list1 .downbtn span {
  color: #f29200;
  padding-bottom: 2px;
  border-bottom: 1px solid #f29200;
  transition: all 0.6s;
}

.about-list1 .downbtn .icon {
  width: 20px;
  height: 20px;
  fill: #f29200;
  margin-top: 0.25rem;
  transition: all 0.4s;
}

.about-list1 .downbtn:hover span {
  color: #155aa1;
  border-bottom: 1px solid #155aa1;
}

.about-list1 .downbtn:hover .icon {
  fill: #155aa1;
}

.about-list2 {
  position: relative;
  height: 100vh;
  z-index: 1;
}

.about-list2 .title {
  position: absolute;
  left: 1.5rem;
  width: calc(100% - 3rem);
  top: 2.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(235, 235, 235, 0.2);
}

.about-list2 .title .icon {
  width: 26px;
  height: 26px;
  fill: #fff;
  margin-right: 0.25rem;
}

.about-list2 .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.about-list2 .titlebox {
  top: 6rem;
  position: absolute;
  padding: 0 6%;
  width: 100%;
  z-index: 3;
}

.about-list2 .titlebox .time {
  font-size: 8.75rem;
  line-height: 1;
  background: -webkit-linear-gradient(180deg,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0));
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-list2 .titlebox .tit3 {
  margin-top: -2.5rem;
}

.about-list2 .timebox {
  position: absolute;
  width: 1200px;
  max-width: 88%;
  bottom: 1.5rem;
  z-index: 4;
  padding-bottom: 30px;
}

.about-list2 .timebox:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  top: 11.25px;
}

.about-list2 .item {
  padding-top: 40px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.about-list2 .item::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 50%;
  top: 0;
  margin-left: -11px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0.5);
  transition: all 0.6s;
}

.about-list2 .item::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #f29200;
  border-radius: 50%;
  background: #f29200;
  left: 50%;
  margin-left: -5px;
  top: 6.5px;
  z-index: 3;
  opacity: 0;
  transition: all 0.6s;
}

.about-list2 .timebox .item span {
  opacity: 0.78;
  height: 30px;
  display: block;
  transform-origin: center 20px;
  transition: all 0.6s;
}

.about-list2 .timebox .swiper-slide.cur span {
  transform: scale(1.4);
}

.about-list2 .timebox .swiper-slide.cur .item::before {
  transform: scale(1);
}

.about-list2 .timebox .swiper-slide.cur .item::after {
  opacity: 1;
}

.about-list2 .timebox .swiper-slide:hover span {
  transform: scale(1.4);
}

.about-list2 .timebox .swiper-slide:hover .item::before {
  transform: scale(1);
}

.about-list2 .timebox .swiper-slide:hover .item::after {
  opacity: 1;
}

.about-list3 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  background: #000;
  overflow: hidden;
}

.about-list3 .bgbox {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.about-list3 .bgbox .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}

.about-list3 .bgbox .bg.cur {
  opacity: 1;
}

.about-list3 .wul {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  overflow-x: auto;
}

.about-list3 .wul .ul {
  width: 100%;
}

.about-list3 .wul .ul .li {
  position: relative;
  width: 25%;
  height: 100vh;
  border-right: 1px solid rgba(235, 235, 235, 0.1);
}

.about-list3 .wul .ul .li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(66, 66, 66, 0.4);
  opacity: 0;
  transition: all 0.6s;
}

.about-list3 .wul .ul .txtbox {
  position: absolute;
  bottom: 2.5rem;
  z-index: 3;
  width: 100%;
  text-align: center;
  transition: all 0.6s;
}

.about-list3 .wul .ul .p {
  position: absolute;
  top: 1.25rem;
  width: 100%;
  padding: 0 0.75rem;
  text-align: center;
  opacity: 0;
}

.about-list3 .wul .ul .li.cur:before {
  opacity: 1;
}

.about-list3 .wul .ul .li.cur .txtbox {
  transform: translate(0, -40vh);
}

.about-list3 .wul .ul .li.cur .txtbox .p {
  opacity: 1;
}

.about-list3 .title {
  position: absolute;
  left: 1.5rem;
  top: 2.5rem;
  z-index: 3;
}

.about-list3 .title .icon {
  width: 26px;
  height: 26px;
  fill: #fff;
  margin-right: 0.25rem;
}

.about-list4 {
  padding: 2rem 1.5rem 1.25rem;
}

.about-list4 .title {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #ebebeb;
}

.about-list4 .title .icon {
  width: 26px;
  height: 26px;
  fill: #333;
  margin-right: 0.25rem;
}

.about-list4 .tabul {
  margin-top: 1.35rem;
}

.about-list4 .tabul .li {
  height: 52px;
  border-radius: 52px;
  border: 1px solid #cccccc;
  margin-right: 0.5rem;
  color: #999;
  padding: 0 1.5rem;
  transition: all 0.6s;
  cursor: pointer;
}

.about-list4 .tabul .li:hover,
.about-list4 .tabul .li.cur {
  background: #f29200;
  color: #fff;
  border: 1px solid #f29200;
}

.about-list4 .warpitembox {
  margin-top: 1.75rem;
}

.about-list4 .itembox {
  display: none;
}

.about-list4 .itembox .li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 1.4rem;
  cursor: pointer;
}

.about-list4 .itembox .li:nth-child(4n) {
  margin-right: 0;
}

.about-list4 .itembox .text {
  margin-top: 0.65rem;
}

.about-list4 .itembox .img {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

.about-list4 .itembox .img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(28, 28, 28, 0.7);
  opacity: 0;
  z-index: 3;
  transition: all 0.6s;
}

.about-list4 .itembox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.about-list4 .itembox .img .icon2 {
  width: 1.25rem;
  height: 1.25rem;
  background: #f29200;
  border-radius: 50%;
  opacity: 0;
  z-index: 4;
  transition: all 0.6s;
}

.about-list4 .itembox .img .icon2 svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: #fff;
}

.about-list4 .itembox .tit3 {
  padding-left: 0.45rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.about-list4 .itembox .tit3:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 0.7rem;
  background: #f29200;
  left: 0;
  top: 50%;
  margin-top: -0.35rem;
  transition: all 0.6s;
}

.about-list4 .itembox .tit4 {
  color: #1d1d1d;
}

.about-list4 .itembox .li:hover .img:before {
  opacity: 1;
}

.about-list4 .itembox .li:hover .img .icon2 {
  opacity: 1;
}

.about-list4 .itembox .li:hover .img img {
  transform: scale(1.1);
}

.about-list5 {
  position: relative;
  z-index: 1;
}

.about-list5 .title {
  position: absolute;
  width: calc(100% - 3rem);
  left: 1.5rem;
  top: 2.5rem;
  z-index: 3;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #b3b3b3;
}

.about-list5 .title .icon {
  width: 30px;
  height: 30px;
  fill: #000;
  margin-right: 0.25rem;
}

.about-list5 .his-container {
  position: absolute;
  width: 1600px;
  max-width: 88%;
  top: 34vh;
  z-index: 4;
}

.about-list5 .his-container .img {
  width: 100%;
  height: 22vh;
  align-items: flex-end;
  position: relative;
}

.about-list5 .his-container .img img {
  max-width: 100%;
  max-height: 100%;
}

.about-list5 .his-container .itembox {
  width: 1120px;
  max-width: 88%;
  height: 55vh;
  margin: 0 auto;
  position: relative;
}

.about-list5 .his-container .itembox .item {
  position: absolute;
  width: 12vw;
}

.about-list5 .his-container .itembox .item:nth-child(1) {
  left: 17%;
  top: 0%;
}

.about-list5 .his-container .itembox .item:nth-child(2) {
  left: 3%;
  top: 47%;
}

.about-list5 .his-container .itembox .item:nth-child(3) {
  left: 27%;
  top: 46.9%;
}

.about-list5 .his-container .itembox .item:nth-child(4) {
  left: 58%;
  top: 20%;
}

.about-list5 .his-container .itembox .item:nth-child(5) {
  left: 82%;
  top: 20%;
}

.about-list5 .his-container .itembox .item:nth-child(5) .txtbox {
  right: calc(100% - 1.45rem);
  left: auto;
  flex-flow: row-reverse nowrap;
  top: 28%;
}

.about-list5 .his-container .itembox .item:nth-child(5) .txtbox span {
  margin-right: 0.5rem;
  margin-left: 0;
}

.about-list5 .his-container .itembox .txtbox {
  position: absolute;
  left: calc(100% - 1.45rem);
  top: 40%;
  white-space: nowrap;
  flex-flow: row nowrap;
}

.about-list5 .his-container .itembox .item:nth-child(4) .txtbox {
  left: calc(100% - 1.45rem);
  top: 57%;
}

.about-list5 .his-container .itembox .txtbox span {
  opacity: 0;
  transition: all 0.6s;
}

.about-list5 .his-container .itembox .txtbox .dbtn {
  width: 1rem;
  height: 1rem;
  background: rgba(41, 103, 207, 0.2);
  border-radius: 50%;
  position: relative;
}

.about-list5 .his-container .itembox .txtbox .dbtn:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-left: -6px;
  margin-top: -6px;
  background: #2967cf;
}

.about-list5 .his-container .itembox .txtbox span {
  margin-left: 0.4rem;
}

.about-list5 .his-container .itembox .item:hover {
  z-index: 3;
}

.about-list5 .his-container .itembox .item:hover .txtbox span {
  opacity: 1;
}

.about-list5 .his-container .button-prev,
.about-list5 .his-container .button-next {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background: #b8b8b8;
  border-radius: 50%;
  top: 50%;
  margin-top: -0.75rem;
  z-index: 3;
  cursor: pointer;
  transition: all 0.6s;
}

.about-list5 .his-container .button-prev {
  left: 0;
  transform: rotate(-180deg);
}

.about-list5 .his-container .button-next {
  right: 0;
}

.about-list5 .his-container .button-prev .icon,
.about-list5 .his-container .button-next .icon {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.about-list5 .his-container .button-prev:hover,
.about-list5 .his-container .button-next:hover {
  background: #2967cf;
}

.n-social {
  padding: 1.5rem 0 0;
  background: #f5f5f5;
}

.n-social .ntips {
  padding: 0 1.5rem;
}

.n-social .li {
  padding: 3.25rem 1.5rem 2.65rem;
  position: relative;
}

.n-social .li:nth-child(1) {
  padding: 2rem 1.5rem 2.65rem;
  position: relative;
}

.n-social .li:nth-child(1) .icon2 {
  position: absolute;
  right: 6.25rem;
  top: 2rem;
  width: 5.5rem;
}

.n-social .li .img {
  width: 53%;
  height: 17.5rem;
}

.n-social .li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n-social .li .textbox {
  width: 47%;
  padding-left: 3rem;
  padding-right: 2.25rem;
}

.n-social .li .tit3 {
  margin-bottom: 1.5rem;
}

.n-social .li .zmore {
  width: 150px;
  height: 52px;
  background: #f29200;
  border-radius: 52px;
  margin-top: 2rem;
  transition: all 0.6s;
}

.n-social .li .zmore .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 5px;
}

.n-social .li .zmore:hover {
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  background: #195aa1;
}

.n-social .li:nth-child(even) {
  background: #fff url(../img/img38.png) no-repeat left bottom;
  background-size: 55% auto;
  flex-flow: row-reverse wrap;
}

.n-social .li:nth-child(even) .textbox {
  margin-top: 3.25rem;
  padding-right: 5rem;
  padding-left: 0;
}

.n-social .li:nth-child(odd) {
  align-items: center;
}

.n-social-list {
  padding: 1.5rem 0 2.5rem;
  background: url(../img/img40.png) no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #d1d1d1;
}

.n-social-list .ntips {
  padding: 0 1.25rem;
}

.n-social-list .imgbox-container {
  margin-top: 3.5rem;
  position: relative;
  padding-bottom: 2.25rem;
  z-index: 1;
}

.n-social-list .imgbox-container .li .bg {
  width: 100%;
  height: 16.25rem;
  object-fit: cover;
}

.n-social-list .imgbox-container .li .textbox {
  position: absolute;
  width: 100%;
  bottom: 1.5rem;
  padding: 0 2.1rem;
  z-index: 3;
}

.n-social-list .imgbox-container .li .rbtn {
  color: #f29200;
}

.n-social-list .imgbox-container .li .ybtn {
  color: #f29200;
}

.n-social-list .imgbox-container .li .tit2 {
  margin-top: 0.9rem;
}

.n-social-list .imgbox-container .li .tit3 {
  margin-top: 0.3rem;
}

.n-social-list .imgbox-container .li .tit2 {
  transition: all 0.6s;
}

.n-social-list .imgbox-container .li:hover .tit2 {
  color: #f29200;
}

.n-social-list .imgbox-container .swiper-pagination {
  position: absolute;
  width: 1100px;
  max-width: 88%;
  left: 50%;
  bottom: 0 !important;
  top: auto;
  background: transparent;
  transform: translate(-50%, 0);
}

.n-social-list .imgbox-container .swiper-pagination .swiper-pagination-progressbar {
  border-radius: 4px;
  overflow: hidden;
}

.n-social-list .imgbox-container .swiper-pagination:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #cfcfcf;
  left: 0;
  top: 50%;
}

.n-report {
  padding: 1.5rem 1.5rem 2.25rem;
  position: relative;
  background: #f2f2f2;
  z-index: 2;
}

.n-report .contentbox {
  margin-top: 1.25rem;
}

.n-report .contentbox .libox {
  background: url(../img/img42.png) no-repeat center center;
  background-size: cover;
  padding: 2.5rem 5rem 0;
}

.n-report .contentbox .libox .img {
  width: 9.25rem;
}

.n-report .contentbox .libox .text {
  padding-top: 0.8rem;
  position: relative;
  width: calc(100% - 9.25rem - 3.85rem);
  margin-left: 3.85rem;
}

.n-report .contentbox .libox .text .tit2 {
  margin-bottom: 10px;
}

.n-report .contentbox .libox .text .tit3 {
  color: #85c1dd;
  letter-spacing: 3px;
}

.n-report .contentbox .libox .text .btn {
  position: absolute;
  left: 0;
  bottom: 1.5rem;
}

.n-report .contentbox .libox .text .btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.4rem;
}

.n-report .contentbox .libox .text .btn .icon2 {
  width: 25px;
  height: 25px;
  fill: #fff;
  margin-right: 0.25rem;
}

.n-report .contentbox .libox .text .btn:hover {
  color: #fff;
}

.n-report .contentbox .ul {
  width: 100%;
  margin-top: 20px;
}

.n-report .contentbox .ul img {
  width: 100%;
}

.n-report .contentbox .ul .tit4 {
  position: absolute;
  left: 1.5rem;
  top: 1.75rem;
  z-index: 3;
}

.n-report .contentbox .ul .li {
  display: block;
}

.n-report .contentbox .ul .li img {
  transition: all 0.6s;
}

.n-report .contentbox .ul .li:hover img {
  transform: scale(1.1);
}

.n-report .contentbox2 {
  margin-top: 2.65rem;
}

.n-report .contentbox2 .leftbox {
  width: calc(100% - 10.5rem - 2.5rem);
}

.n-report .contentbox2 .leftbox .title {
  padding-bottom: 10px;
  border-bottom: 2px solid #f29200;
}

.n-report .contentbox2 .leftbox .li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #e6e6e6;
}

.n-report .contentbox2 .leftbox .li:last-child {
  border-bottom: none;
}

.n-report .contentbox2 .leftbox .ybox {
  width: 90px;
  padding-right: 20px;
  border-right: 1px solid #f2d5a9;
}

.n-report .contentbox2 .leftbox .spbox {
  width: calc(100% - 60px);
}

.n-report .contentbox2 .leftbox .spbox .rbtn {
  color: #f29200;
}

.n-report .contentbox2 .leftbox .spbox .ybtn {
  color: #f29200;
}

.n-report .contentbox2 .leftbox .sp {
  width: calc(100% - 90px - 0.7rem);
  margin-left: 0.7rem;
  color: #6d6868;
}

.n-report .contentbox2 .leftbox .sp span {
  width: calc(100% - 0.7rem - 28px - 50px);
  display: block;
  line-height: 1.2;
  margin-left: 0.5rem;
  transition: all 0.6s;
}

.n-report .contentbox2 .leftbox .li:hover .sp span {
  color: #f29200;
}

.n-report .contentbox2 .leftbox .li:hover .btn .icon {
  fill: #f29200;
}

.n-report .contentbox2 .leftbox .btn {
  width: 30px;
  height: 30px;
}

.n-report .contentbox2 .leftbox .btn svg {
  width: 25px;
  height: 25px;
  fill: #000;
  transition: all 0.4s;
}

.n-report .contentbox2 .leftbox .morebtn {
  margin-top: 2rem;
  width: 100%;
  height: 1.5rem;
  background: #f29200;
  transition: all 0.6s;
}

.n-report .contentbox2 .leftbox .morebtn:hover {
  color: #fff;
}

.n-report .contentbox2 .textright {
  width: 10.5rem;
  margin-left: 2.5rem;
}

.n-report .contentbox2 .textright .wformbox {
  width: 100%;
  background: url(../img/img6.jpg) no-repeat center center;
  background-size: cover;
  padding: 1.5rem 1.5rem 5.5rem;
  position: relative;
  z-index: 4;
}

.n-report .contentbox2 .textright .wformbox .tit3 {
  margin-bottom: 1rem;
}

.n-report .contentbox2 .textright .wformbox .ipnut2 {
  width: 100%;
  height: 47px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 0.4rem;
  padding: 0 0.5rem;
}

.n-report .contentbox2 .textright .wformbox .ipnut2::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff;
}

.n-report .contentbox2 .textright .wformbox .ipnut2:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}

.n-report .contentbox2 .textright .wformbox .ipnut2::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}

.n-report .contentbox2 .textright .wformbox .ipnut2:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}

.n-report .contentbox2 .textright .wformbox .formbox .input1 {
  width: 100%;
  height: 47px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0 50px 0 0.5rem;
  border-radius: 2px;
}

.n-report .contentbox2 .textright .wformbox .formbox .input1::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff;
}

.n-report .contentbox2 .textright .wformbox .formbox .input1:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}

.n-report .contentbox2 .textright .wformbox .formbox .input1::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}

.n-report .contentbox2 .textright .wformbox .formbox .input1:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}

.n-report .contentbox2 .textright .wformbox .formbox .input3 {
  width: 30px;
  height: 30px;
  background: transparent;
  z-index: 2;
}

.n-report .contentbox2 .textright .wformbox .formbox .btn {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0.35rem;
  top: 50%;
  margin-top: -15px;
}

.n-report .contentbox2 .textright .wformbox .formbox .btn .icon {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.n-report .contentbox2 .textright .wformbox .tit3-1 {
  margin-top: 1.65rem;
}

.n-report .contentbox2 .textright .wformbox .sharebox {
  margin-top: 0.7rem;
}

.n-report .contentbox2 .textright .wformbox .sharebox .li {
  position: relative;
  cursor: pointer;
}

.n-report .contentbox2 .textright .wformbox .sharebox .li .wximg {
  position: absolute;
  padding: 8px;
  width: 123px;
  height: 123px;
  background: #fff;
  left: 0;
  top: 44px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.n-report .contentbox2 .textright .wformbox .sharebox .li .wximg:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  left: 8px;
  top: -6px;
}

.n-report .contentbox2 .textright .wformbox .sharebox .li .wximg img {
  width: 115px;
  height: 115px;
}

.n-report .contentbox2 .textright .wformbox .sharebox .li:hover .wximg {
  opacity: 1;
  visibility: visible;
}

.n-report .contentbox2 .textright .wformbox .sharebox .li {
  width: 32px;
  height: 32px;
  margin-right: 23px;
}

.n-report .contentbox2 .textright .wformbox .sharebox .li .tit3 {
  margin-bottom: 0.7rem;
}

.n-report .contentbox2 .textright .wformbox .sharebox .li img {
  max-height: 100%;
}

.n-report .contentbox2 .textright .ul {
  width: 100%;
  margin-top: 20px;
}

.n-report .contentbox2 .textright .ul img {
  width: 100%;
}

.n-report .contentbox2 .textright .ul .tit4 {
  position: relative;
  margin-bottom: 0.4rem;
  display: block;
  z-index: 3;
}

.n-report .contentbox2 .textright .ul .tit5 {
  position: relative;
  opacity: 0.6;
  font-weight: bold;
  z-index: 3;
}

.n-report .contentbox2 .textright .ul .li {
  display: block;
  height: 7rem;
  padding: 1.75rem 1.5rem 1rem;
  overflow: hidden;
}

.n-report .contentbox2 .textright .ul .li img {
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.n-report .contentbox2 .textright .ul .li:hover img {
  transform: scale(1.1);
}

.n-info .textright .ul {
  width: 100%;
  margin-top: 20px;
}

.n-info .textright .ul img {
  width: 100%;
}

.n-info .textright .ul .tit4 {
  position: relative;
  margin-bottom: 0.4rem;
  display: block;
  z-index: 3;
}

.n-info .textright .ul .tit5 {
  position: relative;
  opacity: 0.6;
  font-weight: bold;
  z-index: 3;
}

.n-info .textright .ul .li {
  display: block;
  height: 7rem;
  padding: 1.75rem 1.5rem 1rem;
  overflow: hidden;
}

.n-info .textright .ul .li img {
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

.n-info .textright .ul .li:hover img {
  transform: scale(1.1);
}

.n-notice {
  padding: 1.5rem 1.5rem 2.25rem;
  position: relative;
  background: #f2f2f2 url(../img/img46.png) no-repeat center top;
  z-index: 2;
}

.n-notice .tit2 {
  width: 100%;
  padding-top: 1.85rem;
  margin-bottom: 2rem;
}

.n-notice .contentbox2 .leftbox {
  width: calc(100% - 10.5rem - 2.5rem);
  background: #fff;
}

.n-notice .contentbox2 .leftbox .title {
  padding-bottom: 10px;
  border-bottom: 2px solid #f29200;
}

.n-notice .contentbox2 .leftbox .li {
  padding: 0.65rem 0;
  border-bottom: 1px solid #e6e6e6;
}

.n-notice .contentbox2 .leftbox .li:last-child {
  border-bottom: none;
}

.n-notice .contentbox2 .leftbox .ybox {
  width: 90px;
  padding-right: 20px;
  border-right: 1px solid #f2d5a9;
}

.n-notice .contentbox2 .leftbox .spbox {
  width: calc(100% - 60px);
}

.n-notice .contentbox2 .leftbox .spbox .rbtn {
  color: #f29200;
}

.n-notice .contentbox2 .leftbox .spbox .ybtn {
  color: #f29200;
}

.n-notice .contentbox2 .leftbox .sp {
  width: calc(100% - 90px - 0.7rem);
  margin-left: 0.7rem;
  color: #6d6868;
}

.n-notice .contentbox2 .leftbox .sp span {
  width: calc(100% - 0.7rem - 28px - 50px);
  display: block;
  margin-left: 0.5rem;
  transition: all 0.6s;
}

.n-notice .contentbox2 .leftbox .btn {
  width: 30px;
  height: 30px;
}

.n-notice .contentbox2 .leftbox .btn svg {
  width: 25px;
  height: 25px;
  fill: #000;
}

.n-notice .contentbox2 .leftbox .morebtn {
  margin-top: 2rem;
  width: 100%;
  height: 60px;
  background: #f29200;
  transition: all 0.6s;
}

.n-notice .contentbox2 .leftbox .morebtn:hover {
  color: #fff;
}

.n-notice .contentbox2 .textright {
  width: 10.5rem;
  margin-left: 2.5rem;
}

.n-notice .contentbox2 .textright .wformbox {
  width: 100%;
  background: url(../img/img6.jpg) no-repeat center center;
  background-size: cover;
  padding: 1.5rem 1.5rem 5rem;
  position: relative;
  z-index: 4;
}

.n-notice .contentbox2 .textright .wformbox .tit3 {
  margin-bottom: 1rem;
}

.n-notice .contentbox2 .textright .wformbox .ipnut2 {
  width: 100%;
  height: 47px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 0.4rem;
  padding: 0 0.5rem;
}

.n-notice .contentbox2 .textright .wformbox .ipnut2::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff;
}

.n-notice .contentbox2 .textright .wformbox .ipnut2:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}

.n-notice .contentbox2 .textright .wformbox .ipnut2::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}

.n-notice .contentbox2 .textright .wformbox .ipnut2:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}

.n-notice .contentbox2 .textright .wformbox .formbox .input1 {
  width: 100%;
  height: 47px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0 50px 0 0.5rem;
  border-radius: 2px;
}

.n-notice .contentbox2 .textright .wformbox .formbox .input1::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff;
}

.n-notice .contentbox2 .textright .wformbox .formbox .input1:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}

.n-notice .contentbox2 .textright .wformbox .formbox .input1::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}

.n-notice .contentbox2 .textright .wformbox .formbox .input1:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}

.n-notice .contentbox2 .textright .wformbox .formbox .input3 {
  width: 30px;
  height: 30px;
  background: transparent;
  z-index: 2;
}

.n-notice .contentbox2 .textright .wformbox .formbox .btn {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0.35rem;
  top: 50%;
  margin-top: -15px;
}

.n-notice .contentbox2 .textright .wformbox .formbox .btn .icon {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.n-notice .contentbox2 .textright .wformbox .tit3-1 {
  margin-top: 1.65rem;
}

.n-notice .contentbox2 .textright .wformbox .sharebox {
  margin-top: 0.7rem;
}

.n-notice .contentbox2 .textright .wformbox .sharebox .li {
  position: relative;
  cursor: pointer;
}

.n-notice .contentbox2 .textright .wformbox .sharebox .li .wximg {
  position: absolute;
  padding: 8px;
  width: 123px;
  height: 123px;
  background: #fff;
  left: 0;
  top: 44px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}

.n-notice .contentbox2 .textright .wformbox .sharebox .li .wximg:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  left: 8px;
  top: -6px;
}

.n-notice .contentbox2 .textright .wformbox .sharebox .li .wximg img {
  width: 115px;
  height: 115px;
}

.n-notice .contentbox2 .textright .wformbox .sharebox .li:hover .wximg {
  opacity: 1;
  visibility: visible;
}

.n-notice .contentbox2 .textright .wformbox .sharebox .li {
  width: 32px;
  height: 32px;
  margin-right: 23px;
}

.n-notice .contentbox2 .textright .wformbox .sharebox .li .tit3 {
  margin-bottom: 0.7rem;
}

.n-notice .contentbox2 .textright .wformbox .sharebox .li img {
  max-height: 100%;
}

.n-notice .contentbox2 .textright .ul {
  width: 100%;
  margin-top: 20px;
}

.n-notice .contentbox2 .textright .ul img {
  width: 100%;
}

.n-notice .contentbox2 .textright .ul .tit4 {
  position: absolute;
  left: 1.5rem;
  top: 1.75rem;
  z-index: 3;
}

.n-notice .contentbox2 .textright .ul .li {
  display: block;
}

.n-notice .contentbox2 .textright .ul .li img {
  transition: all 0.6s;
}

.n-notice .contentbox2 .textright .ul .li:hover img {
  transform: scale(1.1);
}

.investor-list1 {
  background: url(../img/img47.png) no-repeat center center;
  background-size: cover;
  padding: 2.75rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.investor-list1 .contentbox {
  margin-top: 2.25rem;
}

.investor-list1 .leftbox {
  width: 49%;
  background: #fff;
}

.investor-list1 .leftbox .box1 {
  width: 50%;
  border-right: 1px solid #e6e6e6;
  padding: 2.6rem 1.5rem 1.5rem 2.5rem;
}

.investor-list1 .leftbox .box1 .tit2 {
  margin-bottom: 1rem;
}

.investor-list1 .leftbox .box1 .tit3 {
  margin-bottom: 0.55rem;
}

.investor-list1 .leftbox .box1 .tit4 {
  color: #d82d2e;
}

.investor-list1 .leftbox .box1 .tip {
  margin-top: 2.25rem;
  color: #808080;
}

.investor-list1 .leftbox .box2 {
  width: 50%;
  padding: 2.6rem 1.5rem 1.5rem 2.5rem;
}

.investor-list1 .leftbox .box2 .libox {
  width: 100%;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #e6e6e6;
}

.investor-list1 .leftbox .box2 .libox .li .tit5 {
  color: #808080;
}

.investor-list1 .leftbox .box2 .libox .li .tit6 {
  color: #d82d2e;
  margin-top: 0.4rem;
}

.investor-list1 .leftbox .box2 .libox2 {
  width: 100%;
  padding-top: 1.6rem;
}

.investor-list1 .leftbox .box2 .libox2 .li .tit5 {
  color: #808080;
}

.investor-list1 .leftbox .box2 .libox2 .li .tit6 {
  color: #000;
  margin-top: 0.65rem;
}

.investor-list1 .rightbox {
  margin-left: 2%;
  width: 49%;
  background: #fff;
  padding: 0.7rem 1.25rem 1rem;
}

.investor-list1 .rightbox .tabul .li {
  border-radius: 0.25rem;
  padding: 0 0.4rem;
  height: 30px;
  background: #f5f5f5;
  margin-right: 0.4rem;
  color: #525252;
  transition: all 0.6s;
  cursor: pointer;
}

.investor-list1 .rightbox .tabul .li:hover,
.investor-list1 .rightbox .tabul .li.cur {
  background: #ecf0fe;
  color: #416df9;
}

.investor-list1 .rightbox .imgbox {
  margin-top: 0.85rem;
  height: 8rem;
}

.investor-list1 .rightbox .imgbox img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: none;
}

.investor-list2 {
  padding: 3rem 1.5rem 4rem;
}

.investor-list2 .listbox {
  width: 36.4%;
  margin-right: 8px;
  background: url(../img/img48.png) no-repeat center center;
  background-size: cover;
  padding: 2rem 1.75rem 2.5rem;
  position: relative;
  z-index: 1;
}

.investor-list2 .listbox .tit4 {
  margin-bottom: 1.5rem;
}

.investor-list2 .listbox .ul {
  border-top: 2px solid #f29200;
}

.investor-list2 .listbox .li {
  padding: 0.55rem 0;
  border-bottom: 1px solid #e6e6e6;
}

.investor-list2 .listbox .ybox {
  width: 90px;
  padding-right: 20px;
  border-right: 1px solid #f2d5a9;
}

.investor-list2 .listbox .spbox {
  width: calc(100% - 60px);
}

.investor-list2 .listbox .spbox .rbtn {
  color: #f29200;
}

.investor-list2 .listbox .spbox .ybtn {
  color: #f29200;
}

.investor-list2 .listbox .sp {
  width: calc(100% - 90px - 0.7rem);
  margin-left: 0.7rem;
  color: #6d6868;
}

.investor-list2 .listbox .sp span {
  width: calc(100% - 0.7rem - 28px);
  display: block;
  margin-left: 0.5rem;
  transition: all 0.6s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.investor-list2 .listbox .li:hover .sp span {
  color: #f29200;
}

.investor-list2 .listbox .btn {
  display: block;
  margin-top: 1.35rem;
  transition: all 0.6s;
}

.investor-list2 .listbox .btn:hover {
  color: #f29200;
}

.investor-list2 .textbox {
  width: calc(27% - 18px);
  background: url(../img/img49.png) no-repeat center center;
  padding: 2rem 1rem;
  background-size: cover;
}

.investor-list2 .textbox .tit2 {
  margin-bottom: 0.65rem;
}

.investor-list2 .textbox .tit3 {
  color: #fff;
  opacity: 0.5;
}

.investor-list2 .textbox .tit4 {
  margin-bottom: 0.5rem;
}

.investor-list2 .textbox .nli {
  margin-bottom: 0.5rem;
}

.investor-list2 .textbox .nli .sp {
  color: #fff;
  opacity: 0.5;
  margin-bottom: 4px;
}

.investor-list2 .textbox .titbox-container {
  padding-bottom: 1rem;
  margin-top: 1.75rem;
}

.investor-list2 .textbox .titbox-container .item .tit5 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.investor-list2 .textbox .titbox-container .item .tit5 span {
  opacity: 0.5;
  margin-right: 0.25rem;
  display: inline-block;
}

.investor-list2 .textbox .titbox-container .item .icon2 {
  width: 25px;
  height: 25px;
}

.investor-list2 .textbox .titbox-container .item .icon2 img {
  max-width: 100%;
  max-height: 100%;
}

.investor-list2 .textbox .titbox-container .item .li {
  margin-bottom: 0.35rem;
}

.investor-list2 .textbox .titbox-container .item .li span {
  width: calc(100% - 45px);
  display: block;
  margin-left: 0.35rem;
}

.investor-list2 .textbox .titbox-container .swiper-pagination {
  bottom: 0;
  text-align: left;
}

.investor-list2 .textbox .titbox-container .swiper-pagination span {
  opacity: 0.5;
  background: #f6b34d;
}

.investor-list2 .textbox .titbox-container .swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 1;
}

.n-join .join-list1 {
  position: relative;
  z-index: 1;
  background: #f5f5f5;
  padding: 1.5rem 1.5rem 4rem;
}


.n-join .formbox {
  margin-top: 1rem;
}

.n-join .formbox .input1 {
  width: calc(50% - (176px + 32px) / 2);
  background: #fff;
  height: 58px;
  margin-right: 14px;
  padding: 0 0.7rem;
}

.n-join .formbox .btnbox {
  width: 176px;
  height: 58px;
  background: #195aa1;
}

.n-join .formbox .btnbox {
  position: relative;
  z-index: 2;
}

.n-join .formbox .btnbox .icon {
  width: 25px;
  height: 25px;
  fill: #fff;
  margin-right: 0.15rem;
}

.n-join .formbox .btnbox .input2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent;
  z-index: 3;
}

.n-join .formbox .btnbox .btn {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #195aa1;
  z-index: 1;
}

.n-join .ul {
  margin-top: 1.35rem;
}

.n-join .ul .li {
  width: 32.76%;
  margin-right: 0.85%;
  margin-bottom: 0.85%;
  padding: 1.5rem 1.75rem 1.5rem;
  position: relative;
  z-index: 3;
}

.n-join .ul .li:nth-child(3n) {
  margin-right: 0;
}

.n-join .ul .li {
  background: #fff;
  position: relative;
}

.n-join .ul .li .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s;
}

.n-join .ul .li .tit3 {
  transition: all 0.6s;
}

.n-join .ul .li .tit4 {
  transition: all 0.6s;
  color: #808080;
  margin-top: 1.9rem;
}

.n-join .ul .li:hover .bg {
  opacity: 1;
}

.n-join .ul .li:hover .tit3 {
  color: #fff;
}

.n-join .ul .li:hover .tit4 {
  color: #fff;
}

.n-join .join-list2 {
  position: relative;
  padding: 3.25rem 0 3.75rem;
  background: #fff;
  z-index: 1;

}

.n-join .join-list2 .ulbox {
  height: 18.75rem;
  overflow: hidden;
    margin-top: 1.75rem;
  position: relative;
}

.n-join .join-list2 .ulbox .bglist {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.n-join .join-list2 .ulbox .bglist:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.15);
}

.n-join .join-list2 .ulbox .bglist .li {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transform: scale(1.03);
  transition: all 2.5s;
}

.n-join .join-list2 .ulbox .bglist .li.cur {
  transform: scale(1);
  opacity: 1;
}

.n-join .join-list2 .ulbox .libox {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}

.n-join .join-list2 .ulbox .libox .li {
  position: relative;
}

.n-join .join-list2 .ulbox .libox .titbox {
  padding: 0 0.75rem 1.5rem;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 3;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.n-join .join-list2 .ulbox .libox .tit4 {
  position: absolute;
  padding: 0;
  margin-top: 1.55rem;
  left: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  width: 38vw;
  transition: opacity 0s 0s;
}

.n-join .join-list2 .ulbox .libox .li {
  width: 25.5%;
  height: 100%;
  /*width:33.3%;*/
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  transition: width 1s;
}

.n-join .join-list2 .ulbox .libox .li:last-child {
  border-right: none;
}

.n-join .join-list2 .ulbox .libox .li:hover,
.n-join .join-list2 .ulbox .libox .li.cur {
  width: 49%;
}

.n-join .join-list2 .ulbox .libox .li:hover .tit4,
.n-join .join-list2 .ulbox .libox .li.cur .tit4 {
  position: relative;
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.6s 1s;
}

.n-join-info {
  padding: 1.5rem 0 5rem;
  background: #f5f5f5;
  position: relative;
  z-index: 5;
}

.n-join-info .ntips {
  padding: 0 1.5rem;
}

.n-join-info .contentbox {
  margin-top: 2.85rem;
}

.n-join-info .textbox {
  width: calc(100% - 400px - 28px);
}

.n-join-info .textbox .tit2 {
  background: url(../img/img53.png) no-repeat center center;
  background-size: cover;
  padding: 0.4rem 1.5rem;
}

.n-join-info .textbox .text {
  padding: 1.5rem 1.75rem;
  background: #fff;
}

.n-join-info .textbox .text .spbox {
  margin-bottom: 0.7rem;
}

.n-join-info .textbox .text .sp {
  margin-bottom: 0.4rem;
  /*margin-right: 1.5rem;*/
  width: 30%;
  padding-right: 1rem;
  color: #666;
}

.n-join-info .textbox .text .item {
  margin-bottom: 1.25rem;
}

.n-join-info .textbox .text .item .p {
  line-height: 2.2;
}

.n-join-info .textbox .text .tit3 {
  margin-bottom: 0.2rem;
}

.n-join-info .textbox .text .botbox p {
  margin-bottom: 10px;
}

.n-join-info .textbox .text .botbox span {
  width: calc(100% - 90px);
  display: block;
  text-decoration: underline;
}

.n-join-info .textbox .text .botbox a {
  width: calc(100% - 90px);
  display: block;
}

.n-join-info .textbox .text .botbox a strong {
  color: #0360b8;
}

.n-join-info .textbox .text .btnbox {
  width: 150px;
  height: 50px;
  background: linear-gradient(to right, #0352a7, #3688e0);
  cursor: pointer;
  margin-top: 1.5rem;
}

.n-join-info .rightbox {
  width: 400px;
  padding: 1.4rem 1.25rem 1.6rem;
  position: relative;
  background: #fff;
}

.n-join-info .rightbox .titlebox span {
  color: #195aa1;
}

.n-join-info .rightbox .titlebox .more {
  color: #f29200;
}

.n-join-info .rightbox .libox {
  margin-top: 1rem;
}

.n-join-info .rightbox .libox .li {
  display: block;
  padding: 0.35rem 0;
  border-bottom: 1px dashed #ccc;
  transition: all 0.6s;
}

.n-join-info .rightbox .libox .li:hover {
  color: #195aa1;
}

.search-list1 .ntips {
  background: #f6f6f6;
  padding: 0.4rem 1.5rem;
  position: relative;
  z-index: 1;
}

.search-list1 {
  background: transparent;
}

.search-list1 .contentbox {
  padding: 2rem 6% 3.5rem;
  background: #fff;
}

.search-list1 .searchbox {
  width: 100%;
  height: 58px;
  background: transparent;
  border: none;
  position: relative;
}

.search-list1 .formbox {
  width: 960px;
  margin: 0 auto;
  max-width: 88%;
}

.search-list1 .input1 {
  width: 100%;
  height: 58px;
  background: #f6f6f6;
  width: calc(100% - 140px - 20px);
  border: none;
  padding-left: 1rem;
}

.search-list1 .input2 {
  width: 140px;
  height: 58px;
  background: #195aa1 url(../img/searchbtn2.png) no-repeat 30px center;
  border-radius: 2px;
  background-size: 21px auto;
  padding-left: 60px;
  text-align: left;
}

.search-list1 form {
  width: 100%;
}

.search-list1 .tipbox {
  margin-top: 0.4rem;
  padding-left: 1rem;
}

.search-list1 .tipbox span {
  margin-right: 0.35rem;
}

.search-list1 .tipbox a {
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .search-list1 .input2 {
    width: 120px;
    padding-left: 45px;
    background: #195aa1 url(../img/searchbtn2.png) no-repeat 22px center;
    background-size: 16px auto;
  }

  .search-list1 .input1,
  .search-list1 .searchbox {
    height: 45px;
  }
}

.search-list2 {
  padding: 0 1.5rem 4rem;
  background: #fff;
}

.search-list2 span {
  color: #ff0000;
}

.search-list2 .tip {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ccc;
}

.search-list2 .tab-ul {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1.75rem;
}

.search-list2 .tab-ul .li {
  margin: 0 1.5rem 0 0;
  padding-bottom: 0.4rem;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.search-list2 .tab-ul .li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #f29200;
  bottom: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.search-list2 .tab-ul .li:hover,
.search-list2 .tab-ul .li.cur {
  font-weight: bold;
  color: #000;
}

.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: #ff0000;
}

.search-list2 .ulbox .li {
  width: 48%;
  padding-bottom: 0.3rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(214, 214, 214, 0.8);
  padding-left: 22px;
  position: relative;
  transition: all 0.6s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-list2 .ulbox .li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  background: #ccc;
  margin-top: -10px;
}

.search-list2 .ulbox .li:hover {
  color: #1a54b9;
}

.search-list2 .page {
  padding-top: 2.25rem;
}

@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 .tab-ul .li{
    margin: 0 0.25rem;
  }*/
  .search-list2 .tab-ul {
    padding: 0;
  }

  .search-list2 .tab-ul .li {
    margin: 0;
  }

  .search-list2 .tab-ul .li:before {
    left: 0;
  }

  .search-list2 .page {
    padding-top: 1rem;
  }

  .search-list2 .ulbox .li:before {
    width: 6px;
    height: 6px;
    margin-top: -7px;
  }

  .search-list2 .tab-ul .li {
    height: 44px;
    width: 25%;
    padding: 0 0.25rem;
    text-align: center;
    line-height: 1.2;
    padding-top: 0.35rem;
    margin-bottom: 0.3rem;
  }

  .search-list4 .tab-ul .li {
    line-height: 44px;
    padding-top: 0;
  }

  .search-list1 .input1 {
    width: calc(100% - 100px - 10px);
    padding-left: 0.5rem;
  }

  .search-list1 .input2 {
    width: 100px;
    padding-left: 45px;
    height: 40px;
    background: #195aa1 url(../img/searchbtn2.png) no-repeat 22px center;
    background-size: 16px auto;
  }

  .search-list1 .input1,
  .search-list1 .searchbox {
    height: 40px;
  }

  .search-list1 .tipbox {
    padding-left: 0.5rem;
  }

  .search-list1 .contentbox {
    padding-bottom: 1rem !important;
  }
}

.news-list6-dialog4 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.news-list6-dialog4 .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;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.news-list6-dialog4 .dialog__content {
  position: relative;
  z-index: 5;
  overflow-x: auto;
  padding: 0;
  max-width: 1000px;
  width: 90%;
  border-radius: 0px;
  background: transparent;
  box-shadow: none;
  text-align: center;
  opacity: 0;
}

.news-list6-dialog4 .dialog__content #video {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  width: 90%;
}

.news-list6-dialog4 .closebtn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-list6-dialog4 .closebtn svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.news-list6-dialog4.dialog--open {
  opacity: 1;
  visibility: visible;
}

.news-list6-dialog4.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.news-list6-dialog4.dialog--open #video {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-list6-dialog4.dialog--close #video {
  opacity: 0;
  visibility: hidden;
}

.news-list6-dialog4.dialog--open .dialog__content,
.news-list6-dialog4.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-dialog4.dialog--open .dialog__content {
  -webkit-animation-name: anim-open3;
  animation-name: anim-open3;
}

.news-list6-dialog4 .dialog__overlay {
  background: rgba(0, 0, 0, 0.8);
}

.news-list6-dialog4.dialog--close .dialog__content {
  -webkit-animation-name: anim-close3;
  animation-name: anim-close3;
}

@media (max-width: 1366px) {
  .n-social .li:nth-child(1) .icon2 {
    right: 3.25rem;
  }
}

@media (max-width: 1024px) {
  .news-list6-dialog4 .closebtn {
    color: #fff;
  }

  .news-list6-dialog5 .dialog__content .closebtn {
    right: 0.75rem;
    top: 0.75rem;
  }

  .news-list6-dialog4 .dialog__content .p {
    font-size: 14px;
    width: 90%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  .news-list6-dialog4 .dialog__content {
    width: 100%;
    padding: 0.6rem 3%;
  }

  .news-list6-dialog4 .closebtn svg {
    width: 26px;
    height: 26px;
  }

  .news-list6-dialog4 .closebtn {
    right: 3%;
  }
}

.news-list6-dialog5 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.news-list6-dialog5 .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;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.news-list6-dialog5 .dialog__content {
  position: relative;
  z-index: 5;
  overflow-x: auto;
  padding: 0;
  max-width: 1300px;
  width: 90%;
  border-radius: 0.7rem;
  background: transparent;
  box-shadow: none;
  text-align: center;
  background: url(../img/img54.png) no-repeat center center;
  background-size: cover;
  padding: 2rem 0;
  opacity: 0;
}

.news-list6-dialog5 .dialog__content .formbox {
  width: 960px;
  max-width: 90%;
  margin: 2rem auto 0;
}

.news-list6-dialog5 .dialog__content .formbox .li {
  width: 31%;
  margin-right: 3.5%;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.news-list6-dialog5 .dialog__content .formbox .li2 {
  width: 103px;
  height: 35px;
  position: relative;
}

.news-list6-dialog5 .dialog__content .formbox .li2 .inputbox {
  width: 100%;
  height: 35px;
  background: #f29101;
  border-radius: 5px 5px 5px 5px;
}

.news-list6-dialog5 .dialog__content .formbox .li2 .input2 {
  width: 100%;
  height: 100%;
  position: absolute;
  background: transparent;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
}

.news-list6-dialog5 .dialog__content .formbox .libox {
  width: 100%;
}

.news-list6-dialog5 .dialog__content .formbox .li .input1 {
  background: transparent;
  width: calc(100% - 150px);
  margin-left: 0.4rem;
  border: none;
}

.news-list6-dialog5 .dialog__content .formbox .li:nth-child(3n) {
  margin-right: 0;
}

.news-list6-dialog5 .dialog__content .formbox .li3 {
  width: 100%;
  margin-right: 0;
}

.news-list6-dialog5 .dialog__content .formbox .li3 .input3 {
  width: calc(100% - 80px);
  height: 30px;
  margin-left: 0.4rem;
  background: transparent;
}

.news-list6-dialog5 .dialog__content .formbox .li .input4 {
  width: 210px;
  height: 50px;
  padding: 0 0.5rem;
  border: 1px solid #eeeeee;
}

.news-list6-dialog5 .dialog__content .formbox .li5 {
  padding: 0;
  border-bottom: none;
  width: auto;
}

.news-list6-dialog5 .dialog__content .formbox .li4 .input5 {
  width: 100%;
  height: 57px;
  border-radius: 57px;
  position: absolute;
  background: transparent;
  left: 0;
  top: 0;
  z-index: 2;
  border: none;
}

.news-list6-dialog5 .dialog__content .formbox .li4 {
  position: relative;
  margin-bottom: 0;
}

.news-list6-dialog5 .dialog__content .closebtn {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 1.75rem;
  top: 1.75rem;
}

.news-list6-dialog5 .dialog__content .closebtn .icon {
  width: 30px;
  height: 30px;
  fill: #000;
}

.news-list6-dialog5 .dialog__content .formbox .li4 .submitbtn {
  position: relative;
  width: 187px;
  height: 57px;
  background: #f29101;
  border-radius: 57px;
  z-index: 1;
}

.news-list6-dialog5 .dialog__content .formbox .li4 .icon3 {
  position: absolute;
  width: 38px;
  height: 38px;
  right: 0.25rem;
  top: 50%;
  margin-top: -19px;
}

.news-list6-dialog5 .dialog__content .contentbox {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.news-list6-dialog5 .closebtn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-list6-dialog5 .closebtn svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.news-list6-dialog5.dialog--open {
  opacity: 1;
  visibility: visible;
}

.news-list6-dialog5.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.news-list6-dialog5.dialog--open .contentbox {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.7rem;
}

.news-list6-dialog5.dialog--close .contentbox {
  opacity: 0;
  visibility: hidden;
}

.news-list6-dialog5.dialog--open .dialog__content,
.news-list6-dialog5.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-dialog5.dialog--open .dialog__content {
  -webkit-animation-name: anim-open3;
  animation-name: anim-open3;
}

.news-list6-dialog5 .dialog__overlay {
  background: rgba(0, 0, 0, 0.8);
}

.news-list6-dialog5.dialog--close .dialog__content {
  -webkit-animation-name: anim-close3;
  animation-name: anim-close3;
}

@media (max-width: 1024px) {
  .news-list6-dialog5 .closebtn {
    /*background: rgba(209, 41, 53, 1);*/
    color: #fff;
  }

  .news-list6-dialog5 .dialog__content .p {
    font-size: 14px;
    width: 90%;
    margin-top: 0.5rem;
  }

  .news-list6-dialog5 .dialog__content .closebtn {
    right: 0.75rem;
    top: 0.75rem;
  }

  .n-news .ul2 .p span {
    width: 100%;
  }

  .n-news .ul2 {
    margin-top: 1.25rem;
  }
}

@media (max-width: 767px) {
  .news-list6-dialog5 .dialog__content {
    width: 100%;
    padding: 0.6rem 3%;
  }

  .news-list6-dialog5 .closebtn svg {
    width: 26px;
    height: 26px;
  }

  .news-list6-dialog5 .closebtn {
    right: 3%;
  }

  .news-list6-dialog5 .dialog__content .formbox .li5 {
    width: 100%;
    margin-right: 0;
  }

  .news-list6-dialog5 .dialog__content .formbox .li .input4 {
    height: 40px;
  }

  .n-join-info .textbox .text .botbox span {
    width: calc(100% - 60px);
  }

  .news-list6-dialog5 .dialog__content .formbox .li {
    width: 46%;
    margin-right: 3.5%;
  }

  .news-list6-dialog5 .dialog__content .formbox .li .input4 {
    width: 100%;
  }

  .news-list6-dialog5 .dialog__content .formbox .li4 .input5,
  .news-list6-dialog5 .dialog__content .formbox .li4 .submitbtn {
    width: 150px;
    height: 40px;
    border-radius: 40px;
  }

  .news-list6-dialog5 .dialog__content .formbox .li4 .icon3 {
    width: 30px;
    height: 30px;
    right: 0.25rem;
    top: 50%;
    margin-top: -15px;
  }

  .news-list6-dialog5 {
    overflow-y: auto;
    max-height: 100vh;
  }

  .news-list6-dialog5 .dialog__content {
    border-radius: 0;
  }
}

.news-list6-dialog6 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.news-list6-dialog6 .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;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.news-list6-dialog6 .dialog__content {
  position: relative;
  z-index: 5;
  overflow-x: auto;
  padding: 0;
  max-width: 1400px;
  width: 90%;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  background: #ffffff;
  padding: 3.25rem 3.5rem;
  opacity: 0;
}

.news-list6-dialog6 .dialog__content .closebtn {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid #f29200;
  right: 2rem;
  top: 2rem;
}

.news-list6-dialog6 .dialog__content .closebtn .icon {
  width: 30px;
  height: 30px;
  fill: #f29200;
}

.news-list6-dialog6 .dialog__content .contentbox {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.news-list6-dialog6 .dialog__content .contentbox .img {
  width: 10.5rem;
  height: 10rem;
}

.news-list6-dialog6 .dialog__content .contentbox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list6-dialog6 .dialog__content .contentbox .textbox {
  width: calc(100% - 10.5rem);
  margin-top: 1rem;
  padding-left: 2rem;
}

.news-list6-dialog6 .dialog__content .contentbox .textbox .tit3 {
  padding-left: 0.6rem;
  margin-bottom: 0.4rem;
  position: relative;
}

.news-list6-dialog6 .dialog__content .contentbox .textbox .tit3:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 100%;
  background: #f29200;
  left: 0;
  top: 0;
}

.news-list6-dialog6 .dialog__content .contentbox .textbox .tit4 {
  color: #1d1d1d;
}

.news-list6-dialog6 .dialog__content .contentbox .textbox .p {
  padding-top: 1.7rem;
  margin-top: 1.25rem;
  color: #808080;
  text-align: justify;
  border-top: 2px solid #f29200;
}

.news-list6-dialog6 .closebtn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-list6-dialog6 .closebtn svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.news-list6-dialog6.dialog--open {
  opacity: 1;
  visibility: visible;
}

.news-list6-dialog6.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.news-list6-dialog6.dialog--open .contentbox {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.7rem;
}

.news-list6-dialog6.dialog--close .contentbox {
  opacity: 0;
  visibility: hidden;
}

.news-list6-dialog6.dialog--open .dialog__content,
.news-list6-dialog6.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-dialog6.dialog--open .dialog__content {
  -webkit-animation-name: anim-open3;
  animation-name: anim-open3;
}

.news-list6-dialog6 .dialog__overlay {
  background: rgba(0, 0, 0, 0.8);
}

.news-list6-dialog6.dialog--close .dialog__content {
  -webkit-animation-name: anim-close3;
  animation-name: anim-close3;
}

@media (max-width: 1024px) {
  .news-list6-dialog6 .closebtn {
    color: #fff;
  }

  .news-list6-dialog5 .dialog__content .closebtn {
    right: 0.75rem;
    top: 0.75rem;
  }

  .news-list6-dialog6 .dialog__content .p {
    font-size: 14px;
    width: 90%;
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  .news-list6-dialog6 .dialog__content {
    width: 100%;
    padding: 0.6rem 3%;
  }

  .news-list6-dialog6 .closebtn svg {
    width: 26px;
    height: 26px;
  }

  .news-list6-dialog6 .closebtn {
    right: 3%;
  }
}

@-webkit-keyframes anim-open3 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.1, 1.1, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
  }
}

@keyframes anim-open3 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes anim-close3 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 1);
  }
}

@keyframes anim-close3 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 1);
    transform: scale3d(0.9, 0.9, 1);
  }
}

body {
  overflow: hidden;
}

@media (max-width: 1400px) {
  .n-join .formbox {
    margin-top: 1.75rem;
  }

  .n-report .contentbox .libox {
    padding: 2.5rem 3.5rem 0;
  }
}

.n-solution .imgbox-container .textbox .tit3 {
  margin-bottom: 0.5rem;
}

@media (max-width: 1580px) {
  .n-join-info .textbox .text .sp {
    width: 32%;
  }
}

@media (max-width: 1024px) {
  .n-join-info .contentbox {
    margin-top: 1.5rem;
  }

  .n-join-info .textbox {
    width: calc(100% - 300px - 28px);
  }

  .n-join-info .rightbox {
    width: 300px;
  }

  .n-join .join-list1 {
    padding: 1.5rem 0 3rem;
  }

  .n-join .join-list1 .ntips {
    padding: 0 6%;
  }

  .n-join .join-list2 {
    padding: 2.5rem 0;
  }

  .footer .footer-middle .navul {
    display: none;
  }

  .footer .footer-middle {
    padding: 1.25rem 6% 2rem;
    position: relative;
    z-index: 3;
  }

  .n-banner .subnav {
    display: none;
  }

  .n-social .li .textbox {
    padding-left: 2rem;
    padding-right: 0;
  }

  .n-social .li:nth-child(even) .textbox {
    margin-top: 1.25rem;
    padding-right: 2rem;
  }

  .n-social .li:nth-child(1) .icon2 {
    width: 4rem;
  }

  .n-social .li .zmore {
    width: 130px;
    height: 45px;
    margin-top: 1rem;
  }

  .n-social .li .tit3 {
    margin-bottom: 0.5rem;
  }

  .n-report {
    padding: 1.5rem 6% 2.25rem;
  }

  .n-report .contentbox,
  .n-report .contentbox2 {
    max-width: 100%;
    width: 100%;
  }

  .investor-list1 .leftbox .box1 {
    padding: 2.6rem 6% 1.5rem 1rem;
  }

  .investor-list1 .leftbox .box2 {
    padding: 2.6rem 6% 1.5rem 1rem;
  }

  .investor-list1 .contentbox {
    margin-top: 1rem;
  }

  .investor-list2 .listbox {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .investor-list2 .textbox {
    width: 100%;
  }

  .investor-list1 {
    padding: 1.75rem 6%;
  }

  .n-notice .contentbox2 {
    width: 100%;
    max-width: 100%;
  }

  .n-notice .tit2 {
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .n-notice .contentbox2 .leftbox .morebtn {
    height: 1.5rem;
  }

  .n-news {
    padding: 1.5rem 6% 2.5rem;
  }

  .n-info {
    padding: 1.25rem 6% 2.5rem;
  }

  .n-info .contentbox {
    padding: 0;
  }

  .n-info .textbox {
    width: 100%;
  }

  .n-info .textright {
    width: 100%;
    margin-top: 1.5rem;
  }

  .n-solution .tabul {
    display: none;
  }

  .n-solution .imgbox-container .textbox {
    width: 80%;
  }

  .n-solution .imgbox-container .videobtn {
    top: 40%;
  }

  .n-business .item {
    height: auto;
    margin-bottom: 1.5rem;
  }

  .n-business .item .text {
    position: relative;
    max-width: 100%;
    bottom: 0;
    left: 0;
    padding: 4rem 1.5rem 1.5rem;
  }

  .business-info .tabul {
    display: none;
  }

  .business-info .imgbox-container {
    width: 94%;
  }

  .search-list1 .ntips {
    padding: 0.4rem 6%;
  }

  .search-list1 .contentbox {
    padding: 1.25rem 6% 2rem;
  }

  .search-list1 .formbox {
    max-width: 100%;
  }

  .search-list2 .tab-ul {
    margin-bottom: 0;
  }

  .search-list2 {
    padding: 0 6% 2.5rem;
  }

  .about-list5 {
    position: relative;
    background: #c8c9cb;
    padding: 5rem 0 3rem;
  }

  .about-list5 .title {
    top: 1.5rem;
    left: 6%;
  }

  .about-list5 .bg {
    display: none;
  }

  .about-list5 .his-container {
    position: relative;
    top: auto;
  }

  .about-list5 .his-container .itembox .item {
    position: relative;
    z-index: 5;
    left: 0 !important;
    top: 0 !important;
    width: 33.33%;
    padding: 0 3%;
    margin-bottom: 1rem;
  }

  .about-list5 .his-container .itembox {
    display: flex;
    flex-flow: row wrap;
  }

  .about-list5 .his-container .img {
    width: 100%;
    height: 6rem;
  }
}

@media (max-width: 996px) {
  .n-join-info .textbox .text {
    width: 100%;
  }

  .n-join .formbox .input1 {
    height: 40px;
  }

  .n-join .formbox .btnbox {
    height: 40px;
  }

  .n-join .formbox {
    margin-top: 1rem;
  }

  .n-join .ul .li {
    padding: 1rem 6%;
  }

  .n-join .ul .li .tit4 {
    margin-top: 1.25rem;
  }

  .n-join-info .textbox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .n-join-info .rightbox {
    width: 100%;
  }

  .n-join-info .contentbox {
    margin-top: 1rem;
  }

  .n-join-info .textbox .text {
    padding: 1rem 6%;
  }

  .n-join-info .textbox .tit2 {
    padding: 0.4rem 1rem;
  }

  .n-join-info .textbox .text .btnbox {
    width: 120px;
    height: 45px;
    margin-top: 1rem;
  }

  .n-join-info {
    padding-bottom: 3rem;
  }

  .n-social .li .img {
    width: 100%;
  }

  .n-social .li .textbox {
    width: 100%;
    margin-top: 1rem;
    padding-left: 0;
  }

  .n-social .li:nth-child(1) {
    padding: 0 6% 2rem;
    margin-top: 1.5rem;
  }

  .n-social .li:nth-child(1) .icon2 {
    right: 2.25rem;
    top: 1rem;
  }

  .n-social .li {
    padding: 2rem 6% 2.65rem;
  }

  .n-social .li:nth-child(even) .textbox {
    padding-right: 0;
  }

  .n-report .contentbox .libox {
    padding: 2rem 6% 0;
  }

  .n-report .contentbox .libox .text {
    width: calc(100% - 9.25rem - 2rem);
    margin-left: 2rem;
  }

  .n-report .contentbox2 {
    margin-top: 1.5rem;
  }

  .n-report .contentbox2 .leftbox {
    width: 100%;
    margin-bottom: 1rem;
  }

  .n-report .contentbox2 .textright {
    width: 100%;
    margin-left: 0;
  }

  .n-report .contentbox2 .leftbox .morebtn {
    height: 1.5rem;
    margin-top: 1rem;
  }

  .n-report .contentbox2 .textright .wformbox {
    padding: 1.5rem 6% 4rem;
  }

  .investor-list1 .leftbox {
    width: 100%;
    margin-bottom: 1rem;
  }

  .investor-list1 .rightbox {
    width: 100%;
    margin-left: 0;
  }

  .n-notice .contentbox2 .leftbox {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .n-notice .contentbox2 .textright {
    width: 100%;
    margin-left: 0;
  }

  .n-notice {
    padding: 1.5rem 6% 2.25rem;
  }

  .n-notice .contentbox2 .textright .wformbox {
    padding: 1.5rem 6% 3rem;
  }

  .news-list2 .warpselectbox .selectbox {
    width: 49%;
  }

  .travel-list1 .contentbox2 .imgbox1-container .text {
    width: 100%;
    padding: 0 6% 0.7rem;
  }

  .travel-list1 .contentbox2 .imgbox1-container .text .more {
    width: 120px;
    height: 40px;
  }

  .travel-list1 .contentbox {
    position: relative;
    z-index: 4;
  }

  .travel-list1 {
    padding: 2rem 0 2.5rem;
  }

  .travel-list1 .contentbox .tit2 {
    margin-bottom: 1rem;
  }

  .travel-list1 .contentbox {
    margin-bottom: 2rem;
  }

  .travel-list1 .img1 {
    width: 5rem;
  }

  .travel-list1 .contentbox2 .imgbox1-container .text .tit3 {
    margin-bottom: 0.6rem;
  }

  .travel-list1 .contentbox2 .tit2 {
    margin-bottom: 1.25rem;
  }

  .travel-list2 {
    padding: 1.5rem 0 2rem;
  }

  .travel-list2 .img1 {
    width: 2.5rem;
  }

  .travel-list2 .imgbox {
    margin-top: 1.5rem;
  }

  .travel-list2 {
    padding: 1.5rem 0 1rem;
  }

  .travel-list3 {
    padding: 1rem 0 2.25rem;
  }

  .travel-list3 .contentbox {
    margin-top: 1.5rem;
  }

  .travel-list3 .tip {
    margin-top: 1rem;
  }

  .n-info2 {
    padding: 1.25rem 6% 2.5rem;
  }

  .n-info2 .contentbox {
    margin: 1rem auto 0;
  }

  .n-info2 .titlebox .tit2 {
    margin-bottom: 0.7rem;
  }

  .n-info2 .text {
    padding-top: 1rem;
    padding-bottom: 1.2rem;
    margin-bottom: 1.25rem;
  }

  .n-business {
    padding: 1.75rem 0 2.5rem;
  }

  .business-info .imgbox-container .item .img {
    height: 10.25rem;
  }

  .business-info .imgbox-container .swiper-pagination {
    width: calc(94vw / 1.5 - 20px);
  }

  .business-info {
    padding: 1.75rem 0 3rem;
  }

  .business-info .imgbox-container {
    padding-bottom: 1.75rem;
  }

  .news-list6-dialog6 .dialog__content {
    padding: 2rem 1.5rem;
  }

  .news-list6-dialog6 .dialog__content .closebtn {
    right: 1rem;
    top: 1rem;
  }

  .news-list6-dialog6 .dialog__content .contentbox .img {
    width: 100%;
  }

  .news-list6-dialog6 .dialog__content .contentbox .textbox {
    width: 100%;
    padding-left: 0;
  }

  .news-list6-dialog6 .dialog__content .contentbox .textbox .p {
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .news-list6-dialog6 .dialog__content .contentbox .img img {
    object-fit: contain;
  }

  .about-list1 .tit2 {
    width: 100%;
    margin-top: 0;
  }

  .about-list1 .textbox {
    width: 100%;
    margin-top: 1rem;
  }

  .about-list2 .titlebox .time {
    font-size: 6.75rem;
  }

  .about-list2 {
    height: 25rem;
  }

  .about-list3,
  .about-list3 .wul .ul .li {
    height: 24rem;
  }

  .about-list3 .wul .ul .li.cur .txtbox {
    transform: translate(0, -20vh);
  }

  .about-list3 .wul {
    overflow-x: auto;
  }

  .about-list3 .wul .ul {
    min-width: 1000px;
  }

  .about-list1 {
    padding: 1.25rem 6% 8rem;
  }

  .about-list4 {
    padding: 2rem 6% 1.25rem;
  }

  .n-social-list .ntips {
    padding: 0 6%;
  }

  .travel-list1 .contentbox2 .imgbox1-container .li img {
    height: 12rem;
  }
}

@media (max-width: 767px) {
  .travel-list2 .img1 {
    width: 1.5rem;
  }

  .fix_wximg {
    display: none;
  }

  .travel-list1 .contentbox2 .imgbox1-container .li img {
    height: 8rem;
  }

  .n-social-list .imgbox-container .li .bg {
    height: 8.25rem;
  }

  .travel-list1 .contentbox2 .imgbox1-container .text .more {
    width: 100px;
    height: 35px;
  }

  .n-banner .text .icon {
    height: 1rem;
  }

  .footer .footer-box .pleft div {
    margin-left: 0;
  }

  .footer .footer-box .langbox {
    margin-top: 15px;
  }

  .footer .footer-box {
    padding: 0.7rem 6%;
  }

  .footer .footer-box .langbox .langdown {
    left: 0;
    right: auto;
  }

  .footer .footer-top {
    padding: 1rem 6% 1.25rem;
  }

  .footer .footer-top .licon0 {
    width: 132px;
    height: 40px;
  }

  .n-join .join-list2 .ulbox {
    height: auto;
  }

  .n-join .join-list2 .ulbox .libox .li {
    width: 100%;
    height: 33.3%;
    position: relative;
  }

  .n-join .join-list2 .ulbox .libox .li:hover,
  .n-join .join-list2 .ulbox .libox .li.cur {
    width: 100%;
  }

  .n-join .join-list2 .ulbox .libox .tit4 {
    width: 100%;
  }

  .n-join .join-list2 .ulbox .libox .tit4 {
    margin-top: 0.8rem;
  }

  .n-join .join-list2 .ulbox .libox {
    position: relative;
  }

  .n-join .ul .li {
    width: 100%;
    margin-right: 0;
  }

  .n-join .formbox .btnbox {
    width: 100%;
    margin-top: 2%;
  }

  .n-join .formbox .input1 {
    width: 49%;
    margin-right: 2%;
  }

  .n-join .formbox .input1:nth-child(2) {
    margin-right: 0;
  }

  .n-join .join-list2 .ulbox .libox .titbox {
    padding-top: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .n-join .join-list2 .ulbox .libox .tit4 {
    margin-top: 0.5rem;
  }

  .n-join .join-list1 {
    padding: 1.5rem 0 2rem;
  }

  .n-join .ul .li {
    padding-right: 3rem;
  }

  .n-join .ul .li .bg {
    object-position: right bottom;
  }

  .n-join-info .textbox .text .sp {
    margin-right: 0.5rem;
    margin-bottom: 0.3rem;
    width: 100%;
  }

  .n-join-info .rightbox {
    padding: 1.2rem 6% 1.5rem;
  }

  .n-join-info .rightbox .libox {
    margin-top: 0.35rem;
  }

  .n-join-info .ntips {
    padding: 0 6%;
  }

  .n-social .li .img {
    height: 9.5rem;
  }

  .n-social .li:nth-child(1) .icon2 {
    width: 2rem;
    right: 1.5rem;
  }

  .n-social .ntips {
    padding: 0 6%;
  }

  .n-social .li .zmore {
    width: 120px;
    height: 40px;
  }

  .n-report .contentbox2 .leftbox .ybox {
    width: 70px;
  }

  .n-report .contentbox2 .leftbox .sp {
    width: calc(100% - 70px - 0.7rem);
  }

  .n-report .contentbox2 .leftbox .sp span {
    width: calc(100% - 0.7rem - 28px);
  }

  .n-report .contentbox2 .textright .wformbox .ipnut2,
  .n-report .contentbox2 .textright .wformbox .formbox .input1 {
    height: 40px;
  }

  .n-report .contentbox2 .textright .wformbox .tit3 {
    margin-bottom: 0.65rem;
  }

  .n-report .contentbox2 .textright .wformbox .tit3-1 {
    margin-top: 1rem;
  }

  .n-report .contentbox .libox {
    padding-bottom: 2rem;
  }

  .n-report .contentbox .libox .img {
    width: 100%;
    margin-bottom: 0;
  }

  .n-report .contentbox .libox .text {
    width: 100%;
    margin-left: 0;
  }

  .n-report .contentbox .libox .text .btn {
    position: relative;
    bottom: auto;
    margin-top: 1rem;
  }

  .investor-list1 .leftbox .box1 {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    border-right: none;
    padding: 1.25rem 6%;
  }

  .investor-list1 .leftbox .box2 {
    width: 100%;
    padding: 1rem 6% 1.5rem;
  }

  .investor-list1 .leftbox .box2 .libox {
    padding-bottom: 1rem;
  }

  .investor-list1 .leftbox .box2 .libox2 {
    padding-top: 1rem;
  }

  .investor-list1 .leftbox .box1 .tip {
    margin-top: 1.25rem;
  }

  .investor-list1 .leftbox .box1 .tit2 {
    margin-bottom: 0.55rem;
  }

  .investor-list2 {
    padding: 1.75rem 6% 2.5rem;
  }

  .investor-list2 .listbox {
    padding: 1.25rem 6% 2rem;
  }

  .investor-list2 .listbox .tit4 {
    margin-bottom: 1rem;
  }

  .investor-list2 .listbox .ybox {
    width: 60px;
  }

  .investor-list2 .listbox .spbox {
    width: 100%;
  }

  .investor-list2 .listbox .sp span {
    width: calc(100% - 28px - 0.5rem);
  }

  .investor-list2 .listbox .sp {
    width: calc(100% - 60px - 0.7rem);
  }

  .investor-list2 .listbox .sp .icon {
    width: 20px;
  }

  .investor-list2 .listbox .btn {
    margin-top: 1rem;
  }

  .investor-list2 .textbox {
    padding: 1.5rem 6%;
  }

  .n-notice .contentbox2 .leftbox .ybox {
    width: 60px;
  }

  .n-notice .contentbox2 .leftbox .sp {
    width: calc(100% - 60px - 0.7rem);
  }

  .n-notice .contentbox2 .leftbox .sp img {
    width: 20px;
  }

  .n-notice .contentbox2 .leftbox .sp span {
    width: calc(100% - 0.7rem - 28px);
  }

  .n-notice .contentbox2 .leftbox .morebtn {
    margin-top: 1rem;
  }

  .n-notice .contentbox2 .textright .wformbox .ipnut2 {
    height: 40px;
  }

  .n-notice .contentbox2 .textright .wformbox .formbox .input1 {
    height: 40px;
  }

  .news-list2 .warpselectbox .selectbox .item {
    padding: 0 8px;
    margin-bottom: 5px;
  }

  .n-news .ul2 .timebox {
    height: 80px;
    top: -40px;
  }

  .news-list3 .li .text {
    padding: 1rem 0 0.5rem;
  }

  .n-info .contentbox {
    margin-top: 1rem;
  }

  .n-info .titlebox .tit2 {
    margin-bottom: 0.75rem;
  }

  .n-info .news-nav .nav-l {
    width: 100%;
  }

  .n-info .text {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .n-info .news-nav .backbtn {
    margin-top: 0.75rem;
    width: 120px;
    height: 40px;
  }

  .n-info .textright .wformbox {
    padding: 1rem 6% 3rem;
  }

  .n-info .textright .wformbox .tit3 {
    margin-bottom: 0.65rem;
  }

  .n-info .textright .wformbox .ipnut2,
  .n-info .textright .wformbox .formbox .input1 {
    height: 40px;
  }

  .social-share .icon-wechat .wechat-qrcode .help {
    display: none !important;
  }

  .social-share .icon-wechat .wechat-qrcode {
    top: -145px !important;
    left: -66px !important;
    width: 160px !important;
    height: 142px !important;
  }

  .social-share .icon-wechat .wechat-qrcode .qrcode {
    width: 80px !important;
  }

  .travel-list1 {
    padding-bottom: 1rem;
  }

  .n-info2 .news-nav .backbtn {
    width: 130px;
    height: 40px;
  }

  .n-solution .imgbox-container .zmore {
    width: 130px;
    height: 40px;
  }

  .n-business .textbox .tipimg {
    font-size: 2.5rem;
  }

  .n-business .textbox .p {
    margin: -1rem auto 0;
  }

  .n-business .textbox {
    padding-bottom: 0;
  }

  .n-business .item .text {
    padding: 2rem 6%;
  }

  .n-business .item .zmore {
    width: 130px;
    height: 45px;
    background: #f29200;
    border-radius: 45px;
    margin-top: 1rem;
  }

  .n-business .item .tit3 {
    font-size: 28px;
  }

  .n-bannerinfo {
    padding: 1.5rem 0 3rem;
  }

  .n-banner .bg2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .n-banner .text {
    transform: translate(0, 0);
    left: 0;
    top: 28%;
  }

  .n-banner .text-info {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }

  .n-banner .ntips {
    padding: 0 6%;
    height: 1.5rem;
  }

  .business-info .imgbox-container {
    width: 90%;
    margin-right: 4%;
  }

  .business-info .imgbox-container .swiper-pagination {
    width: 94%;
  }

  .about-list3,
  .about-list3 .wul .ul .li {
    height: 18rem;
  }

  .about-list3 .wul .ul .li.cur .txtbox {
    transform: translate(0, -6rem);
  }

  .about-list3 .wul {
    overflow-x: auto;
  }

  .about-list3 .wul .ul {
    min-width: 1000px;
  }

  .about-list2 .titlebox .time {
    font-size: 4.75rem;
  }

  .about-list2 .titlebox .tit3 {
    margin-top: -1rem;
    line-height: 1.4;
  }

  .about-list4 .tabul .li {
    height: 40px;
    border-radius: 40px;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
  }

  .about-list4 .tabul {
    margin-top: 1rem;
  }

  .about-list4 .itembox .li {
    width: 49%;
  }

  .about-list4 .itembox .li:nth-child(2n) {
    margin-right: 0;
  }

  .about-list4 .warpitembox {
    margin-top: 1rem;
  }

  .news-list6-dialog6 .dialog__content .closebtn {
    right: 0.5rem;
    top: 0.5rem;
  }

  .about-list4 .itembox .li {
    margin-bottom: 1rem;
  }

  .about-list5 {
    padding: 4rem 0 3rem;
  }

  .about-list5 .his-container .itembox .item {
    width: 50%;
  }

  .about-list5 .his-container .itembox {
    height: auto;
  }

  .news-list6-dialog6 {
    overflow-y: auto;
  }

  .n-social-list .imgbox-container .li .textbox {
    position: relative;
    width: 100%;
    bottom: auto;
    padding: 1rem 0 0;
  }

  .n-social-list .imgbox-container .li .tit2 {
    color: #333;
  }

  .n-social-list .imgbox-container .li .tit3 {
    color: #999;
  }

  .n-social-list .imgbox-container {
    margin-top: 1.75rem;
  }

  .n-social-list .imgbox-container .li .tit2 {
    margin-top: 0.4rem;
  }
}

.fixtel {
  position: fixed;
  right: 10px;
  bottom: 6rem;
  width: 74px;
  height: 69px;
  background: #155aa1;
  border-radius: 10px;
  cursor: pointer;
  z-index: 9;
  transition: all 0.6s;
}

.fixtel:hover {
  background: rgb(242, 146, 0);
}

.fixtel .icon {
  width: 25px;
  height: 25px;
  fill: #fff;
  margin-bottom: 0.25rem;
}

.footer .footer-middle {
  background: #fff url(../img/footerbg.png) no-repeat bottom left;
  background-size: auto 8.25rem;
}

.news-list6-dialog5 .dialog__content .formbox .li .input4::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #666;
}

.news-list6-dialog5 .dialog__content .formbox .li .input4:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #666;
}

.news-list6-dialog5 .dialog__content .formbox .li .input4::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #666;
}

.news-list6-dialog5 .dialog__content .formbox .li .input4:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #666;
}

.n-join-info .rightbox .titlebox .more {
  transition: all 0.6s;
}

.n-join-info .rightbox .titlebox .more:hover {
  color: #195aa1;
}

.news-list6-dialog5 .dialog__content {
  max-height: 100vh;
  overflow-y: auto;
}

.n-join-info .textbox .text .btnbox {
  position: relative;
  z-index: 2;
}

.n-join-info .textbox .text .btnbox span {
  position: relative;
  z-index: 3;
}

.n-join-info .textbox .text .btnbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #195aa1;
  opacity: 0;
  transition: all 0.6s;
}

.n-join-info .textbox .text .btnbox:hover:before {
  opacity: 1;
}

.n-notice .contentbox2 .leftbox .li .sp span {
  transition: all 0.6s;
}

.n-notice .contentbox2 .leftbox .li .btn svg {
  transition: all 0.6s;
}

.n-notice .contentbox2 .leftbox .li:hover .btn svg {
  fill: #f29200;
}

.n-notice .contentbox2 .leftbox .li:hover .sp span {
  color: #f29200 !important;
}

.n-social-list .imgbox-container .li .textbox {
  opacity: 0;
  transition: all 0.6s;
}

.n-social-list .imgbox-container .li {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.n-social-list .imgbox-container .li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.n-social-list .imgbox-container .swiper-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.n-social-list .imgbox-container .swiper-slide.swiper-slide-active:before {
  opacity: 0;
  visibility: hidden;
}

.n-social-list .imgbox-container .li .bg {
  transition: all 0.6s;
}

.n-social-list .imgbox-container .li:hover .bg {
  transform: scale(1.1);
}

.n-social-list .imgbox-container .swiper-slide-active .li .textbox {
  opacity: 1;
}

.n-info .news-nav .backbtn {
  transition: all 0.6s;
}

.n-info .news-nav .backbtn:hover {
  background: #195aa1;
}

.n-notice .contentbox2 .leftbox .morebtn {
  transition: all 0.6s;
}

.n-notice .contentbox2 .leftbox .morebtn:hover {
  background: #195aa1;
}

.wformbox .formbox .input3 {
  position: relative;
}

.n-report .contentbox2 .leftbox .morebtn,
.n-info2 .news-nav .backbtn {
  transition: all 0.6s;
}

.n-report .contentbox2 .leftbox .morebtn:hover,
.n-info2 .news-nav .backbtn:hover {
  background: #195aa1;
}

.wformbox .ipnut2 {
  pointer-events: none;
}

.travel-list1 .contentbox2 .imgbox1-container .li {
  overflow: hidden;
}

.business-info .zline {
  position: absolute;
  width: 100%;
  height: 9rem;
  left: 0;
  top: 9rem;
  z-index: 1;
}

.about-list1 .textbox .p {
  height: 286px;
  overflow: hidden;
}

.about-list1 .textbox .p.cur {
  height: auto;
}

.swiper-container-fade .swiper-slide {
  opacity: 0 !important;
}

.swiper-container-fade .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}

.business-info .imgbox-container .item .img img {
  transition: all 0.6s;
}

.business-info .imgbox-container .item .tit4 {
  transition: all 0.6s;
}

.business-info .imgbox-container .item .tit3,
.n-banner .p2,
.n-business .textbox .p,
.n-business .item .tit4,
.n-business .item .tit5,
.indexbox1 .contentbox .leftbox .tit3,
.indexbox1 .contentbox .leftbox .tit3,
.about-list1 .textbox .p,
.travel-list1 .contentbox .p {
  text-align: justify;
}

.business-info .imgbox-container .item:hover .img img {
  transform: scale(1.1);
}

.business-info .imgbox-container .item:hover .tit4 {
  color: #155aa1;
}

.n-business .warpbox {
  position: relative;
  width: 100%;
  z-index: 2;
  margin-top: 2rem !important;
}

.n-business .item {
  /*position: absolute;*/
  height: 75vh;
  width: calc(100% - 2.5rem);
  margin: 0 auto 1.45rem;
  /*left:1.5rem;*/
  border-radius: 0.5rem;
  overflow: hidden;
  /*top: 100vh;*/
  -webkit-transform-origin: center top;
  -moz-transform-origin: center top;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.4);
}

.n-business .item:nth-child(1) {
  top: 0;
}

.n-business .item:nth-child(1) {
  z-index: 1 !important;
}

.n-business .item:nth-child(2) {
  z-index: 2 !important;
}

.n-business .item:nth-child(3) {
  z-index: 3 !important;
}

.n-business .item:nth-child(4) {
  z-index: 4 !important;
}

.n-business .item:nth-child(5) {
  z-index: 5 !important;
}

.n-business .item:nth-child(6) {
  z-index: 6 !important;
}

.about-list3 .wul .ul .li:before {
  backdrop-filter: blur(2px);
}

.indexbox6 .contentbox2 .text .warpbtn:hover p {
  color: #fff;
}

.news-list6-dialog5-1 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.news-list6-dialog5-1 .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;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.news-list6-dialog5-1 .dialog__content {
  position: relative;
  z-index: 5;
  overflow-x: auto;
  padding: 0;
  max-width: 1300px;
  width: 90%;
  border-radius: 0.7rem;
  background: transparent;
  box-shadow: none;
  text-align: center;
  background: url(../img/img54.png) no-repeat center center;
  background-size: cover;
  padding: 2rem 0;
  opacity: 0;
}

.news-list6-dialog5-1 .dialog__content .formbox {
  width: 880px;
  max-width: 90%;
  margin: 2rem auto 0;
}

.news-list6-dialog5-1 .dialog__content .formbox .li {
  width: 48%;
  margin-right: 4%;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.news-list6-dialog5-1 .dialog__content .formbox .li2 {
  width: 103px;
  height: 35px;
  position: relative;
}

.news-list6-dialog5-1 .dialog__content .formbox .li2 .inputbox {
  width: 100%;
  height: 35px;
  background: #f29101;
  border-radius: 5px 5px 5px 5px;
}

.news-list6-dialog5-1 .dialog__content .formbox .li2 .input2 {
  width: 100%;
  height: 100%;
  position: absolute;
  background: transparent;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
}

.news-list6-dialog5-1 .dialog__content .formbox .libox {
  width: 100%;
}

.news-list6-dialog5-1 .dialog__content .formbox .li .input1 {
  background: transparent;
  width: calc(100% - 150px);
  margin-left: 0.4rem;
  border: none;
}

.news-list6-dialog5-1 .dialog__content .formbox .li:nth-child(2n) {
  margin-right: 0;
}

.news-list6-dialog5-1 .dialog__content .formbox .li3 {
  width: 100%;
  margin-right: 0;
}

.news-list6-dialog5-1 .dialog__content .formbox .li3 .input3 {
  width: calc(100% - 120px);
  height: 30px;
  margin-left: 0.4rem;
  background: transparent;
}

.news-list6-dialog5-1 .dialog__content .formbox .li .input4 {
  width: 210px;
  height: 50px;
  padding: 0 0.5rem;
  border: 1px solid #eeeeee;
}

.news-list6-dialog5-1 .dialog__content .formbox .li5 {
  padding: 0;
  border-bottom: none;
  width: auto;
}

.news-list6-dialog5-1 .dialog__content .formbox .li4 .input5 {
  width: 100%;
  height: 57px;
  border-radius: 57px;
  position: absolute;
  background: transparent;
  left: 0;
  top: 0;
  z-index: 2;
  border: none;
}

.news-list6-dialog5-1 .dialog__content .formbox .li4 {
  position: relative;
  margin-bottom: 0;
}

.news-list6-dialog5-1 .dialog__content .closebtn {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 1.75rem;
  top: 1.75rem;
}

.news-list6-dialog5-1 .dialog__content .closebtn .icon {
  width: 30px;
  height: 30px;
  fill: #000;
}

.news-list6-dialog5-1 .dialog__content .formbox .li4 .submitbtn {
  position: relative;
  width: 187px;
  height: 57px;
  background: #f29101;
  border-radius: 57px;
  z-index: 1;
}

.news-list6-dialog5-1 .dialog__content .formbox .li4 .icon3 {
  position: absolute;
  width: 38px;
  height: 38px;
  right: 0.25rem;
  top: 50%;
  margin-top: -19px;
}

.news-list6-dialog5-1 .dialog__content .contentbox {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.news-list6-dialog5-1 .closebtn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: 40px;
  height: 40px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news-list6-dialog5-1 .closebtn svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.news-list6-dialog5-1.dialog--open {
  opacity: 1;
  visibility: visible;
}

.news-list6-dialog5-1.dialog--open .dialog__overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  backdrop-filter: blur(5px);
}

.news-list6-dialog5-1.dialog--open .contentbox {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.7rem;
}

.news-list6-dialog5-1.dialog--close .contentbox {
  opacity: 0;
  visibility: hidden;
}

.news-list6-dialog5-1.dialog--open .dialog__content,
.news-list6-dialog5-1.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-dialog5-1.dialog--open .dialog__content {
  -webkit-animation-name: anim-open3;
  animation-name: anim-open3;
}

.news-list6-dialog5-1 .dialog__overlay {
  background: rgba(0, 0, 0, 0.8);
}

.news-list6-dialog5-1.dialog--close .dialog__content {
  -webkit-animation-name: anim-close3;
  animation-name: anim-close3;
}

@media (min-width: 1024px) {
  .indexanim_emt {
    visibility: hidden;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .indexanim_emt2 {
    visibility: hidden;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .indexanim_emt3 {
    visibility: hidden;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .index-container .index-swiper.swiper-slide-active .indexanim_emt {
    visibility: visible;
    -webkit-animation-name: mk_bottom_to_top;
    animation-name: mk_bottom_to_top;
  }

  .index-container .index-swiper.swiper-slide-active .indexanim_emt2 {
    visibility: visible;
    -webkit-animation-name: mk_right_to_left;
    animation-name: mk_right_to_left;
  }

  .index-container .index-swiper.swiper-slide-active .indexanim_emt3 {
    visibility: visible;
    -webkit-animation-name: mk_top_to_bottom;
    animation-name: mk_top_to_bottom;
  }
}

@media (max-width: 1024px) {
  .news-list6-dialog5-1 .closebtn {
    /*background: rgba(209, 41, 53, 1);*/
    color: #fff;
  }

  .news-list6-dialog5-1 .dialog__content .p {
    font-size: 14px;
    width: 90%;
    margin-top: 0.5rem;
  }

  .news-list6-dialog5-1 .dialog__content .closebtn {
    right: 0.75rem;
    top: 0.75rem;
  }
}

@media (max-width: 767px) {
  .news-list6-dialog5-1 .dialog__content {
    width: 100%;
    padding: 0.6rem 3%;
  }

  .news-list6-dialog5-1 .closebtn svg {
    width: 26px;
    height: 26px;
  }

  .news-list6-dialog5-1 .closebtn {
    right: 3%;
  }

  .news-list6-dialog5-1 .dialog__content .formbox .li5 {
    width: 100%;
    margin-right: 0;
  }

  .news-list6-dialog5-1 .dialog__content .formbox .li .input4 {
    height: 40px;
  }

  .news-list6-dialog5-1 .dialog__content .formbox .li {
    width: 46%;
    margin-right: 3.5%;
  }

  .news-list6-dialog5-1 .dialog__content .formbox .li .input4 {
    width: 100%;
  }

  .news-list6-dialog5-1 .dialog__content .formbox .li4 .input5,
  .news-list6-dialog5-1 .dialog__content .formbox .li4 .submitbtn {
    width: 150px;
    height: 40px;
    border-radius: 40px;
  }

  .news-list6-dialog5-1 .dialog__content .formbox .li4 .icon3 {
    width: 30px;
    height: 30px;
    right: 0.25rem;
    top: 50%;
    margin-top: -15px;
  }

  .news-list6-dialog5-1 {
    overflow-y: auto;
    max-height: 100vh;
  }

  .news-list6-dialog5-1 .dialog__content {
    border-radius: 0;
  }

  .news-list6-dialog5-1 .dialog__content .formbox .li5 {
    width: 100% !important;
    margin-right: 0 !important;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .news-list6-dialog5 .dialog__content .formbox .li5 .input4 {
    width: calc(100% - 160px);
  }

  .news-list6-dialog5 .dialog__content .formbox .li5 {
    width: 100% !important;
    margin-right: 0 !important;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .news-list6-dialog5-1 .dialog__content .formbox .li5 .input4 {
    width: calc(100% - 160px);
  }
}

.ibanner .bg .indexvideo {
  width: 100%;
  height: calc(100vh - 2.5rem);
  object-fit: cover;
}

.ibanner .bg .videobtn {
  width: 3.5rem;
  height: 3.5rem;
}

.ibanner .bg .videobtn .icon {
  width: 3rem;
  height: 3rem;
  fill: #fff;
}

.index-container {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.index-container .index-swiper {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

.index-container .footer-swiper {
  height: auto;
}

.contentbox-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.contentbox-container .conswiper-slide1 {
  height: 100vh;
  width: 100vw;
}

.contentbox-container .conswiper-slide2 {
  height: 100vh;
  width: 50vw;
}

.indexbox6 .contentbox2 {
  width: 100%;
}

.warpheader .header .nav .li:hover>a {
  color: #195aa1;
}

.warpheader .header .nav .isubdown {
  position: absolute;
  width: 100vw;
  left: 0;
  top: 2.5rem;
  padding: 1.25rem 0;
  background: #fff;
  border-top: 1px solid #eaeaf2;
  display: none;
}

.warpheader .header .nav .isubdown a {
  width: 170px;
  margin: 0 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid #ccc;
  transition: all 0.6s;
}

.warpheader .header .nav .isubdown a .icon2 {
  width: 14px;
  height: 14px;
  fill: #333;
  transition: all 0.4s;
}

.warpheader .header .nav .isubdown a:hover {
  color: #195aa1;
  border-bottom: 1px solid #195aa1;
}

.warpheader .header .nav .isubdown a:hover .icon2 {
  fill: #195aa1;
}

.fbackbtn {
  width: 81px;
  height: 81px;
  position: fixed;
  right: 10px;
  bottom: 3.25rem;
  z-index: 9;
  transition: all 0.6s;
}

.fbackbtn img {
  transition: all 0.6s;
}

.fbackbtn .img1 {
  opacity: 1;
}

.fbackbtn .img2 {
  opacity: 0;
}

.fbackbtn:hover .img1 {
  opacity: 0;
}

.fbackbtn:hover .img2 {
  opacity: 1;
}

.indexbox6 .svglu {
  position: absolute;
  z-index: 2;
  left: -4%;
  width: 118%;
  top: 23vh;
  opacity: 0;
  transition: all 0.2s;
}

.indexbox6 .svglu.active {
  opacity: 1;
}

.about-list4 .itembox .tit3 {
  font-weight: bold;
}

.n-solution .zmore {
  position: relative;
  overflow: hidden;
}

.n-solution .zmore:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #195aa1;
  opacity: 0;
  transition: all 0.6s;
}

.n-solution .zmore span {
  position: relative;
  z-index: 2;
}

.n-solution .zmore:hover:before {
  opacity: 1;
}

@media (max-width: 1024px) {
  .indexbox3 .ul .li .titbox {
    padding: 0 1rem 3rem;
  }

  .n-business .warpbox {
    height: auto;
    width: 100%;
    z-index: 2;
    margin-top: 1.25rem;
  }

  .n-business .item {
    position: relative;
    height: auto;
    width: 100%;
    left: 0;
    overflow: hidden;
    top: auto;
    -webkit-transform-origin: center top;
    -moz-transform-origin: center top;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.4);
  }

  .indexbox6 {
    height: auto;
  }

  .indexbox6 .contentbox {
    height: 24rem;
  }

  .indexbox6 .contentbox2 {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
  }

  .indexbox1 {
    height: auto;
    padding: 0 6% 10rem;
  }

  .indexbox4 {
    height: auto;
    padding-bottom: 2.5rem;
  }

  .indexbox4 .news-container {
    padding-top: 2rem;
  }

  .indexbox5 .ul2 .li {}

  .indexbox4 .contentbox-top {
    padding: 2rem 6%;
  }

  .indexbox5 {
    height: auto;
    padding-bottom: 3rem;
  }

  .indexbox5 .contentbox-top .tit5 {
    padding-right: 1rem;
    margin-right: 1rem;
  }

  .indexbox5 .contentbox-top .titbox .li {
    margin-right: 1rem;
  }

  .indexbox5 .contentbox-top .wximg {
    margin-left: 2rem;
  }

  .indexbox5 .ul2 {
    margin-top: 3rem;
  }

  .indexbox6 .contentbox .textbox .tit2 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .indexbox6 .contentbox .textbox {
    top: 2rem;
    padding: 0 6%;
  }

  .index-container,
  .contentbox-container {
    height: auto;
  }

  .contentbox-container {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .index-container .index-swiper {
    height: auto;
  }

  .contentbox-container .conswiper-slide1 {
    height: auto;
    width: 100%;
  }

  .contentbox-container .conswiper-slide2 {
    height: auto;
    width: 100%;
  }

  .indexbox6 .contentbox2 {
    width: 100%;
  }

  .index-container>.swiper-wrapper {
    display: block;
  }

  .indexbox6 .contentbox-container>.swiper-wrapper {
    display: block;
  }

  .fbackbtn {
    bottom: 2.25rem;
  }
}

.indexbox7 .li {
  padding: 0 2%;
}

.indexbox4 {
  background: #fff url(../img/imgnew.png) no-repeat center 3rem;
  background-size: auto 5.65rem;
}

@media (max-width: 996px) {
  .indexbox3 .ul .li .text .tit5 {
    letter-spacing: 0;
  }

  .indexbox7 {
    padding: 2rem 6% 1.25rem;
  }

  .indexbox7 .li {
    width: 50%;
    margin-bottom: 1rem;
  }

  .indexbox7 .li:nth-child(2n):before {
    display: none;
  }

  .indexbox7 .li .icon {
    margin-bottom: 0.4rem;
  }

  .indexbox5 .contentbox-top {
    padding: 2rem 6% 1rem;
  }

  .indexbox5 .contentbox-top .wximg {
    margin-left: 0;
    margin-top: 1rem;
  }

  .indexbox5 .ul2 {
    margin-top: 1rem;
    padding: 0 6%;
  }

  .indexbox5 .zmore {
    margin-top: 1rem;
  }

  .indexbox4 .news-container .img {
    height: 4.75rem;
  }

  .indexbox1 .contentbox .leftbox {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .indexbox1 .contentbox .rightbox {
    max-width: 100%;
    margin-right: 0;
  }

  .indexbox1 .contentbox .leftbox .zmore {
    margin-top: 1rem;
  }

  .indexbox1 .contentbox {
    padding-top: 1rem;
  }

  .indexbox1 .contentbox .rightbox .li {
    margin-bottom: 1rem;
  }

  .indexbox1 .title {
    padding-top: 1.75rem;
  }

  .indexbox3 {
    height: auto;
  }

  .indexbox3 .ul .li {
    width: 100%;
    height: 20rem;
  }

  .indexbox3 .ul .li:nth-child(1) {
    height: 10rem;
  }

  .indexbox3 .ul .li .text {
    top: 2rem;
    width: 100%;
    padding: 0 6%;
  }

  .indexbox3 .ul .li .text .tip {
    margin-bottom: 0.35rem;
  }

  .indexbox3 .ul .li .text3 {
    width: 100%;
    left: 0;
    height: 100%;
    bottom: auto;
    top: 0;
    padding: 2rem 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
  }

  .indexbox3 .ul .li .zmore .icon {
    width: 12px;
    height: 12px;
  }

  .indexbox3 .ul .li .zmore {
    margin-top: 1rem;
  }

  .indexbox3 .ul .li .bg {
    width: 100%;
    height: 100%;
  }

  .travel-list1 .contentbox2 .imgbox1-container .text {
    position: relative;
    margin-top: 1rem;
    padding: 0;
  }

  .travel-list1 .contentbox2 .imgbox1-container .text .col-fff {
    color: #333;
  }

  .travel-list1 .contentbox2 .imgbox1-container .text .more {
    border: 0;
    background: #f29200;
  }

  .swiper-container-3d .swiper-slide-shadow-left,
  .swiper-container-3d .swiper-slide-shadow-right {
    background: transparent !important;
  }

  .travel-list1 .contentbox2 .imgbox1-container .text .more .icon {
    width: 10px;
    height: 10px;
  }

  .travel-list1 .contentbox2 .imgbox1-container .li img {
    filter: brightness(0.5);
  }

  .travel-list1 .contentbox2 .imgbox1-container .swiper-slide-active .li img {
    filter: brightness(1);
  }

  .news-list6-dialog5 .dialog__content .formbox .li:nth-child(3n) {
    margin-right: 3.5%;
  }

  .news-list6-dialog5 .dialog__content .formbox .li:nth-child(2n) {
    margin-right: 0;
  }

  .n-notice .contentbox2 .leftbox .ybox {
    padding-right: 0.3rem;
    text-align: center;
    border-right: 0;
  }

  .n-notice .contentbox2 .leftbox .spbox {
    align-items: center;
  }

  .n-notice .contentbox2 .leftbox .sp {
    border-left: 1px solid #f2d5a9;
    margin-left: 0;
    padding-left: 0.7rem;
  }

  .n-social-list .imgbox-container .li:before {
    display: none;
  }
    .about-list5 .his-container .itembox .txtbox .dbtn{
      display: none;
    }
        .about-list5 .his-container .itembox .txtbox{
                position: relative;
                  left: auto !important;
                  top: auto !important;
                  right: auto !important;
                  white-space: normal;
                  line-height: 1.5;
                  text-align: center;
                  font-size: 13px !important;

        }
                .about-list5 .his-container .itembox .txtbox span{
                  opacity: 1;
                  margin-left: 0 !important;
                  margin-right: 0 !important;
                }
}

@media (max-width: 768px) {
  .n-business .warpbox {
    padding: 0 6%;
  }

  .n-business .item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .indexbox6 .contentbox {
    height: 20rem;
  }

  .indexbox6 .contentbox .textbox .tit2 {
    margin-top: 0.5rem;
  }

  .indexbox6 .contentbox2 {
    height: 20rem;
  }

  .indexbox6 .contentbox2 .text {
    padding: 2rem 6% 1rem;
  }

  .indexbox6 .contentbox2 .line {
    margin: 4rem auto 0.6rem;
  }

  .indexbox5 .contentbox-top .tit5 {
    width: 100%;
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 0.75rem;
  }

  .indexbox5 .contentbox-top .titbox .li {
    font-size: 14px;
  }

  /*.indexbox5 .ul2 .li{
    width: 48%;
    margin-right: 4%;
    margin-bottom:4%;
  }
  .indexbox5 .ul2 .li:nth-child(2n){
    margin-right:0;
  }*/
  .indexbox4 .contentbox-top .zmore,
  .indexbox5 .zmore,
  .indexbox6 .contentbox .textbox .zmore,
  .indexbox1 .contentbox .leftbox .zmore {
    width: 130px;
  }

  .indexbox1 {
    padding: 0 6% 6.5rem;
  }

  .indexbox1 .zicon {
    height: 6rem;
    right: 6%;
  }

  .indexbox4 .news-container .img {
    height: 7.75rem;
  }

  .ibanner .button-next,
  .ibanner .button-prev {
    width: 3rem;
    height: 3rem;
  }

  .ibanner .button-prev {
    left: -0.75rem;
  }

  .ibanner .button-next {
    right: -0.75rem;
  }

  .ibanner .button-prev .icon {
    margin-right: 0;
  }

  .ibanner .button-next .icon {
    margin-left: 0;
  }

  .ibanner .button-next span,
  .ibanner .button-prev span {
    display: none;
  }

  .ibanner .textbox {
    top: 25%;
  }

  .fbackbtn {
    display: none;
  }

  .n-banner .scrollbtn {
    display: none;
  }

  .fixtel {
    bottom: 2rem;
  }

  .news-list6-dialog5-1 .dialog__content .formbox .li3 {
    width: 100%;
    margin-right: 0;
  }

  .indexbox7 .li .p {
    font-size: 12px;
  }

  .tit-55 {
    font-size: 28px;
  }
}

.about-list5 .bg,
.n-banner>img {
  width: 100%;
}

.n-banner .pc-block-768 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n-banner .m-block-768 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n-bannerinfo.n-banner {
  padding: 0;
}

.indexbox5 .ul2 .hyimg-container .mirror-gradient .bimg {
  background-size: cover !important;
}

.index-swiper .warpsnowbox {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.n-solution .imgbox-container .bg {
  opacity: 0;
  transform: scale(1.03);
  transition: all 1.5s;
}

.n-solution .imgbox-container .swiper-slide {
  transition: opacity 1.5s !important;
  transition-delay: 0.5s;
}

.n-solution .imgbox-container .swiper-slide-active .bg {
  opacity: 1;
  transform: scale(1);
}

.travel-list3 .warpimgbox .button-prev,
.travel-list3 .warpimgbox .button-next {
  transition: all 0.6s;
}

.travel-list3 .warpimgbox .button-next:hover,
.travel-list3 .warpimgbox .button-prev:hover {
  background: #155aa1;
}

.travel-list3 .warpimgbox .button-prev,
.travel-list3 .warpimgbox .button-next {
  transition: all 0.6s;
}

.travel-list3 .warpimgbox .button-next:hover,
.travel-list3 .warpimgbox .button-prev:hover {
  background: #155aa1;
}

.travel-list3 .warpimgbox .swiper-button-disabled {
  background: #999 !important;
}

.travel-list1 .contentbox2 .warpimgbox1 .button-prev,
.travel-list1 .contentbox2 .warpimgbox1 .button-next {
  transition: all 0.6s;
}

.travel-list1 .contentbox2 .warpimgbox1 .button-next:hover,
.travel-list1 .contentbox2 .warpimgbox1 .button-prev:hover {
  background: #155aa1;
}

.travel-list1 .contentbox2 .warpimgbox1 .button-prev,
.travel-list1 .contentbox2 .warpimgbox1 .button-next {
  transition: all 0.6s;
}

.travel-list1 .contentbox2 .warpimgbox1 .button-next:hover,
.travel-list1 .contentbox2 .warpimgbox1 .button-prev:hover {
  background: #155aa1;
}

.about-list3 .bgbox .bg {
  opacity: 0;
  transform: scale(1.03);
  transition: all 1.5s;
  transition-delay: 0.5s;
}

.about-list3 .bgbox .bg.cur {
  opacity: 1;
  transform: scale(1);
}

.n-banner {
  overflow: hidden;
  height: 56.1vw !important;
}

@media screen and (max-width: 768px) {
  .n-banner {
    height: 50vh !important;
  }
}

.n-banner .warpsnowbox {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.warpheader .header .rightbox .li .icon {
  transition: all 0.6s;
}

.formbox .btn .icon {
  transition: all 0.6s;
}

.formbox .btn:hover .icon {
  fill: #f29200 !important;
}

.warpheader .header .rightbox .li:hover .icon {
  fill: #f29200;
}

.footer .footer-middle .leftbox .li:hover .icon,
.n-info .textright .wformbox .sharebox .li:hover .icon {
  animation: iconarrow 1s infinite linear;
}

.footer .footer-box .pleft a {
  transition: all 0.6s;
}

.footer .footer-box .pleft a:hover {
  color: #155aa1;
}

.n-banner .ntips a {
  transition: all 0.6s;
}

.n-banner .ntips a:hover {
  color: #f29200;
}

.news-list6-dialog5 .dialog__content .formbox .li span {
  font-weight: bold;
}

.news-list6-dialog5 .dialog__content .formbox .li2 .inputbox {
  transition: all 0.6s;
}

.news-list6-dialog5 .dialog__content .formbox .li2:hover .inputbox {
  background: #155aa1;
}

@keyframes iconarrow {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0%);
  }
}

.footer .footer-box .langbox .sp .icon {
  transition: all 0.6s;
}

.footer .footer-box .langbox .sp.cur .icon {
  transform: rotate(-180deg);
}

.formbox .li4 .submitbtn {
  transition: all 0.6s;
}

.formbox .li4:hover .submitbtn {
  background: #155aa1 !important;
}

.noherf {
  cursor: initial;
}

.news-list6-dialog5-1 .dialog__content .formbox .li .captcha {
  margin-left: 30px;
}

.news-list6-dialog5 .dialog__content .formbox .li5 .coad {
  margin-left: 30px;
}

.dialog__content .closebtn .icon {
  transition: all 0.6s;
}

.dialog__content .closebtn:hover .icon {
  fill: #f29101;
}

.dialog__content .ti {
  margin-left: -0.75rem;
}

.n-join .formbox .btnbox .btn {
  transition: all 0.6s;
}

.n-join .formbox .btnbox:hover .btn {
  background: #f29200;
}

.n-report .contentbox .libox .text .btn span {
  transition: all 0.6s;
}

.n-report .contentbox .libox .text .btn .icon2 {
  transition: all 0.4s;
}

.n-report .contentbox .libox .text .btn:hover .icon2 {
  fill: #f29200;
}

.n-report .contentbox .libox .text .btn:hover span {
  color: #f29200;
}

.fix_wximg {
  position: absolute;
  right: 10px;
  bottom: 3rem;
  z-index: 8;
}

.fix_wximg .fimg {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.fix_wximg p {
  color: #f29200;
}

.fix_wximg2 {
  position: fixed;
  right: 10px;
  bottom: 10rem;
  z-index: 8;
}

.fix_wximg2 .fimg {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.fix_wximg2 p {
  color: #f29200;
}

.news-list6-dialog5-1 .dialog__content .formbox .li5 {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}

.captcha_ok,
.captcha_no {
  display: block;
  height: 24px;
  margin-left: 10px;
}

.index-swiper .zmore {
  overflow: hidden;
  position: relative;
}

.index-swiper .zmore span {
  position: relative;
  z-index: 2;
}

.index-swiper .zmore:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #195aa1;
  opacity: 0;
  transition: all 0.6s;
}

.index-swiper .zmore:hover:before {
  opacity: 1;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px transparent inset !important;
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
  -webkit-text-fill-color: #333 !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

input::-moz-selection {
  background: none;
  color: inherit;
}

input::selection {
  background: none;
  color: inherit;
}

input:focus {
  outline: none;
}

textarea::-moz-selection {
  background: none;
  color: inherit;
}

textarea::selection {
  background: none;
  color: inherit;
}

textarea:focus {
  outline: none;
}

.index-swiper .warpsnowbox {
  transform-origin: 100% 0;
}

.index-swiper .warpsnowbox.on img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -20%;
  top: -26%;
  z-index: 2;
}

.index-swiper .warpsnowbox.on {
  /*animation: circle 10s infinite;*/
  animation: circle 10s 1 forwards;
}

.n-banner .warpsnowbox {
  transform-origin: 100% 0;
}

.n-banner .warpsnowbox.on img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -20%;
  top: -26%;
  z-index: 2;
}

.n-banner .warpsnowbox.on {
  animation: circle 10s 1 forwards;
}

@keyframes circle {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-clip-path: circle(15.7% at 18% 1%);
    clip-path: circle(15.7% at 18% 1%);
  }

  80%,
  100% {
    opacity: 1;
    filter: alpha(opacity=1);
    -webkit-clip-path: circle(200% at 18% 1%);
    clip-path: circle(200% at 18% 1%);
  }
}

/*@keyframes circle{
  0% {
     opacity:0;
     filter:alpha(opacity=0);
     -webkit-clip-path: circle(15.7% at 18% 1%);
      clip-path: circle(15.7% at 18% 1%);
    }
    80%,90% {
     opacity:1;
     filter:alpha(opacity=1);
     -webkit-clip-path: circle(200% at 18% 1%);
      clip-path: circle(200% at 18% 1%);
    }
    95%,100% {
      opacity:0;
      filter:alpha(opacity=0);
      -webkit-clip-path: circle(200% at 18% 1%);
      clip-path: circle(200% at 18% 1%);
    }
}*/
.business-info {
  padding: 0;
}

.business-info .li-item {
  padding: 3.75rem 2.2rem;
  position: relative;
  background: #fff;
}

.business-info .li-item:nth-child(odd) {
  flex-flow: row-reverse wrap;
  background: rgba(245, 245, 245, 1);
}

.business-info .li-item:nth-child(odd) .textbox {
  margin-right: -2.25rem;
  margin-left: 0;
}

.business-info .li-item .img {
  height: 16.25rem;
  width: 63%;
}

.business-info .li-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-info .li-item .textbox {
  background: #fff;
  min-height: 13.75rem;
  width: calc(37% + 2.25rem);
  margin-left: -2.25rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2.875rem;
  position: relative;
  z-index: 3;
  padding-right: 1.2rem;
  padding-bottom: 1.5rem;
}

.business-info .li-item .textbox .num {
  font-size: 2.5rem;
  line-height: 1.1;
  font-style: italic;
  color: rgba(242, 146, 0, 1);
  margin-bottom: 0.75rem;
}

.business-info .li-item .textbox .tit3 {
  margin-bottom: 0.85rem;
}

.business-info .whrefbtn {
  background: #fff;
  padding-bottom: 2.65rem;
}

.business-info .hrefbtn {
  width: 150px;
  height: 1.25rem;
  background: #f29200;
  border-radius: 1.25rem;
  transition: all 0.6s;
}

.business-info .li-item .textbox .tit4 {
  height: 3.5rem;
  overflow: auto;
  padding-right: 0.3rem;
}

.business-info .hrefbtn .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 0.15rem;
}

.business-info .hrefbtn:hover {
  color: #fff;
  background: #155aa1;
}

@media (max-width: 996px) {
  .business-info .li-item .img {
    width: 100%;
  }

  .business-info .li-item .textbox {
    width: 100%;
  }

  .business-info .li-item .textbox {
    margin-left: 0 !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
  }

  .business-info .li-item .textbox {
    height: auto;
    padding: 1.5rem 6%;
  }

  .business-info .li-item {
    padding: 1.75rem 6% 2rem;
  }

  .business-info .li-item .img {
    height: 9.25rem;
  }

  .business-info .hrefbtn {
    width: 4.5rem;
  }

  .business-info .whrefbtn {
    padding-bottom: 2rem;
  }
}

/*.business-text{
  padding:1.5rem 6%;
}*/
.n-bannerinfo .text {
  top: 28%;
}

.n-bannerinfo .text2 {
  left: calc(2.2rem + 2.875rem);
  bottom: 3rem;
  z-index: 2;
  position: absolute;
}

.n-bannerinfo .text2 .tit3 {
  margin-bottom: 0.3rem;
}

.n-bannerinfo .text2 .tit4 {
  margin-bottom: 0.5rem;
}

.n-bannerinfo .text2 .tit5 {
  width: 70%;
}

@media (max-width: 996px) {
  .n-bannerinfo .text2 {
    left: 6%;
    width: 88%;
    bottom: 2.5rem;
    z-index: 2;
    position: absolute;
  }

  .n-bannerinfo .text2 .tit5 {
    width: 100%;
  }

  .n-bannerinfo .text {
    /* top: 5%; */
    /* transform: translate(-50%, 0); */
  }

  .n-bannerinfo .text.text-info {
    transform: translate(0, 0);
  }
}

/*# sourceMappingURL=boc_reset.css.map */

.yyitem.item {
  position: relative;
  height: 100vh;
  min-height: 24.5rem;

  overflow: hidden;
}

.yyitem.item .img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  object-fit: cover;
}

.yyitem.item .imgbg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  object-fit: cover;
}

.yyitem.item .tit3 {
  margin-bottom: 0.75rem;
}

.yyitem.item .text {
  position: absolute;
  width: 22rem;
  left: 2.5rem;
  bottom: 4.5rem;
  z-index: 4;
}

.yyitem.item .tit4 {
  margin-bottom: 0.65rem;
}

.yyitem.item .tit5 {
  overflow-y: auto;
  padding-right: 5px;
  max-height: 6rem;
}

.yyitem.item .zmore {
  width: auto;
  display: inline-block;
  height: auto;
  background: #f29200;
  border-radius: 1.3rem;
  margin-top: 1.2rem;
  transition: all 0.6s;
  padding: 0 1rem;
  margin-right: 0.5rem;
  line-height: 1.3rem;
}

.yyitem.item .zmore .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 5px;
}

.yyitem.item .zmore:hover {
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  background: #195aa1;
}

@media (max-width: 996px) {
  .yyitem.item .text {
    width: 100%;
    left: 0;

    padding: 0 4%;
  }

  .yyitem.item .zmore {
    height: auto !important;
  }
}



.n-business .item .ymoer.zmore {
  width: auto;
  display: inline-block;
  height: auto;
  background: #f29200;
  border-radius: 1.3rem;
  margin-top: 1.2rem;
  transition: all 0.6s;
  padding: 0 1rem;
  margin-right: 0.5rem;
  line-height: 1.3rem;
}

.n-business .item .ymoer.zmore .icon {
  width: 15px;
  height: 15px;
  fill: #fff;
  margin-left: 5px;
}

.n-business .item .ymoer.zmore:hover {
  color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  background: #195aa1;
}

.ymoer.zmore span {
  display: inline-block;
  margin-right: 0.5rem;
}

.mch {
  z-index: 999;
  position: fixed;
}

.ymoer.zmore span:last-child {
  margin-right: 0;
}

.n-business .item .ymoer.zmore br {
  display: none;
}

.wr {
  width: 100%;
  position: relative;
}

.index-pagination {
  position: absolute;
  bottom: 1rem !important;
  width: 100%;
  text-align: center;
  z-index: 33;
}

.index-pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.5;
}

.index-pagination .swiper-pagination-bullet-active {
  background-color: #f29200;
  opacity: 1;
}

@media (max-width: 996px) {
  .indexbox3 .ul .li.nli {
    display: none;
  }

  .indexbox3 .ul .index3-container .li.nli {
    display: block;

    height: 100% !important;
  }

  .index3-container {
    width: 100%;
    overflow: hidden;
    height: 20rem;
  }
}

@media (max-width: 568px) {
  .m-bocweb-header3 .header2 .zlogo {
    padding-right: 0;
    margin-right: 0;
  }

  .m-bocweb-header3 .searchbtn {
    width: 28px;
    height: 28px;
  }

  .ibanner .tit3 .tit-46 {
    font-size: 28px;
  }

  .indexbox7 .li {
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .indexbox7 .li:before {
    display: none;
  }

  .indexbox7 .li .icon {
    margin-bottom: 0;
  }

  .indexbox7 .li .p {
    margin-left: 0.2rem;
  }

  .indexbox7 .li .p br {
    display: none;
  }

  .n-banner {
    height: 24rem !important;
  }

  .n-business .item .tit5 {
    max-height: none !important;
  }

  .n-business .item .zmore .icon {
    width: 10px;
    height: 10px;
  }

  .n-business .item .ymoer.zmore {
    border-radius: 0.2rem;
    padding: 0.2rem 1rem;
  }

  .n-business .item .ymoer.zmore br {
    display: block;
  }

  .n-news .ul2 .news-container.cur .swiper-pagination {
    display: none !important;
  }

  .n-social .li .zmore .icon {
    width: 10px;
    height: 10px;
  }

  .indexbox4 .news-container .swiper-scrollbar {
    display: none;
  }

  .indexbox5 .contentbox-top .wximg {
    position: absolute;
    right: 5%;
    top: 0.5rem;
  }

  .n-bannerinfo.n-banner {
    height: ;
  }

}