@charset "UTF-8";
@font-face {
  font-family: "HarmonyOS_Sans_SC";
  src: url("../fonts/HarmonyOS_Sans_SC.woff2") format("woff2");
  src: url("../fonts/HarmonyOS_Sans_SC.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HARMONYOS_SANS_SC_MEDIUM";
  src: url("../fonts/HARMONYOS_SANS_SC_MEDIUM.woff2") format("woff2");
  src: url("../fonts/HARMONYOS_SANS_SC_MEDIUM.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0px;
  padding: 0px;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

img {
  transition: all 550ms;
  -webkit-transition: all 550ms;
  -o-transition: all 550ms;
  -moz-transition: all 550ms;
  max-width: 100%;
  width: 100%;
  border: none;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

.pcbanner {
  display: block;
}

.phonebanner {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcbanner {
    display: none;
  }
  .phonebanner {
    display: block;
  }
}
ul li {
  list-style-type: none;
}

ul,
form,
p,
a,
img,
table,
tr,
td,
li,
dd,
dt,
dl,
span {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  outline: none;
  transition: all 550ms;
  -webkit-transition: all 550ms;
  -o-transition: all 550ms;
  -moz-transition: all 550ms;
}

input[type=button],
input[type=submit],
input[type=reset] {
  -webkit-appearance: none;
}

button {
  border-radius: 0px;
  -webkit-border-radius: 0px;
}

/*reset css*/
html {
  font-size: max(5.2083333333vw, 50px) !important; /* 适配1920px宽度 */
  /* 适配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;
}

p {
  font-family: "HarmonyOS_Sans_SC", Arial, Helvetica, sans-serif;
}

.blod {
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
}

body {
  /* overflow-x: hidden; */
  font-size: var(--font-size-18);
  font-family: "HarmonyOS_Sans_SC", Arial, Helvetica, sans-serif, "Microsoft YaHei", sans-serif;
  /* --font-medium: 'HarmonyOS_SansSC_Medium'; */
  /* --font-regular: 'HarmonyOS_SansSC_Regular'; */
  /* --font-light: 'wixmadefordisplay_REGULAR'; */
  /* --font-number: 'pangmengzhengdao'; */
  /* 主题色 */
  --color-primary: #0c283e;
  /* 文本色 */
  --color-text: #222;
  --color-link: #0c66af;
  --color-vi: #0c66af;
  --color-1f274b:#1f274b;
  --color-4c5f6d:#4c5f6d;
  --color-004984:#004984;
  --color-003366:#003366;
  --color-fff:#fff;
  --pp-theme: #086a67;
  --pp-primary: #DC2525;
  --pp-text: #000;
  --pp-text-light: #333;
  --pp-text-muted: #666;
  --pp-bg: #fff;
  --pp-bg-light: #f5f5f5;
  --pp-bg-notice: #e8f4f8;
  --pp-border: #e0e0e0;
  --pp-hover: #b01f1f;
  /* 导航高度 */
  --header-height: 0.98rem;
  line-height: 1.5;
  --font-size-72: max(0.72rem, 24px);
  --font-size-60: max(0.6rem, 26px);
  --font-size-48: max(0.48rem, 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);
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

main {
  display: block;
  -moz-box-flex: 1;
       flex: 1;
}

*[id] {
  scroll-margin-top: 0.5rem;
  /* 避免锚点内容被 fixed header 遮挡 */
  scroll-behavior: smooth;
}

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

.scroll-x::-webkit-scrollbar {
  height: 0.03rem;
}

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

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

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

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

.scroll-y::-webkit-scrollbar {
  width: 2px;
  /* 设置滚动条的宽度 */
}

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

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

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

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

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

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-bold);
  color: #222;
}

h2 {
  font-size: var(--font-size-40);
}

video {
  width: 100%;
}

a {
  color: inherit;
}

a:hover {
  color: unset;
}

/* motion effects */
/* From Uiverse.io by nikk7007 */
.slice {
  --c1: #202020;
  --c2: #00a1b7;
  --size-letter: 0.12rem;
  padding: 0.05rem 0.1rem;
  font-size: var(--size-letter);
  background-color: transparent;
  border: -moz-calc(var(--size-letter) / 6) solid var(--c2);
  border: calc(var(--size-letter) / 6) solid var(--c2);
  border-radius: 0.02rem;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  font-size: var(--font-size-14);
  -moz-transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
  transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
}
.slice > .text {
  font-weight: 700;
  color: var(--c2);
  position: relative;
  z-index: 1;
  -moz-transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
  transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
}

/* vin all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
/* Sections
     ========================================================================== */
/**
   * Render the `main` element consistently in IE.
   */
/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  margin: 0;
  line-height: 1.3;
}

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

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

sub {
  bottom: -0.25em;
}

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

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

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

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

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

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

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

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

.left-1600 {
  margin-left: 8.04%;
}

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

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

@media screen and (max-width: 1599px) {
  .w1600 {
    width: 90%;
  }
  .left-1600 {
    margin-left: 5%;
  }
  .w1400 {
    width: 80%;
  }
  .left-1400 {
    margin-left: 10%;
  }
  .right-1400 {
    margin-right: 10%;
  }
}
@media screen and (max-width: 1439px) {
  .w1400 {
    width: 90%;
  }
  .left-1400 {
    margin-left: 5%;
  }
  .right-1400 {
    margin-right: 5%;
  }
}
@media screen and (max-width: 1279px) {
  .w1200 {
    width: 90%;
  }
}
.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -moz-box-pack: center;
       justify-content: center;
  -moz-box-align: center;
       align-items: center;
  z-index: 9999;
}

.video-popup.active {
  display: -moz-box;
  display: flex;
}

.video-popup-content {
  position: relative;
  width: 90%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-popup iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: var(--font-size-34);
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 0.36rem;
  height: 0.36rem;
  line-height: 0.36rem;
  min-width: 30px;
  min-height: 30px;
  line-height: 30px;
  text-align: center;
}

.footer-kuang-title {
  font-size: var(--font-size-18);
  color: #fff;
}

.footer-kuang-content {
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}
.footer-kuang-content a, .footer-kuang-content p, .footer-kuang-content span {
  margin-right: 0.3rem;
}
.footer-kuang-content a:hover {
  color: var(--color-link);
}

.footer-kuang-left {
  display: inline-block;
  width: 36%;
}

.footer-logo {
  width: max(1.2rem, 120px);
  margin-bottom: 0.5rem;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; /* 平滑过渡动画 */
  position: relative;
  top: 0px;
}
.footer-logo:hover {
  top: -0.03rem;
}

.footer-phone {
  font-size: var(--font-size-28);
  color: #fff;
  margin-bottom: 0.08rem;
}

.footer-address {
  font-size: var(--font-size-16);
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.footer-mid {
  background: #0c283e url(../images/logoxiantiao.webp) no-repeat;
  background-size: cover;
  background-position: 0px 0.36rem;
  padding-top: 1rem;
  padding-bottom: 0.56rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 1;
}

.footer-kuang-div:last-child {
  border-bottom: 0px;
}

.footer-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
}

.footer-kuang-right {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  width: 50%;
}
.footer-kuang-right ul li:first-child {
  margin-top: 0.2rem;
  color: #fff;
  font-size: var(--font-size-24);
  margin-bottom: 0.2rem;
  position: relative;
}
.footer-kuang-right ul li {
  font-size: var(--font-size-16);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.1rem;
}
.footer-kuang-right ul li a {
  display: block;
}
.footer-kuang-right ul li a:hover {
  color: var(--color-link);
}

.footer-kuang-bot {
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  font-size: var(--font-size-16);
  color: rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
}
.footer-kuang-bot a:hover {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-kuang-right {
    display: none;
  }
  .footer-kuang-bot {
    flex-wrap: wrap;
    -moz-box-pack: center;
         justify-content: center;
    text-align: center;
  }
  .footer-cop {
    width: 100%;
  }
  .footer-kuang-left {
    width: 100%;
    text-align: center;
  }
  .footer-kuang-left i {
    color: #fff;
  }
  .footer-kuang-content {
    -moz-box-pack: center;
         justify-content: center;
  }
}
::-moz-selection {
  color: #fff;
  background: #829d94;
}
::selection {
  color: #fff;
  background: #829d94;
}

.table {
  width: 100%;
  overflow: auto;
}

.table table {
  width: 100%;
  border-collapse: collapse;
  border: 0px;
  line-height: 22px;
}

.table table tr td {
  border: 1px solid #f2f2f2;
  border: 0px;
  font-size: 0.12rem;
  text-align: left;
}

.m-muban-nav {
  position: fixed;
  top: 0px;
  z-index: 10;
  width: 100%;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  background: #fff;
}
.m-muban-nav.active {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.m-muban-mid-logo {
  width: 1rem;
  display: block;
  font-size: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}
.m-muban-mid-logo span {
  font-size: var(--font-size-14);
  color: #FFFFFF;
  display: block;
  margin-left: 0.08rem;
}

.m-muban-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: initial;
       align-items: initial;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.m-muban-mid-right {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
}
.m-muban-mid-right > ul {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}
.m-muban-mid-right > ul li.active > a {
  color: var(--color-003366);
}
.m-muban-mid-right > ul li.active > a::after {
  width: 100%;
}
.m-muban-mid-right > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-top: 0.12rem;
}
.m-muban-mid-right > ul > li {
  position: relative;
}
.m-muban-mid-right > ul > li > a {
  display: block;
  font-size: var(--font-size-18);
  color: var(--color-003366);
  margin-left: 0.35rem;
  margin-right: 0.35rem;
  padding-top: 0.36rem;
  padding-bottom: 0.36rem;
  position: relative;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.m-muban-mid-right > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 0.24rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-003366);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
}
.m-muban-mid-right > ul > li > a:hover::after {
  width: 100%;
}
.m-muban-mid-right > ul > li ul {
  width: auto;
  min-width: 220px;
}
.m-muban-mid-right > ul > li > ul {
  position: absolute;
  left: var(--font-size-20);
  top: 100%;
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 0.12rem 0;
  visibility: hidden;
  opacity: 0;
  margin-top: 0.08rem;
  overflow: visible;
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}
.m-muban-mid-right > ul > li > ul::before {
  content: "";
  position: absolute;
  top: -0.06rem;
  left: 0.3rem;
  width: var(--font-size-12);
  height: var(--font-size-12);
  background: #fff;
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
  border-radius: 2px;
}
.m-muban-mid-right > ul > li > ul > li {
  padding: 0;
  position: relative;
}
.m-muban-mid-right > ul > li > ul > li a {
  display: block;
  color: #333;
  font-size: var(--font-size-16);
  line-height: 1.5;
  padding: 0.12rem 0.24rem;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.m-muban-mid-right > ul > li > ul > li a:hover {
  color: var(--color-link);
  background: rgba(36, 133, 222, 0.08);
  padding-left: 0.32rem;
}
.m-muban-mid-right > ul > li > ul > li:first-child a {
  border-radius: 4px 4px 0 0;
}
.m-muban-mid-right > ul > li > ul > li:last-child a {
  border-radius: 0 0 4px 4px;
}
.m-muban-mid-right > ul > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  border-radius: var(--font-size-12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 0.12rem 0;
  min-width: 180px;
  visibility: hidden;
  opacity: 0;
  margin-left: 0.08rem;
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 101;
}
.m-muban-mid-right > ul > li > ul > li > ul::before {
  content: "";
  position: absolute;
  left: -0.06rem;
  top: 0.3rem;
  width: var(--font-size-12);
  height: var(--font-size-12);
  background: #fff;
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
  border-radius: 2px;
}
.m-muban-mid-right > ul > li > ul > li > ul > li {
  padding: 0;
}
.m-muban-mid-right > ul > li > ul > li > ul > li > a {
  padding: 0.1rem 0.2rem;
  font-size: var(--font-size-14);
}
.m-muban-mid-right > ul > li > ul > li > ul > li > a:hover {
  padding-left: 0.28rem;
}
.m-muban-mid-right > ul > li > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  margin-left: 0.12rem;
}
.m-muban-mid-right > ul > li > ul > li.has-submenu > a {
  position: relative;
  padding-right: 0.4rem;
}
.m-muban-mid-right > ul > li > ul > li.has-submenu > a::after {
  content: "›";
  position: absolute;
  right: 0.16rem;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  font-size: var(--font-size-18);
  color: #999;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.m-muban-mid-right > ul > li > ul > li.has-submenu:hover > a::after {
  color: var(--color-link);
  right: 0.12rem;
}

@media screen and (max-width: 991px) {
  .m-muban-mid-logo {
    height: 40px;
  }
  .sousuo-mid {
    margin-right: 30px;
  }
  .m-muban-mid-right ul {
    display: none;
  }
  .m-muban-mid {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .sousou-kuang.active {
    height: 100vh;
  }
  .sousou-kuang .form-sousuo {
    height: 0.48rem;
    padding: 0 0.06rem 0 0.16rem;
  }
  .sousou-kuang form input[type=text] {
    font-size: var(--font-size-16);
  }
  .sousou-kuang form .tj {
    width: 0.36rem;
    min-width: 32px;
    height: 0.36rem;
    min-height: 32px;
  }
  .search-suggestions {
    margin-top: 0.2rem;
    padding: 0.16rem;
  }
  .search-suggestions .suggest-list a {
    padding: 0.06rem 0.12rem;
    font-size: var(--font-size-14);
  }
  .header-keywords {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header-keywords {
    font-size: 12px;
  }
  .sousou-kuang .w1400 {
    padding: 0 0.2rem;
    width: 100%;
  }
  .search-suggestions .suggest-list {
    gap: 0.08rem;
  }
}
.m-mobilenav {
  display: none;
}

.duoyuyanphone {
  padding: 0.2rem;
  margin-top: 0.2rem;
  text-align: center;
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  gap: 0.16rem;
}
.duoyuyanphone a {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.1rem 0.24rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-16);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 0.8rem;
}
.duoyuyanphone a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}
.duoyuyanphone a.active {
  color: #fff;
  background: var(--color-link);
  border-color: var(--color-link);
}

.m-mobilenav {
  display: none;
}

@media screen and (max-width: 991px) {
  .mbnav-wp_seach {
    width: 100%;
    margin: auto;
    position: absolute;
    z-index: 2;
  }
  .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);
  }
  .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;
  }
  .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;
  }
  .mbnav-wp_seach > form > .box-form .icon {
    position: absolute;
    right: 4px;
    top: 10px;
    z-index: 1;
  }
  .mbnav-list {
    margin-top: 20px;
  }
  .m-mobilenav {
    position: absolute;
    z-index: 11;
    padding-top: 25px;
    top: 0;
    left: 0;
    display: block;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 100;
  }
  .m-mobilenav .mbnav-btn {
    position: fixed;
    z-index: 2;
    top: 18px;
    right: 4%;
    left: auto;
    padding: 4px;
    border-radius: 4px;
    overflow: hidden;
    background: #FFFFFF;
    width: 34px;
    -moz-transition: all 550ms;
    transition: all 550ms;
  }
  .m-mobilenav .mbnav-btn .line {
    width: 100%;
    height: 2px;
    background-color: var(--color-vi);
    -moz-transition: 0.5s;
    transition: 0.5s;
  }
  .m-mobilenav .mbnav-btn.active .line {
    background-color: #FFFFFF;
  }
  .m-mobilenav .mbnav-btn .line2 {
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .m-mobilenav .mbnav-btn .smalldaohangxuanzhong {
    background-color: #FFFFFF;
  }
  .m-mobilenav .mbnav-btn.active .line1 {
    -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
         transform: rotate(-45deg);
    background-color: #419c47;
    top: 8px;
    position: relative;
  }
  .m-mobilenav .mbnav-btn.active .line3 {
    -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
         transform: rotate(45deg);
    background-color: #419c47;
    bottom: 8px;
    position: relative;
  }
  .m-mobilenav .mbnav-bd {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    top: 0;
    visibility: hidden;
    z-index: 1;
  }
  .m-mobilenav .mbnav-bd.show {
    visibility: visible;
  }
  .m-mobilenav .mbnav-bd.show .mbnav-wp {
    height: 100%;
    opacity: 1;
  }
  .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);
  }
  .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;
  }
  .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: scroll;
    overflow-x: hidden;
  }
  .m-mobilenav .mbnav-item {
    position: relative;
    padding-left: 44px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .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;
  }
  .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;
  }
  .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;
  }
  .m-mobilenav .mbnav-item > a.active {
    color: #529dba;
  }
  .m-mobilenav .mbnav-item > a.active:after {
    background-color: #529dba;
  }
  .m-mobilenav .mbnav-item:nth-child(1) > a {
    -moz-transition-delay: 250ms;
    transition-delay: 250ms;
  }
  .m-mobilenav .mbnav-item:nth-child(2) > a {
    -moz-transition-delay: 300ms;
    transition-delay: 300ms;
  }
  .m-mobilenav .mbnav-item:nth-child(3) > a {
    -moz-transition-delay: 350ms;
    transition-delay: 350ms;
  }
  .m-mobilenav .mbnav-item:nth-child(4) > a {
    -moz-transition-delay: 400ms;
    transition-delay: 400ms;
  }
  .m-mobilenav .mbnav-item:nth-child(5) > a {
    -moz-transition-delay: 450ms;
    transition-delay: 450ms;
  }
  .m-mobilenav .mbnav-item:nth-child(6) > a {
    -moz-transition-delay: 500ms;
    transition-delay: 500ms;
  }
  .m-mobilenav .mbnav-item:nth-child(7) > a {
    -moz-transition-delay: 550ms;
    transition-delay: 550ms;
  }
  .m-mobilenav .mbsbnav-list {
    padding: 10px 0;
    display: none;
  }
  .m-mobilenav .mbsbnav-item {
    position: relative;
    padding-left: 20px;
    padding-right: 5px;
  }
  .m-mobilenav .mbsbnav-item i {
    left: 0;
    top: 6px;
    line-height: 24px;
  }
  .m-mobilenav .mbsbnav-item a {
    display: block;
    padding: 5px 5px;
    line-height: 24px;
    font-size: 14px;
    color: #fff;
  }
  .m-mobilenav .mbsbnav-item a.active {
    color: #529dba;
  }
  .box-form-tj {
    position: absolute;
    font-size: 20px !important;
    right: 5px;
    top: 8px;
    color: #043F71;
  }
}
/* 右侧客服 start */
.contact-footer.xs {
  right: 0px;
}

.kf-youxiang {
  background: var(--kf-color);
}

.contact-footer {
  position: fixed;
  right: -1rem;
  bottom: 40%;
  z-index: 10;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.contact-footer i {
  font-size: var(--font-size-18);
}
.contact-footer > p {
  margin-left: auto;
  cursor: pointer;
  margin-bottom: 10px;
  width: 0.4rem;
  min-width: 40px;
  min-height: 40px;
  height: 0.4rem;
  font-size: var(--font-size-30);
  text-align: center;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background: var(--color-link);
}
.contact-footer > p img {
  display: none;
  width: 20px;
}
.contact-footer > p img:nth-child(2) {
  display: block;
}
.contact-footer.active > p i:before {
  content: "\e608";
  font-family: "iconfont";
}
.contact-footer li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 14px;
  margin-bottom: 10px;
  position: relative;
}
.contact-footer li img {
  width: 20px;
}
.contact-footer li .con-phone {
  width: 140px;
  right: 40px;
  left: 100%;
  visibility: hidden;
  position: absolute;
  top: 0px;
  height: 100%;
  background: var(--color-link);
  text-align: center;
  line-height: 40px;
  color: #fff;
  border-radius: 10px;
}
.contact-footer li a,
.contact-footer li p {
  cursor: pointer;
  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;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
}
.contact-footer li a i,
.contact-footer li p i {
  font-size: var(--font-size-18);
}
.contact-footer li a:hover {
  /* transform: translateX(-4px); */
  background: var(--color-link);
}
.contact-footer li span {
  background-color: red;
  border-radius: 0.1rem;
  text-align: center;
  /* width: 140px; */
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  white-space: nowrap;
  font-size: var(--font-size-14);
  color: #fff;
  height: 100%;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  position: absolute;
  right: -1000px;
  top: 0px;
  z-index: -1;
  background-color: var(--color-link);
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.contact-footer li .ewm {
  min-width: 100px;
  max-width: 100px;
  min-height: 100px !important;
  max-width: 100px;
}
.contact-footer li:hover span {
  right: 120%;
}
.contact-footer li:hover .ewm {
  left: -110px;
}

.contact-footer.active > p {
  /* transform: rotate(125deg); */
}
.contact-footer.active > p img {
  display: none;
}
.contact-footer.active > p img:nth-child(1) {
  display: block;
}

.ewm {
  position: absolute;
  width: 100px;
  min-width: 100px;
  height: 100px;
  left: 100px;
  background: red;
  top: 0px;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
}

.contact-footer > li {
  /* height: 0px; */
  height: 0.4rem;
  width: 0.4rem;
  min-height: 40px;
  min-width: 40px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -moz-transition: 0.5s;
  transition: 0.5s;
  background: var(--color-link);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.contact-footer i {
  color: #fff;
}
.contact-footer > li:hover,
.contact-footer > p:hover {
  background: var(--color-vi);
}
.contact-footer.active > li {
  height: 0.4rem;
  min-height: 40px;
  overflow: unset;
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .contact-footer li:hover {
    -moz-transform: scale(1.1);
     -ms-transform: scale(1.1);
         transform: scale(1.1);
  }
}
@media screen and (max-width: 999px) {
  .contact-footer li span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .contact-footer.xs {
    right: 0px;
  }
  .contact-footer {
    width: 100%;
    bottom: 0px;
    display: -moz-box;
    display: flex;
    -moz-box-align: center;
         align-items: center;
    -moz-box-pack: center;
         justify-content: center;
    right: 0px;
    background: var(--kf-color);
  }
  .contact-footer p {
    display: none;
  }
  .contact-footer li {
    width: 34%;
    margin-bottom: 0px;
    border-radius: 0px;
    background: var(--color-vi);
  }
  .contact-footer li a,
  .contact-footer li p {
    border-radius: 0px;
  }
  .contact-footer li:hover .ewm {
    left: 0px;
    bottom: 140px;
  }
  .ewm {
    display: none;
    top: -100px;
    left: 0px;
  }
}
/* 右侧客服  end */
/* // tanchuang start */
.tanchuang {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0px;
  bottom: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  z-index: 20;
  display: none;
  text-align: center;
}

.tabchuang-mid {
  max-width: 9rem;
  max-height: 90vh;
  overflow-y: auto;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
  width: 95%;
  padding: var(--font-size-40);
  text-align: left;
  background: #fff;
  border-radius: 0.1rem;
  position: relative;
}
.tabchuang-mid .contact-s1-from-right {
  width: 100%;
  background: transparent;
  padding: 0px;
  text-align: left;
  box-shadow: none;
}
.tabchuang-mid .contact-s1-from-right form {
  padding: 0px;
}

.tabchuang-mid::-webkit-scrollbar {
  width: 2px;
}

.guanbi {
  cursor: pointer;
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 50%;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  width: var(--font-size-40);
  height: var(--font-size-40);
  background: var(--color-vi);
  font-size: var(--font-size-20);
  font-weight: bold;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  color: #fff;
}
.guanbi i {
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
  font-size: var(--font-size-20);
}

.tabchuang-mid > form div {
  text-align: left;
}

.tabchuang-mid > form p {
  width: 100%;
  height: 0.6rem;
  margin-bottom: var(--font-size-20);
}
.tabchuang-mid > form p input {
  padding-left: max(0.1rem, 10px);
  padding-right: max(0.1rem, 10px);
  outline: none;
  width: 100%;
  border: 0px;
  height: 100%;
  background: #fafafa;
  border-radius: 0.1rem;
}
.tabchuang-mid > form p textarea {
  padding-left: max(0.1rem, 10px);
  padding-right: max(0.1rem, 10px);
  outline: none;
  width: 100%;
  border: 0px;
  height: 100%;
  background: #fafafa;
  border-radius: 0.1rem;
  border: 0px;
  padding-top: max(0.1rem, 10px);
  height: 100%;
  overflow: hidden;
}
.error-msg {
  color: red;
  font-size: var(--font-size-12);
  visibility: hidden;
  opacity: 1;
  text-align: left;
  padding-left: 0px;
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0.1rem;
}
.error-msg a {
  -moz-transition: 0s;
  transition: 0s;
  text-decoration: underline;
  color: red;
}

input:invalid:focus + .error-msg,
textarea:invalid:focus + .error-msg {
  visibility: visible;
}

.tabchuang-mid > form p.tea {
  height: 1rem;
}
.tabchuang-mid > form p.tea .error-msg {
  position: relative;
  top: -4px;
}

.stbtanc {
  min-width: 1.6rem;
  height: var(--font-size-40);
  border-radius: 0.1rem;
  border: 0px;
  color: #fff;
  background: var(--color-vi);
  border: solid 0.01rem var(--color-vi);
  cursor: pointer;
}

.stbtanc:hover {
  background: var(--color-c);
  color: #222;
}

.gb-title {
  font-size: var(--font-size-30);
  color: var(--color-004984);
}

.gb-neirong > p {
  font-size: var(--font-size-20);
  margin-top: var(--font-size-12);
  height: auto;
  margin-bottom: var(--font-size-20);
  color: #3d4f5e;
}

@media screen and (max-width: 768px) {
  .tabchuang-mid {
    padding: 20px;
  }
  .gb-title {
    font-size: var(--font-size-20);
  }
  .gb-neirong > p {
    font-size: var(--font-size-14);
    margin-top: 0.1rem;
    height: auto;
    margin-bottom: 0.1rem;
  }
}
/* // tanchuang end */
.aut-fxzj a {
  display: block;
  font-size: 0px;
  overflow: hidden;
  border-radius: 50%;
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  max-width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  height: auto;
  background-color: #e6e6e6;
}
.aut-fxzj a i {
  font-size: 18px;
  color: #222;
}

.aut-fxzj a:hover {
  background-color: #3ab6ef;
}
.aut-fxzj a:hover i {
  color: #fff;
}

.aut-title {
  font-weight: bold;
  font-size: 42px;
  line-height: 50px;
  color: #161616;
}

.aut-ertitle {
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
  color: #3ab6ef;
  margin-top: 22px;
  margin-bottom: 8px;
}

.aut-neirong {
  font-size: 18px;
  line-height: 28px;
  color: #666666;
}

.aut-mid-left {
  width: 44%;
}

.aut-mid-right {
  width: 51%;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.aut-mid-top {
  margin-top: 85px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
       flex-flow: row-reverse;
}

.aut-mobile {
  font-size: var(--font-size-24);
  font-weight: bold;
  line-height: 36px;
  color: #222222;
  margin-top: 26px;
  margin-bottom: 11px;
}

.aut-email {
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  color: #222222;
}
.aut-email a {
  color: #3ab6ef;
}

.aut-fxzj {
  margin-top: 26px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
}

.aut-fxzj a {
  margin-right: 17px;
}

.author-list-img {
  display: block;
  font-size: 0px;
  overflow: hidden;
}
.author-list-img img:hover {
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}

.author-list-bottom {
  padding: 30px;
}

.author-list-bottom-title {
  font-size: 22px;
  line-height: 32px;
  color: #333333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}

.author-list-bottom-nr {
  font-size: 18px;
  line-height: 28px;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.author-list-div {
  width: 32%;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 2%;
  background: #fff;
  margin-bottom: 34px;
}
.author-list-div a:hover {
  color: #ffdf00;
}

.author-list-div.nomargin {
  margin-left: 0px;
}

.author-list {
  margin-top: 89px;
  display: -moz-box;
  display: flex;
  -moz-box-align: initial;
       align-items: initial;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
}

@media screen and (max-width: 1280px) {
  .author-list-bottom {
    padding: 20px;
  }
}
@media screen and (max-width: 999px) {
  .book-title {
    margin-top: 10px;
  }
  .aut-mid-top {
    flex-wrap: wrap;
  }
  .aut-mid-right,
  .aut-mid-left {
    width: 100%;
    margin-bottom: 10px;
  }
  .author-list,
  .aut-mid-top {
    margin-top: 20px;
  }
  .author-list {
    flex-wrap: wrap;
    -moz-box-pack: justify;
         justify-content: space-between;
  }
  .author-list-div {
    width: 49%;
    margin-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .aut-title {
    font-size: 30px;
    line-height: 36px;
  }
  .aut-ertitle {
    font-size: 20px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .aut-neirong {
    font-size: 14px;
  }
  .aut-mobile,
  .aut-email {
    font-size: 18px;
  }
  .aut-mobile {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .book-title {
    font-size: 14px;
    padding: 10px;
  }
  .author-list-bottom-title {
    font-size: 18px;
    line-height: 24px;
  }
  .author-list-bottom-nr {
    font-size: 14px;
    line-height: 24px;
    margin-top: 4px;
  }
  .author-list-bottom {
    padding: 10px;
  }
  .author-list-div {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .author-list-div {
    width: 100%;
  }
}
.xieleftright {
  position: relative;
}

.xieleftright: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);
}

.xieleftright:hover:before {
  left: 120%;
}

.woshi {
  display: inline-block;
  position: relative;
}

.woshi: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);
}

.woshi:hover:before {
  left: 120%;
}

/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */
@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.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.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.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;
}

.swiper {
  width: 100%;
}

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version 1.12.0
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  -moz-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -moz-transition: left 0.4s ease, transform 0.4s ease, -moz-transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease, -moz-transform 0.4s ease;
}

#baguetteBox-slider.bounce-from-right {
  -moz-animation: bounceFromRight 0.4s ease-out;
       animation: bounceFromRight 0.4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  -moz-animation: bounceFromLeft 0.4s ease-out;
       animation: bounceFromLeft 0.4s ease-out;
}
@-moz-keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@-moz-keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
.baguetteBox-button#previous-button, .baguetteBox-button#next-button {
  top: 50%;
  top: -moz-calc(50% - 30px);
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -moz-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}

.baguetteBox-button:focus, .baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
  right: 2%;
}

.baguetteBox-button#previous-button {
  left: 2%;
}

.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: -moz-calc(2% + 6px);
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1, .baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -moz-animation: bounce 2s infinite ease-in-out;
       animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  -moz-animation-delay: -1s;
       animation-delay: -1s;
}
@-moz-keyframes bounce {
  0%, 100% {
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@font-face {
  font-family: "iconfont"; /* Project id 4893588 */
  src: url("../fonts/iconfont.woff2?t=1761202162651") format("woff2"), url("../fonts/iconfont.woff?t=1761202162651") format("woff"), url("../fonts/iconfont.ttf?t=1761202162651") format("truetype"), url("../fonts/iconfont.svg?t=1761202162651#iconfont") format("svg");
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-dizhi1:before {
  content: "\e63e";
}

.icon-Mobile-:before {
  content: "\e6cf";
}

.icon-youjiantou1:before {
  content: "\e603";
}

.icon-whatsapp:before {
  content: "\e7bf";
}

.icon-email:before {
  content: "\e66f";
}

.icon-diqiu:before {
  content: "\e642";
}

.icon-calendar:before {
  content: "\e7e1";
}

.icon-chakan:before {
  content: "\e602";
}

.icon-pdf:before {
  content: "\e740";
}

.icon-xiazai_xiazai:before {
  content: "\e616";
}

.icon-youjiantou:before {
  content: "\e625";
}

.icon-zuojiantou:before {
  content: "\e626";
}

.icon-address:before {
  content: "\e66b";
}

.icon-whatsapp1:before {
  content: "\e7c1";
}

.icon-10:before {
  content: "\e624";
}

.icon-lunbozuojian:before {
  content: "\e723";
}

.icon-left1:before {
  content: "\e725";
}

.icon-shubiao:before {
  content: "\e662";
}

.icon-instagram:before {
  content: "\e87f";
}

.icon-Youtube-fill:before {
  content: "\e883";
}

.icon-sousuo1:before {
  content: "\e61f";
}

.icon-Facebook:before {
  content: "\e607";
}

.icon-zhibiaozhushibiaozhu:before {
  content: "\e609";
}

.icon-douyin:before {
  content: "\e8db";
}

.icon-huida:before {
  content: "\e61e";
}

.icon-dianhua1:before {
  content: "\e614";
}

.icon-youxiang1:before {
  content: "\e604";
}

.icon-fangzi:before {
  content: "\e8ff";
}

.icon-wenti:before {
  content: "\e613";
}

.icon-dizhi:before {
  content: "\e606";
}

.icon-youxiang:before {
  content: "\e908";
}

.icon-dianhua:before {
  content: "\e817";
}

.icon-weixin:before {
  content: "\e601";
}

.icon-phone-fill:before {
  content: "\e85f";
}

.icon-sousuo:before {
  content: "\e60d";
}

.icon-custom-phone:before {
  content: "\e634";
}

.icon-top:before {
  content: "\e605";
}

.icon-facebook:before {
  content: "\e620";
}

.icon-pinterest:before {
  content: "\e8ab";
}

.icon-jian2:before {
  content: "\e600";
}

.icon-linkedin:before {
  content: "\e648";
}

.icon-youtube:before {
  content: "\e6d6";
}

.icon-jia2:before {
  content: "\e608";
}

.icon-address1:before {
  content: "\e7c3";
}

.icon-contact1:before {
  content: "\e7c4";
}

.icon-email1:before {
  content: "\e7c5";
}

.icon-skype1:before {
  content: "\e7c9";
}

.icon-qq:before {
  content: "\e7ce";
}

.icon-top2:before {
  content: "\e637";
}

.icon-twitter3:before {
  content: "\e7fd";
}

.icon-twitter-new:before {
  content: "\e7ff";
}

.icon-xiangyoujiantou:before {
  content: "\e65f";
}

.icon-xiangzuojiantou:before {
  content: "\e660";
}

.icon-xiazai:before {
  content: "\e823";
}

.icon-xiala:before {
  content: "\e61d";
}

@font-face {
  font-family: "sscr";
  src: url("../fonts/SourceHanSansCN-Regular-Alphabetic.woff2") format("woff2"), url("../fonts/SourceHanSansCN-Regular-Alphabetic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sscn";
  src: url("../fonts/SourceHanSansCN-Normal-Alphabetic.woff2") format("woff2"), url("../fonts/SourceHanSansCN-Normal-Alphabetic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sscm";
  src: url("../fonts/SourceHanSansCN-Medium-Alphabetic.woff2") format("woff2"), url("../fonts/SourceHanSansCN-Medium-Alphabetic.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "hb";
  src: url("../fonts/HarmonyOS_Sans_SC_Black.woff2") format("woff2"), url("../fonts/HarmonyOS_Sans_SC_Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "hc";
  src: url("../fonts/HarmonyOS_Sans_SC.woff2") format("woff2"), url("../fonts/HarmonyOS_Sans_SC.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.morenyuyan {
  color: var(--color-003366);
  cursor: pointer;
  width: auto;
  height: auto;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.08rem 0.14rem;
  border-radius: 0.08rem;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 0.06rem;
  font-size: var(--font-size-18);
  font-weight: 500;
}
.morenyuyan i {
  font-size: var(--font-size-24);
  margin-right: 0.1rem;
}
.morenyuyan .current-lang {
  min-width: 0.3rem;
  text-align: center;
}
.morenyuyan::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.06rem solid transparent;
  border-right: 0.06rem solid transparent;
  border-top: 0.06rem solid rgb(0, 51, 102);
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
  margin-left: 2px;
}
.morenyuyan:hover {
  background: rgba(255, 255, 255, 0.15);
}

.duoyuyan {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  position: relative;
}
.duoyuyan.active .morenyuyan::after {
  -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
       transform: rotate(180deg);
}

.douyuyanxiala {
  min-width: 100px;
  padding: 0.08rem 0;
  position: absolute;
  top: -moz-calc(100% + 0.08rem);
  top: calc(100% + 0.08rem);
  left: 50%;
  -moz-transform: translateX(-50%) scaleY(0);
   -ms-transform: translateX(-50%) scaleY(0);
       transform: translateX(-50%) scaleY(0);
  -moz-transform-origin: top;
   -ms-transform-origin: top;
       transform-origin: top;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.douyuyanxiala::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

.duoyuyan.active .douyuyanxiala {
  -moz-transform: translateX(-50%) scaleY(1);
   -ms-transform: translateX(-50%) scaleY(1);
       transform: translateX(-50%) scaleY(1);
  opacity: 1;
  visibility: visible;
}

.douyuyanxiala a {
  color: #333;
  padding: 0.1rem 0.2rem;
  display: block;
  font-size: var(--font-size-14);
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.douyuyanxiala a:hover {
  color: var(--color-link);
  background: rgba(36, 133, 222, 0.08);
}
.douyuyanxiala a:first-child {
  border-radius: 4px 4px 0 0;
}
.douyuyanxiala a:last-child {
  border-radius: 0 0 4px 4px;
}
.douyuyanxiala a.active {
  color: var(--color-link);
  font-weight: 500;
  background: rgba(36, 133, 222, 0.12);
}

.m-muban-mid-kk {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
}

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

.sousuo {
  cursor: pointer;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  width: 0.44rem;
  height: 0.44rem;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousuo i {
  font-size: var(--font-size-24);
  color: var(--color-003366);
}
.sousuo:hover {
  background: rgba(255, 255, 255, 0.2);
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.header-keywords {
  font-size: var(--font-size-16);
  margin-top: var(--font-size-20);
  color: var(--pp-text-muted);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  flex-wrap: wrap;
  gap: 0.08rem;
}
.header-keywords a {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.06rem 0.12rem;
  border-radius: 999px;
  background: var(--pp-bg-light);
  border: 1px solid var(--pp-border);
  color: var(--color-text);
}
.header-keywords a:hover {
  color: #fff;
  background: var(--color-link);
  border-color: var(--color-link);
}

.search-suggestions {
  margin-top: 0.24rem;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.search-suggestions .suggest-title {
  font-size: var(--font-size-14);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.12rem;
}
.search-suggestions .suggest-list {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
}
.search-suggestions .suggest-list a {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  padding: 0.08rem 0.16rem;
  font-size: var(--font-size-14);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search-suggestions .suggest-list a:hover {
  background: var(--color-link);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
}

.sousou-kuang.active {
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.sousou-kuang {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 2rem;
  right: 0px;
  -moz-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
  height: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.sousou-kuang .sousou-close {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 0.44rem;
  height: 0.44rem;
  min-width: 36px;
  min-height: 36px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousou-kuang .sousou-close i {
  font-size: var(--font-size-20);
  color: #fff;
}
.sousou-kuang .sousou-close:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.25);
  -moz-transform: rotate(90deg);
   -ms-transform: rotate(90deg);
       transform: rotate(90deg);
}
.sousou-kuang .form-sousuo {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  width: 100%;
  height: 0.56rem;
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0 0.08rem 0 0.2rem;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousou-kuang .form-sousuo:focus-within {
  border-color: var(--color-link);
  box-shadow: 0 4px 24px rgba(36, 133, 222, 0.2);
}
.sousou-kuang .form-sousuo i {
  color: var(--color-text);
}
.sousou-kuang form {
  flex-wrap: wrap;
  max-width: 7rem;
  width: 100%;
  height: auto;
  background: transparent;
  padding: 0;
}
.sousou-kuang form input[type=text] {
  -moz-box-flex: 1;
       flex: 1;
  width: 100%;
  height: 100%;
  outline: none;
  border: 0px;
  padding-left: 0;
  padding-right: 10px;
  font-size: var(--font-size-18);
  background: transparent;
  color: var(--color-text);
}
.sousou-kuang form input[type=text]::-webkit-input-placeholder {
  color: #aaa;
}
.sousou-kuang form input[type=text]::-moz-placeholder {
  color: #aaa;
}
.sousou-kuang form input[type=text]:-ms-input-placeholder {
  color: #aaa;
}
.sousou-kuang form input[type=text]::-ms-input-placeholder {
  color: #aaa;
}
.sousou-kuang form input[type=text]::placeholder {
  color: #aaa;
}
.sousou-kuang form .tj {
  width: 0.44rem;
  min-width: 36px;
  height: 0.44rem;
  min-height: 36px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background: var(--color-link);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sousou-kuang form .tj i {
  font-size: var(--font-size-20);
  color: #fff;
}
.sousou-kuang form .tj:hover {
  background: var(--color-primary);
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(36, 133, 222, 0.35);
}
.sousou-kuang form .tj:active {
  -moz-transform: scale(0.95);
   -ms-transform: scale(0.95);
       transform: scale(0.95);
}

@media screen and (max-width: 991px) {
  .sousou-kuang .sousou-close {
    top: 50px;
    right: 4%;
  }
}
.m-muban-pagebox {
  display: -moz-box;
  display: flex;
  -moz-box-pack: start;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.4rem;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.m-muban-pagebox .m-muban-next,
.m-muban-pagebox .m-muban-prev {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.m-muban-pagebox .m-muban-next i,
.m-muban-pagebox .m-muban-prev i {
  font-size: var(--font-size-20);
  color: var(--color-004984);
}

.m-muban-pagebox a,
.m-muban-pagebox p,
.m-muban-pagebox span {
  width: max(0.5rem, 40px);
  height: max(0.5rem, 40px);
  display: block;
  text-align: center;
  font-size: var(--font-size-18);
  color: #999ea5;
  font-weight: bold;
  margin: 0.04rem;
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}

.m-muban-pagebox a:hover,
.m-muban-pagebox a.active {
  background: var(--color-004984);
  color: #fff;
  border-color: var(--color-link);
}
.m-muban-pagebox a:hover i,
.m-muban-pagebox a.active i {
  color: #fff;
}

.m-muban-pagebox a.no:hover {
  background: unset;
  color: unset;
  cursor: auto;
}

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

.m-muban-pagenum a {
  margin-left: 1%;
  margin-right: 1%;
}

@media screen and (max-width: 999px) {
  .m-muban-pagebox a,
  .m-muban-pagebox p,
  .m-muban-pagebox span {
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
    line-height: 28px;
  }
  .m-muban-pagebox {
    margin-top: 0.2rem;
    margin-bottom: 0.4rem;
    -moz-box-pack: center;
    justify-content: center;
  }
}
.banner-kong {
  height: 1rem;
  min-height: 60px;
}

.font60 {
  font-size: 0.6rem;
  line-height: 1.2;
}

.font56 {
  font-size: 0.56rem;
  line-height: 1.2;
}

.font50 {
  font-size: 0.5rem;
  line-height: 1.3;
}

.font40 {
  font-size: 0.4rem;
}

.font30 {
  font-size: var(--font-size-30);
}

.text28 {
  font-size: var(--font-size-28);
}

.text26 {
  font-size: var(--font-size-26);
}

.text24 {
  font-size: var(--font-size-24);
}

.text22 {
  font-size: var(--font-size-22);
}

.text20 {
  font-size: var(--font-size-20);
}

.text18 {
  font-size: var(--font-size-18);
}

.text16 {
  font-size: var(--font-size-16);
}

.white {
  color: #fff;
}

.blue {
  color: var(--color-004984);
}

.quanduan {
  width: auto;
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: inline-block;
  overflow: hidden;
  margin-left: 20px;
  background: #000;
}

.conic {
  position: relative;
}
.conic::before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgb(168, 239, 255), transparent 38%);
  -moz-animation: rotate 4s linear infinite;
       animation: rotate 4s linear infinite;
}
@-moz-keyframes rotate {
  100% {
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}
@keyframes rotate {
  100% {
    -moz-transform: rotate(1turn);
         transform: rotate(1turn);
  }
}

.annnu-gd {
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  background: #fff;
  border-radius: 1rem;
  color: var(--color-text);
  padding: clamp(6px, 0.06rem, 100px);
  padding-left: 0.3rem;
  padding-right: 0.1rem;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.annnu-gd .annu-title {
  display: block;
  margin-right: 0.3rem;
  z-index: 2;
  color: var(--color-link);
}
.annnu-gd::after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  -moz-transform: scale(0);
   -ms-transform: scale(0);
       transform: scale(0);
  background-color: var(--color-link);
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 0;
  right: 0.1rem;
}
.annnu-gd i {
  display: block;
  font-size: var(--font-size-24);
  color: #fff;
  background: var(--color-link);
  padding: 0.04rem;
  width: 0.4rem;
  height: 0.4rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
       transform: rotate(-45deg);
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.annnu-gd:hover {
  background: transparent;
}
.annnu-gd:hover::after {
  -moz-transform: scale(14);
   -ms-transform: scale(14);
       transform: scale(14);
}
.annnu-gd:hover .annu-title {
  color: #fff;
}
.annnu-gd:hover i {
  background: #fff;
  color: var(--color-link);
  -moz-transform: rotate(0deg);
   -ms-transform: rotate(0deg);
       transform: rotate(0deg);
}
.annnu-gd:hover i::after {
  -moz-transform: scale(8);
   -ms-transform: scale(8);
       transform: scale(8);
}

.yying {
  box-shadow: 0px 16px 76px 0px rgba(12, 102, 175, 0.16);
}

.banner-img {
  position: relative;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
}
.banner-text > div {
  max-width: 6.9rem;
}
.banner-text h1 {
  color: #fff;
  font-weight: 100;
}
.banner-text .annnu-gd {
  margin-top: 0.8rem;
}
.banner-text .blue {
  color: #014b88;
}

.banner-ertitle {
  display: block;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.8);
}
.banner-ertitle.blue {
  color: var(--color-4c5f6d);
}

.bannerswiper .swiper-pagination {
  width: 84.08%;
  bottom: 0.64rem;
  text-align: left;
  left: 50%;
  -moz-transform: translateX(-50%);
   -ms-transform: translateX(-50%);
       transform: translateX(-50%);
}
.bannerswiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: var(--font-size-22);
  height: var(--font-size-22);
  border-radius: 50%;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background: transparent;
  border: 0.03rem solid transparent;
  position: relative;
}
.bannerswiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  width: 0.1rem;
  height: 0.1rem;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  background: #fff;
}
.bannerswiper .swiper-pagination .swiper-pagination-bullet-active {
  border-radius: 0.2rem;
  border-color: #fff;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  text-align: left;
  z-index: 2;
}
.banner-text h1 {
  color: #fff;
  font-weight: 100;
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.banner-text p {
  color: #fff;
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.8s ease 0.2s;
  transition: all 0.8s ease 0.2s;
}
.banner-text a {
  opacity: 0;
  -moz-transform: translateY(30px);
   -ms-transform: translateY(30px);
       transform: translateY(30px);
  -moz-transition: all 0.8s ease 0.4s;
  transition: all 0.8s ease 0.4s;
}
.banner-text.animate-in h1, .banner-text.animate-in p, .banner-text.animate-in a {
  opacity: 1;
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}

.banner-mid {
  margin-top: 0.9rem;
}

@media screen and (max-width: 767px) {
  .bannerswiper .swiper-pagination {
    bottom: 0.5rem;
  }
  .banner-mid {
    margin-top: 60px;
  }
  .banner-img {
    min-height: 400px;
    height: 400px;
  }
  .banner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.home-our-mid {
  padding-top: 0.4rem;
}

.m-muban-newxq-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.m-muban-newxq-left {
  width: 70%;
  background: saddlebrown;
}

.m-muban-newxq-right {
  width: 28%;
  background: #666666;
}

.toc a {
  display: block;
  color: #fff;
}

.crumbs-mid {
  padding-top: max(0.1rem, 10px);
  padding-bottom: max(0.1rem, 10px);
}
.crumbs-mid a, .crumbs-mid span {
  font-size: var(--font-size-16);
}
.crumbs-mid a:hover, .crumbs-mid span {
  color: var(--color-link);
}

.newxq-s1 .news-xq-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: center;
       justify-content: center;
  padding-bottom: 0.7rem;
  gap: 0.64rem;
}
.newxq-s1 .news-xq-mid-left {
  width: 51.25%;
  color: var(--color-text);
}
.newxq-s1 .news-xq-mid-right {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 1;
  width: 21.25%;
}
.newxq-s1 .author-mid {
  padding: 0.2rem 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  border-radius: 10px;
}
@media screen and (max-width: 1080px) {
  .newxq-s1 .author-mid {
    width: 100%;
  }
}
.newxq-s1 .author-left {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 1%;
  margin-right: 1%;
}
.newxq-s1 .author-name {
  width: 100%;
  font-size: var(--font-size-24);
  margin-top: 4px;
  margin-bottom: 4px;
}
.newxq-s1 .author-js {
  font-size: var(--font-size-16);
}
.newxq-s1 .author-js a {
  color: var(--color-link);
}
.newxq-s1 .author-img {
  min-width: 97px;
  width: 97px;
  min-height: 97px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  background-color: #e8ecef;
  border-radius: 10%;
}
.newxq-s1 .new-maodian-title {
  font-size: var(--font-size-24);
  line-height: 0.36rem;
  color: var(--color-text);
  margin-bottom: 0.26rem;
  position: relative;
}
.newxq-s1 .new-maodian-div {
  border-radius: 5px;
  z-index: 2;
  background: #fff;
  padding: var(--font-size-20);
  margin-bottom: 32px;
  box-shadow: 0px 4px 32px 0px rgba(167, 167, 167, 0.3);
}
.newxq-s1 #toc > a {
  display: block;
  font-size: var(--font-size-18);
  line-height: 24px;
  color: #666666;
  margin-bottom: 20px;
}
.newxq-s1 #toc > a:hover {
  color: var(--color-primary);
  font-weight: bold;
}
.newxq-s1 .newsxq-contact {
  font-size: var(--font-size-16);
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  border-radius: 0.05rem;
  padding-top: var(--font-size-20);
  box-shadow: 0px 3px 31px 1px rgba(0, 0, 0, 0.06);
  padding: 0.4rem;
  padding-bottom: 0.1rem;
  border-radius: 0.1rem;
}
.newxq-s1 .newsxq-contact a {
  color: var(--color-link);
}
.newxq-s1 .newsxq-contact h1 {
  font-size: var(--font-size-22);
  line-height: 1.2;
  margin-bottom: var(--font-size-12);
  color: #014b88;
}
.newxq-s1 .newsxq-contact h2,
.newxq-s1 .newsxq-contact h3 {
  font-size: var(--font-size-22);
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}
.newxq-s1 .newsxq-contact .newxq-data {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  margin-top: 0.12rem;
  margin-bottom: 0.2rem;
}
.newxq-s1 .newsxq-contact .newxq-data p {
  margin-right: 10%;
  font-size: var(--font-size-18);
}
.newxq-s1 .newsxq-contact-div {
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
  font-size: var(--font-size-18);
  line-height: 1.75;
}
.newxq-s1 .newsxq-contact-div p,
.newxq-s1 .newsxq-contact-div span,
.newxq-s1 .newsxq-contact-div a {
  line-height: 1.75;
  color: #6d757b;
  font-size: var(--font-size-16);
}
.newxq-s1 .newsxq-contact-div img {
  display: inline-block;
  width: auto;
  border-radius: 10px;
}
.newxq-s1 .newsxq-contact-bottom {
  padding-top: 4%;
  padding-bottom: 2%;
}
.newxq-s1 .newsxq-contact-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}
.newxq-s1 .newsxq-contact-bottom a:hover {
  font-weight: bold;
}
.newxq-s1 .newsxq-contact-bottom .prev {
  color: var(--color-primary);
}
.newxq-s1 .newsxq-contact-bottom .prev i {
  font-size: var(--font-size-30);
}
.newxq-s1 .newsxq-contact-bottom .next {
  color: var(--color-text);
}
.newxq-s1 .newsxq-contact-bottom .next i {
  font-size: var(--font-size-30);
}
.newxq-s1 .newsxq-contact-bottom .news-list {
  width: max(1.4rem, 120px);
  background: var(--color-vi);
  border-radius: 0.2rem;
  text-align: center;
  font-size: var(--font-size-18);
  color: #fff;
  border: 1px solid var(--color-primary);
  padding: 0.08rem 0.1rem;
}
.newxq-s1 .newsxq-contact-bottom .news-list:hover {
  color: #fff;
  background: var(--pp-primary);
  border-color: var(--pp-primary);
}
.newxq-s1 .news-xq-data {
  font-size: var(--font-size-16);
  color: var(--color-text);
}
.newxq-s1 .news-xq-title {
  font-size: var(--font-size-18);
  line-height: 28px;
  color: #222222;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.newxq-s1 .news-xq-hot-div {
  padding: var(--font-size-20);
  background: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 32px 0px rgba(167, 167, 167, 0.3);
}
.newxq-s1 .news-xq-hot-div a:hover {
  color: var(--color-primary);
}
.newxq-s1 .newsxq-page {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 0.6rem;
  gap: max(0.14rem, 14px);
}
.newxq-s1 .newsxq-page a {
  width: 100%;
  display: block;
  color: #6d757b;
  font-size: var(--font-size-16);
}
.newxq-s1 .newsxq-page a:hover {
  color: var(--color-link);
}
.newxq-s1 .news-xq-img {
  display: block;
  font-size: 0px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 10px;
}
.newxq-s1 .news-xq-img img:hover {
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}
.newxq-s1 .new-xqview {
  font-size: var(--font-size-14);
  line-height: 36px;
  color: var(--color-qianse);
}
@media screen and (max-width: 1280px) {
  .newxq-s1 .author-img {
    min-height: 74px;
    min-width: 74px;
    width: 74px;
    margin-right: 14px;
  }
}
@media screen and (max-width: 1080px) {
  .newxq-s1 .news-xq-mid .news-xq-mid-left {
    width: 100%;
  }
  .newxq-s1 .news-xq-mid .news-xq-mid-right {
    width: 30%;
  }
}
@media screen and (max-width: 991px) {
  .newxq-s1 .news-xq-mid .newslist-s1-right {
    margin-top: 0px;
  }
  .newxq-s1 .news-xq-mid .news-xq-mid-right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .newxq-s1 .new-maodian-div {
    display: none;
  }
  .newxq-s1 .news-xq-mid {
    flex-wrap: wrap;
  }
}
.newxq-s1 .author-top-author {
  line-height: 1.75;
  width: 68%;
}
.newxq-s1 .author-top-author a {
  color: var(--color-vi);
}
.newxq-s1 .author-top-author .author-mid {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: nowrap;
}
.newxq-s1 .author-top-author .author-mid .author-left {
  width: auto;
}
.newxq-s1 .author-top-author .author-mid .author-left .author-img-nr {
  margin-left: 10px;
}
.newxq-s1 .author-top-author .author-mid .author-left .author-img-nr p {
  font-size: var(--font-size-18);
  line-height: 1.75;
}
@media screen and (max-width: 991px) {
  .newxq-s1 .author-top-author {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .newxq-s1 .author-top-author .author-mid {
    flex-wrap: wrap;
    -moz-box-pack: center;
         justify-content: center;
    text-align: center;
  }
  .newxq-s1 .author-top-author .author-mid .author-left {
    width: 100%;
  }
  .newxq-s1 .author-top-author .author-mid .author-left .author-img-nr {
    width: 100%;
    margin-left: 0px;
  }
  .newxq-s1 .author-top-author .author-left,
  .newxq-s1 .author-top-author .author-right {
    width: 100%;
    margin: 0px;
    text-align: left;
    width: 100%;
    flex-wrap: wrap;
  }
  .newxq-s1 .author-top-author .author-left .author-img,
  .newxq-s1 .author-top-author .author-right .author-img {
    margin-left: a;
    margin-right: auto;
  }
}

.news-xq-mid-hot {
  width: 100%;
  padding-left: 0px;
}
.news-xq-mid-hot .newslist-s1-right {
  width: 100%;
  padding-left: 0.4rem;
  box-shadow: 0px 3px 31px 1px rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  padding: 0.2rem 0.24rem;
}

.newsxq-list {
  padding: 0.1rem 0.2rem;
  background: var(--color-004984);
  display: inline-block;
  width: auto !important;
  border-radius: 0.1rem;
  color: #fff !important;
}
.newsxq-list:hover {
  background: var(--pp-hover);
}

/* newsxq end */
/* Cookie Banner Styles */
.cookiecookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  -moz-transform: translateY(100%);
   -ms-transform: translateY(100%);
       transform: translateY(100%);
  -moz-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookiecookie.active {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}

.cookie-container {
  width: 90%;
  max-width: 16rem;
  margin: 0 auto;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  gap: 1.5rem;
}

.cookie-content {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  gap: 0.8rem;
  -moz-box-flex: 1;
       flex: 1;
}

.cookie-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: -moz-linear-gradient(315deg, var(--color-primary) 0%, var(--color-link) 100%);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-link) 100%);
  border-radius: 12px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}
.cookie-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.cookie-text {
  -moz-box-flex: 1;
       flex: 1;
}

.cookie-title {
  font-size: var(--font-size-18);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.08rem;
}

.cookie-desc {
  font-size: var(--font-size-14);
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.cookie-link {
  color: var(--color-link);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-link:hover {
  color: var(--color-primary);
}

.cookie-actions {
  display: -moz-box;
  display: flex;
  gap: 0.12rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.12rem 0.28rem;
  border-radius: 8px;
  font-size: var(--font-size-14);
  font-weight: 500;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: var(--color-link);
  color: #fff;
}
.cookie-btn-primary:hover {
  background: var(--color-primary);
  -moz-transform: translateY(-2px);
   -ms-transform: translateY(-2px);
       transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(36, 133, 222, 0.35);
}
.cookie-btn-primary:active {
  -moz-transform: translateY(0);
   -ms-transform: translateY(0);
       transform: translateY(0);
}

.cookie-btn-secondary {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}
.cookie-btn-secondary:hover {
  background: #f5f5f5;
  border-color: #ccc;
  color: #333;
}

@media screen and (max-width: 768px) {
  .cookiecookie {
    padding: 0.8rem 0;
  }
  .cookie-container {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    gap: 1rem;
    width: 92%;
  }
  .cookie-content {
    -moz-box-align: center;
         align-items: center;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
    -moz-box-pack: center;
         justify-content: center;
  }
  .cookie-btn {
    -moz-box-flex: 1;
         flex: 1;
    max-width: 200px;
  }
}
@media screen and (max-width: 480px) {
  .cookie-actions {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
    max-width: none;
  }
}
.normal {
  font-weight: normal;
}

.blod {
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
}

.hang1 {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

/* index-s2  start */
.index-s2-mid {
  position: relative;
  overflow: hidden;
}

.index-s2-img {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.index-s2-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.index-s2-div {
  height: 100%;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  -moz-box-pack: justify;
       justify-content: space-between;
  min-height: 9.3rem;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}

.index-s2-bottom {
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 0.3rem;
}

.index-s2-bottom-img {
  width: 100%;
  height: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
}

.index-s2-bottom-div {
  border-radius: 0.15rem;
  width: max(0.8rem, 50px);
  min-width: 50px;
  height: max(0.8rem, 50px);
  min-height: 50px;
  background-color: rgba(1, 75, 136, 0.61);
  display: block;
  padding: 0.18rem;
  overflow: hidden;
  -moz-transition: width 0.7s, height 0.7s;
  transition: width 0.7s, height 0.7s;
}
.index-s2-bottom-div img {
  width: auto;
  -moz-transition: all 0s;
  transition: all 0s;
}
.index-s2-bottom-div.active {
  width: 4.7rem;
  height: 1rem;
  padding: 0.6rem 0.46rem 0.7rem 0.46rem;
}
.index-s2-bottom-div.active .index-s2-bottom-img {
  -moz-box-pack: start;
       justify-content: flex-start;
}
.index-s2-bottom-div.active img {
  max-width: 1rem;
}
.index-s2-bottom-div .text18 {
  margin-bottom: 0.4rem;
}

.yyhy-title {
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  font-size: 0px;
  margin-top: 0.3rem;
  margin-bottom: 0.2rem;
}

.index-s2-bottom-text {
  opacity: 0;
  height: 0px;
  overflow: hidden;
  -moz-transition: opacity 1s;
  transition: opacity 1s;
}

.index-s2-bottom-div {
  max-height: 4.7rem;
  position: relative;
}
.index-s2-bottom-div .annnu-gd {
  white-space: nowrap;
}
.index-s2-bottom-div::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0.03rem;
  background: #40daec;
  left: 10%;
  bottom: 0px;
  -moz-transition: all 0s;
  transition: all 0s;
}
.index-s2-bottom-div.active {
  height: auto;
}
.index-s2-bottom-div.active::before {
  width: 80%;
  -moz-transition: all 4s;
  transition: all 4s;
}
.index-s2-bottom-div.active .yyhy-title {
  font-size: var(--font-size-30);
}
.index-s2-bottom-div.active .index-s2-bottom-text {
  opacity: 1;
  height: auto;
}

@media screen and (max-width: 768px) {
  .index-s2-bottom-div.active img {
    max-width: 0.8rem;
  }
  .index-s2-bottom-div.active {
    padding: 0.4rem;
    min-width: 240px;
  }
  .index-s2-bottom {
    min-width: 100%;
    overflow-x: auto;
  }
  .index-s2-div {
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 7.2rem;
  }
}
/* index-s2  end */
.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

/* index-s3  start */
.index-div-top {
  width: 100%;
}

.index-s3-mid {
  background: url(../images/cpbj.webp) no-repeat;
  background-size: cover;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.index-s3-div {
  position: relative;
  height: 4.5rem;
  border-radius: 0.2rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.44rem;
  padding-right: 0.6rem;
  display: block;
}

.index-s3-img {
  width: 100%;
  height: 100%;
  margin-left: auto;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
}
.index-s3-img img {
  width: auto;
}

.index-s3-name {
  position: absolute;
  left: 0.44rem;
  top: 0.44rem;
  z-index: 2;
  width: 80%;
}

.annujt {
  margin-top: 0.34rem;
  padding: 0.1rem 0.1rem 0.1rem 0.3rem;
  padding-top: max(0.06rem, 6px);
  padding-bottom: max(0.06rem, 6px);
  padding-left: 0px;
  display: block;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  border-radius: 0.28rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.annujt i {
  display: inline-block;
  font-size: var(--font-size-24);
  -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
       transform: rotate(-45deg);
  color: #014b88;
  border-radius: 50%;
  width: 0.4rem;
  height: 0.4rem;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.annujt:hover {
  box-shadow: 0px 16px 76px 0px rgba(12, 102, 175, 0.16);
  background: #fff;
  padding-left: 0.3rem;
}
.annujt:hover i {
  margin-left: 0.3rem;
  background: #0c66af;
  color: #fff;
}
.annujt:hover .annujt-title {
  width: auto;
  height: auto;
  -moz-transform: translateX(0%);
   -ms-transform: translateX(0%);
       transform: translateX(0%);
}

.index-s3-div:hover .annujt {
  box-shadow: 0px 16px 76px 0px rgba(12, 102, 175, 0.16);
  background: #fff;
  padding-left: 0.3rem;
}
.index-s3-div:hover .annujt i {
  margin-left: 0.3rem;
  background: #0c66af;
  color: #fff;
}
.index-s3-div:hover .annujt .annujt-title {
  width: auto;
  height: auto;
  -moz-transform: translateX(0%);
   -ms-transform: translateX(0%);
       transform: translateX(0%);
}
.index-s3-div:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.annujt-title {
  display: block;
  color: #014b88;
  width: 0px;
  overflow: hidden;
  height: 0px;
  -moz-transform: translateX(-100%);
   -ms-transform: translateX(-100%);
       transform: translateX(-100%);
}

.index-s3-list {
  display: grid;
  margin-top: 0.6rem;
  gap: 1.875%;
}

.index-s3-list-top {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(49.0625%, 1fr));
  gap: 1.875%;
  flex-wrap: wrap;
}

.index-s3-list-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(32.0625%, 1fr));
  gap: 1.875%;
}
.index-s3-list-bottom .index-s3-div {
  width: auto;
  padding-right: 0.3rem;
}
.index-s3-list-bottom .index-s3-img {
  display: -moz-box;
  display: flex;
  -moz-box-align: end;
       align-items: flex-end;
  -moz-box-pack: end;
       justify-content: flex-end;
}
.index-s3-list-bottom .index-s3-img img {
  height: 3rem;
}

@media screen and (max-width: 768px) {
  .index-s3-list-bottom {
    grid-template-columns: repeat(auto-fill, minmax(49.0625%, 1fr));
    row-gap: 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .index-s3-list-top {
    gap: 0.3rem;
  }
  .index-s3-div {
    width: 100%;
  }
  .index-s3-list-bottom {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
/* index-s3  end */
/* index-s4  start */
.index-s4-left .font50 {
  line-height: 1.2;
}

.index-s4-shuju {
  display: -moz-box;
  display: flex;
  -moz-box-pack: start;
       justify-content: flex-start;
}

.index-s4-left {
  width: 5.8rem;
}

.index-s4-div {
  width: 2.16rem;
  margin-right: 0.7rem;
}
.index-s4-div:hover div {
  color: #dd2525;
}
.index-s4-div > div {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  font-size: 0.6rem;
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  color: #fff;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.index-s4-div > div sub {
  font-size: var(--font-size-18);
  line-height: 1;
  margin-left: 0.1rem;
  margin-top: 0.1rem;
}
.index-s4-div .index-s4-shuju-title {
  color: #fff;
  border-top: 0.01rem solid rgba(255, 255, 255, 0.5);
  padding-top: 0.2rem;
  margin-top: 0.2rem;
}

.index-s4-mid {
  position: relative;
  height: 9.33rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.index-s4-mid-img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.index-s4-mid-img img {
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.index-s4-kuang {
  position: relative;
  z-index: 1;
}

.index-s4-neirong {
  margin-top: 0.34rem;
  margin-bottom: 1.2rem;
}

@media screen and (max-width: 991px) {
  .index-s4-mid {
    position: relative;
  }
  .index-s4-mid::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(11, 99, 172, 0.4);
    z-index: 1;
  }
}
/* index-s4  end */
/* index-cat start */
.index-cat-mid {
  background: url(../images/cat.webp) no-repeat;
  background-size: 100% 100%;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.index-cat-kuang {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 0.2rem;
}
.index-cat-kuang .annnu-gd {
  margin-left: 0.2rem;
  background: #dd2525;
  color: #fff;
}
.index-cat-kuang .annnu-gd .annu-title {
  color: #fff;
}
.index-cat-kuang i {
  color: #dd2525;
  background: #fff;
}

/* index-cat end */
/* index-s5 start */
.index-s5-mid {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.index-s5-content {
  margin-top: 0.6rem;
}

.index-s5-left {
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
  width: 46.25%;
  display: block;
}
.index-s5-left:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.index-s5-title {
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  font-size: var(--font-size-22);
  color: #fff;
}

.index-s5-date {
  color: #fff;
  font-size: var(--font-size-14);
  margin-bottom: 0.1rem;
}
.index-s5-date i {
  font-size: var(--font-size-14);
}

.index-s5-left-content {
  position: absolute;
  width: 100%;
  padding: 0.42rem 0.35rem;
  z-index: 1;
  bottom: 0px;
}

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

.index-s5-right {
  width: 48.875%;
  display: grid;
  gap: 0.22rem;
}

.index-s5-right-div {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}
.index-s5-right-div:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.index-s5-right-div:hover .index-s5-right-div-title {
  color: var(--color-link);
}

.index-s5-right-div-left {
  width: 29%;
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
}
.index-s5-right-div-left p {
  position: absolute;
  width: 100%;
  padding: 0.18rem 0.2rem;
  padding-bottom: 0.12rem;
  bottom: 0px;
  color: #fff;
}
.index-s5-right-div-left p i {
  font-size: var(--font-size-16);
  margin-right: 0.1rem;
}

.index-s5-right-div-right {
  width: 66%;
}

.index-s5-right-div-title {
  font-size: var(--font-size-24);
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  color: #1f274b;
  margin-top: 0.2rem;
  margin-bottom: 0.08rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.index-s5-right-div-text {
  font-size: var(--font-size-16);
  color: var(--color-4c5f6d);
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index-s5-leixing {
  font-size: var(--font-size-16);
  color: #fff;
  background: #014b88;
  display: inline-block;
  padding: 0.06rem 0.1rem;
  border-radius: 0.06rem;
}

@media screen and (max-width: 991px) {
  .index-s5-content {
    flex-wrap: wrap;
  }
  .index-s5-left {
    max-width: 750px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
  }
  .index-s5-right {
    width: 100%;
    display: block;
  }
  .index-s5-right-div {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 580px) {
  .index-s5-right-div {
    flex-wrap: wrap;
  }
  .index-s5-right-div-left {
    width: 100%;
  }
  .index-s5-right-div-right {
    width: 100%;
    margin-top: 0.2rem;
  }
}
/* index-s5 end */
/* applicationlist start */
.page-banner-mid {
  margin-top: 0.99rem;
  position: relative;
}
.page-banner-mid::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(left, rgb(7, 79, 139) 0%, rgba(7, 79, 139, 0) 70%);
  background: linear-gradient(to right, rgb(7, 79, 139) 0%, rgba(7, 79, 139, 0) 70%);
  z-index: 2;
}

.page-banner-mid.nomengceng::before {
  display: none;
}

.appliction-s1 {
  padding: 1.2rem 0;
  background: #f8f9fa;
}

.appliction-item {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 0.8rem;
  border-bottom: 0.01rem solid #ebeef1;
  padding-bottom: 0.84rem;
  margin-bottom: 0.84rem;
  position: relative;
}
.appliction-item:hover .appliction-right {
  box-shadow: 0 0.3rem 1rem rgba(12, 102, 175, 0.25);
  -moz-transform: translateY(-0.08rem);
   -ms-transform: translateY(-0.08rem);
       transform: translateY(-0.08rem);
}
.appliction-item:hover .appliction-right::before {
  left: 100%;
}
.appliction-item:hover .appliction-right img {
  -moz-transform: scale(1.08);
   -ms-transform: scale(1.08);
       transform: scale(1.08);
}
.appliction-item:hover::before {
  width: 100%;
}
.appliction-item::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 0.01rem;
  bottom: 0px;
  left: 0px;
  background: var(--color-link);
  -moz-transition: width 0.5s;
  transition: width 0.5s;
}
.appliction-item:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
}
.appliction-item:last-child::before {
  display: none;
}

.appliction-left {
  width: 41.625%;
}
.appliction-left h2, .appliction-left .appliction-title {
  font-size: var(--font-size-48);
  color: #1c3549;
  margin-bottom: 0.2rem;
  line-height: 1.3;
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  font-weight: normal;
}
.appliction-left .appliction-desc {
  font-size: var(--font-size-18);
  color: var(--color-4c5f6d);
  line-height: 1.8;
  margin-bottom: 0.4rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.appliction-left .appliction-desc:hover {
  letter-spacing: 0.01em;
}
.appliction-left .annnu-gd {
  box-shadow: 0px 16px 76px 0px rgba(12, 102, 175, 0.16);
}

.appliction-right {
  width: 46.875%;
  position: relative;
  overflow: hidden;
  border-radius: 0.2rem;
  box-shadow: 0 0.2rem 0.6rem rgba(12, 40, 62, 0.15);
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.appliction-right::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: -moz-linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
       transform: rotate(45deg);
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
  z-index: 1;
}
.appliction-right img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .appliction-s1-mid {
    padding: 0.8rem 0;
  }
  .appliction-item {
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
         flex-direction: column-reverse;
    margin-bottom: 1rem;
    gap: 0.4rem;
  }
  .appliction-left,
  .appliction-right {
    width: 100%;
  }
  .appliction-left h2 {
    font-size: var(--font-size-36);
    margin-bottom: 0.2rem;
  }
  .appliction-left .appliction-desc {
    font-size: var(--font-size-16);
    margin-bottom: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .appliction-s1 {
    padding: 0.6rem 0;
  }
  .appliction-item {
    margin-bottom: 0.8rem;
  }
  .appliction-left h2 {
    font-size: var(--font-size-28);
  }
  .appliction-left .appliction-desc {
    font-size: var(--font-size-14);
  }
}
/* applicationlist end  */
/* newslist start */
.newslist-s1-mid {
  background: #fff;
  box-shadow: 0px 3px 31px 1px rgba(0, 0, 0, 0.09);
  border-radius: 0.2rem;
  padding: 0.5rem;
  position: relative;
  z-index: 1;
  margin-top: -1rem;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.newslist-s1-left {
  width: 77.75%;
  border-right: 0.01rem solid #f2f2f2;
  padding-right: 0.9rem;
}
.newslist-s1-left .index-s5-right-div {
  margin-bottom: 0.24rem;
}
.newslist-s1-left .index-s5-right-div > i {
  font-size: var(--font-size-20);
  color: var(--color-1f274b);
  border: 1px solid var(--color-1f274b);
  width: max(0.5rem, 40px);
  height: max(0.5rem, 40px);
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  border-radius: 0.04rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.newslist-s1-left .index-s5-right-div:hover .index-s5-right-div-left, .newslist-s1-left .index-s5-right-div.active .index-s5-right-div-left {
  width: 3.8rem;
}
.newslist-s1-left .index-s5-right-div:hover .index-s5-right-div-right, .newslist-s1-left .index-s5-right-div.active .index-s5-right-div-right {
  width: 4.92rem;
}
.newslist-s1-left .index-s5-right-div:hover .index-s5-right-div-right .index-s5-right-div-text, .newslist-s1-left .index-s5-right-div.active .index-s5-right-div-right .index-s5-right-div-text {
  white-space: wrap;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newslist-s1-left .index-s5-right-div:hover > i, .newslist-s1-left .index-s5-right-div.active > i {
  background: var(--color-link);
  border-color: var(--colo-link);
  color: #fff;
}
.newslist-s1-left .index-s5-right-div-right {
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.newslist-s1-left .index-s5-right-div-left {
  width: 2.3rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.newslist-s1-right {
  width: 21.25%;
  padding-left: 0.52rem;
}

.newslist-s1-tuijian-div {
  display: block;
  border-bottom: 0.01rem solid #f2f2f2;
  padding-bottom: 0.26rem;
  margin-bottom: 0.26rem;
}
.newslist-s1-tuijian-div:last-child {
  border-bottom: 0px;
  border: 0px;
  padding-bottom: 0px;
}
.newslist-s1-tuijian-div:hover .tujian-text {
  color: #004984;
}

.tuijian-date {
  color: #a0a6ab;
  font-size: var(--font-size-14);
  margin-bottom: 0.14rem;
}

.tujian-text {
  font-size: var(--font-size-16);
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.newslist-s1-right-title {
  position: relative;
  margin-bottom: 0.25rem;
}
.newslist-s1-right-title::before {
  content: "";
  position: absolute;
  left: -0.25rem;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  width: 0.03rem;
  height: 80%;
  background: #014b88;
}

@media screen and (max-width: 991px) {
  .newslist-s1-left .index-s5-right-div:hover .index-s5-right-div-right, .newslist-s1-left .index-s5-right-div.active .index-s5-right-div-right {
    width: 52%;
  }
  .newslist-s1-left, .newslist-s1-right {
    width: 100%;
    padding-left: 0px;
  }
  .newslist-s1-mid {
    flex-wrap: wrap;
  }
  .index-s5-right-div {
    flex-wrap: wrap;
  }
  .newslist-s1-left .index-s5-right-div-left {
    width: 100%;
  }
  .newslist-s1-mid {
    margin-top: 0.5rem;
  }
  .newslist-s1-mid .index-s5-right-div-right {
    margin-left: 0.2rem;
  }
  .newslist-s1-left {
    padding-right: 0px;
    border-right: 0px;
    display: -moz-box;
    display: flex;
    -moz-box-align: start;
         align-items: flex-start;
    -moz-box-pack: justify;
         justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }
  .newslist-s1-left .index-s5-right-div-left {
    margin-bottom: 0px;
  }
  .newslist-s1-left .index-s5-right-div {
    -moz-box-pack: start;
         justify-content: flex-start;
    flex-wrap: wrap;
    width: 49%;
  }
  .newslist-s1-left .index-s5-right-div .index-s5-right-div-right {
    margin-left: 0px;
    text-align: left;
  }
  .newslist-s1-left .index-s5-right-div:hover .index-s5-right-div-right, .newslist-s1-left .index-s5-right-div.active .index-s5-right-div-right {
    width: 100%;
  }
  .newslist-s1-left .index-s5-right-div > i {
    display: none;
  }
  .newslist-s1-left .index-s5-right-div:hover .index-s5-right-div-left, .newslist-s1-left .index-s5-right-div.active .index-s5-right-div-left {
    width: 100%;
    max-width: 380px;
    margin: auto;
    margin-bottom: 20px;
  }
  .newslist-s1-left .index-s5-right-div.active .index-s5-right-div-left {
    margin-bottom: 0.1rem;
  }
  .newslist-s1-right {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .newslist-s1-mid {
    padding: 20px;
  }
  .newslist-s1-left .index-s5-right-div {
    width: 100%;
  }
}
/* newslist end */
/* contact start */
.contact-s1-left {
  width: 34.375%;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  padding-bottom: 0.4rem;
}
.contact-s1-left img {
  width: 100%;
}

.contact-s1-div {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
}

.contact-kf-div {
  width: 100%;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.contact-kf-div > div {
  width: 100%;
}

.contact-kfimg {
  width: 100%;
}

.contact-s1-title {
  border: 0.01rem solid var(--color-004984);
  border-radius: 0.2rem;
  background: #fff;
  padding: 0rem 0.16rem;
  width: auto;
  display: inline;
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
}

.contact-s1-from-right {
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  z-index: 2;
  width: 53.75%;
  box-shadow: 0px 4px 72px 0px rgba(147, 147, 147, 0.3);
  background: #ffffff;
  border-radius: 0.2rem;
  overflow: hidden;
}
.contact-s1-from-right form {
  width: 100%;
  border-radius: 0.2rem;
  background: #FFFFFF;
  padding: 0.3rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}
.contact-s1-from-right form > div {
  width: 49%;
}
.contact-s1-from-right form > div label {
  margin-bottom: 0.1rem;
  color: #3d4f5e;
  display: block;
}
.contact-s1-from-right form > div p {
  height: 100%;
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  background: #F6F6F6;
  border-radius: 0.09rem;
  overflow: hidden;
  padding-left: 0.1rem;
  height: 0.55rem;
  min-height: 40px;
}
.contact-s1-from-right form > div p label {
  white-space: nowrap;
}
.contact-s1-from-right form > div.tea {
  width: 100%;
}
.contact-s1-from-right form > div.tea p {
  -moz-box-align: start;
       align-items: flex-start;
  padding-top: 0.2rem;
  height: 1.57rem;
}
.contact-s1-from-right form > div.tea p textarea {
  padding-top: 0.03rem;
}
.contact-s1-from-right form input, .contact-s1-from-right form textarea {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0px;
  outline: none;
}
.contact-s1-from-right form input::-webkit-input-placeholder, .contact-s1-from-right form textarea::-webkit-input-placeholder {
  color: rgba(99, 123, 142, 0.7);
  opacity: 1;
  font-size: 0.16rem;
  font-family: "HarmonyOS_Sans_SC", Arial, Helvetica, sans-serif;
}
.contact-s1-from-right form input:-moz-placeholder, .contact-s1-from-right form textarea:-moz-placeholder {
  color: rgba(99, 123, 142, 0.7);
  opacity: 1;
  font-size: 0.16rem;
  font-family: "HarmonyOS_Sans_SC", Arial, Helvetica, sans-serif;
}
.contact-s1-from-right form input::-moz-placeholder, .contact-s1-from-right form textarea::-moz-placeholder {
  color: rgba(99, 123, 142, 0.7);
  opacity: 1;
  font-size: 0.16rem;
  font-family: "HarmonyOS_Sans_SC", Arial, Helvetica, sans-serif;
}
.contact-s1-from-right form input:-ms-input-placeholder, .contact-s1-from-right form textarea:-ms-input-placeholder {
  color: rgba(99, 123, 142, 0.7);
  opacity: 1;
  font-size: 0.16rem;
  font-family: "HarmonyOS_Sans_SC", Arial, Helvetica, sans-serif;
}
.contact-s1-from-right form b {
  color: var(--color-vi);
  font-size: var(--font-size-14);
  margin-right: 0.08rem;
}
.contact-s1-from-right .annnu-gd {
  position: relative;
}

.formtj {
  border: 0px;
  cursor: pointer;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  text-align: center;
  color: #fff;
}

.div-tj {
  width: 1.84rem;
  background-color: #014b88;
  border-radius: 0.5rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.div-tj:hover {
  background: var(--color-link);
}

.contact-s1-from {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: justify;
       justify-content: space-between;
  margin-top: 0.37rem;
}

.contact-s1-mid {
  padding-top: 0.7rem;
  padding-bottom: 1rem;
  background: url(../images/contact-bj.webp) no-repeat;
  background-size: cover;
}

.contact-s2-mid {
  position: relative;
  aspect-ratio: 16/6;
}
.contact-s2-mid iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

button[disabled],
input[type=submit][disabled] {
  opacity: 0.7;
  z-index: 20;
  cursor: not-allowed;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .contact-s1-div {
    flex-wrap: wrap;
  }
  .contact-s1-left {
    width: 100%;
  }
  .contact-s1-from-left, .contact-s1-from-right {
    width: 100%;
  }
  .contact-s1-from-right {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact-s1-left-mid {
    margin-top: 0.5rem;
  }
  .contact-s1-from-right form > div {
    width: 100%;
  }
}
/* contact end */
/* products list start*/
.prolist-s1 {
  padding: 1rem 0 1.5rem;
  padding-bottom: 0px;
  background: #fff;
}

.prolist-fenli {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(2.92rem, 1fr));
  gap: 0.2rem;
}

.prolist-fenlei-item {
  position: relative;
}

.prolist-fenlei-name {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  border: solid 0.02rem #e7ecef;
  overflow: hidden;
  border-radius: 0.26rem;
  padding: 0.08rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  cursor: pointer;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #fff;
}
.prolist-fenlei-name i {
  font-size: var(--font-size-24);
  color: var(--color-link);
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
}
.prolist-fenlei-name:hover, .prolist-fenlei-name.active, .prolist-fenlei-name.active1 {
  background: var(--color-004984);
  color: #fff;
}
.prolist-fenlei-name:hover i, .prolist-fenlei-name.active i, .prolist-fenlei-name.active1 i {
  color: #fff;
  -moz-transform: rotate(180deg);
   -ms-transform: rotate(180deg);
       transform: rotate(180deg);
}

.prolist-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: solid 0.02rem #e7ecef;
  border-radius: 0.26rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 3rem;
  overflow-y: auto;
  margin-top: -0.02rem;
}
.prolist-dropdown a {
  display: block;
  padding: 0.12rem 0.2rem;
  color: var(--color-004984);
  font-size: var(--font-size-14);
  border-bottom: 0.01rem solid #f0f0f0;
  cursor: pointer;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.prolist-dropdown a:last-child {
  border-bottom: none;
}
.prolist-dropdown a:hover {
  background: #f8f9fa;
  color: var(--color-link);
}
.prolist-dropdown a.selected {
  background: var(--color-004984);
  color: #fff;
}
.prolist-dropdown.show {
  display: block;
}

.profenlei-left {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  -moz-box-flex: 1;
       flex: 1;
}
.profenlei-left img {
  width: max(0.18rem, 14px);
  margin-right: 0.12rem;
}
.profenlei-left .fenlei-text {
  white-space: nowrap;
}
.profenlei-left .selected-product {
  font-size: var(--font-size-14);
  opacity: 0.8;
  margin-left: 0.05rem;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .prolist-fenli {
    display: -moz-box;
    display: flex;
    gap: 0.15rem;
    overflow-x: auto;
  }
  .prolist-fenlei-item {
    margin-bottom: 0.1rem;
    min-width: 150px;
  }
  .prolist-fenlei-name {
    border-radius: 0.15rem;
    padding: 0.1rem 0.15rem;
  }
  .prolist-dropdown {
    display: block;
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0.1rem;
    max-height: 100px;
    overflow-y: auto;
    background: transparent;
  }
  .prolist-dropdown a {
    display: inline-block;
    margin: 0.05rem;
    padding: 0.08rem 0.15rem;
    background: #f8f9fa;
    border-radius: 0.1rem;
    border-bottom: none;
  }
  .prolist-dropdown a:hover {
    background: #e9ecef;
    color: var(--color-link);
  }
  .prolist-dropdown a.selected {
    background: var(--color-004984);
    color: #fff;
  }
  .prolist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.15rem;
    row-gap: 0.3rem;
  }
}
.prolist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.2rem, 1fr));
  gap: 0.2rem;
  margin-top: 0.6rem;
  row-gap: 0.6rem;
  border-bottom: 0.01rem solid #eaecee;
  padding-bottom: 0.6rem;
}

.prolist-card {
  display: block;
  background: #f8f9fa;
  border-radius: 0.2rem;
  overflow: hidden;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}
.prolist-card:hover {
  -moz-transform: translateY(-0.08rem);
   -ms-transform: translateY(-0.08rem);
       transform: translateY(-0.08rem);
  box-shadow: 0 0.2rem 0.6rem rgba(12, 40, 62, 0.12);
}
.prolist-card:hover .prolist-card-info {
  padding-left: 0.24rem;
  padding-right: 0.24rem;
}
.prolist-card:hover .prolist-card-img::before {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.prolist-card:hover .prolist-card-img img {
  -moz-transform: scale(1.08);
   -ms-transform: scale(1.08);
       transform: scale(1.08);
}
.prolist-card:hover .prolist-card-info i {
  -moz-transform: translateX(0.05rem);
   -ms-transform: translateX(0.05rem);
       transform: translateX(0.05rem);
}

.prolist-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  overflow: hidden;
}
.prolist-card-img::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: -moz-radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(255, 255, 245) 100%);
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(255, 255, 245) 100%);
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 0;
}
.prolist-card-img img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  text-align: center;
  -o-object-fit: contain;
     object-fit: contain;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.prolist-card-info {
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0.24rem;
  padding-left: 0px;
  padding-right: 0px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
  background: #fff;
}

.prolist-card-title {
  font-size: var(--font-size-20);
  color: var(--color-003366);
  margin: 0;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.prolist-card-info i {
  font-size: var(--font-size-20);
  color: var(--color-link);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
       transform: rotate(-45deg);
  font-weight: bold;
}

@media screen and (max-width: 1280px) {
  .prolist-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }
}
@media screen and (max-width: 991px) {
  .prolist-s1 {
    padding: 0.8rem 0 1.2rem;
  }
  .prolist-filter {
    gap: 0.15rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
  }
  .filter-item {
    -moz-box-flex: 1;
         flex: 1 1 calc(50% - 0.08rem);
    min-width: -moz-calc(50% - 0.08rem);
    min-width: calc(50% - 0.08rem);
  }
  .filter-dropdown {
    padding: 0.1rem 0.2rem;
    font-size: var(--font-size-14);
  }
  .filter-dropdown i {
    font-size: var(--font-size-10);
  }
  .prolist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
  }
  .prolist-card-title {
    font-size: var(--font-size-18);
  }
}
@media screen and (max-width: 768px) {
  .prolist-s1 {
    padding: 0.6rem 0 1rem;
  }
  .prolist-filter {
    gap: 0.12rem;
    flex-wrap: wrap;
  }
  .filter-item {
    -moz-box-flex: 1;
         flex: 1 1 calc(50% - 0.06rem);
    min-width: -moz-calc(50% - 0.06rem);
    min-width: calc(50% - 0.06rem);
  }
  .filter-dropdown {
    font-size: var(--font-size-12);
    padding: 0.08rem 0.16rem;
    gap: 0.08rem;
  }
  .filter-dropdown i {
    font-size: var(--font-size-10);
  }
  .prolist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .prolist-card-info {
    padding: 0.16rem;
  }
  .prolist-card-title {
    font-size: var(--font-size-16);
  }
}
@media screen and (max-width: 480px) {
  .prolist-grid {
    grid-template-columns: 1fr;
  }
}
/* products list end */
/* product detail start*/
.product-header {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  gap: 1.3rem;
}

.proxq-s1-mid {
  padding: 0.66rem 0;
  background-color: #f6f7f8;
}

.product-images {
  width: 38.125%;
}
.product-images .product-swiper {
  border-radius: 0.16rem;
  overflow: hidden;
  background: #fff;
}
.product-images .product-swiper .swiper-slide {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  padding: 0.4rem;
  aspect-ratio: 610/520;
}
.product-images .product-swiper .swiper-slide img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-images .product-swiper .swiper-pagination-bullet {
  background: var(--color-link);
}
.product-images .product-swiper .swiper-button-prev,
.product-images .product-swiper .swiper-button-next {
  color: var(--color-link);
}
.product-images .product-swiper .swiper-button-prev::after,
.product-images .product-swiper .swiper-button-next::after {
  font-size: var(--font-size-24);
}

.product-info {
  max-width: 5.7rem;
  width: 100%;
  position: relative;
}

.yishuzi-xinghao {
  position: absolute;
  top: -40%;
  left: -30%;
  line-height: 1;
  font-size: 2.78rem;
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  color: transparent;
  -webkit-text-stroke: 0.02rem rgba(0, 73, 132, 0.08); /* 描边 */
}

.product-category {
  display: inline-block;
  color: var(--color-link);
  font-size: var(--font-size-24);
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  border-radius: 0.04rem;
}

.product-title {
  font-size: var(--font-size-48);
  color: var(--color-003366);
  margin-bottom: 0.2rem;
  font-weight: normal;
}

.product-desc {
  font-size: var(--font-size-18);
  color: var(--color-4c5f6d);
  margin-bottom: 0.5rem;
}

.product-actions {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}

@media screen and (max-width: 991px) {
  .product-header {
    gap: 0.4rem;
  }
  .product-images,
  .product-info {
    width: 100%;
    max-width: 50%;
  }
  .yishuzi-xinghao {
    top: -10%;
    left: 0px;
    font-size: 1.6rem;
  }
  .product-title {
    font-size: var(--font-size-36);
  }
}
@media screen and (max-width: 768px) {
  .product-header {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .product-images, .product-info {
    max-width: 100%;
  }
}
.product-features-mid {
  background: url(../images/proxq-bj.webp) no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-top: 1.34rem;
  padding-bottom: 2.7rem;
}

.section-title {
  font-size: 0.5rem;
  color: var(--color-004984);
  line-height: 1.2;
  font-weight: normal;
}

.features-grid {
  width: 100%;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.56rem;
}

.feature-item {
  text-align: center;
}
.feature-item:nth-child(2n) {
  margin-top: 0.72rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.feature-item:nth-child(2n):hover {
  margin-top: 0.2rem;
}
.feature-item:hover .feature-icon {
  background: var(--color-link);
}
.feature-item:hover .feature-icon img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.feature-icon {
  width: 1.68rem;
  height: 1.68rem;
  margin-left: auto;
  margin-right: auto;
  padding: max(0.2rem, 20px);
  border-radius: 50%;
  box-shadow: 0px 32px 76px 0px rgba(78, 109, 135, 0.16);
  background: transparent;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  margin-bottom: 0.6rem;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.feature-icon img {
  width: auto;
}

@media screen and (max-width: 991px) {
  .product-features-mid {
    padding-bottom: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .features-grid {
    -moz-box-pack: center;
         justify-content: center;
  }
  .feature-item {
    width: 30%;
    margin-bottom: 30px;
  }
  .feature-icon {
    width: 100px;
    height: 100px;
  }
  .feature-item:nth-child(2n) {
    margin-top: 0px;
  }
}
@media screen and (max-width: 480px) {
  .features-grid {
    gap: 0px;
  }
  .feature-item {
    width: 48%;
  }
}
.product-specs {
  padding: 0.7rem 0;
}

.specs-table-wrapper {
  overflow-x: auto;
  margin-top: 0.4rem;
}

.table table tr td {
  padding-left: 0.58rem;
  padding-right: 0.58rem;
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
  font-size: var(--font-size-16);
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  background: rgba(235, 243, 249, 0.6);
  color: var(--color-004984);
}

.table table tr:nth-child(2n) td {
  background: #fff;
}

.table table tr:first-child td {
  background: var(--color-004984);
  color: #fff;
  font-size: var(--font-size-24);
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  padding-top: 0.18rem;
  padding-bottom: 0.18rem;
}

.product-application-mid {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #f8f9fa;
}

.application-desc {
  font-size: var(--font-size-16);
  color: var(--color-4c5f6d);
  margin-top: 0.18rem;
  max-width: 9.5rem;
  width: 100%;
}

.application-images {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  gap: 0.4rem;
  position: relative;
}

.application-img-item {
  -moz-box-flex: 1;
       flex: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.application-img-item img {
  width: 100%;
  height: auto;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.application-img-item img:hover {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.application-more {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-link);
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  color: #fff;
  font-size: var(--font-size-24);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.application-more:hover {
  background: var(--color-004984);
  -moz-transform: translateY(-50%) scale(1.1);
   -ms-transform: translateY(-50%) scale(1.1);
       transform: translateY(-50%) scale(1.1);
}

@media screen and (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .product-specs,
  .product-application {
    padding: 0.6rem 0;
  }
  .section-title {
    font-size: var(--font-size-32);
    margin-bottom: 0.1rem;
  }
  .product-title {
    font-size: var(--font-size-28);
    margin-bottom: 0.2rem;
  }
  .product-desc {
    font-size: var(--font-size-16);
    margin-bottom: 0.3rem;
  }
  .product-actions {
    gap: 0.15rem;
  }
  .product-actions .annnu-gd {
    -moz-box-pack: center;
         justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .application-images {
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
  }
  .application-more {
    position: static;
    -moz-transform: none;
     -ms-transform: none;
         transform: none;
    margin: 0.2rem auto 0;
  }
}
.swiperguangfan {
  margin-top: 0.58rem;
}
.swiperguangfan .swiper-slide {
  background: #fefffa;
  border-radius: 0.2rem;
  overflow: hidden;
  aspect-ratio: 9/5.5;
}
.swiperguangfan .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiperguangfan .swiper-slide img:hover {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.annu-qiehuan {
  margin-left: 0.2rem;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
       justify-content: center;
}
.annu-qiehuan .swiper-button-prev, .annu-qiehuan .swiper-button-next {
  box-shadow: 0px 32px 76px 0px rgba(78, 109, 135, 0.16);
  position: unset;
  margin: 0px;
  width: max(0.64rem, 40px);
  height: max(0.64rem, 40px);
  border-radius: 50%;
  background: #fff;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  margin-left: 0.05rem;
  margin-right: 0.05rem;
  color: var(--color-004984);
}
.annu-qiehuan .swiper-button-prev::after, .annu-qiehuan .swiper-button-next::after {
  display: none;
}
.annu-qiehuan .swiper-button-prev:hover, .annu-qiehuan .swiper-button-next:hover {
  background: #0c65af;
  color: #fff;
}
.annu-qiehuan .swiper-button-prev i, .annu-qiehuan .swiper-button-next i {
  font-size: var(--font-size-24);
}

.proxq-top {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: justify;
       justify-content: space-between;
}
.proxq-top > .proxq-top-left {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .proxq-top {
    flex-wrap: wrap;
  }
  .annu-qiehuan {
    margin-top: 10px;
  }
  .product-application-mid {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.related-pro-mid {
  padding-top: 1rem;
  padding-bottom: 0.3rem;
}
.related-pro-mid .related-pro-kuang .prolist-grid {
  border-bottom: 0px;
}

/*  product detail end */
.banner-title {
  font-size: var(--font-size-36);
  color: #fff;
  margin-bottom: 0.2rem;
}

/* about us start */
.aboutus-s1-mid {
  background-size: cover;
  padding-top: 1.2rem;
}

.aboutus-s1-top .section-title {
  margin-top: 0.1rem;
}

.aboutus-s1-left {
  width: 30.8125%;
  border-radius: 0.24rem;
  overflow: hidden;
  aspect-ratio: 493/722;
  position: relative;
}
.aboutus-s1-left::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(11, 99, 172, 0) 0%, rgb(11, 99, 172) 100%);
  background: linear-gradient(to bottom, rgba(11, 99, 172, 0) 0%, rgb(11, 99, 172) 100%);
  z-index: 2;
}
.aboutus-s1-left > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutus-s1-left:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.aboutus-s1-left-content {
  position: absolute;
  bottom: 0px;
  padding-left: 0.3rem;
  padding-bottom: 0.6rem;
  padding-right: 0.3rem;
  z-index: 3;
}

.shimingtitle {
  margin-bottom: 0.2rem;
  margin-top: 0.06rem;
}

.aboutus-s1-middle-content {
  position: absolute;
  top: 0px;
  padding: 0.36rem;
}
.aboutus-s1-middle-content p {
  display: -moz-box;
  display: flex;
  -moz-box-align: start;
       align-items: flex-start;
  -moz-box-pack: start;
       justify-content: flex-start;
}
.aboutus-s1-middle-content p img {
  width: auto;
}
.aboutus-s1-middle-content p strong {
  width: max(0.2rem, 14px);
  height: max(0.2rem, 14px);
  background: #014b88;
  border-radius: 50%;
  display: block;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  flex-shrink: 0;
  margin-right: 0.1rem;
  margin-top: 0.02rem;
  padding: 0.06rem;
}
.aboutus-s1-middle-content p strong img {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.aboutus-s1-middle-top {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.24rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
.aboutus-s1-middle-top > img {
  position: relative;
  top: 74%;
  left: -20%;
  -moz-transform: scale(1.2);
   -ms-transform: scale(1.2);
       transform: scale(1.2);
}
.aboutus-s1-middle-top:hover > img {
  top: 30%;
  left: 0px;
}

.aboutus-s1-middle {
  width: 29.5625%;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
}

.aboutus-s1-bottom {
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
       justify-content: space-between;
  margin-top: 0.73rem;
  padding-bottom: 0.73rem;
}

.aboutus-s1-right {
  width: 36.625%;
  display: -moz-box;
  display: flex;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
       flex-direction: column;
  -moz-box-pack: justify;
       justify-content: space-between;
  flex-wrap: wrap;
}

.aboutus-s1-right-top {
  aspect-ratio: 586/223;
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
}
.aboutus-s1-right-top::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(right, rgba(11, 99, 172, 0) 0%, rgb(11, 99, 172) 100%);
  background: linear-gradient(to left, rgba(11, 99, 172, 0) 0%, rgb(11, 99, 172) 100%);
  z-index: 2;
}
.aboutus-s1-right-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutus-s1-right-top:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.aboutus-s1-middle-bottom {
  aspect-ratio: 473/232;
  border-radius: 0.2rem;
  overflow: hidden;
}
.aboutus-s1-middle-bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutus-s1-middle-bottom:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

.aboutus-s1-middle-content-div p {
  margin-bottom: 0.04rem;
}

.aboutus-s1-right-bottom {
  aspect-ratio: 586/475;
  border-radius: 0.2rem;
  overflow: hidden;
}
.aboutus-s1-right-bottom:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

@media screen and (max-width: 991px) {
  .aboutus-s1-middle-content-div p {
    font-size: 12px;
  }
  .aboutus-s1-bottom {
    flex-wrap: wrap;
    gap: 0.2rem;
  }
  .aboutus-s1-left, .aboutus-s1-middle {
    width: -moz-calc(50% - 0.1rem);
    width: calc(50% - 0.1rem);
    gap: 0.2rem;
  }
  .aboutus-s1-right {
    width: 100%;
    gap: 0.2rem;
  }
}
@media screen and (max-width: 630px) {
  .aboutus-s1-left, .aboutus-s1-middle {
    width: 100%;
  }
  .aboutus-s1-middle-bottom {
    aspect-ratio: 4/3;
  }
  .aboutus-s1-middle-top, .aboutus-s1-left, .aboutus-s1-right-top {
    aspect-ratio: auto;
  }
  .aboutus-s1-middle-top img, .aboutus-s1-left img, .aboutus-s1-right-top img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .aboutus-s1-middle-content-div p {
    font-size: 14px;
  }
  .aboutus-s1-middle-content p strong {
    margin-top: 0.08rem;
    position: relative;
  }
  .aboutus-s1-middle-content p strong img {
    left: 50%;
    top: 50%;
    -moz-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
  }
  .aboutus-s1-middle-content, .aboutus-s1-left-content, .aboutus-s1-left-content {
    position: relative;
    padding: 0.4rem;
  }
}
.aboutus-s2-mid {
  padding-top: 0.7rem;
  background-size: cover;
  overflow: hidden;
}

.ryzzswiper {
  overflow: visible;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ryzzswiper .swiper-button-next {
  right: 0px;
}
.ryzzswiper .swiper-button-prev {
  left: 0px;
}
.ryzzswiper .swiper-button-next::after, .ryzzswiper .swiper-button-prev::after {
  font-size: var(--font-size-32);
}

.ryzz-img {
  display: block;
}

.ryzz-div {
  padding: 0.72rem;
  padding-bottom: 0.4rem;
  box-shadow: 0px 13px 59px 0px rgba(120, 121, 125, 0.11);
  border-radius: 10px;
  background: #fff;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.ryzz-div:hover {
  -moz-transform: translateY(-20px);
   -ms-transform: translateY(-20px);
       transform: translateY(-20px);
}

.ryzz-name {
  color: var(--color-004984);
  text-align: center;
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  margin-top: 0.7rem;
}

@media screen and (max-width: 991px) {
  .ryzz-div {
    padding: 0.4rem;
  }
  .ryzz-name {
    margin-top: 0.2rem;
  }
}
.aboutus-s3-mid {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  overflow: hidden;
}

.aboutus-s3-div > p {
  color: #647e93;
  margin-top: 0.1rem;
}

.aboutus-top-logo {
  display: block;
  width: 1.28rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 0.34rem;
}
.aboutus-top-logo img {
  width: auto;
}

.hzhbswiper {
  margin-top: 0.4rem;
  overflow: visible;
}
.hzhbswiper .swiper-pagination {
  position: unset;
  margin-top: 0.2rem;
}
.hzhbswiper img {
  width: auto;
}
.hzhbswiper .swiper-slide {
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.hzhbswiper .swiper-slide:nth-child(2), .hzhbswiper .swiper-slide:nth-child(5) {
  margin-top: -1rem;
}

.logo-item-img {
  aspect-ratio: 250/165;
  width: 100%;
  padding: 0.36rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0px 13px 59px 0px rgba(120, 121, 125, 0.11);
  border-radius: 10px;
}
.logo-item-img:hover img {
  -moz-transform: scale(1.1);
   -ms-transform: scale(1.1);
       transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .logo-item-img {
    padding: 0.2rem;
  }
}
@media screen and (max-width: 450px) {
  .hzhbswiper .swiper-slide:nth-child(2), .hzhbswiper .swiper-slide:nth-child(5) {
    margin-top: 0px;
  }
}
.aboutus-s4-mid {
  position: relative;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.aboutus-s4-mid::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(11, 99, 172, 0.8);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.aboutus-s4-mid > img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.aboutus-s4-div {
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(3.77rem, 1fr));
  gap: 0.3rem;
}
.aboutus-s4-div .aboutus-s4-top {
  grid-column: span 2;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: start;
       justify-content: flex-start;
  flex-wrap: wrap;
}

.aboutus-s4-div-k {
  background-color: #ffffff;
  box-shadow: 0px 0px 45px 0px rgba(120, 121, 125, 0.17);
  border-radius: 0.2rem;
  padding-top: 0.5rem;
  padding-bottom: 0px;
  overflow: hidden;
  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: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.aboutus-s4-div-k:hover {
  -moz-transform: translateY(-10px);
   -ms-transform: translateY(-10px);
       transform: translateY(-10px);
  box-shadow: 0px 10px 30px 0px rgba(120, 121, 125, 0.25);
}
.aboutus-s4-div-k:hover .about-s4-div-bottom {
  bottom: -0.2rem;
}

.zytd-ertitle {
  margin-top: 0.1rem;
}

.about-s4-div-top {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.about-s4-div-bottom {
  margin-top: 0.62rem;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: end;
       justify-content: flex-end;
  width: 2.6rem;
  margin-left: auto;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  bottom: 0px;
}
.about-s4-div-bottom img {
  width: auto;
}

.zytd-title {
  font-size: var(--font-size-30);
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  color: var(--color-004984);
}

.zytd-ertitle {
  color: #4c5f6d;
}

.hxys-title {
  font-size: 0.5rem;
  line-height: 1;
  font-weight: normal;
  color: #fff;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.hxys-ertitle {
  font-size: var(--font-size-36);
  color: white;
  line-height: 1.2;
}

@media screen and (max-width: 480px) {
  .aboutus-s4-div .aboutus-s4-top {
    grid-column: span 1;
  }
  .aboutus-s4-div {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.aboutus-s5-mid {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.aboutus-s5-div-left {
  width: 36.25%;
}

.qqbjswiper {
  width: 50%;
  background-color: rgb(0, 73, 132);
  border-radius: 0.2rem;
  overflow: hidden;
  margin-right: 0px;
}
.qqbjswiper .swiper-pagination {
  text-align: left;
  bottom: 0.2rem;
  left: 0.2rem;
}
.qqbjswiper .swiper-pagination .swiper-pagination-bullet {
  width: max(0.12rem, 12px);
  height: max(0.12rem, 12px);
  opacity: 1;
  background: #fff;
}
.qqbjswiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #014b88;
}
.qqbjswiper .swiper-slide:hover img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}

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

.aboutus-s5-div-left .hxys-title {
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
}
.aboutus-s5-div-left .hxys-title, .aboutus-s5-div-left .hxys-ertitle {
  color: #004984;
}

.aboutus-s5-list {
  margin-top: 0.4rem;
}
.aboutus-s5-list ul {
  white-space: nowrap;
  overflow-x: auto;
  display: -moz-box;
  display: flex;
  -moz-box-pack: start;
       justify-content: flex-start;
  border-bottom: 0.01rem solid #e7ecf1;
}
.aboutus-s5-list ul li {
  position: relative;
  cursor: pointer;
  font-size: var(--font-size-30);
  opacity: 0.5;
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  color: var(--color-004984);
  margin-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.aboutus-s5-list ul li:last-child {
  margin-right: 0;
}
.aboutus-s5-list ul li.active {
  opacity: 1;
}
.aboutus-s5-list ul li.active::before {
  width: 100%;
}
.aboutus-s5-list ul li::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 0.04rem;
  bottom: 0px;
  width: 0%;
  background: var(--color-004984);
}

.aboutus-text {
  padding-top: 0.32rem;
  font-size: var(--font-size-16);
  color: #4c5f6d;
  display: none;
}
.aboutus-text.active {
  display: block;
}
.aboutus-text p {
  margin-bottom: 0.1rem;
}

@media screen and (max-width: 1280px) {
  .aboutus-s5-div-left {
    width: 42%;
  }
}
@media screen and (max-width: 768px) {
  .aboutus-s5-div {
    flex-wrap: wrap;
  }
  .aboutus-s5-div-left, .qqbjswiper {
    width: 100%;
    margin-bottom: 0.2rem;
  }
}
/* about us end */
/* appication start */
.annu-qiehuan .swiper-button-lock {
  display: none;
}

.appxq-s1-mid {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.appxq-s1-bottom {
  margin-top: 0.48rem;
}

.appxq-s1-bottom-img {
  max-width: 10.24rem;
  margin-left: auto;
  margin-right: auto;
}
.appxq-s1-bottom-img img {
  width: auto;
}

.appxq-s1-top-title {
  font-family: "HARMONYOS_SANS_SC_MEDIUM", Arial, Helvetica, sans-serif;
  color: #014b88;
  font-weight: normal;
}

.appxq-s1-top-ertitle {
  font-size: var(--font-size-16);
  color: #4c5f6d;
  max-width: 9.2rem;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.1rem;
}

/* appication end */
.appxq-s1-bottom-img {
  position: relative;
  width: 100%;
}
.appxq-s1-bottom-img img {
  width: 100%;
  height: auto;
  display: block;
}

.hotspot {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: 44%;
}
.hotspot:nth-child(2) {
  top: 26%;
  left: 66%;
}
.hotspot:nth-child(3) {
  top: 38%;
  left: 53%;
}
.hotspot:nth-child(4) {
  top: 41%;
  left: 36%;
}
.hotspot:nth-child(5) {
  top: 47%;
  left: 33%;
}
.hotspot:nth-child(6) {
  top: 54.3%;
  left: 66%;
}
.hotspot:nth-child(7) {
  top: 68%;
  left: 50%;
}
.hotspot:nth-child(8) {
  top: 84%;
  left: 50%;
}
.hotspot:nth-child(9) {
  top: 93.5%;
  left: 67%;
}
.hotspot .hotspot-dot {
  width: 0.16rem;
  height: 0.16rem;
  background: #014b88;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 0 0 rgba(12, 102, 175, 0.7);
  -moz-animation: pulse 2s infinite;
       animation: pulse 2s infinite;
}
.hotspot .hotspot-info {
  position: absolute;
  top: 50%;
  right: -moz-calc(100% + 0.2rem);
  right: calc(100% + 0.2rem);
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  background-color: rgba(1, 75, 136, 0.7);
  color: #fff;
  padding: 0.24rem 0.3rem;
  border-radius: 0.08rem;
  min-width: 4rem;
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 0.08rem 0.24rem rgba(12, 40, 62, 0.3);
}
.hotspot .hotspot-info::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.08rem;
  -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
       transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.08rem 0 0.08rem 0.08rem;
  border-color: transparent transparent transparent rgba(1, 75, 136, 0.7);
}
.hotspot .hotspot-info h3 {
  font-size: var(--font-size-30);
  font-weight: 600;
  color: #fff;
  padding-bottom: 0.12rem;
}
.hotspot .hotspot-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hotspot .hotspot-info ul li {
  display: -moz-box;
  display: flex;
  -moz-box-pack: start;
       justify-content: flex-start;
  -moz-box-align: start;
       align-items: flex-start;
  padding: 0.08rem 0;
  font-size: var(--font-size-16);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.hotspot .hotspot-info ul li .info-name {
  color: #fff;
  text-align: left;
  width: 2rem;
}
.hotspot .hotspot-info ul li .info-model {
  margin-left: 0.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  width: 2rem;
}
.hotspot:hover .hotspot-info {
  opacity: 1;
  visibility: visible;
  right: -moz-calc(100% + 0.3rem);
  right: calc(100% + 0.3rem);
}
.hotspot.active .hotspot-info {
  opacity: 1;
  visibility: visible;
  right: -moz-calc(100% + 0.3rem);
  right: calc(100% + 0.3rem);
}

@-moz-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(12, 102, 175, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.2rem rgba(12, 102, 175, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(12, 102, 175, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(12, 102, 175, 0.7);
  }
  70% {
    box-shadow: 0 0 0 0.2rem rgba(12, 102, 175, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(12, 102, 175, 0);
  }
}
@media screen and (max-width: 991px) {
  .hotspot .hotspot-dot {
    width: 0.14rem;
    height: 0.14rem;
  }
  .hotspot .hotspot-info {
    padding: 0.18rem 0.24rem;
    min-width: 3.5rem;
  }
  .hotspot .hotspot-info h3 {
    font-size: var(--font-size-18);
    margin-bottom: 0.12rem;
  }
  .hotspot .hotspot-info ul li {
    font-size: var(--font-size-14);
    padding: 0.06rem 0;
  }
}
@media screen and (max-width: 768px) {
  .appxq-s1-bottom-img {
    position: relative;
    display: -moz-box;
    display: flex;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, max(49%, 1fr));
    gap: 0.2rem;
  }
  .appxq-s1-bottom-img > img {
    grid-column: span 2;
  }
  .hotspot {
    position: static;
  }
  .hotspot .hotspot-dot {
    display: none;
  }
  .hotspot .hotspot-info {
    position: static;
    -moz-transform: none;
     -ms-transform: none;
         transform: none;
    margin-top: 0;
    text-align: left;
    opacity: 1;
    visibility: visible;
  }
  .hotspot .hotspot-info::before {
    display: none;
  }
  .hotspot .hotspot-info h3 {
    font-size: var(--font-size-16);
  }
  .hotspot .hotspot-info ul li {
    font-size: var(--font-size-12);
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
         flex-direction: column;
    -moz-box-align: start;
         align-items: flex-start;
    white-space: normal;
  }
  .hotspot .hotspot-info ul li .info-model {
    margin-left: 0;
    margin-top: 0.04rem;
  }
  .hotspot .hotspot-info ul li .info-name,
  .hotspot .hotspot-info ul li .info-model {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .appxq-s1-bottom-img > img {
    grid-column: span 1;
  }
}
.privacy-policy {
  padding: 0.8rem 0;
  background: #f8f9fa;
}

.privacy-mid {
  width: 100%;
}

.privacy-kuang {
  background: #fff;
  border-radius: 0.12rem;
  box-shadow: 0 0.04rem 0.16rem rgba(12, 40, 62, 0.08);
  overflow: hidden;
}

.privacy-content {
  padding: 0.6rem 0.8rem;
}

.privacy-intro {
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-vi);
}
.privacy-intro .privacy-update {
  font-size: var(--font-size-16);
  color: #666;
  margin-bottom: 0.2rem;
}
.privacy-intro .privacy-desc {
  font-size: var(--font-size-18);
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
}

.privacy-section {
  margin-bottom: 0.5rem;
}
.privacy-section .privacy-title {
  font-size: var(--font-size-28);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0.3rem;
  padding-left: 0.2rem;
  border-left: 0.04rem solid var(--color-vi);
}
.privacy-section .privacy-text {
  font-size: var(--font-size-16);
  color: var(--color-text);
  line-height: 1.8;
}
.privacy-section .privacy-text p {
  margin-bottom: 0.2rem;
}
.privacy-section .privacy-text h3 {
  font-size: var(--font-size-20);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0.3rem 0 0.2rem 0;
}
.privacy-section .privacy-text ul {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0;
}
.privacy-section .privacy-text ul li {
  position: relative;
  padding-left: 0.3rem;
  margin-bottom: 0.15rem;
  line-height: 1.8;
}
.privacy-section .privacy-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.06rem;
  height: 0.06rem;
  background: var(--color-vi);
  border-radius: 50%;
}
.privacy-section .privacy-text ul li strong {
  color: var(--color-primary);
  font-weight: 600;
}
.privacy-section .privacy-text ul.contact-info li {
  padding-left: 0;
}
.privacy-section .privacy-text ul.contact-info li::before {
  display: none;
}

.privacy-footer {
  margin-top: 0.6rem;
  padding-top: 0.4rem;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
.privacy-footer p {
  font-size: var(--font-size-16);
  color: #999;
  margin: 0;
}

@media screen and (max-width: 991px) {
  .privacy-content {
    padding: 0.5rem 0.6rem;
  }
  .privacy-section .privacy-title {
    font-size: var(--font-size-24);
  }
  .privacy-section .privacy-text {
    font-size: var(--font-size-14);
  }
  .privacy-section .privacy-text h3 {
    font-size: var(--font-size-18);
  }
}
@media screen and (max-width: 768px) {
  .privacy-policy {
    padding: 0.4rem 0;
  }
  .privacy-content {
    padding: 0.4rem 0.3rem;
  }
  .privacy-intro {
    margin-bottom: 0.4rem;
    padding-bottom: 0.3rem;
  }
  .privacy-intro .privacy-update {
    font-size: var(--font-size-14);
  }
  .privacy-intro .privacy-desc {
    font-size: var(--font-size-16);
  }
  .privacy-section {
    margin-bottom: 0.4rem;
  }
  .privacy-section .privacy-title {
    font-size: var(--font-size-20);
    padding-left: 0.15rem;
    border-left-width: 0.03rem;
  }
  .privacy-section .privacy-text {
    font-size: var(--font-size-14);
  }
  .privacy-section .privacy-text h3 {
    font-size: var(--font-size-16);
    margin: 0.2rem 0 0.15rem 0;
  }
  .privacy-section .privacy-text ul li {
    padding-left: 0.25rem;
    margin-bottom: 0.12rem;
    font-size: var(--font-size-14);
  }
  .privacy-footer {
    margin-top: 0.4rem;
    padding-top: 0.3rem;
  }
  .privacy-footer p {
    font-size: var(--font-size-14);
  }
}
.videotanchuang {
  cursor: pointer;
}

.video-s1 {
  padding: 0.8rem 0;
  background: #f8f9fa;
}

.video-s1-mid {
  margin-bottom: 0.6rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.video-card {
  background: #fff;
  border-radius: 0.12rem;
  overflow: hidden;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 0.04rem 0.12rem rgba(12, 40, 62, 0.08);
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.video-card:hover {
  -moz-transform: translateY(-0.08rem);
   -ms-transform: translateY(-0.08rem);
       transform: translateY(-0.08rem);
  box-shadow: 0 0.12rem 0.32rem rgba(12, 40, 62, 0.15);
}
.video-card:hover .video-thumb img {
  -moz-transform: scale(1.05);
   -ms-transform: scale(1.05);
       transform: scale(1.05);
}
.video-card:hover .video-play-icon {
  background: var(--color-vi);
  -moz-transform: translate(-50%, -50%) scale(1.1);
   -ms-transform: translate(-50%, -50%) scale(1.1);
       transform: translate(-50%, -50%) scale(1.1);
}
.video-card:hover .video-play-icon::after {
  border-color: transparent transparent transparent #fff;
}
.video-card:hover .video-title {
  color: var(--color-vi);
}

.video-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}
.video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -moz-transform 0.3s ease;
}
.video-thumb .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
   -ms-transform: translate(-50%, -50%);
       transform: translate(-50%, -50%);
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  -moz-box-pack: center;
       justify-content: center;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.video-thumb .video-play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.12rem 0 0.12rem 0.2rem;
  border-color: transparent transparent transparent var(--color-primary);
  margin-left: 0.04rem;
  -moz-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.video-thumb .video-duration {
  position: absolute;
  bottom: 0.12rem;
  right: 0.12rem;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 0.04rem 0.1rem;
  border-radius: 0.04rem;
  font-size: var(--font-size-14);
  z-index: 2;
}

.video-info {
  padding: 0.24rem;
}
.video-info .video-title {
  font-size: var(--font-size-24);
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 0.12rem 0;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -moz-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.video-info .video-meta {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
  font-size: var(--font-size-16);
  color: #999;
}
.video-info .video-meta .video-date {
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
       align-items: center;
}

@media screen and (max-width: 991px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem;
  }
  .video-thumb .video-play-icon {
    width: 0.5rem;
    height: 0.5rem;
  }
  .video-thumb .video-play-icon::after {
    border-width: 0.1rem 0 0.1rem 0.16rem;
  }
  .video-info {
    padding: 0.2rem;
  }
  .video-info .video-title {
    font-size: var(--font-size-16);
  }
}
@media screen and (max-width: 768px) {
  .video-s1 {
    padding: 0.4rem 0;
  }
  .video-grid {
    gap: 0.24rem;
  }
  .video-card:hover {
    -moz-transform: none;
     -ms-transform: none;
         transform: none;
  }
  .video-thumb .video-play-icon {
    width: 0.48rem;
    height: 0.48rem;
  }
  .video-thumb .video-play-icon::after {
    border-width: 0.08rem 0 0.08rem 0.14rem;
    margin-left: 0.03rem;
  }
  .video-thumb .video-duration {
    font-size: var(--font-size-12);
    padding: 0.03rem 0.08rem;
  }
  .video-info {
    padding: 0.18rem;
  }
  .video-info .video-title {
    font-size: var(--font-size-16);
    margin-bottom: 0.1rem;
  }
  .video-info .video-meta {
    font-size: var(--font-size-14);
  }
}
@media screen and (max-width: 520px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 0.24rem;
  }
}
.logo-item-img {
  opacity: 0;
  -moz-transform: translate(0, 0);
   -ms-transform: translate(0, 0);
       transform: translate(0, 0);
  -moz-transition: none;
  transition: none;
}
.logo-item-img.fly-in-left {
  -moz-animation: flyInLeft 0.8s ease-out forwards;
       animation: flyInLeft 0.8s ease-out forwards;
}
.logo-item-img.fly-in-right {
  -moz-animation: flyInRight 0.8s ease-out forwards;
       animation: flyInRight 0.8s ease-out forwards;
}
.logo-item-img.fly-in-top {
  -moz-animation: flyInTop 0.8s ease-out forwards;
       animation: flyInTop 0.8s ease-out forwards;
}
.logo-item-img.fly-in-bottom {
  -moz-animation: flyInBottom 0.8s ease-out forwards;
       animation: flyInBottom 0.8s ease-out forwards;
}

@-moz-keyframes flyInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
         transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}

@keyframes flyInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100px);
         transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}
@-moz-keyframes flyInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
         transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}
@keyframes flyInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(100px);
         transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
}
@-moz-keyframes flyInTop {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100px);
         transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes flyInTop {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100px);
         transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@-moz-keyframes flyInBottom {
  0% {
    opacity: 0;
    -moz-transform: translateY(100px);
         transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
@keyframes flyInBottom {
  0% {
    opacity: 0;
    -moz-transform: translateY(100px);
         transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
         transform: translateY(0);
  }
}
.aboutus-s4-div-k {
  opacity: 0;
  -moz-transform: translateY(50px) scale(0.95);
   -ms-transform: translateY(50px) scale(0.95);
       transform: translateY(50px) scale(0.95);
  -moz-transition: none;
  transition: none;
}
.aboutus-s4-div-k.fade-in-up {
  -moz-animation: fadeInUpScale 0.8s ease-out forwards;
       animation: fadeInUpScale 0.8s ease-out forwards;
}

@-moz-keyframes fadeInUpScale {
  0% {
    opacity: 0;
    -moz-transform: translateY(50px) scale(0.95);
         transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0) scale(1);
         transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUpScale {
  0% {
    opacity: 0;
    -moz-transform: translateY(50px) scale(0.95);
         transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0) scale(1);
         transform: translateY(0) scale(1);
  }
}