@charset "UTF-8";
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Bold.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/Roboto/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Regular.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*公共常用样式*/
.flex {
  display: -moz-box;
  display: flex;
}

.flex-bet {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-align: center;
       align-items: center;
}

.flex-bett {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.flex-aro {
  display: -moz-box;
  display: flex;
  justify-content: space-around;
  -moz-box-align: center;
       align-items: center;
}

.flex-cen {
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
       justify-content: center;
  -moz-box-align: center;
       align-items: center;
}

.flex-cen-col {
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
       justify-content: center;
  -moz-box-align: center;
       align-items: center;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.flex-jus {
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
       justify-content: center;
}

.flex-ali {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
}

.flex-col {
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.flex-row {
  display: -moz-box;
  display: flex;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
       flex-direction: row-reverse;
}

.flex1 {
  -moz-box-flex: 1;
       flex: 1;
}

.ell {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ell1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
}

.ell2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.ell3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.ell4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

/* 插件初始化 */
.swiper-wrapper {
  height: auto !important;
}

.swiper-slide {
  height: auto !important;
}

/*reset css*/
html {
  font-size: max(5.2083333333vw, 50px) !important; /* 适配1920px宽度 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

*[id] {
  scroll-margin-top: -moz-calc(var(--header-height) + 20px);
  scroll-margin-top: calc(var(--header-height) + 20px); /* 避免锚点内容被 fixed header 遮挡 */
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  /* overflow-x: hidden; */
  font: var(--font-size-16) "Roboto-Regular", Arial, Helvetica, sans-serif, "Microsoft YaHei", "sans-serif";
  /* 主题色 */
  --primary-color: #66d1da;
  --primary-color2: #8e2227;
  /* 文本色 */
  /* 导航高度 */
  --header-height: 99px;
  --all-border-radius: max(0.2rem, 14px);
  line-height: 1.15;
  --font-size-72: max(0.72rem, 24px);
  --font-size-62: max(0.62rem, 30px);
  --font-size-60: max(0.6rem, 26px);
  --font-size-54: max(0.54rem, 24px);
  --font-size-52: max(0.52rem, 24px);
  --font-size-48: max(0.48rem, 24px);
  --font-size-42: max(0.42rem, 24px);
  --font-size-40: max(0.4rem, 24px);
  --font-size-36: max(0.36rem, 24px);
  --font-size-34: max(0.34rem, 24px);
  --font-size-32: max(0.32rem, 22px);
  --font-size-30: max(0.3rem, 22px);
  --font-size-28: max(0.28rem, 22px);
  --font-size-26: max(0.26rem, 20px);
  --font-size-24: max(0.24rem, 16px);
  --font-size-22: max(0.22rem, 16px);
  --font-size-20: max(0.2rem, 16px);
  --font-size-18: max(0.18rem, 14px);
  --font-size-16: max(0.16rem, 14px);
  --font-size-14: max(0.14rem, 12px);
  --font-size-12: max(0.12rem, 12px);
}

@media screen and (max-width: 768px) {
  body {
    --header-height: 60px;
  }
}
ul {
  list-style-type: none;
  padding-left: 0; /* 取消左侧内边距 */
}

div,
a,
p,
span,
button,
input,
textarea {
  /* font-family: var(--font-regular); */
}

p {
  color: #666;
  font-size: var(--font-size-p);
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: var(--font-medium); */
  color: #222;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
}

h1 {
  font-size: var(--font-size-62);
}
h1 strong {
  color: var(--primary-color2);
}

img {
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -moz-transition: 1s;
  transition: 1s;
}

video {
  width: 100%;
}

a {
  color: inherit;
}

a:hover {
  color: unset;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  -moz-box-sizing: content-box;
       box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
     -moz-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
  border: none;
  outline: none;
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  -moz-box-sizing: border-box;
       box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  -moz-box-sizing: border-box;
       box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Swiper 11.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 26, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -moz-box;
  display: flex;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -moz-transform;
  -moz-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
       transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -moz-box-sizing: content-box;
       box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -moz-transform: translate3d(0px, 0, 0);
       transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -moz-transition-property: transform, -moz-transform;
  transition-property: transform;
  transition-property: transform, -moz-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -moz-box-align: start;
       align-items: flex-start;
  -moz-transition-property: transform, height, -moz-transform;
  transition-property: transform, height;
  transition-property: transform, height, -moz-transform;
}

.swiper-backface-hidden .swiper-slide {
  -moz-transform: translateZ(0);
       transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -moz-perspective: 1200px;
       perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -moz-transform-style: preserve-3d;
       transform-style: preserve-3d;
}

.swiper-3d {
  -moz-perspective: 1200px;
       perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -moz-transform-style: preserve-3d;
       transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: none;
      -ms-scroll-snap-type: none;
          scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  -moz-box-ordinal-group: 10000;
       order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
     -moz-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -moz-transform-origin: 50%;
   -ms-transform-origin: 50%;
       transform-origin: 50%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -moz-animation: swiper-preloader-spin 1s infinite linear;
       animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-moz-keyframes swiper-preloader-spin {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -moz-transform: translateZ(0);
       transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: -moz-calc(var(--swiper-navigation-size) / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: -moz-calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -moz-transform-origin: center;
   -ms-transform-origin: center;
       transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
       transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -moz-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -moz-transform: translate3d(0, 0, 0);
       transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -moz-transform: scale(0.33);
   -ms-transform: scale(0.33);
       transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -moz-transform: scale(1);
   -ms-transform: scale(1);
       transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -moz-transform: scale(1);
   -ms-transform: scale(1);
       transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -moz-transform: scale(0.66);
   -ms-transform: scale(0.66);
       transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -moz-transform: scale(0.33);
   -ms-transform: scale(0.33);
       transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -moz-transform: scale(0.66);
   -ms-transform: scale(0.66);
       transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -moz-transform: scale(0.33);
   -ms-transform: scale(0.33);
       transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -moz-transform: translate3d(0px, -50%, 0);
       transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -moz-transition: 0.2s transform, 0.2s top, 0.2s -moz-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -moz-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -moz-transition: 0.2s transform, 0.2s left, 0.2s -moz-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -moz-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -moz-transition: 0.2s transform, 0.2s right, 0.2s -moz-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -moz-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -moz-transform: scale(0);
   -ms-transform: scale(0);
       transform: scale(0);
  -moz-transform-origin: left top;
   -ms-transform-origin: left top;
       transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -moz-transform-origin: right top;
   -ms-transform-origin: right top;
       transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: -moz-calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: -moz-calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
       justify-content: center;
  -moz-box-align: center;
       align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -moz-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -moz-transition-timing-function: ease-out;
       transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -moz-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -moz-transform-origin: 0 0;
   -ms-transform-origin: 0 0;
       transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -moz-transform-origin: 100% 0;
   -ms-transform-origin: 100% 0;
       transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  overflow: hidden;
  -moz-transition-property: transform, opacity, height, -moz-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -moz-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -moz-transform-origin: center bottom;
   -ms-transform-origin: center bottom;
       transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
       backface-visibility: hidden;
  overflow: hidden;
}

/* 常用宽度 */
.w1800 {
  width: 93.75%;
  margin: 0 auto;
}

.w1400 {
  width: 73.57%;
  margin: 0 auto;
}

.w1528 {
  width: 79.58%;
  margin: 0 auto;
}

.left-1400 {
  margin-left: 13.21%;
}

.right-1400 {
  margin-right: 13.21%;
}

.left-w1660 {
  margin-left: 13.21%;
}

.w1600 {
  width: 84.08%;
  margin: 0 auto;
}

.left-w1600 {
  margin-left: 7.6%;
}

.w1760 {
  width: 92.5%;
  margin: 0 auto;
}

.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1599px) {
  .left-1660 {
    margin-left: 10%;
  }
  .w1600 {
    width: 90%;
  }
  .left-w1600 {
    margin-left: 5%;
  }
  .left-1600 {
    margin-left: 5%;
  }
  .w1400 {
    width: 80%;
  }
  .w1528 {
    width: 86%;
  }
  .left-1400 {
    margin-left: 10%;
  }
  .right-1400 {
    margin-right: 10%;
  }
}
@media screen and (max-width: 1439px) {
  .w1400,
  .w1528 {
    width: 90%;
  }
  .left-w1660 {
    margin-left: 5%;
  }
  .left-1400 {
    margin-left: 5%;
  }
  .right-1400 {
    margin-right: 5%;
  }
}
@media screen and (max-width: 1279px) {
  .w1200 {
    width: 90%;
  }
}
.and {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .and {
    display: block !important;
  }
}
.com-btn {
  padding: max(0.2rem, 10px) max(0.3rem, 15px);
  color: #222;
  -moz-transition: 0.6s ease;
  transition: 0.6s ease;
  font-size: var(--font-size-p);
  border-radius: max(0.3rem, 30px);
  display: inline-block;
  border: none;
  background-color: var(--theme-color);
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.com-btn:hover {
  cursor: pointer;
  -moz-transform: translateY(-4px);
   -ms-transform: translateY(-4px);
       transform: translateY(-4px);
}

h2 {
  font-size: var(--font-size-52);
}
h2 strong {
  color: var(--primary-color);
  font-weight: normal;
}

.header-page {
  position: relative;
  z-index: 100;
}
.header-page .header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  height: 99px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  z-index: 10;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: white;
  box-shadow: 0 4px 15.2px 0 rgba(206, 206, 206, 0.25);
}
.header-page .header .header-box {
  height: 100%;
}
.header-page .header .header-left {
  flex-shrink: 0;
}
.header-page .header .header-left a {
  display: block;
}
.header-page .header .header-left a img {
  max-width: max(1.62rem, 100px);
}
.header-page .header .head-right {
  width: 100%;
  -moz-box-pack: right;
       justify-content: right;
}
.header-page .header .head-right .nav {
  margin-right: 0.46rem;
  -webkit-column-gap: 0.55rem;
     -moz-column-gap: 0.55rem;
          column-gap: 0.55rem;
}
.header-page .header .head-right .nav .item {
  height: var(--header-height);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  font-size: var(--font-size-20);
  position: relative;
}
.header-page .header .head-right .nav .item > a::after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.header-page .header .head-right .nav .item .select {
  position: absolute;
  height: 0;
  left: 0px;
  top: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 200px;
  max-width: 360px;
  height: 0;
  opacity: 0;
  -moz-transition: 0.8s;
  transition: 0.8s;
  border-radius: 10px;
  z-index: 2;
  pointer-events: none;
}
.header-page .header .head-right .nav .item .select .select-list {
  position: relative;
  border: 1px solid rgba(230, 35, 43, 0.0902);
  padding: 0.14rem 0.24rem;
  opacity: 1;
  background-color: white;
  box-shadow: 0px 4px 27px 0px rgba(188, 188, 188, 0.3);
  overflow: hidden;
  border-radius: var(--all-border-radius);
  margin-top: 10px;
}
.header-page .header .head-right .nav .item .select .select-list .box-item {
  width: 100%;
  padding: 16px 20px;
  font-size: var(--font-size-18);
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--all-border-radius);
  margin-bottom: 10px;
  text-align: left;
}
.header-page .header .head-right .nav .item .select .select-list .box-item h3 {
  font-size: var(--font-size-18);
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-weight: normal;
}
.header-page .header .head-right .nav .item .select .select-list .box-item .img-box {
  position: relative;
}
.header-page .header .head-right .nav .item .select .select-list .box-item .img-box img:nth-child(2) {
  display: none;
}
.header-page .header .head-right .nav .item .select .select-list .box-item-active h3 {
  color: #fff;
}
.header-page .header .head-right .nav .item .select .select-list .box-item-active .img-box img:nth-child(1) {
  display: none;
}
.header-page .header .head-right .nav .item .select .select-list .box-item-active .img-box img:nth-child(2) {
  display: block;
}
.header-page .header .head-right .nav .item .select .select-list .line-box {
  background-color: var(--primary-color);
  position: absolute;
  bottom: 80%;
  left: 0;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 0%;
  height: 0%;
  overflow: hidden;
  border-radius: var(--all-border-radius);
}
.header-page .header .head-right .nav .item .select2 {
  position: absolute;
  height: 0;
  left: 0px;
  top: 100%;
  width: 100%;
  min-width: 592px;
  max-width: 660px;
  height: 0;
  opacity: 0;
  -moz-transition: 0.8s;
  transition: 0.8s;
  border-radius: 10px;
  z-index: 2;
  pointer-events: none;
}
.header-page .header .head-right .nav .item .select2 .module1 {
  background-color: white;
  box-shadow: 0px 4px 27px 0px rgba(188, 188, 188, 0.3);
  border-radius: var(--all-border-radius);
  overflow: hidden;
  margin-top: 10px;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-left {
  min-width: max(2.36rem, 180px);
  background-color: #fcfcfc;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list {
  position: relative;
  padding: 0.14rem 0;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .box-item {
  width: 100%;
  padding: 16px 0.2rem 16px 0.52rem;
  font-size: var(--font-size-18);
  position: relative;
  z-index: 2;
  overflow: hidden;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .box-item h3 {
  font-size: var(--font-size-18);
  font-weight: normal;
  text-align: center;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .box-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  background-color: var(--primary-color);
  width: 6px;
  height: 0;
  -moz-transition: 0.4s;
  transition: 0.4s;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .box-item.box-item-active, .header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .box-item:hover {
  background-color: #f5f5f5;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .box-item.box-item-active h3, .header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .box-item:hover h3 {
  color: var(--primary-color);
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .box-item.box-item-active::after, .header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .box-item:hover::after {
  height: 80%;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-left .select-list .line-box {
  background-color: var(--primary-color);
  position: absolute;
  bottom: 80%;
  left: 0;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 0%;
  height: 0%;
  overflow: hidden;
  border-radius: var(--all-border-radius);
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-right {
  padding: 0.3rem 0 0.2rem 0.58rem;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-right .child {
  display: none;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-right .child .child-item {
  margin-bottom: 0.28rem;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-right .child .child-item a {
  color: rgba(34, 34, 34, 0.51);
  font-size: var(--font-size-18);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-right .child .child-item a::after {
  content: "";
  position: absolute;
  left: inherit;
  right: 0%;
  bottom: 0;
  height: 1px;
  background-color: rgba(34, 34, 34, 0.51);
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-right .child .child-item a:hover {
  color: var(--primary-color);
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-right .child .child-item a:hover::after {
  background-color: var(--primary-color);
}
.header-page .header .head-right .nav .item .select2 .module1 .module1-right .child-active {
  display: block;
}
.header-page .header .head-right .nav .item:nth-last-child(1) {
  margin-right: 0;
}
.header-page .header .head-right .nav .item-active > a::after {
  width: 100%;
}
.header-page .header .head-right .nav .item-active > a {
  color: var(--primary-color);
}
.header-page .header .head-right .nav .item:hover .select {
  height: auto;
  opacity: 1;
  pointer-events: auto;
}
.header-page .header .head-right .nav .item:hover .select2 {
  height: auto;
  opacity: 1;
  pointer-events: auto;
}
.header-page .header .head-right .nav .item:hover > a::after {
  width: 100%;
}
.header-page .header .head-right .nav .item:hover > a {
  color: var(--primary-color);
}
.header-page .header .head-right .clearfix {
  flex-shrink: 0;
}
.header-page .header .head-right .clearfix .quotation {
  border: 1px solid #cacaca;
  border-radius: 1rem;
  background-color: #ffffff;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
  margin-right: 0.3rem;
}
.header-page .header .head-right .clearfix .quotation i {
  margin-right: 0.2rem;
  font-size: var(--font-size-22);
}
.header-page .header .head-right .clearfix .quotation:hover {
  border-color: var(--primary-color);
}
.header-page .header .head-right .clearfix .language {
  font-size: var(--font-size-18);
  border-radius: -moz-calc(40px + 0.4rem);
  border-radius: calc(40px + 0.4rem);
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.header-page .header .head-right .clearfix .language .icon-yuyan {
  font-size: var(--font-size-20);
}
.header-page .header .head-right .clearfix .language .img-box {
  background-color: var(--primary-color);
  border-radius: 50%;
}
.header-page .header .head-right .clearfix .language .img-box img {
  width: 26px;
}
.header-page .header .head-right .clearfix .language .name {
  margin: 0 6px 0 8px;
}
.header-page .header .head-right .clearfix .language .icon-xiajiantou {
  font-size: var(--font-size-18);
}
.header-page .header .head-right .clearfix .language .language-select {
  position: absolute;
  top: 130%;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 140%;
  background-color: white;
  color: var(--primary-color);
  border-radius: 0.06rem;
  max-height: 0;
  overflow: hidden;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.header-page .header .head-right .clearfix .language .language-select a {
  display: block;
  text-align: center;
  padding: 0.2rem 0;
  border-bottom: 1px solid #ededed;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.header-page .header .head-right .clearfix .language .language-select a:hover {
  background-color: var(--primary-color);
  color: white;
}
.header-page .header .head-right .clearfix .language-active .language-select {
  max-height: 200px;
}
.header-page .header .head-right .clearfix .search {
  margin-left: 0.4rem;
  cursor: pointer;
}
.header-page .header .head-right .clearfix .search i {
  font-size: var(--font-size-24);
}
.header-page .header .head-right .btm {
  display: none;
  margin-left: 10px;
  position: relative;
}
.header-page .header .head-right .btm img {
  width: 20px;
}
@media screen and (max-width: 1228px) {
  .header-page .header .head-right .nav {
    margin-right: 0.8rem;
  }
  .header-page .header .head-right .clearfix .quotation {
    display: none;
  }
}
.header-page .header-active {
  background-color: white;
  background: #fff;
}
.header-page .searchPage {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 101;
  display: none;
  opacity: 0;
}
.header-page .searchPage .close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 50px;
  color: white;
  line-height: 1;
  cursor: pointer;
}
.header-page .searchPage .sousuo {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  width: 80%;
}
.header-page .searchPage .sousuo form {
  padding-bottom: 8px;
  border-bottom: 1px solid white;
}
.header-page .searchPage .sousuo form input {
  background-color: transparent;
  color: white;
  width: 98%;
  font-weight: bold;
  padding-right: 12px;
}
.header-page .searchPage .sousuo form .name {
  color: white;
  white-space: nowrap;
  font-size: var(--font-size-18);
  background-color: transparent;
}
.header-page .searchPage .sousuo form button {
  cursor: pointer;
}
.header-page .searchPage .sousuo .centre {
  margin-top: 16px;
  flex-wrap: wrap;
}
.header-page .searchPage .sousuo .centre p {
  color: white;
  margin-bottom: 8px;
}
.header-page .searchPage .sousuo .centre a {
  color: white;
  margin-right: 10px;
  margin-bottom: 8px;
  display: block;
}
.header-page .searchPage-active {
  display: block;
  opacity: 1;
}
.header-page .m-mobilenav {
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 1080px) {
  .header-page .mbnav-wp_seach {
    width: 100%;
    margin: auto;
    position: absolute;
    z-index: 2;
  }
  .header-page .mbnav-wp_seach > form > .box-form {
    display: -moz-box;
    display: flex;
    height: 100%;
    height: 40px;
    -moz-box-pack: justify;
         justify-content: space-between;
    background: rgba(255, 255, 255, 0.7);
  }
  .header-page .mbnav-wp_seach > form > .box-form > .box-text {
    width: -moz-calc(100% - 30px);
    width: calc(100% - 30px);
    border: 0px;
    height: 100%;
    padding-left: 10px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    background: transparent;
    outline: none;
  }
  .header-page .mbnav-wp_seach > form > .box-form > .box-submit {
    width: 30px;
    height: 100%;
    border: 0px;
    position: relative;
    z-index: 2;
    background: transparent;
    cursor: pointer;
    background: transparent;
  }
  .header-page .mbnav-wp_seach > form > .box-form .icon {
    position: absolute;
    right: 4px;
    top: 10px;
    z-index: 1;
  }
  .header-page .mbnav-list {
    margin-top: 20px;
  }
  .header-page .m-mobilenav {
    position: relative;
    z-index: 11;
    top: 0;
    left: 0;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 100;
  }
  .header-page .m-mobilenav .mbnav-btn {
    position: relative;
    z-index: 2;
    top: 0;
    left: 3%;
    padding: 4px;
    border-radius: 4px;
    overflow: hidden;
    width: 34px;
    -moz-transition: all 550ms;
    transition: all 550ms;
  }
  .header-page .m-mobilenav .mbnav-btn .line {
    width: 100%;
    height: 2px;
    background-color: #222;
  }
  .header-page .m-mobilenav .mbnav-btn.active .line {
    background-color: #ffffff;
  }
  .header-page .m-mobilenav .mbnav-btn .line2 {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .header-page .m-mobilenav .mbnav-btn .smalldaohangxuanzhong {
    background-color: #ffffff;
  }
  .header-page .m-mobilenav .mbnav-btn.active {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    background: transparent;
  }
  .header-page .m-mobilenav .mbnav-bd {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    top: 0;
    visibility: hidden;
    z-index: 1;
  }
  .header-page .m-mobilenav .mbnav-bd.show {
    visibility: visible;
  }
  .header-page .m-mobilenav .mbnav-bd.show .mbnav-wp {
    height: 100vh;
    opacity: 1;
  }
  .header-page .m-mobilenav .mbnav-bd.show .mbnav-item > a {
    opacity: 1;
    color: #ffffff;
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }
  .header-page .m-mobilenav .mbnav-wp {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background-color: rgba(51, 51, 51, 0.9);
    top: 0;
    -moz-transition: all 550ms;
    transition: all 550ms;
    opacity: 0;
  }
  .header-page .m-mobilenav .mbnav-fix {
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 1;
    height: -moz-calc(100% - 60px);
    height: calc(100% - 60px);
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* overflow-y: scroll; */
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header-page .m-mobilenav .mbnav-item {
    position: relative;
    padding-left: 44px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header-page .m-mobilenav .mbnav-item i {
    position: absolute;
    left: 13px;
    top: 12px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: transparent;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
  }
  .header-page .m-mobilenav .mbnav-item > a {
    display: block;
    line-height: 26px;
    font-size: 16px;
    color: #ffffff;
    -moz-transform: scale(1.1) translate(60px, -35px);
    -ms-transform: scale(1.1) translate(60px, -35px);
    transform: scale(1.1) translate(60px, -35px);
    opacity: 0;
    -moz-transition: 0.5s 0.1s;
    transition: 0.5s 0.1s;
  }
  .header-page .m-mobilenav .mbnav-item > a.current:after {
    content: "";
    margin-left: 5px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    -moz-transition: all 550ms;
    transition: all 550ms;
  }
  .header-page .m-mobilenav .mbnav-item > a.active {
    color: #529dba;
  }
  .header-page .m-mobilenav .mbnav-item > a.active:after {
    background-color: #529dba;
  }
  .header-page .m-mobilenav .mbnav-item:nth-child(1) > a {
    -moz-transition-delay: 250ms;
    transition-delay: 250ms;
  }
  .header-page .m-mobilenav .mbnav-item:nth-child(2) > a {
    -moz-transition-delay: 300ms;
    transition-delay: 300ms;
  }
  .header-page .m-mobilenav .mbnav-item:nth-child(3) > a {
    -moz-transition-delay: 350ms;
    transition-delay: 350ms;
  }
  .header-page .m-mobilenav .mbnav-item:nth-child(4) > a {
    -moz-transition-delay: 400ms;
    transition-delay: 400ms;
  }
  .header-page .m-mobilenav .mbnav-item:nth-child(5) > a {
    -moz-transition-delay: 450ms;
    transition-delay: 450ms;
  }
  .header-page .m-mobilenav .mbnav-item:nth-child(6) > a {
    -moz-transition-delay: 500ms;
    transition-delay: 500ms;
  }
  .header-page .m-mobilenav .mbnav-item:nth-child(7) > a {
    -moz-transition-delay: 550ms;
    transition-delay: 550ms;
  }
  .header-page .m-mobilenav .mbsbnav-list {
    padding: 10px 0;
    display: none;
  }
  .header-page .m-mobilenav .mbsbnav-item {
    position: relative;
    padding-left: 20px;
    padding-right: 5px;
    list-style: none;
  }
  .header-page .m-mobilenav .mbsbnav-item i {
    left: 0;
    top: 6px;
    line-height: 24px;
  }
  .header-page .m-mobilenav .mbsbnav-item a {
    display: block;
    padding: 5px 5px;
    line-height: 24px;
    font-size: 14px;
    color: #fff;
  }
  .header-page .m-mobilenav .mbsbnav-item a.active {
    color: #529dba;
  }
  .header-page .box-form-tj {
    position: absolute;
    font-size: 20px !important;
    right: 5px;
    top: 8px;
    color: #043f71;
  }
}

@media screen and (max-width: 1080px) {
  .header-page .header {
    height: 60px;
  }
  .header-page .header .head-right {
    -moz-box-pack: right;
         justify-content: right;
  }
  .header-page .header .nav {
    display: none;
  }
  .header-page .header .btm {
    display: block !important;
  }
}
.all-hidden {
  overflow: hidden;
}

.animate-translateY100 {
  opacity: 0;
  -moz-transform: translateY(100%);
   -ms-transform: translateY(100%);
       transform: translateY(100%);
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.animate-translateY100-active {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}

.all-banner {
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);
}
@-moz-keyframes img-scote {
  0% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
@keyframes img-scote {
  0% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
.all-banner .bg {
  -o-object-position: right;
     object-position: right;
  min-height: 300px;
  -moz-animation: img-scote 4s;
       animation: img-scote 4s;
  -o-object-fit: cover;
     object-fit: cover;
}
.all-banner .swiper-slide-active h1,
.all-banner .swiper-slide-active p {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
.all-banner .all-banner-content {
  position: absolute;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}
.all-banner .all-banner-content h1 {
  font-size: var(--font-size-54);
  -moz-transition-delay: 0.3s;
       transition-delay: 0.3s;
  text-align: left;
  font-weight: normal;
}
.all-banner .all-banner-content p {
  width: 60%;
  font-size: var(--font-size-18);
}
.all-banner .all-banner-content ul {
  margin-top: 0.3rem;
}
.all-banner .all-banner-content ul li {
  font-size: var(--font-size-28);
  padding-left: 0.14rem;
  position: relative;
  max-width: 40%;
}
.all-banner .all-banner-content ul li::after {
  content: "";
  position: absolute;
  background-color: #222;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 0;
  top: max(0.14rem, 10px);
}
.all-banner .all-banner-content .timeBox {
  margin-top: 0.3rem;
  color: #666;
}
.all-banner .all-banner-content .timeBox i {
  color: var(--primary-color);
  margin-right: 0.1rem;
}
@media screen and (max-width: 668px) {
  .all-banner .all-banner-content {
    -moz-transform: translate(-50%, 0%);
     -ms-transform: translate(-50%, 0%);
         transform: translate(-50%, 0%);
    top: 20%;
  }
  .all-banner .all-banner-content ul li {
    max-width: 100%;
  }
}

.all-banner-top {
  height: var(--header-height);
}

.all-mengceng {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.3), transparent);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  pointer-events: none; /* 避免遮挡鼠标事件 */
}

.all-cta {
  margin-bottom: 1.16rem;
  border: 1px solid #eee;
  border-radius: var(--all-border-radius);
  position: relative;
  overflow: hidden;
}
.all-cta .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.all-cta .module1 {
  padding: 0.5rem 0.7rem 0.42rem 0.7rem;
  z-index: 2;
  position: relative;
}
.all-cta .module1 h2 {
  font-size: var(--font-size-52);
  color: white;
}
.all-cta .module1 p {
  color: white;
  margin-top: 0.12rem;
  font-size: var(--font-size-22);
}
.all-cta .module1 .btm {
  margin-top: 0.3rem;
}
@media screen and (max-width: 768px) {
  .all-cta .module1 {
    padding: 0.5rem 0.24rem 0.42rem 0.24rem;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  background-color: #f3f3f3;
  padding-top: 0.76rem;
  padding-bottom: 0.64rem;
}
.footer .content .module1 {
  -moz-box-pack: justify;
       justify-content: space-between;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(216, 216, 216, 0.21);
}
.footer .content .module1 .module1-left {
  width: 20%;
  flex-shrink: 0;
}
.footer .content .module1 .module1-left .img-box {
  text-align: left;
}
.footer .content .module1 .module1-left .img-box img {
  width: auto;
  max-width: max(1.64rem, 120px);
}
.footer .content .module1 .module1-left .list {
  margin-top: 0.4rem;
}
.footer .content .module1 .module1-left .list .item {
  padding: 0.22rem 0 0.28rem 0;
  border-bottom: 1px solid rgba(216, 216, 216, 0.21);
}
.footer .content .module1 .module1-left .list .item .name {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-18);
}
.footer .content .module1 .module1-left .list .item i {
  color: #222222;
  font-size: var(--font-size-26);
  flex-shrink: 0;
}
.footer .content .module1 .module1-left .list .item p {
  font-size: var(--font-size-18);
  margin-left: 0.16rem;
  word-wrap: break-word; /* 允许长单词换行 */
  color: #222;
  text-align: left;
}
.footer .content .module1 .module1-left .list .item .phone {
  font-size: var(--font-size-18);
}
.footer .content .module1 .module1-left .list .item:nth-last-child(1) {
  border-bottom-color: transparent;
}
.footer .content .module1 .module1-right {
  margin-left: 1.18rem;
  width: 80%;
}
.footer .content .module1 .module1-right .list .item {
  border-right: 1px solid rgba(216, 216, 216, 0.1);
  width: 25%;
  padding-right: 0.4rem;
}
.footer .content .module1 .module1-right .list .item h3 {
  font-size: var(--font-size-22);
  padding-bottom: 0.1rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #222;
  font-weight: 400;
}
.footer .content .module1 .module1-right .list .item h3 a {
  font-size: var(--font-size-22);
  color: #222;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.footer .content .module1 .module1-right .list .item h3 a::after {
  content: "";
  position: absolute;
  left: inherit;
  left: 0%;
  bottom: 0;
  width: 30%;
  height: 2px;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.footer .content .module1 .module1-right .list .item h3 a:hover {
  color: var(--primary-color);
}
.footer .content .module1 .module1-right .list .item h3 a:hover::after {
  width: 100%;
  left: 0%;
}
.footer .content .module1 .module1-right .list .item .item-textBox {
  margin-top: 0.26rem;
}
.footer .content .module1 .module1-right .list .item .item-textBox p {
  margin-bottom: 0.2rem;
  color: rgba(34, 34, 34, 0.51);
}
.footer .content .module1 .module1-right .list .item .item-textBox p a {
  font-size: var(--font-size-18);
  color: rgba(34, 34, 34, 0.51);
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
.footer .content .module1 .module1-right .list .item .item-textBox p a::after {
  content: "";
  position: absolute;
  left: inherit;
  right: 0%;
  bottom: 0;
  width: 0%;
  height: 1px;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--primary-color);
}
.footer .content .module1 .module1-right .list .item .item-textBox p a:hover {
  color: var(--primary-color);
}
.footer .content .module1 .module1-right .list .item .item-textBox p a:hover::after {
  width: 100%;
  left: 0%;
}
.footer .content .module1 .module1-right .list .item:nth-last-child(1) {
  padding-right: 0;
  border-color: transparent;
}
.footer .content .module2 {
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  margin-top: 0.88rem;
  -webkit-column-gap: 0.4rem;
     -moz-column-gap: 0.4rem;
          column-gap: 0.4rem;
  row-gap: 0.2rem;
}
.footer .content .module2 .module2-left {
  flex-wrap: wrap;
}
.footer .content .module2 .module2-left p {
  color: rgba(34, 34, 34, 0.27);
  margin-right: 0.16rem;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: var(--font-size-14);
  font-size: var(--font-size-18);
}
.footer .content .module2 .module2-right {
  flex-wrap: wrap;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
.footer .content .module2 .module2-right p {
  color: rgba(34, 34, 34, 0.27);
  font-size: var(--font-size-18);
}
.footer .content .module2 .module2-right .contact .item {
  width: max(0.32rem, 28px);
  height: max(0.32rem, 28px);
  border-radius: 50%;
  margin-right: 8px;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid white;
}
.footer .content .module2 .module2-right .contact .item i {
  font-size: var(--font-size-16);
  color: rgba(34, 34, 34, 0.27);
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.footer .content .module2 .module2-right .contact .item:hover {
  border-color: var(--primary-color);
}
.footer .content .module2 .module2-right .contact .item:hover i {
  color: var(--primary-color);
}
@media screen and (max-width: 880px) {
  .footer .content .module1 {
    flex-wrap: wrap;
  }
  .footer .content .module1 .module1-left {
    width: 100%;
    text-align: center;
  }
  .footer .content .module1 .module1-right {
    margin-left: 0;
    width: 100%;
    margin-top: 20px;
  }
}

.footer-page {
  background-color: #f5f7f8;
}
.footer-page .popupBox2 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.footer-page .popupBox2 .popupBox2-content {
  background-color: white;
  box-shadow: 0px 3px 87px 0px rgba(0, 0, 0, 0.09);
  padding: 0.4rem 0.7rem;
  width: 50%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}
.footer-page .popupBox2 .popupBox2-content .popClose {
  position: absolute;
  right: -10px;
  top: -10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  width: max(0.4rem, 40px);
  height: max(0.4rem, 40px);
  font-size: var(--font-size-40);
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.footer-page .popupBox2 .popupBox2-content .title {
  font-size: var(--font-size-30);
  font-family: "WixMadeforDisplay-Bold";
  color: #333333;
  margin-bottom: 0.5rem;
}
.footer-page .popupBox2 .popupBox2-content .content {
  font-size: 0.2rem;
  color: #333333;
  text-align: center;
  margin-bottom: 0.5rem;
}
.footer-page .popupBox2 .popupBox2-content h2 {
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 768px) {
  .footer-page .popupBox2 .popupBox2-content {
    width: 90%;
  }
  .footer-page .popupBox2 .popupBox2-content .btm-light {
    margin-top: 40px !important;
  }
}
.footer-page .popupBox2-on {
  display: block !important;
}
.footer-page .cookiebox2 {
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  z-index: 10;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.footer-page .cookiebox2 .cookiebox-content {
  background-color: #f6f6f6;
  box-shadow: 0px 3px 87px 0px rgba(0, 0, 0, 0.09);
  padding: 0.2rem 0;
  width: 100%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 999;
}
.footer-page .cookiebox2 .cookiebox-content .popClose {
  position: absolute;
  right: -10px;
  top: -10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  width: max(0.4rem, 40px);
  height: max(0.4rem, 40px);
  font-size: var(--font-size-40);
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.footer-page .cookiebox2 .cookiebox-content .logo {
  width: auto;
  max-height: max(0.44rem, 30px);
  margin-bottom: 0.1rem;
}
.footer-page .cookiebox2 .cookiebox-content h3 {
  font-size: var(--font-size-28);
  font-weight: bold;
  margin-bottom: 0.1rem;
}
.footer-page .cookiebox2 .cookiebox-content p {
  font-size: var(--font-size-18);
  color: black;
}
.footer-page .cookiebox2 .cookiebox-content p a {
  color: var(--primary-color);
}
.footer-page .cookiebox2 .cookiebox-content .btm-box {
  margin-top: 0.3rem;
  -moz-box-pack: right;
       justify-content: right;
}
.footer-page .cookiebox2 .cookiebox-content .btm-box .btm {
  background-color: var(--primary-color);
  color: white;
  padding: 0.14rem 0.14rem;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  margin-left: 0.1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer-page .cookiebox2 .cookiebox-content {
    display: block;
  }
  .footer-page .cookiebox2 .cookiebox-content p {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .footer-page .cookiebox2 .cookiebox-content .btm-box {
    width: 100%;
  }
}
.footer-page .cookiebox2-on {
  display: block;
}
@media screen and (max-width: 768px) {
  .footer-page .content {
    padding: 40px 0 0.35rem 0;
  }
  .footer-page .content .list {
    display: block;
  }
  .footer-page .content .list .item h3 {
    margin-bottom: 10px;
  }
  .footer-page .content .list .item .item-textBox {
    display: none;
  }
  .footer-page .content .line {
    margin: 20px 0;
  }
  .footer-page .content .contact {
    display: block;
  }
  .footer-page .content .contact .contact-left {
    display: block;
    text-align: center;
  }
  .footer-page .content .contact .contact-left p {
    color: #aeaeae;
    margin-right: 0;
  }
  .footer-page .content .contact .contact-right {
    width: 80%;
    -moz-box-pack: justify;
         justify-content: space-between;
    margin-top: 10px;
    margin: 20px auto;
  }
}

.contact-footer {
  position: fixed;
  width: auto;
  height: auto;
  right: -50px;
  bottom: 10%;
  z-index: 2;
  -moz-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}
.contact-footer .ul .close {
  position: relative;
  width: 40px;
  height: 40px;
  background: white;
}
.contact-footer .ul .close .jian {
  display: none;
}
.contact-footer .ul .li {
  width: 40px;
  height: 40px;
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  background-color: white;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.contact-footer .ul .li > a,
.contact-footer .ul .li > span {
  cursor: pointer;
  display: block;
  color: #fff;
  width: 100%;
  height: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  /* background: #A7AFB9; */
  -moz-transition: 0.5s;
  transition: 0.5s;
  box-shadow: 4px 6px 5px 1px rgba(213, 213, 213, 0.22);
}
.contact-footer .ul .li > a i,
.contact-footer .ul .li > span i {
  font-size: 20px;
  color: var(--primary-color);
}
.contact-footer .ul .li a:hover,
.contact-footer .ul .li span:hover {
  background: var(--primary-color);
}
.contact-footer .ul .li a:hover i,
.contact-footer .ul .li span:hover i {
  color: white;
}
.contact-footer .ul .li .ewm {
  position: absolute;
  left: 100px;
  top: 0px;
  z-index: -1;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.contact-footer .ul .li .ewm span {
  color: white;
  height: 40px;
  display: block;
  background: var(--primary-color);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.1rem;
  border-radius: 0.05rem;
}
.contact-footer .ul .li .ewm img {
  width: 100px;
  min-width: 100px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: 100px;
  max-height: 100px;
}
.contact-footer .ul .li:hover .ewm {
  left: -140px;
}
.contact-footer .ul .li:hover i {
  color: white;
}
.contact-footer .active .li {
  height: 0;
  overflow: hidden;
}
.contact-footer .active .close {
  height: 40px;
}
.contact-footer .active .close .jia {
  display: none;
}
.contact-footer .active .close .jian {
  display: block;
}

.all-form .inp-box {
  margin-bottom: max(0.14rem, 10px);
  position: relative;
}
.all-form .inp-box label {
  font-size: var(--font-size-18);
  color: #000000;
}
.all-form .inp-box input {
  padding: 0.17rem 0.13rem;
  font-size: var(--font-size-18);
  width: 100%;
  border-radius: max(0.1rem, 8px);
  overflow: hidden;
  border: 1px solid #dedede;
}
.all-form .inp-box textarea {
  padding: 0.12rem 0.13rem;
  font-size: var(--font-size-18);
  width: 100%;
  min-height: 80px;
  border-radius: max(0.1rem, 8px);
  overflow: hidden;
  border: 1px solid #dedede;
}
.all-form .inp-box .tip {
  position: absolute;
  left: 0;
  top: 100%;
  color: #ff4d4f;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.all-form .inp-box-active {
  border-color: red !important;
}
.all-form .inp-box-active .tip {
  top: -moz-calc(100% + 6px) !important;
  top: calc(100% + 6px) !important;
  opacity: 1 !important;
}
.all-form .inp-box-active input,
.all-form .inp-box-active textarea {
  border-color: red;
}
.all-form .privacy {
  -moz-box-align: self-start;
       align-items: self-start;
  margin-top: 10px;
  position: relative;
}
.all-form .privacy input {
  margin-right: 0.1rem;
  margin-top: 0.06rem;
}
.all-form .privacy .tip {
  position: absolute;
  left: 0;
  top: 100%;
  color: #ff4d4f;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.all-form .privacy a {
  color: var(--primary-color);
  cursor: pointer;
}
.all-form button {
  margin-top: 40px;
  color: white;
  background-color: var(--primary-color);
  border-radius: var(--all-border-radius);
  padding: 0.1rem 0.1rem 0.1rem 0.18rem;
}
.all-form button .name {
  font-size: var(--font-size-18);
}
.all-form button .i-box {
  width: max(0.22rem, 18px);
  height: max(0.22rem, 18px);
}
.all-form button .i-box i {
  font-size: var(--font-size-16);
}

.all-form2 .inp-box .box {
  width: 49%;
  position: relative;
}
.all-form2 .inp-box .box2 {
  width: 100%;
}
.all-form2 .inp-box .box2 textarea {
  width: 100%;
  height: max(1.4rem, 100px);
}
.all-form2 .inp-box .box2 input {
  width: 100%;
}
.all-alert {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  z-index: 999;
  pointer-events: none;
  display: none;
}
.all-alert .content {
  max-width: 300px;
  border-radius: 0.1rem;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  color: white;
  padding: 0.2rem 0.2rem;
  font-size: 16px;
}

.alert-on {
  display: block;
}

.all-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  z-index: 999;
  display: none;
}
@-moz-keyframes turn {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
@keyframes turn {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}
.all-loading .content {
  max-width: 200px;
  border-radius: 0.1rem;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  padding: 0.2rem 0.2rem;
  text-align: center;
}
.all-loading .content img {
  width: 20px;
  -moz-animation: turn 3s linear infinite;
       animation: turn 3s linear infinite;
}
.all-loading .content .loading-text {
  color: white;
  font-size: 16px;
}

.loading-on {
  display: block;
}

.videoShow {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 110;
  top: 0;
  left: 0;
  display: none;
}
.videoShow .videoClose {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}
.videoShow .video-content {
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  width: 60%;
  height: 70%;
}
.videoShow .video-content iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .videoShow .video-content {
    width: 90%;
    height: 40%;
    min-height: 300px;
  }
}

.scroll-y {
  overflow-y: auto;
}

.scroll-y::-webkit-scrollbar {
  width: 2px; /* 对于垂直滚动条 */
}

.scroll-y::-webkit-scrollbar-thumb {
  background-color: var(--primary-color); /* 设置滚动条滑块的颜色 */
  border-radius: 5px; /* 设置滚动条滑块的圆角 */
}

.scroll-y::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color); /* 设置滚动条滑块在悬停时的颜色 */
}

.scroll-y::-webkit-scrollbar-track {
  background-color: #e7e7e7; /* 设置滚动条背景的颜色 */
}

.scroll-x {
  overflow-x: auto;
}

.scroll-x::-webkit-scrollbar {
  height: 4px;
}

.scroll-x::-webkit-scrollbar-thumb {
  background-color: var(--primary-color); /* 设置滚动条滑块的颜色 */
  border-radius: 5px; /* 设置滚动条滑块的圆角 */
}

.scroll-x::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color); /* 设置滚动条滑块在悬停时的颜色 */
}

.scroll-x::-webkit-scrollbar-track {
  background-color: #fceddf; /* 设置滚动条背景的颜色 */
}

.btm-light {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btm-light:before {
  content: "";
  position: absolute;
  top: 0px;
  width: 25px;
  left: -45px;
  height: 100%;
  opacity: 0.5;
  background-color: #fff;
  -moz-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  -moz-transform: skewX(-25deg);
   -ms-transform: skewX(-25deg);
       transform: skewX(-25deg);
}

.btm-light:hover:before {
  left: 120%;
}

.btm-gradient {
  position: relative;
  -moz-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}
.btm-gradient > div {
  position: relative;
  z-index: 2;
  -moz-transition: 0.8s;
  transition: 0.8s;
}
.btm-gradient > div .i-box {
  -moz-transition: 0.8s;
  transition: 0.8s;
}
.btm-gradient > div .i-box i {
  -moz-transition: 0.8s;
  transition: 0.8s;
}

.btm-gradient::before {
  content: "";
  background-color: var(--primary-color);
  width: 0%;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.btm-gradient:hover {
  color: white !important;
}
.btm-gradient:hover > div {
  color: white !important;
}
.btm-gradient:hover i {
  color: white !important;
}

.btm-gradient:hover::before {
  width: 100%;
}

.btm-gradientTop {
  position: relative;
  -moz-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}
.btm-gradientTop > div {
  position: relative;
  z-index: 2;
  -moz-transition: 0.8s;
  transition: 0.8s;
}

.btm-gradientTop::before {
  content: "";
  background-color: var(--primary-color);
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  position: absolute;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.btm-gradientTop:hover {
  color: white !important;
}
.btm-gradientTop:hover > div {
  color: white !important;
}
.btm-gradientTop:hover i {
  color: white !important;
}

.btm-gradientTop:hover::before {
  height: 100%;
}

.btm-gradientContent {
  position: relative;
  -moz-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  -moz-transition: all 0.25s ease-in-out, border-color 0.9s ease-in-out;
  transition: all 0.25s ease-in-out, border-color 0.9s ease-in-out;
}
.btm-gradientContent > div {
  position: relative;
  z-index: 2;
  -moz-transition: 0.8s;
  transition: 0.8s;
}

.btm-gradientContent::before {
  content: "";
  background-color: var(--primary-color);
  width: 0;
  height: 0;
  top: 0.25rem;
  left: 2rem;
  z-index: 0;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  position: absolute;
  -moz-transition: width 0.85s ease-in-out, height 0.85s ease-in-out, background-color 0.2s ease-out;
  transition: width 0.85s ease-in-out, height 0.85s ease-in-out, background-color 0.2s ease-out;
  border-radius: 50%;
}

.btm-gradientContent:hover {
  color: white !important;
}
.btm-gradientContent:hover > div {
  color: white !important;
}
.btm-gradientContent:hover i {
  color: white !important;
}

.btm-gradientContent:hover::before {
  width: 500px;
  height: 500px;
}

.crumbs-page {
  padding: 0.15rem 0;
}
.crumbs-page .crumbs .flex-ali {
  flex-wrap: wrap;
  row-gap: 0.1rem;
}
.crumbs-page .crumbs i {
  margin-right: 0.1rem;
  color: var(--primary-color);
}
.crumbs-page .crumbs a {
  color: #666666;
  font-variant: var(--font-size-16);
}
.crumbs-page .crumbs a:hover {
  color: var(--primary-color);
}

.m-muban-pagebox {
  padding-top: 10px;
  padding-bottom: 10px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-wrap: wrap;
  margin: 0.16rem 0 0 0;
}
.m-muban-pagebox a,
.m-muban-pagebox p,
.m-muban-pagebox span {
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  display: -moz-box;
  display: flex;
  font-size: var(--font-size-24);
  color: #999899;
  margin-right: 0.16rem;
  position: relative;
  padding: 0 0.1rem 0.1rem 0.1rem;
  -moz-transition: 0.6s;
  transition: 0.6s;
  height: max(0.38rem, 28px);
}
.m-muban-pagebox a::after,
.m-muban-pagebox p::after,
.m-muban-pagebox span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  opacity: 0;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.m-muban-pagebox a:hover {
  color: #222;
}
.m-muban-pagebox a:hover::after {
  opacity: 1;
}
.m-muban-pagebox .active {
  color: #222;
}
.m-muban-pagebox .active::after {
  opacity: 1;
}
.m-muban-pagebox .m-muban-prev,
.m-muban-pagebox .m-muban-next {
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  display: -moz-box;
  display: flex;
  color: #222;
}
.m-muban-pagebox .m-muban-prev i,
.m-muban-pagebox .m-muban-next i {
  font-size: var(--font-size-16);
  margin-top: 6px;
}

@media screen and (max-width: 999px) {
  .m-muban-pagebox a,
  .m-muban-pagebox p,
  .m-muban-pagebox span,
  .m-muban-prev,
  .m-muban-next {
    width: max(0.3rem, 30px) !important;
    height: max(0.3rem, 30px) !important;
  }
  .m-muban-pagebox {
    -moz-box-pack: center;
         justify-content: center;
  }
}
.c-white {
  color: white;
}

.page-top {
  padding-top: var(--header-height);
}

.img-box {
  overflow: hidden;
  font-size: 0;
}

.all-btm {
  padding: 0.13rem 0.2rem 0.13rem 0.3rem;
  color: #222222;
  border-radius: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  background-color: var(--primary-color);
}
.all-btm .name {
  color: white;
  font-size: var(--font-size-20);
}
.all-btm .i-box {
  margin-left: 0.24rem;
  width: max(0.38rem, 28px);
  height: max(0.38rem, 28px);
  background-color: white;
  border-radius: 50%;
  flex-shrink: 0;
}
.all-btm .i-box i {
  color: var(--primary-color);
}

.all-btm2 {
  padding: 0.13rem 0.2rem 0.13rem 0.3rem;
  color: #222222;
  border-radius: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  border: 1px solid #cacaca;
}
.all-btm2 .name {
  font-size: var(--font-size-20);
}
.all-btm2 .i-box {
  margin-left: 0.24rem;
  width: max(0.38rem, 28px);
  height: max(0.38rem, 28px);
  background-color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}
.all-btm2 .i-box i {
  color: white;
}
.all-btm2:hover .i-box {
  background-color: white;
}
.all-btm2:hover .i-box i {
  color: var(--primary-color) !important;
}

@-moz-keyframes swing {
  20% {
    -moz-transform: rotate3d(0, 0, 1, 15deg);
         transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -moz-transform: rotate3d(0, 0, 1, -10deg);
         transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -moz-transform: rotate3d(0, 0, 1, 5deg);
         transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -moz-transform: rotate3d(0, 0, 1, -5deg);
         transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -moz-transform: rotate3d(0, 0, 1, 0deg);
         transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -moz-transform: rotate3d(0, 0, 1, 15deg);
         transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -moz-transform: rotate3d(0, 0, 1, -10deg);
         transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -moz-transform: rotate3d(0, 0, 1, 5deg);
         transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -moz-transform: rotate3d(0, 0, 1, -5deg);
         transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -moz-transform: rotate3d(0, 0, 1, 0deg);
         transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -moz-transform-origin: top center;
   -ms-transform-origin: top center;
       transform-origin: top center;
  -moz-animation-name: swing;
       animation-name: swing;
}

.page-top {
  margin-top: var(--header-height);
}

.scrollbar {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; /* 鼠标指针样式 */
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-color);
}

.page .index-s1 {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  overflow: hidden;
  margin-top: var(--header-height);
}
@keyframes img-scote {
  0% {
    -moz-transform: scale(1.1);
         transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
.page .index-s1 .swiperbanner-index {
  position: relative;
}
.page .index-s1 .swiperbanner-index .swiper-slide {
  overflow: hidden;
  position: relative;
}
.page .index-s1 .swiperbanner-index .swiper-slide img {
  width: 100%;
  min-height: 300px;
  -moz-animation: img-scote 4s;
       animation: img-scote 4s;
}
.page .index-s1 .swiperbanner-index .swiper-slide .s1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}
.page .index-s1 .swiperbanner-index .swiper-slide .s1-content h1 {
  -moz-transition-delay: 0.3s;
       transition-delay: 0.3s;
  font-weight: normal;
}
.page .index-s1 .swiperbanner-index .swiper-slide .s1-content .p-list {
  margin-top: 0.18rem;
  -moz-transition-delay: 0.6s;
       transition-delay: 0.6s;
  position: relative;
}
.page .index-s1 .swiperbanner-index .swiper-slide .s1-content .p-list p {
  font-size: var(--font-size-28);
  position: relative;
  padding-left: 0.2rem;
  color: #222;
}
.page .index-s1 .swiperbanner-index .swiper-slide .s1-content .p-list p::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.22rem, 16px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #222;
}
.page .index-s1 .swiperbanner-index .swiper-slide .s1-content .btm-box {
  margin-top: 0.4rem;
}
.page .index-s1 .swiperbanner-index .swiper-slide .s1-content .btm-box .btm {
  background-color: var(--primary-color);
  -moz-transition-delay: 0.9s;
       transition-delay: 0.9s;
}
.page .index-s1 .swiperbanner-index .swiper-slide-active h1,
.page .index-s1 .swiperbanner-index .swiper-slide-active .p-list,
.page .index-s1 .swiperbanner-index .swiper-slide-active .btm {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}
.page .index-s1 .swiperbanner-index .paginationBox {
  left: 50%;
  bottom: 1.16rem;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  position: absolute;
  z-index: 2;
}
.page .index-s1 .swiperbanner-index .swiper-pagination {
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page .index-s1 .swiperbanner-index .swiper-pagination-bullet {
  width: 16px;
  height: 4px;
  border-radius: 0px;
  margin-left: 2px;
  margin-right: 4px;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background-color: #a5cbe8;
  opacity: 1;
}
.page .index-s1 .swiperbanner-index .swiper-pagination-bullet-active {
  width: 0.96rem;
  background-color: var(--primary-color);
}
.page .index-s2 {
  padding-top: 0.84rem;
  padding-bottom: 0.44rem;
}
.page .index-s2 .content h2 {
  text-align: center;
}
.page .index-s2 .content .title {
  margin: 0.12rem auto 0 auto;
  font-size: var(--font-size-22);
  text-align: center;
  width: 86%;
}
.page .index-s2 .content .module1 {
  margin-top: 0.3rem;
}
.page .index-s2 .content .module1 .scroll-x {
  overflow: auto;
  -ms-overflow-style: none; /* IE、Edge */
  scrollbar-width: none; /* Firefox */
}
.page .index-s2 .content .module1 .scroll-x::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.page .index-s2 .content .module1 .tabList {
  min-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.page .index-s2 .content .module1 .tabList .item {
  margin-right: 0.1rem;
  font-size: var(--font-size-24);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  padding: max(0.11rem, 8px) 0.37rem;
  border-radius: 0.8rem;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .index-s2 .content .module1 .tabList .item.item-active {
  color: white;
}
.page .index-s2 .content .module1 .tabList .item:nth-last-child(1) {
  margin-right: 0;
}
.page .index-s2 .content .module1 .tabList .line {
  background-color: var(--primary-color);
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  border-radius: 1rem;
}
.page .index-s2 .content .module2 {
  margin-top: 0.42rem;
}
.page .index-s2 .content .module2 .swiperBox {
  display: none;
}
.page .index-s2 .content .module2 .swiperBox-active {
  display: block;
}
.page .index-s2 .content .module2 .swiper {
  padding-right: 1px;
}
.page .index-s2 .content .module2 .item {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  overflow: hidden;
  position: relative;
  display: block;
  -moz-transition: 0.5s;
  transition: 0.5s;
  height: 100%;
}
.page .index-s2 .content .module2 .item .img-box {
  background-color: #f8f8f8;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.2rem 0;
}
.page .index-s2 .content .module2 .item .img-box img {
  width: 74%;
}
.page .index-s2 .content .module2 .item .item-bot {
  padding: 0.36rem 0.28rem;
  background-color: white;
}
.page .index-s2 .content .module2 .item .item-bot h3 {
  font-size: var(--font-size-24);
}
.page .index-s2 .content .module2 .item .item-bot p {
  margin-top: 0.12rem;
  font-size: var(--font-size-20);
}
.page .index-s2 .content .module2 .item::after {
  content: "";
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%);
   -ms-transform: translate(-50%);
       transform: translate(-50%);
  bottom: 0px;
  width: 0;
  height: 2px;
  -moz-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--primary-color);
}
.page .index-s2 .content .module2 .item:hover {
  border-color: var(--primary-color);
}
.page .index-s2 .content .module2 .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
.page .index-s2 .content .module2 .item:hover::after {
  width: 80%;
}
.page .index-s2 .content .swiper-pagination {
  margin-top: 0.1rem;
  position: unset;
}
.page .index-s2 .content .swiper-pagination .swiper-pagination-bullet {
  width: max(0.14rem, 10px);
  height: max(0.14rem, 10px);
  border-radius: 50%;
}
@media screen and (max-width: 668px) {
  .page .index-s2 .content .title {
    width: 100%;
  }
  .page .index-s2 .content .swiper-button-prev {
    left: 0.05rem;
  }
  .page .index-s2 .content .swiper-button-next {
    right: 0.05rem;
  }
  .page .index-s2 .content .swiper-button-prev .i-box,
  .page .index-s2 .content .swiper-button-next .i-box {
    width: 34px;
    height: 34px;
  }
  .page .index-s2 .content .swiper-button-prev .i-box i,
  .page .index-s2 .content .swiper-button-next .i-box i {
    font-size: var(--font-size-18);
  }
}
.page .index-s3 {
  padding-top: 0.84rem;
  padding-bottom: 0.64rem;
}
.page .index-s3 .content h2 {
  text-align: center;
}
.page .index-s3 .content .title {
  margin: 0.12rem auto 0 auto;
  font-size: var(--font-size-22);
  text-align: center;
  width: 86%;
}
.page .index-s3 .content .module1 {
  margin-top: 0.4rem;
  padding: 0.32rem 0.28rem 0.32rem 6px;
  border-radius: var(--all-border-radius);
  background-color: #f8f8f8;
  overflow: hidden;
}
.page .index-s3 .content .module1 .module1-left {
  flex-shrink: 0;
  -moz-box-flex: 1;
       flex: 1;
  padding-top: 0.4rem;
}
.page .index-s3 .content .module1 .module1-left .scroll-x {
  overflow: hidden;
}
.page .index-s3 .content .module1 .module1-left .tabList {
  position: relative;
}
.page .index-s3 .content .module1 .module1-left .tabList .line {
  position: absolute;
  background-color: white;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 0;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .index-s3 .content .module1 .module1-left .tabList .item {
  padding: 0.18rem 0.18rem 0.18rem 0.44rem;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.page .index-s3 .content .module1 .module1-left .tabList .item .img-box img {
  width: auto;
  max-width: max(0.34rem, 28px);
}
.page .index-s3 .content .module1 .module1-left .tabList .item .img-box img:nth-child(2) {
  display: none;
}
.page .index-s3 .content .module1 .module1-left .tabList .item h3 {
  margin-left: 0.32rem;
  font-size: var(--font-size-24);
}
.page .index-s3 .content .module1 .module1-left .tabList .item::after {
  content: "";
  position: absolute;
  top: 56%;
  left: 0;
  width: 2px;
  height: 0%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  background-color: var(--primary-color);
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .index-s3 .content .module1 .module1-left .tabList .item.item-active {
  border-color: transparent;
}
.page .index-s3 .content .module1 .module1-left .tabList .item.item-active .img-box img:nth-child(1) {
  display: none;
}
.page .index-s3 .content .module1 .module1-left .tabList .item.item-active .img-box img:nth-child(2) {
  display: block;
}
.page .index-s3 .content .module1 .module1-left .tabList .item.item-active h3 {
  color: var(--primary-color);
}
.page .index-s3 .content .module1 .module1-left .tabList .item.item-active::after {
  height: 50%;
}
.page .index-s3 .content .module1 .module1-left .btm {
  margin-top: 0.36rem;
  margin-left: 0.44rem;
  margin-right: 0.3rem;
}
.page .index-s3 .content .module1 .module1-right {
  width: 67%;
}
.page .index-s3 .content .module1 .module1-right .list {
  display: grid;
  position: relative;
}
.page .index-s3 .content .module1 .module1-right .list .item {
  grid-area: 1/1;
  opacity: 0;
  -moz-transition: 2s;
  transition: 2s;
  -webkit-clip-path: inset(0 100% 0 100%);
          clip-path: inset(0 100% 0 100%);
  position: relative;
  z-index: 1;
  background-color: #f8f8f8;
}
.page .index-s3 .content .module1 .module1-right .list .item .img-box {
  border-radius: var(--all-border-radius);
}
.page .index-s3 .content .module1 .module1-right .list .item p {
  margin-top: 0.38rem;
  color: #222;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-20);
  padding-left: 0.2rem;
  position: relative;
}
.page .index-s3 .content .module1 .module1-right .list .item p::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.12rem, 6px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.page .index-s3 .content .module1 .module1-right .list .item-active {
  opacity: 1;
  -moz-transform: translate(0, 0);
   -ms-transform: translate(0, 0);
       transform: translate(0, 0);
  -webkit-clip-path: inset(0 0 0 0%);
          clip-path: inset(0 0 0 0%);
  z-index: 2;
}
@media screen and (max-width: 880px) {
  .page .index-s3 .content .module1 {
    flex-wrap: wrap;
  }
  .page .index-s3 .content .module1 .module1-left {
    width: 100%;
  }
  .page .index-s3 .content .module1 .module1-right {
    width: 100%;
    margin-top: 20px;
  }
  .page .index-s3 .content .module1 .module1-right .list .item {
    -moz-transition: 1.2s;
    transition: 1.2s;
  }
}
@media screen and (max-width: 668px) {
  .page .index-s3 .content .title {
    width: 100%;
  }
}
.page .index-s4 {
  padding-top: 0.84rem;
  padding-bottom: 1.36rem;
  background-color: #ffffff;
  box-shadow: 0 4px 65.7px 0 rgba(204, 204, 204, 0.25);
  background-image: url("../images/indexS4-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.page .index-s4 .content h2 {
  text-align: center;
}
.page .index-s4 .content .title {
  margin: 0.12rem auto 0 auto;
  font-size: var(--font-size-22);
  text-align: center;
  width: 86%;
}
.page .index-s4 .content .module1 {
  margin-top: 0.6rem;
}
.page .index-s4 .content .module1 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.2rem;
}
.page .index-s4 .content .module1 .list .item {
  background: #fff;
  box-shadow: 0 4px 31.8px 0 rgba(145, 145, 145, 0.25);
  border-radius: var(--all-border-radius);
  padding: 0.62rem 0.2rem 0.4rem 0.2rem;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-transition: 0.6s;
  transition: 0.6s;
  border: 1px solid transparent;
}
.page .index-s4 .content .module1 .list .item .item-head h3 {
  font-size: var(--font-size-26);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .index-s4 .content .module1 .list .item .item-head p {
  margin-top: 0.18rem;
  font-size: var(--font-size-22);
  color: #222;
}
.page .index-s4 .content .module1 .list .item .item-head p strong {
  color: var(--primary-color);
  font-weight: normal;
}
.page .index-s4 .content .module1 .list .item .img-box {
  border-radius: var(--all-border-radius);
  margin-top: 0.38rem;
}
.page .index-s4 .content .module1 .list .item:hover {
  border-color: var(--primary-color);
  box-shadow: none;
}
.page .index-s4 .content .module1 .list .item:hover h3 {
  color: var(--primary-color);
}
.page .index-s4 .content .module1 .list .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
@media screen and (max-width: 880px) {
  .page .index-s4 .content .module1 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 668px) {
  .page .index-s4 .content .title {
    width: 100%;
  }
}
.page .index-s5 {
  padding-top: 0.76rem;
  padding-bottom: 0.6rem;
}
.page .index-s5 .content {
  overflow: hidden;
}
.page .index-s5 .content h2 {
  text-align: center;
}
.page .index-s5 .content .title {
  margin: 0.12rem auto 0 auto;
  font-size: var(--font-size-22);
  text-align: center;
  width: 86%;
}
.page .index-s5 .content .module1 {
  margin-top: 0.36rem;
  row-gap: 0.2rem;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}
.page .index-s5 .content .module1 .module1-left {
  width: 62.125%;
}
.page .index-s5 .content .module1 .module1-left .img-box {
  border-radius: var(--all-border-radius);
}
.page .index-s5 .content .module1 .module1-left .img-box img:hover {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
.page .index-s5 .content .module1 .module1-right {
  -moz-box-flex: 1;
       flex: 1;
  flex-shrink: 0;
  padding: 0.2rem 0;
}
.page .index-s5 .content .module1 .module1-right h3 {
  font-size: var(--font-size-30);
}
.page .index-s5 .content .module1 .module1-right p {
  margin-top: 0.2rem;
}
.page .index-s5 .content .module1 .module1-right p strong {
  color: var(--primary-color);
}
.page .index-s5 .content .module1 .module1-right .btm {
  margin-top: 0.76rem;
  padding: 0.12rem 0.2rem 0.12rem 0.3rem;
}
.page .index-s5 .content .module2 {
  margin-top: 0.6rem;
}
.page .index-s5 .content .module2 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 0.1rem;
     -moz-column-gap: 0.1rem;
          column-gap: 0.1rem;
  row-gap: 0.4rem;
}
.page .index-s5 .content .module2 .list .item {
  -webkit-column-gap: 0.26rem;
     -moz-column-gap: 0.26rem;
          column-gap: 0.26rem;
  row-gap: 0.2rem;
  position: relative;
  -moz-box-pack: center;
       justify-content: center;
}
.page .index-s5 .content .module2 .list .item .img-box {
  width: max(0.46rem, 30px);
  height: max(0.46rem, 30px);
  border-radius: 50%;
  -moz-transition: 0.6s;
  transition: 0.6s;
  background-color: #666666;
}
.page .index-s5 .content .module2 .list .item .img-box img {
  width: 60%;
}
.page .index-s5 .content .module2 .list .item .item-bot h3 {
  font-size: var(--font-size-52);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .index-s5 .content .module2 .list .item .item-bot h3 sub {
  font-size: var(--font-size-20);
}
.page .index-s5 .content .module2 .list .item .item-bot p {
  margin-top: 0.16rem;
  font-size: var(--font-size-18);
}
.page .index-s5 .content .module2 .list .item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-color: #e2e2e2;
  width: 1px;
  height: 100%;
}
.page .index-s5 .content .module2 .list .item:nth-last-child(1)::after {
  background-color: transparent;
}
.page .index-s5 .content .module2 .list .item:hover .img-box {
  background-color: var(--primary-color);
}
.page .index-s5 .content .module2 .list .item:hover .item-bot h3 {
  color: var(--primary-color);
}
@media screen and (max-width: 980px) {
  .page .index-s5 .content .module1 {
    flex-wrap: wrap;
  }
  .page .index-s5 .content .module1 .module1-left {
    width: 100%;
  }
  .page .index-s5 .content .module1 .module1-right {
    width: 100%;
  }
}
@media screen and (max-width: 880px) {
  .page .index-s5 .content .module2 .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page .index-s5 .content .module2 .list .item {
    -moz-box-pack: left;
         justify-content: left;
  }
  .page .index-s5 .content .module2 .list .item:nth-child(2n) {
    padding-left: 0.2rem;
  }
  .page .index-s5 .content .module2 .list .item:nth-child(2n)::after {
    background-color: transparent;
  }
}
@media screen and (max-width: 668px) {
  .page .index-s5 .content .title {
    width: 100%;
  }
}
.page .index-s6 {
  padding-top: 0.6rem;
  padding-bottom: 0.62rem;
  background-color: #f8f8f8;
}
.page .index-s6 .content h2 {
  text-align: center;
}
.page .index-s6 .content .title {
  margin: 0.12rem auto 0 auto;
  font-size: var(--font-size-22);
  text-align: center;
  width: 86%;
}
.page .index-s6 .content .module1 .swiper {
  border-radius: var(--all-border-radius);
  overflow: hidden;
  padding: 0.4rem 0;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item {
  background: #fff;
  border-radius: var(--all-border-radius);
  overflow: hidden;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  display: block;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .img-box {
  height: 2.8rem;
  overflow: hidden;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -moz-transform 0.5s;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .img-box:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .content {
  padding: 0.35rem 0.3rem;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .content .date {
  font-size: var(--font-size-14);
  color: #999;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  margin-bottom: 0.15rem;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .content .date i {
  font-size: var(--font-size-14);
  margin-right: 0.08rem;
  line-height: 1;
  margin-top: 2px;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .content h3 {
  font-size: var(--font-size-22);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.1rem;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .content h3 a {
  color: #333;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .content p {
  font-size: var(--font-size-16);
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.24rem;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .content .check-more {
  font-size: var(--font-size-16);
  color: #999;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .content .check-more .i-box {
  width: max(0.24rem, 20px);
  height: max(0.24rem, 20px);
  background-color: var(--primary-color);
  margin-left: 0.1rem;
  -moz-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  opacity: 0;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item .content .check-more .i-box i {
  font-size: var(--font-size-14);
  color: white;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item:hover {
  -moz-transform: translateY(-5px);
   -ms-transform: translateY(-5px);
       transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--primary-color);
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item:hover h3 {
  color: var(--primary-color);
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item:hover .check-more {
  color: var(--primary-color);
  font-weight: bold;
}
.page .index-s6 .content .module1 .swiper .swiper-slide .news-item:hover .check-more .i-box {
  -moz-transform: translateX(5px);
   -ms-transform: translateX(5px);
       transform: translateX(5px);
  opacity: 1 !important;
}
.page .index-s6 .content .module1 .swiper .swiper-pagination {
  position: initial;
  margin-top: 0.4rem;
}
@media screen and (max-width: 668px) {
  .page .index-s6 .content .title {
    width: 100%;
  }
}

.page .products-s2 {
  padding-top: 0.6rem;
  padding-bottom: 1rem;
  background-image: url("../images/productsS2-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.page .products-s2 .content .title {
  margin-top: 0.16rem;
  font-size: var(--font-size-20);
}
.page .products-s2 .content .module1 {
  margin-top: 0.9rem;
}
.page .products-s2 .content .module1 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.4rem;
}
.page .products-s2 .content .module1 .list .item {
  border-radius: var(--all-border-radius);
  -moz-transition: 0.6s;
  transition: 0.6s;
  border: 1px solid #e0e0e0;
  background: #f8f8f8;
  box-shadow: 0 4px 31.8px 0 rgba(189, 189, 189, 0.24);
  padding: 0.62rem 0.2rem;
  transition: 0.6s;
}
.page .products-s2 .content .module1 .list .item .img-box img {
  width: max(0.38rem, 30px);
}
.page .products-s2 .content .module1 .list .item .img-box img:nth-child(2) {
  display: none;
}
.page .products-s2 .content .module1 .list .item h3 {
  margin-top: 0.36rem;
  font-size: var(--font-size-26);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s2 .content .module1 .list .item p {
  margin-top: 0.18rem;
  font-size: var(--font-size-22);
}
.page .products-s2 .content .module1 .list .item:hover {
  border-color: var(--primary-color);
  -moz-transform: translateY(-0.26rem);
   -ms-transform: translateY(-0.26rem);
       transform: translateY(-0.26rem);
}
.page .products-s2 .content .module1 .list .item:hover .img-box img:nth-child(1) {
  display: none;
}
.page .products-s2 .content .module1 .list .item:hover .img-box img:nth-child(2) {
  display: block;
}
.page .products-s2 .content .module1 .list .item:hover h3 {
  color: var(--primary-color);
}
@media screen and (max-width: 768px) {
  .page .products-s2 .content .module1 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page .products-s3 {
  padding-top: 0.7rem;
  padding-bottom: 0.92rem;
  background: #fff;
  box-shadow: 0 4px 65.7px 0 rgba(204, 204, 204, 0.16);
}
.page .products-s3 .content .title {
  margin: 0.12rem auto 0 auto;
  font-size: var(--font-size-22);
  text-align: center;
  width: 86%;
}
.page .products-s3 .content .swiper {
  margin-top: 0.6rem;
  padding-right: 1px;
}
.page .products-s3 .content .swiper .item {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  overflow: hidden;
  position: relative;
  display: block;
  height: 100%;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s3 .content .swiper .item .img-box {
  background-color: #f8f8f8;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.2rem 0;
}
.page .products-s3 .content .swiper .item .img-box img {
  width: 74%;
}
.page .products-s3 .content .swiper .item .item-bot {
  padding: 0.36rem 0.28rem 0.8rem 0.28rem;
  background-color: white;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s3 .content .swiper .item .item-bot > p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page .products-s3 .content .swiper .item .item-bot h3 {
  font-size: var(--font-size-24);
}
.page .products-s3 .content .swiper .item .item-bot ul {
  margin-top: 0.18rem;
}
.page .products-s3 .content .swiper .item .item-bot ul li {
  font-size: var(--font-size-20);
  position: relative;
  padding-left: 0.2rem;
  line-height: 1.5;
  color: #666;
}
.page .products-s3 .content .swiper .item .item-bot ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.14rem, 9px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #666;
}
.page .products-s3 .content .swiper .item .item-bot .more {
  position: absolute;
  bottom: 0;
  left: 0.28rem;
  opacity: 0;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s3 .content .swiper .item .item-bot .more .name {
  font-size: var(--font-size-24);
  color: var(--primary-color);
  font-weight: 700;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
}
.page .products-s3 .content .swiper .item .item-bot .more .i-box {
  width: max(0.38rem, 28px);
  height: max(0.38rem, 28px);
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-left: 0.14rem;
}
.page .products-s3 .content .swiper .item .item-bot .more .i-box i {
  color: white;
}
.page .products-s3 .content .swiper .item::after {
  content: "";
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%);
   -ms-transform: translate(-50%);
       transform: translate(-50%);
  bottom: 0px;
  width: 0;
  height: 2px;
  -moz-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--primary-color);
}
.page .products-s3 .content .swiper .item:hover {
  border-color: var(--primary-color);
}
.page .products-s3 .content .swiper .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
.page .products-s3 .content .swiper .item:hover .item-bot h3 {
  color: var(--primary-color);
}
.page .products-s3 .content .swiper .item:hover .item-bot .more {
  bottom: 0.24rem;
  opacity: 1;
}
.page .products-s3 .content .swiper .item:hover::after {
  width: 80%;
}
.page .products-s3 .content .swiper .swiper-pagination {
  position: initial;
  margin-top: 40px;
}
.page .products-s3 .content .module1 {
  margin-top: 0.3rem;
}
.page .products-s3 .content .module1 .scroll-x {
  overflow: auto;
  -ms-overflow-style: none; /* IE、Edge */
  scrollbar-width: none; /* Firefox */
}
.page .products-s3 .content .module1 .scroll-x::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.page .products-s3 .content .module1 .tabList {
  min-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.page .products-s3 .content .module1 .tabList .item {
  margin-right: 0.1rem;
  font-size: var(--font-size-24);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  padding: max(0.11rem, 8px) 0.37rem;
  border-radius: 0.8rem;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .products-s3 .content .module1 .tabList .item.item-active {
  color: white;
}
.page .products-s3 .content .module1 .tabList .item:nth-last-child(1) {
  margin-right: 0;
}
.page .products-s3 .content .module1 .tabList .item-active {
  background-color: var(--primary-color);
}
.page .products-s3 .content .module1 .tabList .line {
  background-color: var(--primary-color);
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  border-radius: 1rem;
}
.page .products-s3 .content .module2 {
  margin-top: 0.42rem;
}
.page .products-s3 .content .module2 .swiperBox {
  display: none;
}
.page .products-s3 .content .module2 .swiperBox-active {
  display: block;
}
.page .products-s3 .content .module2 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 0.16rem;
     -moz-column-gap: 0.16rem;
          column-gap: 0.16rem;
  row-gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.page .products-s3 .content .module2 .item {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  overflow: hidden;
  position: relative;
  display: block;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s3 .content .module2 .item .img-box {
  background-color: #f8f8f8;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.2rem 0;
}
.page .products-s3 .content .module2 .item .img-box img {
  width: 74%;
}
.page .products-s3 .content .module2 .item .item-bot {
  padding: 0.36rem 0.28rem 0.5rem 0.28rem;
  background-color: white;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s3 .content .module2 .item .item-bot h3 {
  font-size: var(--font-size-24);
}
.page .products-s3 .content .module2 .item .item-bot ul {
  margin-top: 0.18rem;
}
.page .products-s3 .content .module2 .item .item-bot ul li {
  font-size: var(--font-size-20);
  position: relative;
  padding-left: 0.2rem;
  line-height: 1.5;
  color: #666;
}
.page .products-s3 .content .module2 .item .item-bot ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.14rem, 9px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #666;
}
.page .products-s3 .content .module2 .item .item-bot .more {
  position: absolute;
  bottom: 0;
  left: 0.28rem;
  opacity: 0;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s3 .content .module2 .item .item-bot .more .name {
  font-size: var(--font-size-24);
  color: var(--primary-color);
  font-weight: 700;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
}
.page .products-s3 .content .module2 .item .item-bot .more .i-box {
  width: max(0.38rem, 28px);
  height: max(0.38rem, 28px);
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-left: 0.14rem;
}
.page .products-s3 .content .module2 .item .item-bot .more .i-box i {
  color: white;
}
.page .products-s3 .content .module2 .item::after {
  content: "";
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%);
   -ms-transform: translate(-50%);
       transform: translate(-50%);
  bottom: 0px;
  width: 0;
  height: 2px;
  -moz-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--primary-color);
}
.page .products-s3 .content .module2 .item:hover {
  border-color: var(--primary-color);
}
.page .products-s3 .content .module2 .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
.page .products-s3 .content .module2 .item:hover .item-bot {
  padding: 0.36rem 0.28rem 0.8rem 0.28rem;
}
.page .products-s3 .content .module2 .item:hover .item-bot h3 {
  color: var(--primary-color);
}
.page .products-s3 .content .module2 .item:hover .item-bot .more {
  bottom: 0.24rem;
  opacity: 1;
}
.page .products-s3 .content .module2 .item:hover::after {
  width: 80%;
}
@media screen and (max-width: 1128px) {
  .page .products-s3 .content .module2 .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 880px) {
  .page .products-s3 .content .module2 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 668px) {
  .page .products-s3 .content .module2 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page .products-s31 {
  padding-top: 0.7rem;
  padding-bottom: 0.92rem;
  background: #fff;
  box-shadow: 0 4px 65.7px 0 rgba(204, 204, 204, 0.16);
}
.page .products-s31 .content .title {
  margin: 0.12rem auto 0 auto;
  font-size: var(--font-size-22);
  text-align: center;
  width: 86%;
}
.page .products-s31 .content .swiper {
  margin-top: 0.6rem;
  padding-right: 1px;
}
.page .products-s31 .content .swiper .item {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  overflow: hidden;
  position: relative;
  display: block;
  height: 100%;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s31 .content .swiper .item .img-box {
  background-color: #f8f8f8;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.2rem 0;
}
.page .products-s31 .content .swiper .item .img-box img {
  width: 74%;
}
.page .products-s31 .content .swiper .item .item-bot {
  padding: 0.36rem 0.28rem 0.8rem 0.28rem;
  background-color: white;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s31 .content .swiper .item .item-bot h3 {
  font-size: var(--font-size-24);
}
.page .products-s31 .content .swiper .item .item-bot ul {
  margin-top: 0.18rem;
}
.page .products-s31 .content .swiper .item .item-bot ul li {
  font-size: var(--font-size-20);
  position: relative;
  padding-left: 0.2rem;
  line-height: 1.5;
  color: #666;
}
.page .products-s31 .content .swiper .item .item-bot ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.14rem, 9px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #666;
}
.page .products-s31 .content .swiper .item .item-bot .more {
  position: absolute;
  bottom: 0;
  left: 0.28rem;
  opacity: 0;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s31 .content .swiper .item .item-bot .more .name {
  font-size: var(--font-size-24);
  color: var(--primary-color);
  font-weight: 700;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
}
.page .products-s31 .content .swiper .item .item-bot .more .i-box {
  width: max(0.38rem, 28px);
  height: max(0.38rem, 28px);
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-left: 0.14rem;
}
.page .products-s31 .content .swiper .item .item-bot .more .i-box i {
  color: white;
}
.page .products-s31 .content .swiper .item::after {
  content: "";
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%);
   -ms-transform: translate(-50%);
       transform: translate(-50%);
  bottom: 0px;
  width: 0;
  height: 2px;
  -moz-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--primary-color);
}
.page .products-s31 .content .swiper .item:hover {
  border-color: var(--primary-color);
}
.page .products-s31 .content .swiper .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
.page .products-s31 .content .swiper .item:hover .item-bot h3 {
  color: var(--primary-color);
}
.page .products-s31 .content .swiper .item:hover .item-bot .more {
  bottom: 0.24rem;
  opacity: 1;
}
.page .products-s31 .content .swiper .item:hover::after {
  width: 80%;
}
.page .products-s31 .content .swiper .swiper-pagination {
  position: initial;
  margin-top: 40px;
}
.page .products-s31 .content .module1 {
  margin-top: 0.3rem;
}
.page .products-s31 .content .module1 .scroll-x {
  overflow: auto;
  -ms-overflow-style: none; /* IE、Edge */
  scrollbar-width: none; /* Firefox */
}
.page .products-s31 .content .module1 .scroll-x::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.page .products-s31 .content .module1 .tabList {
  min-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.page .products-s31 .content .module1 .tabList .item {
  margin-right: 0.1rem;
  font-size: var(--font-size-24);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  padding: max(0.11rem, 8px) 0.37rem;
  border-radius: 0.8rem;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .products-s31 .content .module1 .tabList .item.item-active {
  color: white;
}
.page .products-s31 .content .module1 .tabList .item:nth-last-child(1) {
  margin-right: 0;
}
.page .products-s31 .content .module1 .tabList .item-active {
  background-color: var(--primary-color);
}
.page .products-s31 .content .module1 .tabList .line {
  background-color: var(--primary-color);
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  border-radius: 1rem;
}
.page .products-s31 .content .module2 {
  margin-top: 0.42rem;
}
.page .products-s31 .content .module2 .swiperBox {
  display: none;
}
.page .products-s31 .content .module2 .swiperBox-active {
  display: block;
}
.page .products-s31 .content .module2 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 0.16rem;
     -moz-column-gap: 0.16rem;
          column-gap: 0.16rem;
  row-gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.page .products-s31 .content .module2 .item {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  overflow: hidden;
  position: relative;
  display: block;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s31 .content .module2 .item .img-box {
  background-color: #f8f8f8;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.2rem 0;
}
.page .products-s31 .content .module2 .item .img-box img {
  width: 74%;
}
.page .products-s31 .content .module2 .item .item-bot {
  padding: 0.36rem 0.28rem 0.5rem 0.28rem;
  background-color: white;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s31 .content .module2 .item .item-bot h3 {
  font-size: var(--font-size-24);
}
.page .products-s31 .content .module2 .item .item-bot p {
  margin-top: 0.18rem;
  font-size: var(--font-size-20);
}
.page .products-s31 .content .module2 .item .item-bot ul {
  margin-top: 0.18rem;
}
.page .products-s31 .content .module2 .item .item-bot ul li {
  font-size: var(--font-size-20);
  position: relative;
  padding-left: 0.2rem;
  line-height: 1.5;
  color: #666;
}
.page .products-s31 .content .module2 .item .item-bot ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.14rem, 9px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #666;
}
.page .products-s31 .content .module2 .item .item-bot .more {
  position: absolute;
  bottom: 0;
  left: 0.28rem;
  opacity: 0;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .products-s31 .content .module2 .item .item-bot .more .name {
  font-size: var(--font-size-24);
  color: var(--primary-color);
  font-weight: 700;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
}
.page .products-s31 .content .module2 .item .item-bot .more .i-box {
  width: max(0.38rem, 28px);
  height: max(0.38rem, 28px);
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-left: 0.14rem;
}
.page .products-s31 .content .module2 .item .item-bot .more .i-box i {
  color: white;
}
.page .products-s31 .content .module2 .item::after {
  content: "";
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%);
   -ms-transform: translate(-50%);
       transform: translate(-50%);
  bottom: 0px;
  width: 0;
  height: 2px;
  -moz-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--primary-color);
}
.page .products-s31 .content .module2 .item:hover {
  border-color: var(--primary-color);
}
.page .products-s31 .content .module2 .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
.page .products-s31 .content .module2 .item:hover .item-bot {
  padding: 0.36rem 0.28rem 0.8rem 0.28rem;
}
.page .products-s31 .content .module2 .item:hover .item-bot h3 {
  color: var(--primary-color);
}
.page .products-s31 .content .module2 .item:hover .item-bot .more {
  bottom: 0.24rem;
  opacity: 1;
}
.page .products-s31 .content .module2 .item:hover::after {
  width: 80%;
}
@media screen and (max-width: 1128px) {
  .page .products-s31 .content .module2 .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 880px) {
  .page .products-s31 .content .module2 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 668px) {
  .page .products-s31 .content .module2 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page .products-s41 {
  padding-top: 0.9rem;
  padding-bottom: 0.5rem;
}
.page .products-s41 .content h2 {
  text-align: center;
}
.page .products-s41 .content .module1 {
  margin-top: 0.52rem;
}
.page .products-s41 .content .module1 ul li {
  font-size: var(--font-size-22);
  position: relative;
  color: #666;
  padding-left: max(0.16rem, 10px);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.page .products-s41 .content .module1 ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.1rem, 7px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #666;
}
.page .products-s41 .content .module2 {
  margin-top: 0.66rem;
}
.page .products-s41 .content .module2 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 0.3rem;
     -moz-column-gap: 0.3rem;
          column-gap: 0.3rem;
  row-gap: 0.2rem;
}
.page .products-s41 .content .module2 .list .item .img-box {
  border-radius: var(--all-border-radius);
}
.page .products-s41 .content .module2 .list .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
@media screen and (max-width: 668px) {
  .page .products-s41 .content .module2 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page .products-s4 {
  padding-top: 0.9rem;
  padding-bottom: 0.5rem;
}
.page .products-s4 .content .module1 {
  margin-top: 0.66rem;
}
.page .products-s4 .content .module1 .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.3rem;
  margin-bottom: 0.6rem;
}
.page .products-s4 .content .module1 .news-grid .news-item {
  background: #fff;
  border-radius: var(--all-border-radius);
  overflow: hidden;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.page .products-s4 .content .module1 .news-grid .news-item .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -moz-transform 0.5s;
}
.page .products-s4 .content .module1 .news-grid .news-item .img-box:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.page .products-s4 .content .module1 .news-grid .news-item .content {
  padding: 0.26rem 0.2rem;
}
.page .products-s4 .content .module1 .news-grid .news-item .content .date {
  font-size: var(--font-size-14);
  color: #999;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  margin-bottom: 0.15rem;
}
.page .products-s4 .content .module1 .news-grid .news-item .content .date i {
  font-size: var(--font-size-14);
  margin-right: 0.08rem;
  line-height: 1;
  margin-top: 2px;
}
.page .products-s4 .content .module1 .news-grid .news-item .content h3 {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.1rem;
}
.page .products-s4 .content .module1 .news-grid .news-item .content h3 a {
  color: #333;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.page .products-s4 .content .module1 .news-grid .news-item .content p {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.24rem;
}
.page .products-s4 .content .module1 .news-grid .news-item .content .check-more {
  font-size: var(--font-size-20);
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.page .products-s4 .content .module1 .news-grid .news-item .content .check-more .i-box {
  width: max(0.24rem, 20px);
  height: max(0.24rem, 20px);
  background-color: var(--primary-color);
  margin-left: 0.1rem;
  -moz-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  opacity: 0;
}
.page .products-s4 .content .module1 .news-grid .news-item .content .check-more .i-box i {
  font-size: var(--font-size-14);
  color: white;
}
.page .products-s4 .content .module1 .news-grid .news-item:hover {
  -moz-transform: translateY(-5px);
   -ms-transform: translateY(-5px);
       transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--primary-color);
}
.page .products-s4 .content .module1 .news-grid .news-item:hover h3 {
  color: var(--primary-color);
}
.page .products-s4 .content .module1 .news-grid .news-item:hover .check-more {
  color: var(--primary-color);
  font-weight: bold;
}
.page .products-s4 .content .module1 .news-grid .news-item:hover .check-more .i-box {
  -moz-transform: translateX(5px);
   -ms-transform: translateX(5px);
       transform: translateX(5px);
  opacity: 1 !important;
}
@media screen and (max-width: 1024px) {
  .page .products-s4 .content .module1 .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page .products-s4 .content .module1 .news-grid {
    grid-template-columns: 1fr;
  }
}
.page .products-s5 {
  padding-top: 0.55rem;
  padding-bottom: 1rem;
}
.page .products-s5 .content .module1 {
  margin-top: 0.54rem;
}
.page .products-s5 .content .module1 .list .item {
  margin-bottom: 0.2rem;
  padding-bottom: 0.25rem;
  border: 3px solid transparent;
  border-bottom: 1px solid #d5d5d5;
}
.page .products-s5 .content .module1 .list .item .item-head {
  padding: 0.38rem 0.3rem 0.15rem 0.3rem;
  cursor: pointer;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding-right: 0.2rem;
}
.page .products-s5 .content .module1 .list .item .item-head .item-head-left {
  -moz-box-align: start;
       align-items: flex-start;
}
.page .products-s5 .content .module1 .list .item .item-head .item-head-left i {
  font-size: var(--font-size-24);
  margin-top: max(0.04rem, 2px);
  flex-shrink: 0;
  color: #666;
}
.page .products-s5 .content .module1 .list .item .item-head .item-head-left h3 {
  font-size: var(--font-size-24);
  line-height: 1.4;
  font-weight: normal;
  margin-left: 0.24rem;
  color: #666;
}
.page .products-s5 .content .module1 .list .item .item-head .item-head-right {
  cursor: pointer;
  flex-shrink: 0;
  margin-top: max(0.1rem, 5px);
}
.page .products-s5 .content .module1 .list .item .item-head .item-head-right i {
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: var(--font-size-24);
}
.page .products-s5 .content .module1 .list .item .item-head .item-head-right i:nth-child(2) {
  display: none;
}
.page .products-s5 .content .module1 .list .item .item-bot {
  max-height: 0;
  overflow: hidden;
  border-top: none;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .products-s5 .content .module1 .list .item .item-bot .box {
  padding: 0 0.3rem 0 0.3rem;
}
.page .products-s5 .content .module1 .list .item .item-bot i {
  font-size: var(--font-size-22);
  flex-shrink: 0;
  color: #666666;
  opacity: 0;
}
.page .products-s5 .content .module1 .list .item .item-bot .scroll-y {
  max-height: max(1.6rem, 140px);
  margin-left: 0.24rem;
  font-size: var(--font-size-20);
}
.page .products-s5 .content .module1 .list .item .item-bot .scroll-y p {
  font-size: var(--font-size-20);
  color: #222;
}
.page .products-s5 .content .module1 .list .item .item-bot .scroll-y i {
  margin-right: 0.2rem;
}
.page .products-s5 .content .module1 .list .item-active {
  border: 3px solid var(--primary-color);
  border-radius: var(--all-border-radius);
}
.page .products-s5 .content .module1 .list .item-active .item-head .item-head-left h3 {
  color: var(--primary-color);
}
.page .products-s5 .content .module1 .list .item-active .item-head .item-head-left i {
  color: var(--primary-color);
}
.page .products-s5 .content .module1 .list .item-active .item-head-right i:nth-child(1) {
  display: none;
}
.page .products-s5 .content .module1 .list .item-active .item-head-right i:nth-child(2) {
  display: block !important;
}
.page .products-s5 .content .module1 .list .item-active .item-bot {
  max-height: max(2rem, 200px);
}

.page .productsList-s2 {
  padding-top: 1rem;
  padding-bottom: 0.88rem;
}
.page .productsList-s2 .module1 {
  position: relative;
  row-gap: 0.3rem;
  -webkit-column-gap: 0.36rem;
     -moz-column-gap: 0.36rem;
          column-gap: 0.36rem;
}
.page .productsList-s2 .module1 .module1-left {
  max-width: 22.875%;
  min-width: 220px;
  position: -webkit-sticky;
  position: sticky;
  top: -moz-calc(var(--header-height) + 0.3rem);
  top: calc(var(--header-height) + 0.3rem);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.page .productsList-s2 .module1 .module1-left .common-title {
  background-color: var(--primary-color);
  border-radius: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.12rem 0.24rem;
}
.page .productsList-s2 .module1 .module1-left .common-title h3 {
  font-size: var(--font-size-18);
  color: #fff;
  font-weight: bold;
}
.page .productsList-s2 .module1 .module1-left .category-list {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  margin-bottom: 0.2rem;
  margin-top: 14px;
  padding: 0.24rem 0;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item .Level1 {
  font-size: var(--font-size-24);
  color: #666666;
  padding: 0.2rem 0 0.2rem 0.44rem;
  display: block;
  position: relative;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item .Level1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  background: var(--primary-color);
  height: 0%;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: max(0.04rem, 3px);
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item .Level1:hover {
  color: #111;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item .child {
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  padding-left: 0.6rem;
  max-height: 0;
  overflow: hidden;
  -moz-transition: 0.8s;
  transition: 0.8s;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item .child a {
  color: #666;
  font-size: var(--font-size-18);
  display: block;
  padding-bottom: 4px;
  margin-bottom: 0.1rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item .child a::after {
  content: "";
  position: absolute;
  left: inherit;
  right: 0%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item .child a.active, .page .productsList-s2 .module1 .module1-left .category-list .list .item .child a:hover {
  color: var(--primary-color);
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item .child a.active::after, .page .productsList-s2 .module1 .module1-left .category-list .list .item .child a:hover::after {
  width: 100%;
  left: 0%;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item.item-active, .page .productsList-s2 .module1 .module1-left .category-list .list .item:hover {
  background-color: #f3f3f3;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item.item-active .Level1, .page .productsList-s2 .module1 .module1-left .category-list .list .item:hover .Level1 {
  color: #111;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item.item-active .Level1::after, .page .productsList-s2 .module1 .module1-left .category-list .list .item:hover .Level1::after {
  height: 70%;
}
.page .productsList-s2 .module1 .module1-left .category-list .list .item.item-active .child, .page .productsList-s2 .module1 .module1-left .category-list .list .item:hover .child {
  max-height: 300px;
}
.page .productsList-s2 .module1 .module1-left .hot-list {
  margin-top: 0.18rem;
  row-gap: 6px;
  display: grid;
}
.page .productsList-s2 .module1 .module1-left .hot-list .item {
  padding: max(0.1rem, 10px) 0.2rem max(0.1rem, 10px) 0.14rem;
  border: 1px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  border-radius: var(--all-border-radius);
}
.page .productsList-s2 .module1 .module1-left .hot-list .item .img-box {
  width: 0.84rem;
  margin-right: 0.12rem;
  flex-shrink: 0;
}
.page .productsList-s2 .module1 .module1-left .hot-list .item .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page .productsList-s2 .module1 .module1-left .hot-list .item .text-box .text1 {
  font-size: var(--font-size-14);
  color: #000;
  font-weight: bold;
}
.page .productsList-s2 .module1 .module1-left .hot-list .item .text-box .text2 {
  margin-top: 0.16rem;
}
.page .productsList-s2 .module1 .module1-left .hot-list .item .text-box .text2 ul {
  display: grid;
  row-gap: 2px;
}
.page .productsList-s2 .module1 .module1-left .hot-list .item .text-box .text2 ul li {
  font-size: var(--font-size-12);
  color: #666;
}
.page .productsList-s2 .module1 .module1-left .hot-list .item:hover {
  border-color: var(--primary-color);
}
.page .productsList-s2 .module1 .module1-right {
  -moz-box-flex: 1;
       flex: 1;
}
.page .productsList-s2 .module1 .module1-right .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.16rem;
     -moz-column-gap: 0.16rem;
          column-gap: 0.16rem;
  row-gap: 0.2rem;
  flex-wrap: wrap;
}
.page .productsList-s2 .module1 .module1-right .list .item {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  overflow: hidden;
  position: relative;
  display: block;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .productsList-s2 .module1 .module1-right .list .item .img-box {
  background-color: #f8f8f8;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.2rem 0;
}
.page .productsList-s2 .module1 .module1-right .list .item .img-box img {
  width: 74%;
}
.page .productsList-s2 .module1 .module1-right .list .item .item-bot {
  padding: 0.36rem 0.28rem;
  background-color: white;
}
.page .productsList-s2 .module1 .module1-right .list .item .item-bot h3 {
  font-size: var(--font-size-24);
}
.page .productsList-s2 .module1 .module1-right .list .item .item-bot .ul {
  display: grid;
  margin-top: 0.12rem;
}
.page .productsList-s2 .module1 .module1-right .list .item .item-bot .ul .li {
  font-size: var(--font-size-20);
  color: #666;
  padding-left: 0.14rem;
  position: relative;
  margin: 0;
}
.page .productsList-s2 .module1 .module1-right .list .item .item-bot .ul .li::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.14rem, 6px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #666;
}
.page .productsList-s2 .module1 .module1-right .list .item .item-bot p {
  margin-top: 0.12rem;
  font-size: var(--font-size-20);
}
.page .productsList-s2 .module1 .module1-right .list .item::after {
  content: "";
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%);
   -ms-transform: translate(-50%);
       transform: translate(-50%);
  bottom: 0px;
  width: 0;
  height: 2px;
  -moz-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--primary-color);
}
.page .productsList-s2 .module1 .module1-right .list .item:hover {
  border-color: var(--primary-color);
}
.page .productsList-s2 .module1 .module1-right .list .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
.page .productsList-s2 .module1 .module1-right .list .item:hover::after {
  width: 80%;
}
.page .productsList-s2 .module1 .module1-right .m-muban-pagebox {
  -moz-box-pack: left;
       justify-content: left;
  margin-top: 0.4rem;
}
@media screen and (max-width: 1080px) {
  .page .productsList-s2 .module1 .module1-right .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 880px) {
  .page .productsList-s2 .module1 {
    flex-wrap: wrap;
  }
  .page .productsList-s2 .module1 .module1-left {
    width: 100%;
    max-width: 100%;
    position: initial;
    top: 0;
  }
  .page .productsList-s2 .module1 .module1-right {
    width: 100%;
  }
}
@media screen and (max-width: 668px) {
  .page .productsList-s2 .module1 .module1-right .list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page .productsDetails-s1 {
  padding-top: 0.6rem;
  padding-bottom: 0.3rem;
}
.page .productsDetails-s1 .content .module1 .module1-left {
  width: 24.25%;
  margin-right: 1.16rem;
  flex-shrink: 0;
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper {
  border-radius: var(--all-border-radius);
  overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #f8f8f8;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-slide .img-box {
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.34rem 0;
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-slide .img-box img {
  max-width: 80%;
  width: auto;
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper {
  /* 使用自定义图标（例如 Font Awesome） */
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-prev::after {
  content: "";
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-prev {
  margin-left: 0.1rem;
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-prev .i-box {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 1px #e5e5e4;
  flex-shrink: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-prev .i-box i {
  font-size: var(--font-size-22);
  color: var(--primary-color);
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-next {
  margin-right: 0.1rem;
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-next .i-box {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 1px #e5e5e4;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  flex-shrink: 0;
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-next .i-box i {
  font-size: var(--font-size-22);
  color: var(--primary-color);
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-next::after {
  content: "";
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-prev:hover .i-box,
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-next:hover .i-box {
  background-color: var(--primary-color);
  color: white;
  border: solid 1px var(--primary-color);
}
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-prev:hover .i-box i,
.page .productsDetails-s1 .content .module1 .module1-left .bg-swiper .swiper-button-next:hover .i-box i {
  color: white;
}
.page .productsDetails-s1 .content .module1 .module1-left .thumbnail-swiper {
  margin-top: max(0.14rem, 10px);
}
.page .productsDetails-s1 .content .module1 .module1-left .thumbnail-swiper .box {
  height: max(0.8rem, 60px);
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  border-radius: max(0.1rem, 8px);
  -moz-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  background-color: #f8f8f8;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
}
.page .productsDetails-s1 .content .module1 .module1-left .thumbnail-swiper .box img {
  width: auto;
}
.page .productsDetails-s1 .content .module1 .module1-left .thumbnail-swiper .swiper-slide-thumb-active .box {
  border-color: var(--primary-color);
}
.page .productsDetails-s1 .content .module1 .module1-right {
  -moz-box-flex: 1;
       flex: 1;
}
.page .productsDetails-s1 .content .module1 .module1-right h2 {
  font-size: var(--font-size-42);
}
.page .productsDetails-s1 .content .module1 .module1-right .scroll-y {
  max-height: max(3rem, 200px);
  margin-top: 0.2rem;
  padding-right: 0.6rem;
}
.page .productsDetails-s1 .content .module1 .module1-right .product .title {
  font-size: var(--font-size-20);
}
.page .productsDetails-s1 .content .module1 .module1-right .product ul {
  margin-top: 0.46rem;
}
.page .productsDetails-s1 .content .module1 .module1-right .product ul li {
  font-size: var(--font-size-22);
  color: #222;
  padding-left: 0.16rem;
  position: relative;
  line-height: 1.5;
}
.page .productsDetails-s1 .content .module1 .module1-right .product ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.14rem, 6px);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #222;
}
.page .productsDetails-s1 .content .module1 .module1-right .product ul .li:nth-last-child(1) {
  margin-bottom: 0;
}
.page .productsDetails-s1 .content .module1 .module1-right .btm-box {
  margin-top: 0.52rem;
  flex-wrap: wrap;
  -webkit-column-gap: 0.22rem;
     -moz-column-gap: 0.22rem;
          column-gap: 0.22rem;
  row-gap: 0.2rem;
}
.page .productsDetails-s1 .content .module1 .module1-right .btm-box .btm {
  height: max(0.66rem, 50px);
}
.page .productsDetails-s1 .content .module1 .module1-right .btm-box .btm .name {
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
}
.page .productsDetails-s1 .content .module1 .module1-right .btm-box .btm2 {
  border-color: var(--primary-color);
}
@media screen and (max-width: 1280px) {
  .page .productsDetails-s1 .content .module1 .module1-left {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .page .productsDetails-s1 .content .module1 {
    flex-wrap: wrap;
  }
  .page .productsDetails-s1 .content .module1 .module1-left {
    width: 100%;
    margin-right: 0rem;
  }
  .page .productsDetails-s1 .content .module1 .module1-right {
    width: 100%;
    margin-top: 20px;
  }
}
.page .productsDetails-s2 {
  padding-top: 0.7rem;
  padding-bottom: 0.5rem;
}
.page .productsDetails-s2 .content .module1 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 0.16rem;
     -moz-column-gap: 0.16rem;
          column-gap: 0.16rem;
  row-gap: 0.2rem;
}
.page .productsDetails-s2 .content .module1 .list .item {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  background: #f8f8f8;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  padding: 0.46rem 0.3rem;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .productsDetails-s2 .content .module1 .list .item .img-box {
  width: max(0.5rem, 4px);
  height: max(0.5rem, 4px);
  border-radius: max(0.1rem, 8px);
  background-color: #d9d9d9;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .productsDetails-s2 .content .module1 .list .item .img-box img {
  width: auto;
  max-width: 70%;
}
.page .productsDetails-s2 .content .module1 .list .item .img-box img:nth-child(2) {
  display: none;
}
.page .productsDetails-s2 .content .module1 .list .item h3 {
  margin-top: 0.68rem;
  font-size: var(--font-size-24);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .productsDetails-s2 .content .module1 .list .item p {
  margin-top: 0.12rem;
}
.page .productsDetails-s2 .content .module1 .list .item:hover {
  background-color: white;
}
.page .productsDetails-s2 .content .module1 .list .item:hover .img-box {
  background-color: var(--primary-color);
}
.page .productsDetails-s2 .content .module1 .list .item:hover .img-box img:nth-child(1) {
  display: none;
}
.page .productsDetails-s2 .content .module1 .list .item:hover .img-box img:nth-child(2) {
  display: block;
}
.page .productsDetails-s2 .content .module1 .list .item:hover h3 {
  color: var(--primary-color);
}
@media screen and (max-width: 980px) {
  .page .productsDetails-s2 .content .module1 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 668px) {
  .page .productsDetails-s2 .content .module1 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page .productsDetails-s3 {
  padding-top: 0.5rem;
  padding-bottom: 0.4rem;
}
.page .productsDetails-s3 .content .module1 {
  margin-top: 0.26rem;
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  overflow: hidden;
}
.page .productsDetails-s3 .content .module1 table {
  overflow: hidden;
  width: 100%;
  border-collapse: collapse; /* ⭐ 合并边框 */
  text-align: left;
}
.page .productsDetails-s3 .content .module1 table tbody tr {
  border-bottom: 1px solid #e9e9e9;
}
.page .productsDetails-s3 .content .module1 table tbody tr th,
.page .productsDetails-s3 .content .module1 table tbody tr td {
  font-size: var(--font-size-22);
  font-weight: normal;
  padding: 0.26rem 0.54rem;
  width: 50%;
  min-width: 200px;
}
.page .productsDetails-s3 .content .module1 table tbody tr th {
  background-color: #f8f8f8;
}
.page .productsDetails-s3 .content .module1 table tbody tr td {
  background-color: #ffffff;
  border-left: 1px solid #e0e0e0;
}
.page .productsDetails-s4 {
  padding-top: 0.44rem;
  padding-bottom: 0.5rem;
}
.page .productsDetails-s4 .content .module1 {
  margin-top: 0.66rem;
}
.page .productsDetails-s4 .content .module1 .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.3rem;
  margin-bottom: 0.6rem;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item {
  background: #fff;
  border-radius: var(--all-border-radius);
  overflow: hidden;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -moz-transform 0.5s;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .img-box:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .content {
  padding: 0.26rem 0.2rem;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .content .date {
  font-size: var(--font-size-14);
  color: #999;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  margin-bottom: 0.15rem;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .content .date i {
  font-size: var(--font-size-14);
  margin-right: 0.08rem;
  line-height: 1;
  margin-top: 2px;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .content h3 {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.1rem;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .content h3 a {
  color: #333;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .content p {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.24rem;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .content .check-more {
  font-size: var(--font-size-20);
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .content .check-more .i-box {
  width: max(0.24rem, 20px);
  height: max(0.24rem, 20px);
  background-color: var(--primary-color);
  margin-left: 0.1rem;
  -moz-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  opacity: 0;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item .content .check-more .i-box i {
  font-size: var(--font-size-14);
  color: white;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item:hover {
  -moz-transform: translateY(-5px);
   -ms-transform: translateY(-5px);
       transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--primary-color);
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item:hover h3 {
  color: var(--primary-color);
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item:hover .check-more {
  color: var(--primary-color);
  font-weight: bold;
}
.page .productsDetails-s4 .content .module1 .news-grid .news-item:hover .check-more .i-box {
  -moz-transform: translateX(5px);
   -ms-transform: translateX(5px);
       transform: translateX(5px);
  opacity: 1 !important;
}
@media screen and (max-width: 1024px) {
  .page .productsDetails-s4 .content .module1 .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page .productsDetails-s4 .content .module1 .news-grid {
    grid-template-columns: 1fr;
  }
}

.page .faqs-s2 {
  padding-top: 0.4rem;
  padding-bottom: 0.5rem;
}
.page .faqs-s2 .content .module1 {
  margin-top: 0.4rem;
}
.page .faqs-s2 .content .module1 .module1-left {
  width: 23%;
}
.page .faqs-s2 .content .module1 .module1-left .list {
  padding: 0.3rem 0;
  border-radius: var(--all-border-radius);
  background: #f7f8ff;
}
.page .faqs-s2 .content .module1 .module1-left .list .item {
  margin-bottom: 0.1rem;
  padding: 0.16rem 0.34rem 0.16rem 0.2rem;
  font-size: var(--font-size-24);
}
.page .faqs-s2 .content .module1 .module1-left .list .item.item-active {
  background-color: var(--primary-color);
  color: white;
}
.page .faqs-s2 .content .module1 .module1-right {
  -moz-box-flex: 1;
       flex: 1;
  padding-left: 0.26rem;
}
.page .faqs-s2 .content .module1 .module1-right .list {
  display: none;
}
.page .faqs-s2 .content .module1 .module1-right .list .item {
  margin-bottom: 0.4rem;
  background-color: #f2f3ff;
  border-radius: var(--all-border-radius);
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-head {
  padding: 0.28rem 0.24rem;
  cursor: pointer;
  -moz-box-pack: justify;
       justify-content: space-between;
  padding-right: 0.2rem;
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-head .item-head-left {
  -moz-box-align: start;
       align-items: flex-start;
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-head .item-head-left i {
  font-size: var(--font-size-26);
  margin-top: max(0.1rem, 5px);
  flex-shrink: 0;
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-head .item-head-left h3 {
  font-size: var(--font-size-32);
  line-height: 1.4;
  font-weight: normal;
  margin-left: 0.36rem;
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-head .item-head-right {
  cursor: pointer;
  flex-shrink: 0;
  margin-top: max(0.1rem, 5px);
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-head .item-head-right i {
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: var(--font-size-22);
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-head .item-head-right i:nth-child(2) {
  display: none;
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-bot {
  max-height: 0;
  overflow: hidden;
  border-top: none;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-bot .box {
  padding: 0 0.24rem 0.28rem 0.24rem;
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-bot i {
  font-size: var(--font-size-26);
  flex-shrink: 0;
  color: #666666;
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-bot .scroll-y {
  max-height: max(1.6rem, 140px);
  margin-left: 0.36rem;
  font-size: var(--font-size-18);
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-bot .scroll-y p {
  font-size: var(--font-size-18);
  line-height: 1.6;
}
.page .faqs-s2 .content .module1 .module1-right .list .item .item-bot .scroll-y i {
  margin-right: 0.2rem;
}
.page .faqs-s2 .content .module1 .module1-right .list .item-active .item-head-right i:nth-child(1) {
  display: none;
}
.page .faqs-s2 .content .module1 .module1-right .list .item-active .item-head-right i:nth-child(2) {
  display: block !important;
}
.page .faqs-s2 .content .module1 .module1-right .list .item-active .item-bot {
  max-height: max(2rem, 200px);
}
.page .faqs-s2 .content .module1 .module1-right .list-active {
  display: block;
}
@media screen and (max-width: 880px) {
  .page .faqs-s2 .content .module1 {
    flex-wrap: wrap;
  }
  .page .faqs-s2 .content .module1 .module1-left {
    width: 100%;
    padding-right: 0;
    border: none;
  }
  .page .faqs-s2 .content .module1 .module1-right {
    margin-top: 20px;
    width: 100%;
    padding-left: 0;
  }
}

.page .download-s2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fcfcfc;
}
.page .download-s2 .module1 {
  margin-bottom: 0.56rem;
  text-align: center;
}
.page .download-s2 .module1 .tabs-box {
  display: -moz-inline-box;
  display: inline-flex;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  padding: 0.06rem 0.14rem;
}
.page .download-s2 .module1 .tabs-box .tab-item {
  padding: 0.12rem 0.5rem;
  font-size: var(--font-size-16);
  color: #666;
  border-radius: 0.4rem;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
}
.page .download-s2 .module1 .tabs-box .tab-item:hover {
  color: var(--primary-color);
}
.page .download-s2 .module1 .tabs-box .tab-item.active {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(102, 209, 218, 0.3);
}
.page .download-s2 .module2 {
  margin-bottom: 0.62rem;
}
.page .download-s2 .module2 .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.3rem;
}
.page .download-s2 .module2 .news-grid .news-item {
  background: #fff;
  border-radius: var(--all-border-radius);
  overflow: hidden;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  padding: 0.38rem 0.26rem 0.3rem 0.26rem;
}
.page .download-s2 .module2 .news-grid .news-item .img-box {
  overflow: hidden;
  border-radius: var(--all-border-radius);
}
.page .download-s2 .module2 .news-grid .news-item .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -moz-transform 0.5s;
}
.page .download-s2 .module2 .news-grid .news-item .img-box:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.page .download-s2 .module2 .news-grid .news-item .content {
  padding-top: 0.24rem;
}
.page .download-s2 .module2 .news-grid .news-item .content .date {
  font-size: var(--font-size-14);
  color: #999;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  margin-bottom: 0.15rem;
}
.page .download-s2 .module2 .news-grid .news-item .content .date i {
  font-size: var(--font-size-14);
  margin-right: 0.08rem;
  line-height: 1;
  margin-top: 2px;
}
.page .download-s2 .module2 .news-grid .news-item .content h3 {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.1rem;
}
.page .download-s2 .module2 .news-grid .news-item .content h3 a {
  color: #333;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.page .download-s2 .module2 .news-grid .news-item .content p {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.26rem;
}
.page .download-s2 .module2 .news-grid .news-item .content .line {
  width: 100%;
  height: 1px;
  background: #d3d3d3;
}
.page .download-s2 .module2 .news-grid .news-item .content .check-more {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 0.24rem;
}
.page .download-s2 .module2 .news-grid .news-item .content .check-more .name {
  font-size: var(--font-size-20);
  color: #999;
  font-weight: "Roboto-Bold", Arial, Helvetica, sans-serif;
}
.page .download-s2 .module2 .news-grid .news-item .content .check-more .i-box {
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.page .download-s2 .module2 .news-grid .news-item .content .check-more .i-box i {
  font-size: var(--font-size-24);
  color: #222;
}
.page .download-s2 .module2 .news-grid .news-item:hover {
  -moz-transform: translateY(-5px);
   -ms-transform: translateY(-5px);
       transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--primary-color);
}
.page .download-s2 .module2 .news-grid .news-item:hover h3 {
  color: var(--primary-color);
}
.page .download-s2 .module2 .news-grid .news-item:hover .check-more .name {
  color: #222;
}
.page .download-s2 .module2 .news-grid .news-item:hover .check-more .i-box {
  opacity: 1 !important;
}
.page .download-s2 .module2 .news-grid .news-item:hover .check-more .i-box i {
  color: var(--primary-color);
}
@media screen and (max-width: 1024px) {
  .page .download-s2 .module2 .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page .download-s2 .module1 {
    margin-bottom: 0.4rem;
  }
  .page .download-s2 .module1 .tabs-box {
    -moz-box-pack: center;
         justify-content: center;
  }
  .page .download-s2 .module2 .news-grid {
    grid-template-columns: 1fr;
  }
}

.page .case-s2 {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.page .case-s2 h2 strong {
  color: var(--primary-color);
}
.page .case-s2 .title {
  margin-top: 0.3rem;
  font-size: var(--font-size-22);
}
.page .case-s2 .module1 {
  margin-top: 0.62rem;
}
.page .case-s2 .module1 .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.3rem;
  margin-bottom: 0.6rem;
}
.page .case-s2 .module1 .news-grid .news-item {
  background: #fff;
  border-radius: var(--all-border-radius);
  overflow: hidden;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.page .case-s2 .module1 .news-grid .news-item .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -moz-transform 0.5s;
}
.page .case-s2 .module1 .news-grid .news-item .img-box:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.page .case-s2 .module1 .news-grid .news-item .content {
  padding: 0.26rem 0.2rem;
}
.page .case-s2 .module1 .news-grid .news-item .content .date {
  font-size: var(--font-size-14);
  color: #999;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  margin-bottom: 0.15rem;
}
.page .case-s2 .module1 .news-grid .news-item .content .date i {
  font-size: var(--font-size-14);
  margin-right: 0.08rem;
  line-height: 1;
  margin-top: 2px;
}
.page .case-s2 .module1 .news-grid .news-item .content h3 {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.1rem;
}
.page .case-s2 .module1 .news-grid .news-item .content h3 a {
  color: #333;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.page .case-s2 .module1 .news-grid .news-item .content p {
  font-size: var(--font-size-18);
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.24rem;
}
.page .case-s2 .module1 .news-grid .news-item .content .check-more {
  font-size: var(--font-size-20);
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.page .case-s2 .module1 .news-grid .news-item .content .check-more .i-box {
  width: max(0.24rem, 20px);
  height: max(0.24rem, 20px);
  background-color: var(--primary-color);
  margin-left: 0.1rem;
  -moz-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  opacity: 0;
}
.page .case-s2 .module1 .news-grid .news-item .content .check-more .i-box i {
  font-size: var(--font-size-14);
  color: white;
}
.page .case-s2 .module1 .news-grid .news-item:hover {
  -moz-transform: translateY(-5px);
   -ms-transform: translateY(-5px);
       transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--primary-color);
}
.page .case-s2 .module1 .news-grid .news-item:hover h3 {
  color: var(--primary-color);
}
.page .case-s2 .module1 .news-grid .news-item:hover .check-more {
  color: var(--primary-color);
  font-weight: bold;
}
.page .case-s2 .module1 .news-grid .news-item:hover .check-more .i-box {
  -moz-transform: translateX(5px);
   -ms-transform: translateX(5px);
       transform: translateX(5px);
  opacity: 1 !important;
}
.page .case-s2 .module1 .m-muban-pagebox {
  -moz-box-pack: left;
       justify-content: left;
}
@media screen and (max-width: 1024px) {
  .page .case-s2 .module1 .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page .case-s2 .module1 .news-grid {
    grid-template-columns: 1fr;
  }
}

.page .caseDetails-s2 {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.page .caseDetails-s2 .content .module1 {
  position: relative;
}
.page .caseDetails-s2 .content .module1 .module1-left {
  width: 22.875%;
  margin-right: 0.98rem;
  flex-shrink: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: -webkit-sticky;
  position: sticky;
  top: -moz-calc(var(--header-height));
  top: calc(var(--header-height));
}
.page .caseDetails-s2 .content .module1 .module1-left .plot {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  padding: 0.24rem 0;
}
.page .caseDetails-s2 .content .module1 .module1-left .plot .draw {
  font-size: var(--font-size-24);
  margin-bottom: 0.16rem;
  color: #666;
  padding: 0.1rem 0.44rem;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  font-weight: normal;
  position: relative;
  -moz-transition: 0.6s;
  transition: 0.6s;
  cursor: pointer;
}
.page .caseDetails-s2 .content .module1 .module1-left .plot .draw::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  height: 0%;
  width: 0.06rem;
  background-color: var(--primary-color);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .caseDetails-s2 .content .module1 .module1-left .plot .draw:hover {
  background-color: #f3f3f3;
  color: #222;
}
.page .caseDetails-s2 .content .module1 .module1-left .plot .draw:hover::after {
  height: 100%;
}
.page .caseDetails-s2 .content .module1 .module1-left .plot .draw:nth-last-child(1) {
  margin-bottom: 0;
}
.page .caseDetails-s2 .content .module1 .module1-right {
  -moz-box-flex: 1;
       flex: 1;
}
.page .caseDetails-s2 .content .module1 .module1-right .article img {
  width: auto;
  margin-bottom: 0.44rem;
}
.page .caseDetails-s2 .content .module1 .module1-right .article h2 {
  margin-bottom: 0.2rem;
  font-size: var(--font-size-32);
}
.page .caseDetails-s2 .content .module1 .module1-right .article h3,
.page .caseDetails-s2 .content .module1 .module1-right .article h4,
.page .caseDetails-s2 .content .module1 .module1-right .article h5,
.page .caseDetails-s2 .content .module1 .module1-right .article h5 {
  margin-bottom: 0.2rem;
}
.page .caseDetails-s2 .content .module1 .module1-right .article p {
  margin-bottom: 0.36rem;
}
.page .caseDetails-s2 .content .module1 .module1-right .article ul li p {
  margin-bottom: 0;
}
.page .caseDetails-s2 .content .module1 .module1-right .article a {
  color: var(--primary-color);
}
.page .caseDetails-s2 .content .module1 .module1-right .article table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  width: 100%;
  max-width: 100%;
}
.page .caseDetails-s2 .content .module1 .module1-right .article table th,
.page .caseDetails-s2 .content .module1 .module1-right .article table td {
  border: 1px solid #e1e8ed;
  padding: 14px 16px;
  color: #666666;
}
.page .caseDetails-s2 .content .module1 .module1-right .fenye {
  margin-top: 0.6rem;
}
.page .caseDetails-s2 .content .module1 .module1-right .fenye .box {
  margin-bottom: 0.16rem;
  flex-wrap: wrap;
}
.page .caseDetails-s2 .content .module1 .module1-right .fenye .box i {
  font-size: var(--font-size-20);
  color: #666666;
  flex-shrink: 0;
}
.page .caseDetails-s2 .content .module1 .module1-right .fenye .box h3 {
  margin-left: 0.1rem;
  font-weight: 500;
  font-size: var(--font-size-16);
  line-height: 1.4;
}
.page .caseDetails-s2 .content .module1 .module1-right .fenye .box:hover h3,
.page .caseDetails-s2 .content .module1 .module1-right .fenye .box:hover i {
  color: var(--primary-color);
}
@media screen and (max-width: 1080px) {
  .page .caseDetails-s2 .content .module1 {
    flex-wrap: wrap;
  }
  .page .caseDetails-s2 .content .module1 .module1-left {
    width: 100%;
    position: initial;
    margin-right: 0;
  }
  .page .caseDetails-s2 .content .module1 .module1-right {
    width: 100%;
    margin-top: 40px;
  }
}

.page .about-s3 {
  padding-top: 0.6rem;
  padding-bottom: 0.5rem;
  overflow: hidden;
}
.page .about-s3 .content .module1 {
  margin-top: 0.34rem;
}
.page .about-s3 .content .module1 .yarn-swiper {
  padding: 0.4rem 0;
  overflow: visible;
}
.page .about-s3 .content .module1 .yarn-swiper .swiper-wrapper {
  -moz-box-align: stretch !important;
       align-items: stretch !important; /* 每个 slide 统一高度 */
}
.page .about-s3 .content .module1 .yarn-swiper .swiper-slide {
  height: auto;
  display: -moz-box;
  display: flex;
}
.page .about-s3 .content .module1 .yarn-swiper .swiper-slide .item {
  border-radius: var(--all-border-radius);
  background: #fff;
  box-shadow: 0 4px 31.8px 0 rgba(145, 145, 145, 0.25);
  padding: 0.68rem 0.22rem 0.58rem 0.22rem;
  border: 1px solid transparent;
  -moz-transition: 0.6s;
  transition: 0.6s;
  width: 100%;
}
.page .about-s3 .content .module1 .yarn-swiper .swiper-slide .item h3 {
  font-size: var(--font-size-52);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .about-s3 .content .module1 .yarn-swiper .swiper-slide .item h4 {
  font-size: var(--font-size-26);
  margin-top: 0.42rem;
}
.page .about-s3 .content .module1 .yarn-swiper .swiper-slide .item p {
  font-size: var(--font-size-20);
  margin-top: 0.42rem;
}
.page .about-s3 .content .module1 .yarn-swiper .swiper-slide .item:hover {
  border-color: var(--primary-color);
}
.page .about-s3 .content .module1 .yarn-swiper .swiper-slide .item:hover h3 {
  color: var(--primary-color);
}
.page .about-s3 .content .module1 .yuan-swiper {
  overflow: visible;
}
.page .about-s3 .content .module1 .yuan-swiper .item {
  width: 100%;
  position: relative;
}
.page .about-s3 .content .module1 .yuan-swiper .item .line {
  background: #e8e8e8;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}
.page .about-s3 .content .module1 .yuan-swiper .item .yuan {
  background-color: #d9d9d9;
  width: max(0.16rem, 10px);
  height: max(0.16rem, 10px);
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page .about-s3 .content .module1 .yuan-swiper .swiper-slide-active .item .yuan {
  background-color: var(--primary-color);
}
.page .about-s4 {
  padding-top: 0.8rem;
  padding-bottom: 0.5rem;
  overflow: hidden;
}
.page .about-s4 .content .module1 {
  position: relative;
}
.page .about-s4 .content .module1 .module1-left {
  width: 57.25%;
  border-radius: var(--all-border-radius);
  overflow: hidden;
}
.page .about-s4 .content .module1 .module1-left .img-box img {
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page .about-s4 .content .module1 .module1-left:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
.page .about-s4 .content .module1 .module1-right {
  width: 42.25%;
  position: absolute;
  left: 50%;
  box-shadow: 1px 2px 60.6px rgba(0, 74, 132, 0.11);
  background-color: white;
  border-radius: var(--all-border-radius);
  min-height: 80%;
  max-height: 90%;
  padding: 0.2rem 0.58rem;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: center;
       justify-content: center;
}
.page .about-s4 .content .module1 .module1-right .ul {
  margin-top: 0.4rem;
}
.page .about-s4 .content .module1 .module1-right .ul p {
  font-size: var(--font-size-20);
  margin-bottom: 0.2rem;
  position: relative;
  padding-left: 0.2rem;
}
.page .about-s4 .content .module1 .module1-right .ul p::after {
  content: "";
  position: absolute;
  left: 0;
  top: max(0.12rem, 8px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.page .about-s4 .content .module1 .module1-right .ul p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page .about-s4 .content .module1 {
    flex-wrap: wrap;
  }
  .page .about-s4 .content .module1 .module1-left {
    width: 100%;
  }
  .page .about-s4 .content .module1 .module1-left .img-box img {
    min-height: auto;
  }
  .page .about-s4 .content .module1 .module1-right {
    width: 100%;
    position: initial;
    -moz-transform: translate(0);
     -ms-transform: translate(0);
         transform: translate(0);
    margin-top: 20px;
  }
}
.page .about-s5 {
  padding-top: 0.8rem;
  padding-bottom: 0.5rem;
  overflow: hidden;
}
.page .about-s5 .content .module1 {
  margin-top: 0.5rem;
}
.page .about-s5 .content .module1 .swiper .swiper-slide .item {
  background: #f5f5f5;
  overflow: hidden;
  border-radius: var(--all-border-radius);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .about-s5 .content .module1 .swiper .swiper-slide .item a {
  padding: 0.4rem;
  display: block;
}
.page .about-s5 .content .module1 .swiper .swiper-slide .item:hover {
  background: #fff;
  box-shadow: 0 4px 37.8px 0 rgba(174, 174, 174, 0.25);
}
.page .about-s5 .content .module1 .swiper .swiper-pagination {
  position: initial;
  margin-top: 20px;
}
.page .about-s6 {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  overflow: hidden;
  background-image: url("../images/aboutS6-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.page .about-s6 .content .module1 {
  margin-top: 0.02rem;
}
.page .about-s6 .content .module1 .swiper {
  padding: 0.4rem 0.04rem;
}
.page .about-s6 .content .module1 .swiper .swiper-wrapper {
  -moz-box-align: stretch !important;
       align-items: stretch !important; /* 每个 slide 统一高度 */
}
.page .about-s6 .content .module1 .swiper .swiper-pagination {
  margin-top: 30px;
  position: initial;
}
.page .about-s6 .content .module1 .swiper .swiper-slide {
  height: auto;
  display: -moz-box;
  display: flex;
}
.page .about-s6 .content .module1 .swiper .swiper-slide .item {
  border-radius: var(--all-border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  padding: 0.62rem 0.2rem 0.4rem 0.2rem;
  border: 1px solid transparent;
  -moz-transition: 0.6s;
  transition: 0.6s;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}
.page .about-s6 .content .module1 .swiper .swiper-slide .item h3 {
  font-size: var(--font-size-26);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .about-s6 .content .module1 .swiper .swiper-slide .item p {
  font-size: var(--font-size-22);
  margin-top: 0.18rem;
  margin-bottom: 0.3rem;
}
.page .about-s6 .content .module1 .swiper .swiper-slide .item .img-box {
  border-radius: var(--all-border-radius);
  margin-top: auto;
}
.page .about-s6 .content .module1 .swiper .swiper-slide .item:hover {
  border-color: var(--primary-color);
}
.page .about-s6 .content .module1 .swiper .swiper-slide .item:hover h3 {
  color: var(--primary-color);
}
.page .about-s6 .content .module1 .swiper .swiper-slide .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}

.page .contactUs-s2 {
  padding-top: 0.85rem;
  padding-bottom: 1rem;
  background-image: url("../images/contactUsS2-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.page .contactUs-s2 .content h2 {
  text-align: center;
}
.page .contactUs-s2 .content h2 strong {
  color: var(--primary-color);
  font-weight: normal;
}
.page .contactUs-s2 .content .title {
  margin-top: 0.16rem;
  text-align: center;
}
.page .contactUs-s2 .content .module1 {
  margin-top: 0.6rem;
}
.page .contactUs-s2 .content .module1 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.2rem;
}
.page .contactUs-s2 .content .module1 .list .item {
  background: #fff;
  box-shadow: 0 4px 31.8px 0 rgba(145, 145, 145, 0.25);
  border-radius: var(--all-border-radius);
  padding: 0.62rem 0.2rem 0.4rem 0.2rem;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-transition: 0.6s;
  transition: 0.6s;
  border: 1px solid transparent;
}
.page .contactUs-s2 .content .module1 .list .item .item-head h3 {
  font-size: var(--font-size-26);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .contactUs-s2 .content .module1 .list .item .item-head p {
  margin-top: 0.18rem;
  font-size: var(--font-size-22);
  color: #222;
}
.page .contactUs-s2 .content .module1 .list .item .item-head p strong {
  color: var(--primary-color);
  font-weight: normal;
}
.page .contactUs-s2 .content .module1 .list .item .img-box {
  border-radius: var(--all-border-radius);
  margin-top: 0.38rem;
}
.page .contactUs-s2 .content .module1 .list .item:hover {
  border-color: var(--primary-color);
  box-shadow: none;
  -moz-transform: translateY(-0.33rem);
   -ms-transform: translateY(-0.33rem);
       transform: translateY(-0.33rem);
}
.page .contactUs-s2 .content .module1 .list .item:hover h3 {
  color: var(--primary-color);
}
.page .contactUs-s2 .content .module1 .list .item:hover img {
  -moz-transform: scale(1.06);
   -ms-transform: scale(1.06);
       transform: scale(1.06);
}
@media screen and (max-width: 880px) {
  .page .contactUs-s2 .content .module1 .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 668px) {
  .page .contactUs-s2 .content .title {
    width: 100%;
  }
}
.page .contact-s3 {
  padding-top: 0.2rem;
  padding-bottom: 0.55rem;
}
.page .contact-s3 .content .title {
  font-size: var(--font-size-18);
  margin-top: 0.18rem;
}
.page .contact-s3 .content .module1 {
  border-radius: var(--all-border-radius);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.page .contact-s3 .content .module1 .module1-left {
  -moz-box-flex: 1;
       flex: 1;
  flex-shrink: 0;
  background-color: var(--primary-color);
  padding: 0.34rem 0;
}
.page .contact-s3 .content .module1 .module1-left h6 {
  font-size: var(--font-size-22);
  color: white;
  padding: 0 0.25rem;
}
.page .contact-s3 .content .module1 .module1-left h2 {
  margin-top: 0.12rem;
  color: white;
  padding: 0 0.25rem;
}
.page .contact-s3 .content .module1 .module1-left .title {
  margin-top: 6px;
  font-size: var(--font-size-22);
  color: white;
  padding: 0 0.25rem;
}
.page .contact-s3 .content .module1 .module1-left .line {
  margin-top: 0.36rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.44);
}
.page .contact-s3 .content .module1 .module1-left .list {
  margin-top: 0.44rem;
  padding: 0 0.25rem;
}
.page .contact-s3 .content .module1 .module1-left .list .item {
  margin-bottom: 0.36rem;
}
.page .contact-s3 .content .module1 .module1-left .list .item .item-left {
  flex-shrink: 0;
}
.page .contact-s3 .content .module1 .module1-left .list .item .item-left .img-box {
  border-radius: 50%;
}
.page .contact-s3 .content .module1 .module1-left .list .item .item-left .img-box i {
  font-size: var(--font-size-30);
  color: white;
}
.page .contact-s3 .content .module1 .module1-left .list .item .item-right {
  margin-left: 0.24rem;
}
.page .contact-s3 .content .module1 .module1-left .list .item .item-right h3 {
  font-size: var(--font-size-22);
  color: var(--primary-color3);
  color: white;
}
.page .contact-s3 .content .module1 .module1-left .list .item .item-right p {
  font-size: var(--font-size-22);
  color: white;
}
.page .contact-s3 .content .module1 .module1-left .list .item.item:nth-last-child(1) {
  margin-bottom: 0;
}
.page .contact-s3 .content .module1 .module1-left .title2 {
  margin-top: 0.4rem;
  font-size: var(--font-size-22);
  color: white;
  padding: 0 0.25rem;
}
.page .contact-s3 .content .module1 .module1-right {
  width: 64%;
  padding: 0.46rem 0.3rem 0.38rem 0.62rem;
}
.page .contact-s3 .content .module1 .module1-right input,
.page .contact-s3 .content .module1 .module1-right textarea {
  background-color: white;
}
@media screen and (max-width: 880px) {
  .page .contact-s3 .content .module1 {
    flex-wrap: wrap;
  }
  .page .contact-s3 .content .module1 .module1-left {
    width: 100%;
    margin-right: 0;
  }
  .page .contact-s3 .content .module1 .module1-right {
    width: 100%;
    padding: 0.46rem 0.2rem 0.38rem 0.2rem;
  }
}

.page .news-s2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fcfcfc;
}
.page .news-s2 .module1 {
  margin-bottom: 0.6rem;
  text-align: center;
}
.page .news-s2 .module1 .tabs-box {
  display: -moz-inline-box;
  display: inline-flex;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  padding: 0.06rem 0.14rem;
}
.page .news-s2 .module1 .tabs-box .tab-item {
  padding: 0.12rem 0.5rem;
  font-size: var(--font-size-16);
  color: #666;
  border-radius: 0.4rem;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
}
.page .news-s2 .module1 .tabs-box .tab-item:hover {
  color: var(--primary-color);
}
.page .news-s2 .module1 .tabs-box .tab-item.active {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(102, 209, 218, 0.3);
}
.page .news-s2 .module2 {
  margin-bottom: 0.62rem;
}
.page .news-s2 .module2 .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.3rem;
}
.page .news-s2 .module2 .news-grid .news-item {
  background: #fff;
  border-radius: var(--all-border-radius);
  overflow: hidden;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  cursor: pointer;
}
.page .news-s2 .module2 .news-grid .news-item .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-transition: transform 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -moz-transform 0.5s;
}
.page .news-s2 .module2 .news-grid .news-item .img-box:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.page .news-s2 .module2 .news-grid .news-item .content {
  padding: 0.35rem 0.3rem;
}
.page .news-s2 .module2 .news-grid .news-item .content .date {
  font-size: var(--font-size-14);
  color: #999;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  margin-bottom: 0.15rem;
}
.page .news-s2 .module2 .news-grid .news-item .content .date i {
  font-size: var(--font-size-14);
  margin-right: 0.08rem;
  line-height: 1;
  margin-top: 2px;
}
.page .news-s2 .module2 .news-grid .news-item .content h3 {
  font-size: var(--font-size-22);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.1rem;
}
.page .news-s2 .module2 .news-grid .news-item .content h3 a {
  color: #333;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.page .news-s2 .module2 .news-grid .news-item .content p {
  font-size: var(--font-size-16);
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.24rem;
}
.page .news-s2 .module2 .news-grid .news-item .content .check-more {
  font-size: var(--font-size-16);
  color: #999;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.page .news-s2 .module2 .news-grid .news-item .content .check-more .i-box {
  width: max(0.24rem, 20px);
  height: max(0.24rem, 20px);
  background-color: var(--primary-color);
  margin-left: 0.1rem;
  -moz-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  opacity: 0;
}
.page .news-s2 .module2 .news-grid .news-item .content .check-more .i-box i {
  font-size: var(--font-size-14);
  color: white;
}
.page .news-s2 .module2 .news-grid .news-item:hover {
  -moz-transform: translateY(-5px);
   -ms-transform: translateY(-5px);
       transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--primary-color);
}
.page .news-s2 .module2 .news-grid .news-item:hover h3 {
  color: var(--primary-color);
}
.page .news-s2 .module2 .news-grid .news-item:hover .check-more {
  color: var(--primary-color);
  font-weight: bold;
}
.page .news-s2 .module2 .news-grid .news-item:hover .check-more .i-box {
  -moz-transform: translateX(5px);
   -ms-transform: translateX(5px);
       transform: translateX(5px);
  opacity: 1 !important;
}
@media screen and (max-width: 1024px) {
  .page .news-s2 .module2 .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page .news-s2 {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .page .news-s2 .module1 {
    margin-bottom: 0.4rem;
  }
  .page .news-s2 .module1 .tabs-box {
    -moz-box-pack: center;
         justify-content: center;
  }
  .page .news-s2 .module2 .news-grid {
    grid-template-columns: 1fr;
  }
}

.page .newsDetails-s2 {
  position: relative;
  padding-top: 0.56rem;
  padding-bottom: 0.78rem;
}
.page .newsDetails-s2 .module1 .module1-left {
  width: 70.72%;
  background: #ffffff;
}
.page .newsDetails-s2 .module1 .module1-left .introduction h2 {
  margin-top: 0.2rem;
  line-height: 1.5;
}
.page .newsDetails-s2 .module1 .module1-left .introduction .time-box .time,
.page .newsDetails-s2 .module1 .module1-left .introduction .time-box .laiyuan {
  font-size: var(--font-size-18);
  color: #666;
  margin-top: 0.22rem;
}
.page .newsDetails-s2 .module1 .module1-left .introduction .time-box .laiyuan {
  margin-left: 0.62rem;
}
.page .newsDetails-s2 .module1 .module1-left .introduction .line {
  margin-top: 0.36rem;
  background-color: #eaeaea;
  width: 100%;
  height: 1px;
}
.page .newsDetails-s2 .module1 .module1-left .introduction .title {
  margin-top: 0.32rem;
  font-size: var(--font-size-18);
}
.page .newsDetails-s2 .module1 .module1-left .plot {
  padding: 0.34rem 0.28rem;
  background-color: #f7f8ff;
  border-radius: var(--all-border-radius);
  margin-top: 0.44rem;
}
.page .newsDetails-s2 .module1 .module1-left .plot h3 {
  font-size: var(--font-size-32);
  color: #222222;
}
.page .newsDetails-s2 .module1 .module1-left .plot .plot-content {
  margin-top: 0.2rem;
}
.page .newsDetails-s2 .module1 .module1-left .plot .plot-content a:nth-child(1) {
  margin-top: 0.16rem;
}
.page .newsDetails-s2 .module1 .module1-left .plot .plot-content a {
  color: #666;
  font-size: var(--font-size-18);
  margin-bottom: 0.1rem;
  display: block;
}
.page .newsDetails-s2 .module1 .module1-left .plot .plot-content a:hover {
  color: var(--text-color);
}
.page .newsDetails-s2 .module1 .module1-left .plot .plot-content .toc-sub-container {
  padding-left: 0.24rem;
  margin-bottom: 0.16rem;
}
.page .newsDetails-s2 .module1 .module1-left .article {
  padding-top: 0.32rem;
}
.page .newsDetails-s2 .module1 .module1-left .article img {
  width: auto;
  margin-bottom: 0.44rem;
}
.page .newsDetails-s2 .module1 .module1-left .article h2 {
  margin-bottom: 0.2rem;
  font-size: var(--font-size-32);
}
.page .newsDetails-s2 .module1 .module1-left .article h3,
.page .newsDetails-s2 .module1 .module1-left .article h4,
.page .newsDetails-s2 .module1 .module1-left .article h5,
.page .newsDetails-s2 .module1 .module1-left .article h5 {
  margin-bottom: 0.2rem;
}
.page .newsDetails-s2 .module1 .module1-left .article p {
  margin-bottom: 0.36rem;
}
.page .newsDetails-s2 .module1 .module1-left .article ul li p {
  margin-bottom: 0;
}
.page .newsDetails-s2 .module1 .module1-left .article a {
  color: var(--primary-color);
}
.page .newsDetails-s2 .module1 .module1-left .article table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  width: 100%;
  max-width: 100%;
}
.page .newsDetails-s2 .module1 .module1-left .article table th,
.page .newsDetails-s2 .module1 .module1-left .article table td {
  border: 1px solid #e1e8ed;
  padding: 14px 16px;
  color: #666666;
}
.page .newsDetails-s2 .module1 .module1-left .switch {
  margin-top: 0.36rem;
}
.page .newsDetails-s2 .module1 .module1-left .switch .btm {
  background-color: #ffffff;
  box-shadow: 0px -1px 4px 0px rgba(183, 183, 183, 0.19);
  border-radius: max(0.05rem, 5px);
  border: solid 1px #efefef;
  color: #666666;
  font-size: var(--font-size-16);
  margin-left: max(0.06rem, 6px);
  width: max(0.24rem, 24px);
  height: max(0.24rem, 24px);
  cursor: pointer;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .newsDetails-s2 .module1 .module1-left .switch .btm i {
  font-size: var(--font-size-12);
}
.page .newsDetails-s2 .module1 .module1-left .switch .btm:hover {
  background-color: var(--primary-color);
  color: white;
}
.page .newsDetails-s2 .module1 .module1-left .recommend {
  margin-top: 0.64rem;
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list {
  flex-wrap: wrap;
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item {
  position: relative;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  width: 49%;
  margin-right: 2%;
  border-radius: var(--all-border-radius);
  overflow: hidden;
  display: block;
  padding: 0.26rem 0.2rem;
  -moz-transition: 0.8s;
  transition: 0.8s;
  background-color: #f7f8ff;
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item .img-box {
  border-radius: var(--all-border-radius);
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item .item-bot {
  padding-top: 0.3rem;
  padding-bottom: 0.08rem;
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item .item-bot h3 {
  font-size: var(--font-size-36);
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item .item-bot p {
  margin-top: 0.13rem;
  font-size: var(--font-size-18);
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item .item-bot .all-btm {
  border: 1px solid #666666;
  margin-top: 0.5rem;
  padding: 0.1rem 0.4rem;
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item .item-bot .all-btm .name {
  font-size: var(--font-size-18);
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item .item-bot .all-btm:hover {
  border-color: transparent;
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item:nth-child(2n) {
  margin-right: 0;
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item:hover {
  background: #ffffff;
  box-shadow: 0px 4px 35px 0px rgba(147, 147, 147, 0.3);
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item:hover img {
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item:hover .more {
  color: var(--text-color);
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item:hover .more i {
  color: var(--text-color);
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item:hover .all-btm {
  border-color: transparent;
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item:hover .all-btm .name {
  color: white;
}
.page .newsDetails-s2 .module1 .module1-left .recommend .list .item:hover .all-btm::before {
  height: 100%;
}
.page .newsDetails-s2 .module1 .module1-left .fenye {
  margin-top: 0.4rem;
}
.page .newsDetails-s2 .module1 .module1-left .fenye .box {
  margin-bottom: 0.16rem;
  flex-wrap: wrap;
}
.page .newsDetails-s2 .module1 .module1-left .fenye .box i {
  font-size: var(--font-size-20);
  color: #666666;
  flex-shrink: 0;
}
.page .newsDetails-s2 .module1 .module1-left .fenye .box h3 {
  margin-left: 0.1rem;
  font-weight: 500;
  font-size: var(--font-size-16);
  line-height: 1.4;
}
.page .newsDetails-s2 .module1 .module1-left .fenye .box:hover h3,
.page .newsDetails-s2 .module1 .module1-left .fenye .box:hover i {
  color: var(--primary-color);
}
.page .newsDetails-s2 .module1 .module1-right {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--all-border-radius);
  margin-left: 0.55rem;
  -moz-box-flex: 1;
       flex: 1;
  position: -webkit-sticky;
  position: sticky;
  top: -moz-calc(var(--header-height) + 20px);
  top: calc(var(--header-height) + 20px);
}
.page .newsDetails-s2 .module1 .module1-right .card {
  margin-bottom: 0.2rem;
}
.page .newsDetails-s2 .module1 .module1-right .card .h-box {
  background-color: var(--primary-color);
  border-radius: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1rem 0.24rem;
}
.page .newsDetails-s2 .module1 .module1-right .card .h-box .i-box {
  width: max(0.28rem, 26px);
  height: max(0.28rem, 26px);
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 4px 26px 0px rgba(141, 141, 141, 0.3);
}
.page .newsDetails-s2 .module1 .module1-right .card .h-box .i-box i {
  color: var(--primary-color);
}
.page .newsDetails-s2 .module1 .module1-right .card .h-box h3 {
  font-size: var(--font-size-24);
  font-weight: 600;
  color: white;
}
.page .newsDetails-s2 .module1 .module1-right .card .list {
  margin-top: 0.18rem;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item {
  background: #ffffff;
  box-shadow: 0px 4px 52px 0px rgba(199, 199, 199, 0.3);
  padding: 0.18rem 0.2rem 0.18rem 0.2rem;
  margin-bottom: 8px;
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: var(--all-border-radius);
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/newsDetailsS2-bg.webp");
  background-size: cover;
  opacity: 0;
  -moz-transition: 0.8s;
  transition: 0.8s;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item .item-left {
  width: 30%;
  margin-right: 0.14rem;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item .item-right {
  position: relative;
  z-index: 2;
  -moz-box-flex: 1;
       flex: 1;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item h4 {
  font-size: var(--font-size-14);
  line-height: 1.5;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item .line {
  margin-top: 0.18rem;
  width: 100%;
  height: 1px;
  background-color: #eaeaea;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item .more {
  margin-top: 0.08rem;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item .more .time {
  color: #666;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: var(--font-size-14);
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item .more .btm {
  background-color: var(--primary-color);
  width: max(0.28rem, 26px);
  height: max(0.28rem, 26px);
  border-radius: var(--all-border-radius);
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item .more .btm i {
  color: white;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item:nth-last-child(1) {
  margin-bottom: 0;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item:hover {
  border-radius: var(--all-border-radius);
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item:hover::after {
  opacity: 1;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item:hover h4,
.page .newsDetails-s2 .module1 .module1-right .card .list .item:hover .line {
  color: var(--primary-color);
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item:hover .more .time {
  color: var(--primary-color);
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item:hover .more .btm {
  background-color: white;
}
.page .newsDetails-s2 .module1 .module1-right .card .list .item:hover .more .btm i {
  color: var(--primary-color);
}
.page .newsDetails-s2 .module1 .module1-right .card .plot {
  margin-top: 0.18rem;
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  padding: 0.24rem 0;
}
.page .newsDetails-s2 .module1 .module1-right .card .plot .draw {
  font-size: var(--font-size-24);
  margin-bottom: 0.16rem;
  color: #666;
  padding: 0.16rem 0.44rem;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  font-weight: normal;
  position: relative;
  -moz-transition: 0.6s;
  transition: 0.6s;
  cursor: pointer;
}
.page .newsDetails-s2 .module1 .module1-right .card .plot .draw::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  height: 0%;
  width: 0.06rem;
  background-color: var(--primary-color);
  -moz-transition: 0.6s;
  transition: 0.6s;
}
.page .newsDetails-s2 .module1 .module1-right .card .plot .draw:hover {
  background-color: #f3f3f3;
  color: #222;
}
.page .newsDetails-s2 .module1 .module1-right .card .plot .draw:hover::after {
  height: 100%;
}
.page .newsDetails-s2 .module1 .module1-right .card .plot .draw:nth-last-child(1) {
  margin-bottom: 0;
}
.page .newsDetails-s2 .module1 .module1-right .card form {
  border-radius: var(--all-border-radius);
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15.9px 0 #f0f0f0;
  padding: 0.4rem 0.44rem;
}
.page .newsDetails-s2 .module1 .module1-right .card form h2 {
  font-size: var(--font-size-24);
  margin-bottom: 0.16rem;
}
.page .newsDetails-s2 .module1 .module1-right .card form .inp-box {
  margin-bottom: 10px;
  position: relative;
  border-radius: 0.1rem;
}
.page .newsDetails-s2 .module1 .module1-right .card form .inp-box label {
  font-size: var(--font-size-18);
  color: #000000;
}
.page .newsDetails-s2 .module1 .module1-right .card form .inp-box input {
  font-size: var(--font-size-18);
  width: 100%;
  border-radius: max(0.1rem, 8px);
  overflow: hidden;
  height: max(0.42rem, 30px);
  padding: 0 0.16rem;
  border: 1px solid #dedede;
}
.page .newsDetails-s2 .module1 .module1-right .card form .inp-box textarea {
  padding: 0.12rem 0.13rem;
  border: 1px solid #dedede;
  font-size: var(--font-size-18);
  width: 100%;
  min-height: 80px;
  border-radius: max(0.1rem, 8px);
  overflow: hidden;
}
.page .newsDetails-s2 .module1 .module1-right .card form .inp-box .tip {
  position: absolute;
  left: 0;
  top: 100%;
  color: #ff4d4f;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.page .newsDetails-s2 .module1 .module1-right .card form .inp-box-active {
  border-color: red !important;
}
.page .newsDetails-s2 .module1 .module1-right .card form .inp-box-active .tip {
  top: -moz-calc(100% + 6px) !important;
  top: calc(100% + 6px) !important;
  opacity: 1 !important;
}
.page .newsDetails-s2 .module1 .module1-right .card form .inp-box-active input,
.page .newsDetails-s2 .module1 .module1-right .card form .inp-box-active textarea {
  border-color: red;
}
.page .newsDetails-s2 .module1 .module1-right .card form .privacy {
  -moz-box-align: self-start;
       align-items: self-start;
  margin-top: 10px;
  position: relative;
}
.page .newsDetails-s2 .module1 .module1-right .card form .privacy input {
  margin-right: 0.1rem;
  margin-top: 0.06rem;
}
.page .newsDetails-s2 .module1 .module1-right .card form .privacy .tip {
  position: absolute;
  left: 0;
  top: 100%;
  color: #ff4d4f;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.page .newsDetails-s2 .module1 .module1-right .card form .privacy a {
  color: var(--primary-color);
  cursor: pointer;
}
.page .newsDetails-s2 .module1 .module1-right .card form button {
  margin-top: 40px;
  color: white;
  background-color: var(--primary-color);
  border-radius: var(--all-border-radius);
  padding: 0.1rem 0.1rem 0.1rem 0.18rem;
}
.page .newsDetails-s2 .module1 .module1-right .card form button .name {
  font-size: var(--font-size-18);
}
.page .newsDetails-s2 .module1 .module1-right .card form button .i-box {
  width: max(0.22rem, 18px);
  height: max(0.22rem, 18px);
}
.page .newsDetails-s2 .module1 .module1-right .card:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  .page .newsDetails-s2 .module1 .module1-left {
    width: 100%;
  }
  .page .newsDetails-s2 .module1 .module1-right {
    display: none;
    position: absolute;
    width: max(40%, 300px);
    left: 95%;
  }
}
@media screen and (max-width: 980px) and (max-width: 768px) {
  .page .newsDetails-s2 .module1 .module1-left .recommend .list {
    flex-wrap: wrap;
  }
  .page .newsDetails-s2 .module1 .module1-left .recommend .list .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.privacy-page {
  background-color: white;
}

.page .privacy-s1 {
  box-shadow: 6px 10px 120px 2px rgba(133, 167, 255, 0.14);
  border-radius: 0.05rem;
  padding: 0.6rem 0.6rem;
  margin-top: max(1.5rem, 140px);
  margin-bottom: 0.4rem;
}
.page .privacy-s1 h1 {
  margin-bottom: 0.5rem;
}
.page .privacy-s1 h2,
.page .privacy-s1 h3,
.page .privacy-s1 h4,
.page .privacy-s1 h5,
.page .privacy-s1 h6 {
  margin-bottom: 0.3rem;
}
.page .privacy-s1 p {
  margin-bottom: 0.2rem;
}
.page .privacy-s1 hr {
  margin-bottom: 0.1rem;
}
.page .privacy-s1 a {
  color: var(--primary-color);
}

/* swiper qiehaun annu */
/* 使用自定义图标（例如 Font Awesome） */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: var(--font-size-24);
}

.swiper-button-prev {
  margin-left: 0.1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 1px #e5e5e4;
  flex-shrink: 0;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  color: var(--primary-color);
}

.swiper-button-next {
  margin-right: 0.1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 1px #e5e5e4;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  flex-shrink: 0;
  color: var(--primary-color);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--primary-color);
  color: white;
  border: solid 1px var(--primary-color);
  color: white;
}