@charset "utf-8";
/*限制行数*/
.clamp1,
.clamp2,
.clamp3,
.clamp4,
.clamp5,
.clamp6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.clamp1 {
  -webkit-line-clamp: 1;
}
.clamp2 {
  -webkit-line-clamp: 2;
}
.clamp3 {
  -webkit-line-clamp: 3;
}
.clamp4 {
  -webkit-line-clamp: 4;
}
.clamp5 {
  -webkit-line-clamp: 5;
}
.clamp6 {
  -webkit-line-clamp: 6;
}
.ones-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.twos-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
.picture {
  /*position: relative;*/
  overflow: hidden;
  /*z-index: 10;*/
}
.picture img {
  transition: all 1.8s ease-in-out;
}
.each-item:hover .picture img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  zoom: 1.1 \9;
}
/*flex 布局*/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-flex;
  display: inline-flex;
}
.flex-hc {
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-zBetween {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-zEnd {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-zStart {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-ac {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-cStart {
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex-cEnd {
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.flex-cBaseline {
  -webkit-box-align: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.flex-cStretch {
  -webkit-box-align: stretch;
  -moz-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.flex-zTopBottom {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-zBottomTop {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-zLeftRight {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-zRightLeft {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-shrink {
  -webkit-box-flex: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.flex-center {
  -webkit-align-content: center;
  align-content: center;
}
.flex-start {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.flex-between {
  -webkit-align-content: space-between;
  align-content: space-between;
}
.flex-container {
  -webkit-align-content: space-around;
  align-content: space-around;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex_bd {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw / 19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins-SemiBold", "NotoSansSC-Regular", "Microsoft YaHei", "PingFang SC";
}
@media screen and (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media screen and (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}
body {
  min-height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  font-family: "Poppins-SemiBold", "NotoSansSC-Regular", "Microsoft YaHei", "PingFang SC";
}
@media screen and (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 1580px) and screen and (max-width: 1580px) {
  body {
    font-size: 12px;
  }
}
@media screen and (max-width: 1580px) and screen and (max-width: 1260px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.overflow {
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.contain {
  max-width: 1600px;
  width: 83.33333333%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1260px) {
  .contain {
    width: 85%;
  }
}
@media screen and (max-width: 991px) {
  .contain {
    max-width: 90%;
    width: 90%;
  }
}
.bgcolor {
  background-color: #070707;
}
:root {
  --color: #0080ff;
  --font1: "Poppins-SemiBold", "NotoSansSC-Bold";
  --font2: "Poppins-SemiBold", "NotoSansSC-Medium";
}
@font-face {
  font-family: "NotoSansSC-Regular";
  src: url("https://font.fonwi.com/xinweb/addfile/sikankeji/font/NotoSansSC-Regular.ttf");
  font-display: swap;
  unicode-range: U+4E00-9FFF, U+3400-4DBF;
  /* 中文字符范围 */
}
@font-face {
  font-family: "NotoSansSC-Medium";
  src: url("https://font.fonwi.com/xinweb/addfile/sikankeji/font/NotoSansSC-Medium.ttf");
  font-style: normal;
  font-display: swap;
  unicode-range: U+4E00-9FFF, U+3400-4DBF;
  /* 中文字符范围 */
}
@font-face {
  font-family: "NotoSansSC-Bold";
  src: url("https://font.fonwi.com/xinweb/addfile/sikankeji/font/NotoSansSC-Bold.ttf");
  font-display: swap;
  unicode-range: U+4E00-9FFF, U+3400-4DBF;
  /* 中文字符范围 */
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("https://font.fonwi.com/xinweb/addfile/sikankeji/font/Poppins-Regular.ttf");
  font-style: normal;
  font-display: swap;
  unicode-range: U+00-7F;
  /* 只控制ASCII字符 */
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("https://font.fonwi.com/xinweb/addfile/sikankeji/font/Poppins-SemiBold.ttf");
  font-style: normal;
  font-display: swap;
  unicode-range: U+00-7F;
  /* 只控制ASCII字符 */
}
.pt60 {
  padding-top: 0.6rem;
}
@media screen and (max-width: 1900px) {
  .pt60 {
    padding-top: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  .pt60 {
    padding-top: 1rem;
  }
}
.pb60 {
  padding-bottom: 0.6rem;
}
@media screen and (max-width: 1900px) {
  .pb60 {
    padding-bottom: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  .pb60 {
    padding-bottom: 1rem;
  }
}
.pt70 {
  padding-top: 0.7rem;
}
@media screen and (max-width: 1900px) {
  .pt70 {
    padding-top: 3.64583333vw;
  }
}
@media screen and (max-width: 991px) {
  .pt70 {
    padding-top: 1rem;
  }
}
.pb70 {
  padding-bottom: 0.7rem;
}
@media screen and (max-width: 1900px) {
  .pb70 {
    padding-bottom: 3.64583333vw;
  }
}
@media screen and (max-width: 991px) {
  .pb70 {
    padding-bottom: 1rem;
  }
}
.pt90 {
  padding-top: 0.9rem;
}
@media screen and (max-width: 1900px) {
  .pt90 {
    padding-top: 4.6875vw;
  }
}
@media screen and (max-width: 991px) {
  .pt90 {
    padding-top: 1rem;
  }
}
.pb90 {
  padding-bottom: 0.9rem;
}
@media screen and (max-width: 1900px) {
  .pb90 {
    padding-bottom: 4.6875vw;
  }
}
@media screen and (max-width: 991px) {
  .pb90 {
    padding-bottom: 1rem;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media screen and (max-width: 1900px) {
  .pt100 {
    padding-top: 5.20833333vw;
  }
}
@media screen and (max-width: 991px) {
  .pt100 {
    padding-top: 1rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media screen and (max-width: 1900px) {
  .pb100 {
    padding-bottom: 5.20833333vw;
  }
}
@media screen and (max-width: 991px) {
  .pb100 {
    padding-bottom: 1rem;
  }
}
.pt120 {
  padding-top: 1.2rem;
}
@media screen and (max-width: 1900px) {
  .pt120 {
    padding-top: 6.25vw;
  }
}
@media screen and (max-width: 991px) {
  .pt120 {
    padding-top: 1rem;
  }
}
.pb120 {
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 1900px) {
  .pb120 {
    padding-bottom: 6.25vw;
  }
}
@media screen and (max-width: 991px) {
  .pb120 {
    padding-bottom: 1rem;
  }
}
.pt110 {
  padding-top: 1rem;
}
@media screen and (max-width: 1900px) {
  .pt110 {
    padding-top: 5.72916667vw;
  }
}
@media screen and (max-width: 991px) {
  .pt110 {
    padding-top: 1.1rem;
  }
}
.pb110 {
  padding-bottom: 1.1rem;
}
@media screen and (max-width: 1900px) {
  .pb110 {
    padding-bottom: 5.72916667vw;
  }
}
@media screen and (max-width: 991px) {
  .pb110 {
    padding-bottom: 1.1rem;
  }
}
.pt150 {
  padding-top: 1.5rem;
}
@media screen and (max-width: 1900px) {
  .pt150 {
    padding-top: 7.8125vw;
  }
}
@media screen and (max-width: 991px) {
  .pt150 {
    padding-top: 1rem;
  }
}
.pb150 {
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 1900px) {
  .pb150 {
    padding-bottom: 7.8125vw;
  }
}
@media screen and (max-width: 991px) {
  .pb150 {
    padding-bottom: 1rem;
  }
}
.pt160 {
  padding-top: 1.6rem;
}
@media screen and (max-width: 1900px) {
  .pt160 {
    padding-top: 8.33333333vw;
  }
}
@media screen and (max-width: 991px) {
  .pt160 {
    padding-top: 1.2rem;
  }
}
.pb160 {
  padding-bottom: 1.6rem;
}
@media screen and (max-width: 1900px) {
  .pb160 {
    padding-bottom: 8.33333333vw;
  }
}
@media screen and (max-width: 991px) {
  .pb160 {
    padding-bottom: 1.2rem;
  }
}
.pt170 {
  padding-top: 1.7rem;
}
@media screen and (max-width: 1900px) {
  .pt170 {
    padding-top: 8.85416667vw;
  }
}
@media screen and (max-width: 991px) {
  .pt170 {
    padding-top: 1.2rem;
  }
}
.pb170 {
  padding-bottom: 1.7rem;
}
@media screen and (max-width: 1900px) {
  .pb170 {
    padding-bottom: 8.85416667vw;
  }
}
@media screen and (max-width: 991px) {
  .pb170 {
    padding-bottom: 1.2rem;
  }
}
.pb200 {
  padding-bottom: 2rem;
}
@media screen and (max-width: 1900px) {
  .pb200 {
    padding-bottom: 10.41666667vw;
  }
}
@media screen and (max-width: 991px) {
  .pb200 {
    padding-bottom: 1.2rem;
  }
}
.font12 {
  font-size: 12px;
}
.font14 {
  font-size: 14px;
}
@media screen and (max-width: 1580px) {
  .font14 {
    font-size: 12px;
  }
}
@media screen and (max-width: 1260px) {
  .font14 {
    font-size: 14px;
  }
}
.font16 {
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .font16 {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .font16 {
    font-size: 16px;
  }
}
.font18 {
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .font18 {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .font18 {
    font-size: 15px;
  }
}
.font20 {
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .font20 {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .font20 {
    font-size: 16px;
  }
}
.font22 {
  font-size: 22px;
}
@media screen and (max-width: 1580px) {
  .font22 {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 991px) {
  .font22 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .font22 {
    font-size: 18px;
  }
}
.font24 {
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .font24 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .font24 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .font24 {
    font-size: 18px;
  }
}
.font26 {
  font-size: 26px;
}
@media screen and (max-width: 1580px) {
  .font26 {
    font-size: 0.26rem;
  }
}
@media screen and (max-width: 991px) {
  .font26 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .font26 {
    font-size: 20px;
  }
}
.font30 {
  font-size: 30px;
}
@media screen and (max-width: 1580px) {
  .font30 {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 991px) {
  .font30 {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .font30 {
    font-size: 20px;
  }
}
.font32 {
  font-size: 32px;
}
@media screen and (max-width: 1580px) {
  .font32 {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 991px) {
  .font32 {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .font32 {
    font-size: 20px;
  }
}
.font36 {
  font-size: 36px;
}
@media screen and (max-width: 1580px) {
  .font36 {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 991px) {
  .font36 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .font36 {
    font-size: 22px;
  }
}
.font40 {
  font-size: 40px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .font40 {
    font-size: 2.08333333vw;
  }
}
@media screen and (max-width: 991px) {
  .font40 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .font40 {
    font-size: 24px;
  }
}
.font44 {
  font-size: 44px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .font44 {
    font-size: 2.29166667vw;
  }
}
@media screen and (max-width: 991px) {
  .font44 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .font44 {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .font44 {
    font-size: 24px;
  }
}
.font48 {
  font-size: 48px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .font48 {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 991px) {
  .font48 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .font48 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .font48 {
    font-size: 22px;
  }
}
.font50 {
  font-size: 50px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .font50 {
    font-size: 2.60416667vw;
  }
}
@media screen and (max-width: 991px) {
  .font50 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .font50 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .font50 {
    font-size: 22px;
  }
}
.font68 {
  font-size: 68px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .font68 {
    font-size: 3.54166667vw;
  }
}
@media screen and (max-width: 991px) {
  .font68 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .font68 {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .font68 {
    font-size: 24px;
  }
}
#interval {
  height: 0.6rem;
}
@media screen and (max-width: 991px) {
  #interval {
    height: 60px;
  }
}
@keyframes wave-animation {
  0% {
    transform: translate(0, -50%) rotateZ(0deg);
  }
  50% {
    transform: translate(-2%, -50%) rotateZ(180deg);
  }
  100% {
    transform: translate(0, -50%) rotateZ(360deg);
  }
}
.universal-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 0.42rem;
  border-radius: 0.21rem;
  font-family: var(--font1);
  color: #ffffff;
  font-size: 16px;
  padding: 0 0.15rem;
  background: #0080ff;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1580px) {
  .universal-button {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .universal-button {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .universal-button {
    height: 0.5rem;
    padding: 0 0.2rem;
    border-radius: 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .universal-button {
    padding: 0 0.25rem;
    height: 0.6rem;
    border-radius: 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .universal-button {
    padding: 0 0.3rem;
    font-size: 14px;
  }
}
.universal-button:hover .btn-inner {
  color: #ffffff;
}
.universal-button:hover .mask {
  width: 300px;
  height: 300px;
}
.universal-button .btn-inner {
  position: relative;
  z-index: 2;
}
.universal-button .mask {
  background: #359aff;
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: width 0.4s, height 0.4s;
  transition: width 0.4s, height 0.4s;
  z-index: 1;
  left: 0 \9 !important;
  top: 0 \9 !important;
}
.header {
  position: relative;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  background: #FFFFFF;
}
.header .box {
  max-width: 1600px;
  width: 83.33333333%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1260px) {
  .header .box {
    width: 85%;
    height: 60px;
  }
}
@media screen and (max-width: 991px) {
  .header .box {
    max-width: 90%;
    width: 90%;
  }
}
.header .box .logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  will-change: transform;
}
.header .box .logo .a {
  transition: all 0.3s cubic-bezier(0.3, 1, 0.3, 1);
}
.header .box .logo .a:hover {
  transform: scale(1.02777778);
  transform-origin: center;
}
.header .box .logo .a img {
  display: inline-block;
  height: 0.31rem;
}
@media screen and (max-width: 1260px) {
  .header .box .logo .a img {
    height: 31px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .logo .a img {
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header .box .logo .a img {
    height: 20px;
  }
}
@media screen and (max-width: 540px) {
  .header .box .logo .a img {
    height: 4.5vmin;
  }
}
.header .box .logo .span {
  position: relative;
  margin-left: 0.15rem;
  padding-left: 0.15rem;
  color: #2b2b2b;
  font-size: 12px;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .header .box .logo .span {
    margin-left: 0.25rem;
    padding-left: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .header .box .logo .span {
    margin-left: 0.2rem;
    padding-left: 0.2rem;
    font-size: 10px;
  }
}
@media screen and (max-width: 540px) {
  .header .box .logo .span {
    margin-left: 2vmin;
    padding-left: 2vmin;
    font-size: 2.4vmin;
  }
}
.header .box .logo .span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: #2b2b2b;
  opacity: 0.1;
}
.header .box .nav {
  margin-right: 0.45rem;
}
@media screen and (max-width: 1260px) {
  .header .box .nav {
    display: none;
  }
}
.header .box .nav ul {
  padding: 0;
}
.header .box .nav ul li {
  padding: 0 0.19rem;
  list-style: none;
}
.header .box .nav ul li.static {
  position: static;
}
.header .box .nav ul li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.6rem;
  font-family: var(--font2);
  color: #2b2b2b;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li > a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li > a {
    font-size: 16px;
  }
}
.header .box .nav ul li > a i {
  display: inline-block;
  margin-left: 0.1rem;
  width: 0.11rem;
  height: 0.2rem;
  background-size: 100% auto;
}
.header .box .nav ul li:hover > a {
  color: #0080ff;
}
.header .box .nav ul li:hover > a i {
  background-size: 100% auto;
}
.header .box .nav ul li.on > a {
  color: #0080ff;
}
.header .box .nav ul li.on > a i {
  background-size: 100% auto;
}
.header .box .nav ul li .navcell {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  min-width: 1.8rem;
  width: max-content;
}
.header .box .nav ul li .navcell::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
}
.header .box .nav ul li .navcell .cell {
  display: flex;
  flex-direction: column;
  width: max-content;
  min-width: 100%;
  padding: 0.12rem 0.19rem 0.35rem;
  overflow: hidden;
  background: #ffffff;
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .nav ul li .navcell .cell {
    border-radius: 0.52083333vw;
  }
}
.header .box .nav ul li .navcell .cell a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 0.4rem;
  color: #000000;
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
  padding-top: 0.05rem;
  padding-bottom: 0.05rem;
  padding-right: 0.25rem;
  border-bottom: rgba(0, 0, 0, 0.06) solid 1px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .navcell .cell a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .navcell .cell a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1900px) and (min-width: 1261px) {
  .header .box .nav ul li .navcell .cell a {
    padding: 0.260416vw 1.3020833vw;
  }
}
.header .box .nav ul li .navcell .cell a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.06rem;
  height: 100%;
  background: url(../images/icon27.webp) center right no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .box .nav ul li .navcell .cell a:hover {
  font-family: var(--font1);
  color: #0080ff;
}
.header .box .nav ul li .navcell .cell a:hover::before {
  background: url(../images/icon27a.webp) center right no-repeat;
  background-size: 100% auto;
}
.header .box .nav ul li .pulldown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0%;
  z-index: 5;
  width: 100%;
  height: calc(100vh - 0.7rem);
}
.header .box .nav ul li .pulldown .pullbox {
  background: #ffffff;
  box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.05);
  border-top: rgba(0, 0, 0, 0.06) solid 1px;
  border-radius: 0 0 26px 26px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .nav ul li .pulldown .pullbox {
    border-radius: 0 0 1.35416667vw 1.35416667vw;
  }
}
.header .box .nav ul li .pulldown .pullbox .contain {
  padding: 0.35rem 0 0.3rem;
}
.header .box .nav ul li .pulldown .pullbox .contain .headline {
  font-family: var(--font1);
  color: #000000;
  font-size: 20px;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .pulldown .pullbox .contain .headline {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .pulldown .pullbox .contain .headline {
    font-size: 16px;
  }
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  box-sizing: border-box;
  padding-bottom: 0.3rem;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper .swiper-wrapper {
  align-items: stretch;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-prev,
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-next {
  position: absolute;
  top: 1rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  box-shadow: 0px 0px 98px 0px rgba(0, 128, 255, 0.1);
  background: rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-prev,
  .header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-next {
    top: 1.2rem;
  }
}
@media screen and (max-width: 1366px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-prev,
  .header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-next {
    top: 1.1rem;
  }
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-prev::before,
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-next::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img89.webp) center no-repeat;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-prev::after,
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-next::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-prev {
  left: -0.75rem;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-prev::after {
  background: url(../images/icon41.webp) center no-repeat;
  background-size: 15% auto;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-prev:hover::after {
  background: url(../images/icon41a.webp) center no-repeat;
  background-size: 15% auto;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-prev:hover::before {
  opacity: 1;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-next {
  right: -0.75rem;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-next::after {
  background: url(../images/icon42.webp) center no-repeat;
  background-size: 15% auto;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-next:hover::after {
  background: url(../images/icon42a.webp) center no-repeat;
  background-size: 15% auto;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .swiper-button-next:hover::before {
  opacity: 1;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .item {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .item:hover .imgbox {
  border-color: #0080ff;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .item:hover .text {
  color: #0080ff;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .item .imgbox {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f6f8;
  border: #f5f6f8 solid 0.02rem;
  box-sizing: border-box;
  transition: all 0.4s ease;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullwrap .item .imgbox {
    border-radius: 0.52083333vw;
  }
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .item .imgbox img {
  max-width: 100%;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap .item .text {
  margin-top: 0.2rem;
  text-align: center;
  color: #000000;
  font-size: 20px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullwrap .item .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullwrap .item .text {
    font-size: 16px;
  }
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap.pullwrap2 .item {
  background: #f5f6f8;
  border: #f5f6f8 solid 0.02rem;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap.pullwrap2 .item .text {
  padding-bottom: 0.2rem;
  position: relative;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap.pullwrap2 .item .text .new {
  color: var(--color);
  position: absolute;
  text-align: center;
  top: -0.4rem;
  left: 0;
  right: 0;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap.pullwrap2 .item:hover {
  border-color: #0080ff;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullwrap.pullwrap2 .item:hover .imgbox {
  border-color: transparent;
}
.header .box .nav ul li .pulldown .pullbox .contain .s-dropdown {
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent {
  gap: 0.18rem;
  padding-bottom: 0.3rem;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item {
  position: relative;
  display: block;
  width: calc((100% - 0.36rem) / 3);
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item {
    border-radius: 0.52083333vw;
  }
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item:hover .imgbox img {
  transform: scale(1.06);
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item.spe::before {
  background: #ecf0f4;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item.spe .text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 5;
  width: 100%;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 52.75590551%;
  overflow: hidden;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .textbox {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 5;
  width: 100%;
  padding: 0.15rem 0.2rem;
  box-sizing: border-box;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .textbox .subtitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .textbox .subtitle span {
  flex: 1;
  overflow: hidden;
  color: #ffffff;
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .textbox .subtitle span {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .textbox .subtitle span {
    font-size: 16px;
  }
}
.header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .text span {
  font-family: var(--font1);
  font-size: 24px;
  background: -webkit-linear-gradient(to bottom right, #0c69ff, #258bff, #8cd2ff);
  background: linear-gradient(to bottom right, #0c69ff, #258bff, #8cd2ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .text span {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .text span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header .box .nav ul li .pulldown .pullbox .contain .pullcontent .item .text span {
    font-size: 18px;
  }
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell {
  gap: 0.48rem;
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: calc((100% - 1.92rem) / 5);
  padding-right: 0.15rem;
  padding-bottom: 0.15rem;
  border-bottom: rgba(0, 0, 0, 0.06) solid 1px;
  box-sizing: border-box;
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem:hover {
  border-bottom-color: #0080ff;
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem:hover .icon img {
  -webkit-filter: none;
  filter: none;
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem:hover span {
  font-family: var(--font1);
  color: #0080ff;
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem:hover i {
  background: url(../images/icon27a.webp) center right no-repeat;
  background-size: 100% auto;
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem .icon {
  flex-shrink: 0;
  margin-right: 0.15rem;
  display: inline-flex;
  align-items: center;
  min-height: 0.27rem;
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem .icon img {
  width: 0.25rem;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem span {
  flex: 1;
  overflow: hidden;
  color: #000000;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem span {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem span {
    font-size: 15px;
  }
}
.header .box .nav ul li .pulldown .pullbox .contain .columncell .columnitem i {
  display: inline-block;
  flex-shrink: 0;
  margin-left: 0.1rem;
  width: 0.06rem;
  height: 0.27rem;
  background: url(../images/icon27b.webp) center right no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .box .headright {
  gap: 0.1rem;
}
@media screen and (max-width: 1260px) {
  .header .box .headright {
    gap: 10px;
  }
}
.header .box .headright .head_search .icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  box-sizing: border-box;
  background: rgba(43, 43, 43, 0.06);
}
@media screen and (max-width: 1260px) {
  .header .box .headright .head_search .icon {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 540px) {
  .header .box .headright .head_search .icon {
    width: 5.92592593vmin;
    height: 5.92592593vmin;
  }
}
.header .box .headright .head_search .icon img {
  width: 41.66666667%;
}
@media screen and (max-width: 1260px) {
  .header .box .headright .head_search .icon img {
    width: 43.75%;
  }
}
.header .box .headright .head-nation {
  position: relative;
}
.header .box .headright .head-nation .title {
  display: inline-flex !important;
  align-items: center;
  min-width: 1.2rem;
  height: 0.32rem;
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  box-sizing: border-box;
  background: rgba(43, 43, 43, 0.06);
  border-radius: 0.18rem;
}
@media screen and (max-width: 1260px) {
  .header .box .headright .head-nation .title {
    height: 32px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 540px) {
  .header .box .headright .head-nation .title {
    height: 5.92592593vmin;
    border-radius: 3vmin;
  }
}
.header .box .headright .head-nation .title img {
  display: inline-block;
  margin-right: 0.1rem;
  width: 0.17rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1260px) {
  .header .box .headright .head-nation .title img {
    width: 17px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 540px) {
  .header .box .headright .head-nation .title img {
    width: 3.14814815vmin;
  }
}
.header .box .headright .head-nation .title span {
  font-family: var(--font2);
  color: #2b2b2b;
  font-size: 16px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .header .box .headright .head-nation .title span {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .title span {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .title span {
    font-size: 14px;
  }
}
@media screen and (max-width: 540px) {
  .header .box .headright .head-nation .title span {
    font-size: 2.59259259vmin;
  }
}
.header .box .headright .head-nation .dropdown {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0.1rem);
  transform: translate(-50%, 0.1rem);
  top: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .dropdown {
    top: 100%;
    min-width: 90px;
  }
}
.header .box .headright .head-nation .dropdown ul {
  margin-top: 0.2rem;
  background: #FFFFFF;
  padding: 0.1rem 0px;
  text-align: left;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .headright .head-nation .dropdown ul {
    margin-top: 1.04167vw;
    padding: 0.52083vw 0;
  }
}
.header .box .headright .head-nation .dropdown ul li {
  list-style: none;
}
.header .box .headright .head-nation .dropdown ul li a {
  display: block;
  font-family: var(--font2);
  font-size: 16px;
  color: #2b2b2b;
  line-height: 2.2;
  min-width: 0.9rem;
  text-align: center;
  padding: 0 0.2rem;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
}
@media screen and (max-width: 1580px) {
  .header .box .headright .head-nation .dropdown ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .dropdown ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .headright .head-nation .dropdown ul li a {
    min-width: 4.6875vw;
    padding: 0 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .dropdown ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 540px) {
  .header .box .headright .head-nation .dropdown ul li a {
    font-size: 12px;
  }
}
.header .box .headright .head-nation .dropdown ul li a:hover {
  color: #0080ff;
}
.header .box .headright .head-nation:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .box .headright .head-contact {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  position: relative;
}
@media screen and (max-width: 1260px) {
  .header .box .headright .head-contact {
    display: none;
  }
}
.header .box .headright .head-contact .title {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 0.32rem;
  border-radius: 0.18rem;
  font-family: var(--font2);
  color: #FFFFFF;
  font-size: 16px;
  padding: 0 0.15rem;
  background: #0080ff;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .header .box .headright .head-contact .title {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-contact .title {
    font-size: 16px;
  }
}
.header .box .headright .head-contact .title img {
  display: inline-block;
  margin-right: 0.1rem;
  width: 0.17rem;
}
.header .box .headright .head-contact .dropdown {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0.1rem);
  transform: translate(-50%, 0.1rem);
  top: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 150%;
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-contact .dropdown {
    top: 100%;
    min-width: 90px;
  }
}
.header .box .headright .head-contact .dropdown ul {
  margin-top: 0.2rem;
  background: #FFFFFF;
  padding: 0.1rem 0px;
  text-align: left;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .headright .head-contact .dropdown ul {
    margin-top: 1.04167vw;
    padding: 0.52083vw 0;
  }
}
.header .box .headright .head-contact .dropdown ul li {
  list-style: none;
}
.header .box .headright .head-contact .dropdown ul li a {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  font-family: var(--font2);
  font-size: 14px;
  color: #2b2b2b;
  line-height: 2.2;
  min-width: 0.9rem;
  text-align: center;
  padding: 0 0.2rem;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
}
@media screen and (max-width: 1580px) {
  .header .box .headright .head-contact .dropdown ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1260px) {
  .header .box .headright .head-contact .dropdown ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .header .box .headright .head-contact .dropdown ul li a {
    min-width: 4.6875vw;
    padding: 0 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-contact .dropdown ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 540px) {
  .header .box .headright .head-contact .dropdown ul li a {
    font-size: 12px;
  }
}
.header .box .headright .head-contact .dropdown ul li a img {
  width: 0.2rem;
}
.header .box .headright .head-contact .dropdown ul li a:hover {
  color: #0080ff;
}
.header .box .headright .head-contact:hover .dropdown {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .search-form {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #f8f8f8;
  text-align: center;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 10px -13px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .header .search-form {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}
.header .search-form.active {
  opacity: 1;
  visibility: visible;
}
.header .search-form .form-body {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  border: 1px solid #eee;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  border-radius: 0.6rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .search-form .form-body {
    width: 90%;
  }
}
.header .search-form .form-body input {
  width: 6rem;
  height: 0.54rem;
  font-size: 16px;
  color: #000000;
  text-align: left;
}
@media screen and (max-width: 1580px) {
  .header .search-form .form-body input {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body input {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body input {
    height: 0.64rem;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .header .search-form .form-body input {
    width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body input {
    height: 0.7rem;
  }
}
.header .search-form .form-body .icon {
  line-height: 1;
  margin-right: 0.2rem;
  flex-shrink: 0;
  width: 0.2rem;
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body .icon {
    width: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body .icon {
    width: 0.28rem;
  }
}
.header .search-form .form-body .icon img {
  max-width: 100%;
}
.header .search-form .form-body .close {
  width: 0.2rem;
  cursor: pointer;
  margin-left: 0.2rem;
  flex-shrink: 0;
  margin-right: 0;
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body .close {
    width: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body .close {
    width: 0.28rem;
  }
}
.header .search-form .form-body .close img {
  max-width: 100%;
}
.header .phone-toggle {
  margin-left: 20px;
  user-select: none;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1260px) {
  .header .phone-toggle {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header .phone-toggle {
    margin-left: 10px;
  }
}
.header .phone-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000000;
  margin-bottom: 5px;
  transition: all 0.45s ease;
}
.header .phone-toggle span:last-of-type {
  margin-bottom: 0;
}
.m-nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0px;
  z-index: 99;
  background-color: #FFFFFF;
  overflow-y: scroll;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.m-nav > ul {
  padding-top: 10px;
  padding-left: 5%;
  padding-right: 5%;
}
.m-nav > ul > li {
  position: relative;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  list-style: none;
  border-bottom: #e5e5e5 solid 1px;
}
.m-nav > ul > li a {
  display: block;
  line-height: 1.7;
  color: #070707;
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle {
  position: relative;
  display: block;
  line-height: 1.7;
  color: #070707;
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle a {
  display: inline-block;
  padding: 0;
}
.m-nav > ul > li .headtitle i {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 100%;
  background: url(../images/icon21.webp) center no-repeat;
  background-size: 7px auto;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle.on {
  color: #0080ff;
}
.m-nav > ul > li .headtitle.on i {
  background: url(../images/icon21.webp) center no-repeat;
  background-size: 7px auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.m-nav > ul > li ul {
  display: none;
  padding-left: 20px;
  border-top: #e5e5e5 solid 1px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.m-nav > ul > li ul.proul {
  padding-left: 0;
  padding-top: 25px;
  padding-bottom: 25px;
}
.m-nav > ul > li ul.proul li {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}
.m-nav > ul > li ul.proul li a.proitem {
  width: calc((100% - 30px) / 4);
  background: #f5f6f8;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .m-nav > ul > li ul.proul li a.proitem {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 480px) {
  .m-nav > ul > li ul.proul li a.proitem {
    width: calc((100% - 10px) / 2);
  }
}
.m-nav > ul > li ul.proul li a.proitem .img {
  width: 100%;
  overflow: hidden;
}
.m-nav > ul > li ul.proul li a.proitem .img img {
  max-width: 100%;
}
.m-nav > ul > li ul.proul li a.proitem .text {
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
}
.m-nav > ul > li ul.proul li a.sitem {
  position: relative;
  display: block;
  width: calc((100% - 30px) / 4);
  overflow: hidden;
  border-radius: 10px;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .m-nav > ul > li ul.proul li a.sitem {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 480px) {
  .m-nav > ul > li ul.proul li a.sitem {
    width: calc((100% - 10px) / 2);
  }
}
.m-nav > ul > li ul.proul li a.sitem::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
}
.m-nav > ul > li ul.proul li a.sitem:hover .imgbox img {
  transform: scale(1.06);
}
.m-nav > ul > li ul.proul li a.sitem .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 52.75590551%;
  overflow: hidden;
}
.m-nav > ul > li ul.proul li a.sitem .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.m-nav > ul > li ul.proul li a.sitem .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding: 0.15rem 0.2rem;
  box-sizing: border-box;
}
.m-nav > ul > li ul.proul li a.sitem .textbox .subtitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-nav > ul > li ul.proul li a.sitem .textbox .subtitle span {
  flex: 1;
  overflow: hidden;
  font-family: var(--font1);
  color: #ffffff;
  font-size: 14px;
}
.m-nav > ul > li ul.proul li a.sitem .textbox .subtitle i {
  flex-shrink: 0;
  margin-left: 6px;
  width: 5px;
  height: 10px;
  background: url(../images/icon28.webp) center no-repeat;
  background-size: 100% auto;
}
.m-nav > ul > li ul li {
  list-style: none;
}
.m-nav > ul > li ul li a {
  display: block;
  font-size: 16px;
  padding: 7px 0px;
}
.m-nav > ul > li ul li:hover > a {
  color: #0080ff;
}
.m-nav > ul > li ul li .headtitle {
  padding: 8px 0px;
}
.m-nav > ul > li ul li ul li ul li a {
  font-size: 14px;
}
.m-nav > ul > li:hover > a {
  color: #0080ff;
}
.mbox .header {
  background: #FFFFFF;
}
.mbox .m-nav {
  height: calc(100vh - 60px);
}
.mbox .phone-toggle span {
  background-color: #333333;
}
.mbox .phone-toggle span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.mbox .phone-toggle span:nth-child(2) {
  display: none;
}
.mbox .phone-toggle span:nth-child(3) {
  transform: rotate(45deg);
}
@media screen and (min-width: 1261px) {
  .phone-toggle {
    display: none !important;
  }
}
.istop {
  position: fixed;
  right: 1%;
  bottom: 5vh;
  z-index: 12;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5s ease;
}
.istop.show {
  opacity: 1;
}
@media screen and (max-width: 1260px) {
  .istop {
    right: 3%;
  }
}
.istop a,
.istop span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #0080ff;
}
.istop a img,
.istop span img {
  display: block;
  margin: auto;
  width: 33.33333333%;
}
.footer {
  background: rgba(0, 0, 0, 0.02);
}
.footer .box {
  max-width: 1600px;
  width: 83.33333333%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1260px) {
  .footer .box {
    width: 85%;
  }
}
@media screen and (max-width: 991px) {
  .footer .box {
    max-width: 90%;
    width: 90%;
  }
}
.footer .box .footer-nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .footer .box .footer-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
  }
}
.footer .box .footer-nav .row {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
}
@media screen and (max-width: 1260px) {
  .footer .box .footer-nav .row {
    gap: 20px;
    width: 100%;
  }
}
.footer .box .footer-nav .item.on .title i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.footer .box .footer-nav .item .title {
  position: relative;
  color: #000000;
  font-size: 20px;
  margin-bottom: 0.15rem;
}
@media screen and (max-width: 1580px) {
  .footer .box .footer-nav .item .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .footer .box .footer-nav .item .title {
    display: flex;
    align-items: center;
    border-bottom: rgba(204, 204, 204, 0.5) solid 1px;
    padding-bottom: 15px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  .footer .box .footer-nav .item .title {
    font-size: 16px;
  }
}
.footer .box .footer-nav .item .title i {
  width: 40px;
  height: 40px;
  position: absolute;
  right: -10px;
  top: -8px;
  cursor: pointer;
  transition: all 0.5s;
  display: none;
}
@media screen and (max-width: 1260px) {
  .footer .box .footer-nav .item .title i {
    display: block;
  }
}
.footer .box .footer-nav .item .title i::before {
  content: '';
  width: 12px;
  position: absolute;
  height: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #070707;
}
.footer .box .footer-nav .item .title i::after {
  content: '';
  height: 12px;
  position: absolute;
  width: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #070707;
}
.footer .box .footer-nav .item ul {
  padding-left: 0;
}
@media screen and (max-width: 1260px) {
  .footer .box .footer-nav .item ul {
    display: none;
    padding-top: 20px;
    margin-top: 0;
    margin-bottom: 12px;
  }
}
.footer .box .footer-nav .item ul li {
  list-style: none;
  margin-bottom: 0.04rem;
}
@media screen and (max-width: 1260px) {
  .footer .box .footer-nav .item ul li {
    margin-bottom: 10px;
  }
}
.footer .box .footer-nav .item ul li a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .footer .box .footer-nav .item ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item ul li a {
    font-size: 16px;
  }
}
.footer .box .footer-nav .item ul li a:hover {
  color: #0080ff;
}
.footer .box .footer-info {
  margin-top: 0.8rem;
  padding-bottom: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .box .footer-info .footer-logo a img {
  height: 0.38rem;
}
.footer .box .footer-info .follow ul {
  display: flex;
  align-items: center;
  column-gap: 0.16rem;
  padding: 0;
}
@media screen and (min-width: 1261px) {
  .footer .box .footer-info .follow ul {
    column-gap: 0.83333333vw;
  }
}
@media screen and (max-width: 1260px) {
  .footer .box .footer-info .follow ul {
    column-gap: 10px;
  }
}
.footer .box .footer-info .follow ul li {
  position: relative;
  list-style: none;
}
.footer .box .footer-info .follow ul li:hover span img,
.footer .box .footer-info .follow ul li:hover a img {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}
.footer .box .footer-info .follow ul li span img,
.footer .box .footer-info .follow ul li a img {
  width: 0.19rem;
  opacity: 0.22;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .footer .box .footer-info .follow ul li span img,
  .footer .box .footer-info .follow ul li a img {
    width: 19px;
  }
}
.footer .box .footer-info .follow ul li .qrcode {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  width: 1.03rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .footer .box .footer-info .follow ul li .qrcode {
    width: 96px;
  }
}
.footer .box .footer-info .follow ul li .qrcode .img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #FFFFFF;
}
.footer .box .footer-info .follow ul li .qrcode .img img {
  width: 100%;
}
.footer .box .footer-info .follow ul li .qrcode .sjx {
  position: relative;
  z-index: 1;
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  margin-top: -3px;
  border-style: solid;
  border-width: 8px;
  border-color: #FFFFFF transparent transparent transparent;
}
.footer .box .footer-info .follow ul li:hover a img {
  opacity: 1;
}
.footer .box .footer-info .follow ul li:hover .qrcode {
  opacity: 1;
  visibility: visible;
}
.footer .box .footerbottom {
  padding: 0.2rem 0;
  border-top: rgba(0, 0, 0, 0.06) solid 2px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .footer .box .footerbottom {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footerbottom {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .footer .box .footerbottom {
    border-top: none;
    flex-direction: column;
    text-align: center;
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 480px) {
  .footer .box .footerbottom {
    font-size: 14px;
  }
}
.footer .box .footerbottom .copylink {
  display: inline-flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  text-align: right;
  margin-left: 0.05rem;
}
@media screen and (max-width: 1260px) {
  .footer .box .footerbottom .copylink {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: 5px;
  }
}
.footer .box .footerbottom .copylink .copyright {
  display: inline-block;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .box .footerbottom .copylink .copyright:hover {
  color: #0080ff;
}
.footer .box .footerbottom .copylink span {
  display: inline-block;
  margin: 0 0.03rem;
}
.footer .box .footerbottom .copylink a {
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .box .footerbottom .copylink a:hover {
  color: #0080ff;
}
.footer .box .footerbottom .poweredBy {
  display: inline-block;
  margin-left: 0.5rem;
  color: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1260px) {
  .footer .box .footerbottom .poweredBy {
    display: block;
    width: 100%;
    margin-top: 5px;
    margin-left: 0;
  }
}
.footer .box .footerbottom .poweredBy a {
  display: inline-block;
  color: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .box .footerbottom .poweredBy:hover {
  color: #0080ff;
}
.footer .box .footerbottom .poweredBy:hover a {
  color: #0080ff;
}
.banner .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: all 0.4s ease;
}
.banner .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  height: auto;
}
.banner .swiper .swiper-wrapper .swiper-slide > img {
  width: 100%;
}
.banner .swiper .swiper-wrapper .swiper-slide .video-box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.banner .swiper .swiper-wrapper .swiper-slide .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper .swiper-wrapper .swiper-slide .i-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 991px) {
  .banner .swiper .swiper-wrapper .swiper-slide .i-banner {
    top: 15vh;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
  }
}
.banner .swiper .swiper-wrapper .swiper-slide .i-banner .box {
  width: 100%;
}
.banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .title {
  font-family: var(--font1);
  font-size: 50px;
  color: #000000;
  line-height: 1.2;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .title {
    font-size: 2.60416667vw;
  }
}
@media screen and (max-width: 991px) {
  .banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .title {
    font-size: 22px;
  }
}
.banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .text {
  font-family: var(--font1);
  color: #000000;
  opacity: 0.4;
  font-size: 30px;
  line-height: 1.4;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 1580px) {
  .banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .text {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 991px) {
  .banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .text {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .text {
    margin-bottom: 15px;
  }
}
.banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .text span {
  display: inline-block;
  padding: 0.1rem 0.2rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
}
.banner .swiper .swiper-wrapper .swiper-slide .i-banner .box .btn {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
}
.banner .swiper .swiper-pagination {
  z-index: 3;
  bottom: 3.64583333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: left;
  max-width: 1600px;
  width: 83.33333333%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1260px) {
  .banner .swiper .swiper-pagination {
    width: 85%;
  }
}
@media screen and (max-width: 991px) {
  .banner .swiper .swiper-pagination {
    max-width: 90%;
    width: 90%;
    bottom: 0.4rem;
  }
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 0.3rem;
  height: 0.06rem;
  margin: 0 0.05rem;
  opacity: 1;
  background: none;
  border-radius: 0.03rem;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .banner .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 1.5625vw;
    height: 0.3125vw;
    margin: 0 0.2604vw;
  }
}
@media screen and (max-width: 991px) {
  .banner .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    margin: 0 5px;
  }
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  opacity: 0.3;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet i {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 0;
  height: 100%;
  background: #0080ff;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.6rem;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .banner .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 3.125vw;
  }
}
.mImg {
  display: none;
}
@media screen and (max-width: 991px) {
  .mImg {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .pImg {
    display: none;
  }
}
.obanner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.obanner > img {
  width: 100%;
}
.obanner .bannerImg {
  display: none;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.obanner .bannerTitle {
  position: absolute;
  bottom: 3.90625vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
}
.obanner .bannerTitle .box .headline {
  line-height: 1.2;
  font-family: var(--font1);
  font-size: 40px;
  color: #ffffff;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .obanner .bannerTitle .box .headline {
    font-size: 2.08333333vw;
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box .headline {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .obanner .bannerTitle .box .headline {
    font-size: 24px;
  }
}
.obanner .bannerTitle .box .text {
  margin-top: 0.15rem;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.5;
  max-width: 9.6rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1580px) {
  .obanner .bannerTitle .box .text {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .obanner .bannerTitle .box .text {
    font-size: 18px;
  }
}
.current-title.center {
  text-align: center;
}
.current-title .headline {
  font-family: var(--font1);
  color: #000000;
  font-size: 40px;
  line-height: 1.1;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .current-title .headline {
    font-size: 2.08333333vw;
  }
}
@media screen and (max-width: 991px) {
  .current-title .headline {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .current-title .headline {
    font-size: 24px;
  }
}
.current-title .text {
  color: rgba(0, 0, 0, 0.6);
  font-size: 24px;
  line-height: 1.45;
  margin-top: 0.06rem;
}
@media screen and (max-width: 1580px) {
  .current-title .text {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .current-title .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .current-title .text {
    font-size: 18px;
  }
}
.current-title .desp {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1.45;
  margin-top: 0.25rem;
}
@media screen and (max-width: 1580px) {
  .current-title .desp {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .current-title .desp {
    font-size: 16px;
  }
}
.current-title .desp p {
  margin-bottom: 0.25rem;
}
.current-title .desp p:last-child {
  margin-bottom: 0;
}
.index_product .box {
  margin-top: 0.5rem;
  gap: 0.24rem;
  padding-left: 0.24rem;
  padding-right: 0.24rem;
  box-sizing: border-box;
}
.index_product .box .item {
  position: relative;
  display: block;
  width: calc((100% - 0.24rem) / 2);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_product .box .item {
    width: 100%;
  }
}
.index_product .box .item:hover .imgbox img {
  transform: scale(1.06);
}
.index_product .box .item .textbox {
  position: absolute;
  left: 0;
  top: 3.75vw;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0 0.4rem;
}
@media screen and (max-width: 991px) {
  .index_product .box .item .textbox {
    top: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .index_product .box .item .textbox {
    top: 5vmin;
  }
}
.index_product .box .item .textbox .subtitle {
  font-family: var(--font1);
  color: #000000;
  font-size: 36px;
  line-height: 1.2;
}
@media screen and (max-width: 1580px) {
  .index_product .box .item .textbox .subtitle {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .item .textbox .subtitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .index_product .box .item .textbox .subtitle {
    font-size: 22px;
  }
}
.index_product .box .item .textbox .text {
  margin-top: 0.1rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .index_product .box .item .textbox .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .item .textbox .text {
    font-size: 16px;
  }
}
.index_product .box .item .textbox .public-btn {
  margin-top: 0.25rem;
}
.index_product .box .item .imgbox {
  width: 100%;
  height: 100%;
}
.index_product .box .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.index_product .box .grid-item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index_product .box .grid-item .textbox {
  position: absolute;
  left: calc((100% - 1600px) / 2);
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  width: 30%;
}
@media screen and (max-width: 1900px) {
  .index_product .box .grid-item .textbox {
    left: 8.33333333%;
  }
}
@media screen and (max-width: 1260px) {
  .index_product .box .grid-item .textbox {
    left: 7.5%;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .grid-item .textbox {
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .index_product .box .grid-item .textbox {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-top: 0.5rem;
    margin-bottom: 0.4rem;
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .index_product .box .grid-item .textbox .contain {
    max-width: 100%;
    width: 100%;
  }
}
.index_product .box .grid-item .textbox .contain .subtitle {
  font-family: var(--font1);
  color: #000000;
  font-size: 36px;
  line-height: 1.2;
}
@media screen and (max-width: 1580px) {
  .index_product .box .grid-item .textbox .contain .subtitle {
    font-size: 0.34rem;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .grid-item .textbox .contain .subtitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .index_product .box .grid-item .textbox .contain .subtitle {
    font-size: 22px;
  }
}
.index_product .box .grid-item .textbox .contain .class-text {
  margin-top: 0.3rem;
  color: rgba(0, 0, 0, 0.4);
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .index_product .box .grid-item .textbox .contain .class-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .grid-item .textbox .contain .class-text {
    font-size: 16px;
  }
}
.index_product .box .grid-item .textbox .contain .class-text ul {
  position: relative;
  padding-left: 0;
}
.index_product .box .grid-item .textbox .contain .class-text ul li {
  position: relative;
  cursor: pointer;
  padding-left: 0.3rem;
  padding-bottom: 0.2rem;
  list-style: none;
}
.index_product .box .grid-item .textbox .contain .class-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  z-index: 5;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #dcdcdc;
}
@media screen and (max-width: 767px) {
  .index_product .box .grid-item .textbox .contain .class-text ul li::before {
    width: 7px;
    height: 7px;
    top: 0.15rem;
  }
}
.index_product .box .grid-item .textbox .contain .class-text ul li::after {
  content: '';
  position: absolute;
  left: 0.03rem;
  top: 0.1rem;
  z-index: 1;
  width: 0.02rem;
  height: 100%;
  border-left: #dcdcdc dashed 0.02rem;
}
@media screen and (max-width: 767px) {
  .index_product .box .grid-item .textbox .contain .class-text ul li::after {
    top: 0.15rem;
    left: 3px;
    width: 1px;
    border-left: #dcdcdc dashed 1px;
  }
}
.index_product .box .grid-item .textbox .contain .class-text ul li:last-child::after {
  display: none;
}
.index_product .box .grid-item .textbox .contain .class-text ul li.on {
  color: #000000;
}
.index_product .box .grid-item .textbox .contain .class-text ul li.on::before {
  background: #000000;
}
.index_product .box .grid-item .textbox .contain .public-btn {
  margin-top: 0.25rem;
}
.index_product .box .grid-item .imgbox {
  position: relative;
  z-index: 5;
  width: 100%;
}
.index_product .box .grid-item .imgbox .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index_product .box .grid-item .imgbox .swiper .swiper-wrapper {
  align-items: stretch;
}
.index_product .box .grid-item .imgbox .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index_product .box .grid-item .imgbox .swiper .swiper-wrapper .swiper-slide .img {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.index_product .box .grid-item .imgbox .swiper .swiper-wrapper .swiper-slide .img .proimg {
  width: 67.09401709%;
}
@media screen and (max-width: 767px) {
  .index_product .box .grid-item .imgbox .swiper .swiper-wrapper .swiper-slide .img .proimg {
    width: 100%;
  }
}
.index_product .box .grid-item .imgbox .swiper .swiper-wrapper .swiper-slide .img .proimg:hover img {
  transform: scale(1.06);
}
.index_product .box .grid-item .imgbox .swiper .swiper-wrapper .swiper-slide .img .proimg img {
  display: block;
  width: 100%;
  transition: transform 0.3s;
}
.index_3d .box {
  margin-top: 0.5rem;
  position: relative;
  padding-left: 0.24rem;
  padding-right: 0.24rem;
  box-sizing: border-box;
}
.index_3d .box .largebox {
  width: 100%;
  overflow: hidden;
}
.index_3d .box .largebox .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index_3d .box .largebox .swiper .swiper-wrapper {
  align-items: stretch;
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item {
  position: relative;
  width: 100%;
  height: 100%;
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item > img {
    min-height: 7.2rem;
  }
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .imgbox > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .imgbox > img {
    min-height: 7.2rem;
  }
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .imgbox.hide {
  opacity: 0;
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .imgbox .modelsicon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 11%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .imgbox .modelsicon {
    padding-bottom: 0;
  }
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .imgbox .modelsicon img {
  width: 0.64rem;
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .modelsbox {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .modelsbox.active {
  display: block;
}
.index_3d .box .largebox .swiper .swiper-wrapper .swiper-slide .item .iframeContainer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.index_3d .box .bottombox {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .index_3d .box .bottombox {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 0.4rem;
    max-width: 100%;
  }
}
.index_3d .box .bottombox .public-btn {
  margin-bottom: 0.35rem;
  text-align: center;
}
.index_3d .box .bottombox .thumbsbox {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.index_3d .box .thumbsbox {
  max-width: 10.36rem;
  width: 100%;
  overflow: hidden;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .index_3d .box .thumbsbox {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}
.index_3d .box .thumbsbox .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index_3d .box .thumbsbox .swiper .swiper-wrapper .swiper-slide.swiper-slide-prev .img {
  transform: scale(0.8375);
  transform-origin: center;
}
.index_3d .box .thumbsbox .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .img {
  transform: scale(0.8375);
  transform-origin: center;
}
.index_3d .box .thumbsbox .swiper .swiper-wrapper .swiper-slide.swiper-slide-next + .swiper-slide .img {
  transform: scale(0.75);
  transform-origin: left;
}
.index_3d .box .thumbsbox .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .img {
  transform: scale(1);
  opacity: 1;
  transform-origin: center;
}
.index_3d .box .thumbsbox .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .img img {
  opacity: 1;
}
.index_3d .box .thumbsbox .swiper .swiper-wrapper .swiper-slide .img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  transform: scale(0.75);
  opacity: 0.8;
  transform-origin: right;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .index_3d .box .thumbsbox .swiper .swiper-wrapper .swiper-slide .img {
    background: #f5f6f8;
  }
}
.index_3d .box .thumbsbox .swiper .swiper-wrapper .swiper-slide .img img {
  max-width: 100%;
  opacity: 0.4;
}
.index_3d .box .thumbsbox .swiper-button-prev,
.index_3d .box .thumbsbox .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .index_3d .box .thumbsbox .swiper-button-prev,
  .index_3d .box .thumbsbox .swiper-button-next {
    border-radius: 0.52083333vw;
  }
}
.index_3d .box .thumbsbox .swiper-button-prev::after,
.index_3d .box .thumbsbox .swiper-button-next::after {
  display: none;
}
.index_3d .box .thumbsbox .swiper-button-prev {
  left: 0;
  background: #FFFFFF url(../images/icon5.webp) center no-repeat;
  background-size: 12.82052% auto;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .index_3d .box .thumbsbox .swiper-button-prev {
    background: #f5f6f8 url(../images/icon5.webp) center no-repeat;
    background-size: 12.82052% auto;
  }
}
.index_3d .box .thumbsbox .swiper-button-prev:hover {
  background: #0080ff url(../images/icon5a.webp) center no-repeat;
  background-size: 12.82052% auto;
}
.index_3d .box .thumbsbox .swiper-button-next {
  right: 0;
  background: #FFFFFF url(../images/icon6.webp) center no-repeat;
  background-size: 12.82052% auto;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .index_3d .box .thumbsbox .swiper-button-next {
    background: #f5f6f8 url(../images/icon6.webp) center no-repeat;
    background-size: 12.82052% auto;
  }
}
.index_3d .box .thumbsbox .swiper-button-next:hover {
  background: #0080ff url(../images/icon6a.webp) center no-repeat;
  background-size: 12.82052% auto;
}
.iframeContainer .play-button {
  background: #0080ff;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .iframeContainer .play-button {
    width: 5.2vw;
    height: 5.2vw;
  }
}
.iframeContainer .play-button:focus,
.iframeContainer .play-button:hover {
  background-color: #1caad9;
  background-color: var(--color-primary-400, #1caad9);
}
.rounded-corner {
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .rounded-corner {
    border-radius: 0.52083333vw;
  }
}
.index_solve .box {
  position: relative;
  padding-left: 0.24rem;
  padding-right: 0.24rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .index_solve .box {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
.index_solve .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0.5rem;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide.swiper-slide-prev .item {
  transform-origin: right center;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide.swiper-slide-next .item {
  transform-origin: left center;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item {
  transform: scale(1);
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .index_solve .box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item {
    border-radius: 0.52083333vw;
  }
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item::before {
  opacity: 0;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item::after {
  opacity: 1;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .item .textbox {
  opacity: 1;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  transform: scale(0.78910615);
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.5s ease;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 100%;
  padding: 0 6.86%;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.5s ease;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox .wrap {
  max-width: 6rem;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox .wrap .subtitle {
  font-family: var(--font1);
  font-size: 30px;
  color: #FFFFFF;
  line-height: 1.2;
}
@media screen and (max-width: 1580px) {
  .index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox .wrap .subtitle {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 991px) {
  .index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox .wrap .subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox .wrap .subtitle {
    font-size: 20px;
  }
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox .wrap .text {
  margin-top: 0.2rem;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.45;
}
@media screen and (max-width: 1580px) {
  .index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox .wrap .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox .wrap .text {
    font-size: 16px;
  }
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item .textbox .wrap .public-btn {
  margin-top: 0.3rem;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  width: 100%;
  overflow: hidden;
}
.index_solve .box .swiper .swiper-wrapper .swiper-slide .item .imgbox img {
  display: block;
  width: 100%;
}
.index_solve .box .swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1600px;
  width: 83.33333333%;
  margin-top: 0.4rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1260px) {
  .index_solve .box .swiper .swiper-pagination {
    width: 85%;
  }
}
@media screen and (max-width: 991px) {
  .index_solve .box .swiper .swiper-pagination {
    max-width: 90%;
    width: 90%;
  }
}
.index_solve .box .swiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 0.3rem;
  height: 0.06rem;
  margin: 0 0.05rem;
  opacity: 1;
  background: none;
  border-radius: 0.03rem;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .index_solve .box .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 1.5625vw;
    height: 0.3125vw;
    margin: 0 0.2604vw;
  }
}
@media screen and (max-width: 991px) {
  .index_solve .box .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    margin: 0 5px;
  }
}
.index_solve .box .swiper .swiper-pagination .swiper-pagination-bullet span {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.1;
}
.index_solve .box .swiper .swiper-pagination .swiper-pagination-bullet i {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 0;
  height: 100%;
  background: #0080ff;
}
.index_solve .box .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.6rem;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .index_solve .box .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 3.125vw;
  }
}
.index_solve .box .swiper .swiper-button-prev,
.index_solve .box .swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 0.6rem;
  height: 0.6rem;
  box-shadow: 0px 0px 98px 0px rgba(0, 128, 255, 0.1);
  border-radius: 50%;
}
.index_solve .box .swiper .swiper-button-prev::after,
.index_solve .box .swiper .swiper-button-next::after {
  display: none;
}
.index_solve .box .swiper .swiper-button-prev {
  left: 8%;
  background: #FFFFFF url(../images/icon5.webp) center no-repeat;
  background-size: 16.66666667% auto;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .index_solve .box .swiper .swiper-button-prev {
    left: 0;
  }
}
.index_solve .box .swiper .swiper-button-prev:hover {
  background: #0080ff url(../images/icon5a.webp) center no-repeat;
  background-size: 16.66666667% auto;
}
.index_solve .box .swiper .swiper-button-next {
  right: 8%;
  background: #FFFFFF url(../images/icon6.webp) center no-repeat;
  background-size: 16.66666667% auto;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .index_solve .box .swiper .swiper-button-next {
    right: 0;
  }
}
.index_solve .box .swiper .swiper-button-next:hover {
  background: #0080ff url(../images/icon6a.webp) center no-repeat;
  background-size: 16.66666667% auto;
}
.index_video {
  padding-left: 0.24rem;
  padding-right: 0.24rem;
  box-sizing: border-box;
}
.index_video .box {
  background: #f8f9fb;
}
.index_video .box .wrap {
  margin-top: 0.5rem;
  position: relative;
  padding-left: 0.24rem;
  padding-right: 0.24rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_video .box .wrap {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
.index_video .box .wrap .video-swiper {
  position: relative;
  width: 83.8125%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_video .box .wrap .video-swiper {
    width: 100%;
  }
}
.index_video .box .wrap .video-swiper .video-wrapper {
  display: flex;
  align-items: stretch;
}
@media screen and (min-width: 992px) {
  .index_video .box .wrap .video-swiper .video-wrapper {
    flex-wrap: wrap;
    gap: 0.24rem;
  }
}
.index_video .box .wrap .video-swiper .video-wrapper .video-slide {
  height: auto;
}
@media screen and (min-width: 992px) {
  .index_video .box .wrap .video-swiper .video-wrapper .video-slide {
    width: calc((73.45264727815063% - 0.48rem) / 2);
    transition: all 0.5s ease;
  }
  .index_video .box .wrap .video-swiper .video-wrapper .video-slide.spe {
    width: 26.54735272%;
  }
  .index_video .box .wrap .video-swiper .video-wrapper .video-slide.cur {
    width: calc((100% - 0.48rem) / 3);
  }
}
@media screen and (max-width: 991px) {
  .index_video .box .wrap .video-swiper .video-wrapper .video-slide {
    flex-shrink: 0;
  }
}
.index_video .box .wrap .video-swiper .video-wrapper .video-slide:hover .item .imgbox img {
  transform: scale(1.06);
}
.index_video .box .wrap .video-swiper .video-wrapper .video-slide .item {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.index_video .box .wrap .video-swiper .video-wrapper .video-slide .item .imgbox {
  position: relative;
  width: 100%;
  padding-bottom: 3.52rem;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_video .box .wrap .video-swiper .video-wrapper .video-slide .item .imgbox {
    padding-bottom: 75.21367521%;
  }
}
.index_video .box .wrap .video-swiper .video-wrapper .video-slide .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.index_video .box .wrap .video-swiper .video-wrapper .video-slide .item .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.56rem;
  height: 0.56rem;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .index_video .box .wrap .video-swiper .video-wrapper .video-slide .item .icon {
    width: 0.6rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .index_video .box .wrap .video-swiper .video-wrapper .video-slide .item .icon {
    width: 0.7rem;
    height: 0.7rem;
  }
}
.index_video .box .wrap .video-swiper .video-wrapper .video-slide .item .icon img {
  display: block;
  width: 100%;
}
.index_video .box .wrap .video-swiper .swiper-button-prev,
.index_video .box .wrap .video-swiper .swiper-button-next {
  display: none;
}
@media screen and (max-width: 991px) {
  .index_video .box .wrap .video-swiper .swiper-button-prev,
  .index_video .box .wrap .video-swiper .swiper-button-next {
    display: block;
  }
}
.index_video .box .public-btn {
  margin-top: 0.4rem;
  text-align: center;
}
.index_news {
  padding-bottom: 0.3rem;
}
.index_news .box {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 0.24rem;
  padding-right: 0.24rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_news .box {
    flex-wrap: wrap;
  }
}
.index_news .box .main_news {
  width: 65.70512821%;
  overflow: hidden;
  background: #f5f6f8;
  padding: 0.32rem 0.28rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .index_news .box .main_news {
    width: 100%;
    padding: 0.4rem;
  }
}
.index_news .box .main_news .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index_news .box .main_news .swiper .swiper-wrapper {
  align-items: stretch;
}
.index_news .box .main_news .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item {
    flex-wrap: wrap;
  }
}
.index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  position: relative;
  width: 52.9%;
  padding-bottom: 37.398374%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .imgbox {
    width: 100%;
    padding-bottom: 74.31340872%;
  }
}
.index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox {
  display: flex;
  flex-direction: column;
  width: 42.75%;
}
@media screen and (max-width: 991px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .date {
  color: #000000;
  font-size: 16px;
  margin-top: 0.1rem;
}
@media screen and (max-width: 1580px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .date {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .date {
    font-size: 16px;
  }
}
.index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .title {
  margin-top: 0.2rem;
  font-family: var(--font1);
  color: #000000;
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 1580px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .title {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .title {
    font-size: 18px;
  }
}
.index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .text {
  margin-top: 0.25rem;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1580px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .text {
    font-size: 16px;
  }
}
.index_news .box .main_news .swiper .swiper-wrapper .swiper-slide .item .textbox .public-btn {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
.index_news .box .main_news .swiper .swiper-pagination {
  display: none;
}
@media screen and (max-width: 991px) {
  .index_news .box .main_news .swiper .swiper-pagination {
    display: block;
    position: relative;
    bottom: auto;
    left: 0;
    transform: none;
  }
}
.index_news .box .news_list {
  position: absolute;
  right: 0.24rem;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 32.29166667%;
  height: 100%;
  background: #f5f6f8;
  padding: 0.32rem 0.28rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .index_news .box .news_list {
    position: relative;
    right: auto;
    width: 100%;
    display: none;
  }
}
.index_news .box .news_list .wrap {
  flex: 1;
  overflow: hidden;
}
.index_news .box .news_list .wrap ul {
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 0;
  padding-right: 0.3rem;
  /* 修改滚动条的整体大小 */
  /* 修改滚动条的轨道样式 */
  /* 修改滚动条的滑块样式 */
  /* 修改滑块的 hover 样式 */
}
.index_news .box .news_list .wrap ul::-webkit-scrollbar {
  width: 0.04rem;
  /* 垂直滚动条的宽度 */
  height: 0.04rem;
  /* 水平滚动条的高度 */
}
.index_news .box .news_list .wrap ul::-webkit-scrollbar-track {
  background: #e1e1e3;
  /* 轨道背景颜色 */
  border-radius: 0.04rem;
  /* 轨道的圆角 */
}
.index_news .box .news_list .wrap ul::-webkit-scrollbar-thumb {
  background: #0080ff;
  /* 滑块背景颜色 */
  border-radius: 0.04rem;
  /* 滑块圆角 */
}
.index_news .box .news_list .wrap ul::-webkit-scrollbar-thumb:hover {
  background: #0080ff;
  /* 当鼠标悬停时滑块的颜色 */
}
.index_news .box .news_list .wrap ul li {
  list-style: none;
  border-bottom: rgba(0, 0, 0, 0.06) solid 0.02rem;
  margin-bottom: 0.1rem;
  transition: all 0.5s ease;
}
.index_news .box .news_list .wrap ul li:hover {
  border-bottom-color: #f5f6f8;
}
.index_news .box .news_list .wrap ul li:hover a {
  background: #ecedef;
}
.index_news .box .news_list .wrap ul li:hover a .subtitle {
  font-family: var(--font1);
}
.index_news .box .news_list .wrap ul li.on {
  border-bottom-color: #f5f6f8;
}
.index_news .box .news_list .wrap ul li.on a {
  background: #ecedef;
}
.index_news .box .news_list .wrap ul li.on a .subtitle {
  font-family: var(--font1);
}
.index_news .box .news_list .wrap ul li a {
  display: block;
  width: 100%;
  padding: 0.18rem;
  box-sizing: border-box;
  transition: all 0.5s ease;
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .index_news .box .news_list .wrap ul li a {
    border-radius: 0.52083333vw;
  }
}
.index_news .box .news_list .wrap ul li a .subtitle {
  font-size: 20px;
  color: #000000;
  line-height: 1.2;
}
@media screen and (max-width: 1580px) {
  .index_news .box .news_list .wrap ul li a .subtitle {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .news_list .wrap ul li a .subtitle {
    font-size: 16px;
  }
}
.index_news .box .news_list .wrap ul li a .date {
  margin-top: 0.1rem;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1580px) {
  .index_news .box .news_list .wrap ul li a .date {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .news_list .wrap ul li a .date {
    font-size: 16px;
  }
}
.index_news .box .news_list .public-btn {
  flex-shrink: 0;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
.index_choice {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.index_choice .imgbox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index_choice .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_choice .maskbg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
}
.index_choice .textbox {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  text-align: center;
}
.index_choice .textbox .title {
  font-family: var(--font1);
  color: #ffffff;
  font-size: 50px;
  line-height: 1.2;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .index_choice .textbox .title {
    font-size: 2.60416667vw;
  }
}
@media screen and (max-width: 991px) {
  .index_choice .textbox .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .index_choice .textbox .title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .index_choice .textbox .title {
    font-size: 22px;
  }
}
.index_choice .textbox .subtitle {
  margin-top: 0.2rem;
  font-family: var(--font1);
  color: #ffffff;
  font-size: 30px;
}
@media screen and (max-width: 1580px) {
  .index_choice .textbox .subtitle {
    font-size: 0.32rem;
  }
}
@media screen and (max-width: 991px) {
  .index_choice .textbox .subtitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .index_choice .textbox .subtitle {
    font-size: 20px;
  }
}
.index_choice .textbox .text {
  margin-top: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #ffffff;
  font-size: 22px;
}
@media screen and (max-width: 1580px) {
  .index_choice .textbox .text {
    font-size: 0.22rem;
  }
}
@media screen and (max-width: 991px) {
  .index_choice .textbox .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .index_choice .textbox .text {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .index_choice .textbox .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .index_choice .textbox .text {
    font-size: 15px;
  }
}
.index_choice .textbox .text a,
.index_choice .textbox .text span {
  position: relative;
  padding: 0 0.3rem;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .index_choice .textbox .text a,
  .index_choice .textbox .text span {
    padding: 0 0.15rem;
  }
}
.index_choice .textbox .text a::before,
.index_choice .textbox .text span::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.5);
}
.index_choice .textbox .text a:last-child::before,
.index_choice .textbox .text span:last-child::before {
  display: none;
}
.index_link .box {
  gap: 0.15rem;
}
.index_link .box .item {
  width: calc((100% - 0.45rem) / 4);
  padding: 0.45rem 0.3rem;
  background: #f5f6f8;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.3s;
}
@media screen and (min-width: 992px) {
  .index_link .box .item {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .index_link .box .item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 32px;
    box-sizing: border-box;
    height: 80px;
  }
}
.index_link .box .item:hover {
  transform: scale(1.05);
}
@media screen and (min-width: 992px) {
  .index_link .box .item:hover .icon img {
    -webkit-filter: none;
    filter: none;
  }
}
@media screen and (min-width: 992px) {
  .index_link .box .item:hover .text {
    color: #0080ff;
  }
}
@media screen and (max-width: 991px) {
  .index_link .box .item .icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 0.2rem;
  }
}
.index_link .box .item .icon img {
  width: 0.41rem;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  transition: all 0.5s ease;
}
.index_link .box .item .text {
  margin-top: 0.15rem;
  color: #000000;
  font-size: 20px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .index_link .box .item .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_link .box .item .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .index_link .box .item .text {
    flex: 1;
    overflow: hidden;
    margin-top: 0;
  }
}
.index_link .box .item .ic-arrow {
  display: none;
}
@media screen and (max-width: 991px) {
  .index_link .box .item .ic-arrow {
    display: block;
    flex-shrink: 0;
    margin-left: 0.2rem;
  }
}
.swiper-button.swiper-button-prev,
.swiper-button.swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 0.6rem;
  height: 0.6rem;
  box-shadow: 0px 0px 98px 0px rgba(0, 128, 255, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .swiper-button.swiper-button-prev,
  .swiper-button.swiper-button-next {
    border-radius: 0.52083333vw;
  }
}
.swiper-button.swiper-button-prev::after,
.swiper-button.swiper-button-next::after {
  display: none;
}
.swiper-button.swiper-button-prev {
  left: 0;
  background: #FFFFFF url(../images/icon5.webp) center no-repeat;
  background-size: 16.66666667% auto;
  transition: all 0.5s ease;
}
.swiper-button.swiper-button-prev:hover {
  background: #0080ff url(../images/icon5a.webp) center no-repeat;
  background-size: 16.66666667% auto;
}
.swiper-button.swiper-button-next {
  right: 0;
  background: #FFFFFF url(../images/icon6.webp) center no-repeat;
  background-size: 16.66666667% auto;
  transition: all 0.5s ease;
}
.swiper-button.swiper-button-next:hover {
  background: #0080ff url(../images/icon6a.webp) center no-repeat;
  background-size: 16.66666667% auto;
}
.common-pagination.swiper-pagination {
  z-index: 3;
  bottom: 3.64583333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .common-pagination.swiper-pagination {
    bottom: 0.4rem;
  }
}
.common-pagination.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 0.3rem;
  height: 0.06rem;
  margin: 0 0.05rem;
  opacity: 1;
  background: none;
  border-radius: 0.03rem;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .common-pagination.swiper-pagination .swiper-pagination-bullet {
    width: 1.5625vw;
    height: 0.3125vw;
    margin: 0 0.2604vw;
  }
}
@media screen and (max-width: 991px) {
  .common-pagination.swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    margin: 0 5px;
  }
}
.common-pagination.swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}
.common-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 0.6rem;
  opacity: 1;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .common-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 3.125vw;
  }
}
.common-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  background: #006CFF;
  animation: animate 4s linear forwards;
}
.common-pagination.swiper-pagination .swiper-pagination-bullet span {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 100%;
}
@keyframes animate {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.subnav-menus-anchors {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  background: #262626;
}
.subnav-menus-anchors .box {
  height: 0.5rem;
}
@media screen and (max-width: 991px) {
  .subnav-menus-anchors .box {
    height: 50px;
  }
}
.subnav-menus-anchors .box .title {
  font-family: var(--font1);
  color: #ffffff;
  font-size: 18px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1580px) {
  .subnav-menus-anchors .box .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .subnav-menus-anchors .box .title {
    font-size: 15px;
  }
}
.subnav-menus-anchors .box .subnav-menus-items {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  flex-shrink: 0;
  margin-left: 0.2rem;
}
.subnav-menus-anchors .box .subnav-menus-items ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 0.32rem;
}
.subnav-menus-anchors .box .subnav-menus-items ul li a,
.subnav-menus-anchors .box .subnav-menus-items ul li span {
  color: #ffffff;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .subnav-menus-anchors .box .subnav-menus-items ul li a,
  .subnav-menus-anchors .box .subnav-menus-items ul li span {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .subnav-menus-anchors .box .subnav-menus-items ul li a,
  .subnav-menus-anchors .box .subnav-menus-items ul li span {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .subnav-menus-anchors .box .subnav-menus-items ul li a,
  .subnav-menus-anchors .box .subnav-menus-items ul li span {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .subnav-menus-anchors .box .subnav-menus-items ul li a,
  .subnav-menus-anchors .box .subnav-menus-items ul li span {
    font-size: 12px;
  }
}
.subnav-menus-anchors .box .subnav-menus-items .btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.02rem;
  height: 0.32rem;
  border-radius: 0.16rem;
  background: linear-gradient(120deg, #0080ff 60%, #82ccff 100%);
  color: #FFFFFF;
  font-size: 16px;
  padding: 0 0.15rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .subnav-menus-anchors .box .subnav-menus-items .btn a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .subnav-menus-anchors .box .subnav-menus-items .btn a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .subnav-menus-anchors .box .subnav-menus-items .btn a {
    height: 0.38rem;
    border-radius: 0.19rem;
  }
}
@media screen and (max-width: 991px) {
  .subnav-menus-anchors .box .subnav-menus-items .btn a {
    height: 0.42rem;
    padding: 0 0.2rem;
    border-radius: 0.21rem;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .subnav-menus-anchors .box .subnav-menus-items .btn a {
    height: 0.5rem;
    padding: 0 0.2rem;
    border-radius: 0.25rem;
  }
}
@media screen and (max-width: 480px) {
  .subnav-menus-anchors .box .subnav-menus-items .btn a {
    font-size: 12px;
  }
}
.detail-title {
  font-family: var(--font1);
  color: #000000;
  font-size: 44px;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .detail-title {
    font-size: 2.29166667vw;
  }
}
@media screen and (max-width: 991px) {
  .detail-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .detail-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .detail-title {
    font-size: 24px;
  }
}
.module-banner {
  position: relative;
}
.module-banner .imgbox {
  width: 100%;
  overflow: hidden;
}
.module-banner .imgbox img {
  width: 100%;
  height: calc(100vh - 0.6rem);
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .module-banner .imgbox img {
    height: auto;
  }
}
.module-banner .textbox {
  position: absolute;
  left: 0;
  top: 5vw;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1260px) {
  .module-banner .textbox {
    top: 8%;
  }
}
@media screen and (max-width: 767px) {
  .module-banner .textbox {
    top: 10%;
  }
}
@media screen and (max-width: 480px) {
  .module-banner .textbox {
    top: 8%;
  }
}
.module-banner .textbox .detail-title {
  color: #FFFFFF;
}
.module-banner .textbox .text {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .module-banner .textbox .text {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .module-banner .textbox .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .module-banner .textbox .text {
    font-size: 18px;
  }
}
.module-banner .textbox .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.3rem;
  gap: 0.12rem;
}
@media screen and (max-width: 991px) {
  .module-banner .textbox .btns {
    gap: 0.25rem;
  }
}
.common-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 0.42rem;
  border-radius: 0.21rem;
  font-family: var(--font1);
  color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1580px) {
  .common-btn {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .common-btn {
    font-size: 16px;
  }
}
.common-btn.whitebtn::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border-radius: 0.21rem;
  border: #ffffff solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 1260px) {
  .common-btn.whitebtn::after {
    border-radius: 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .common-btn.whitebtn::after {
    border-radius: 0.3rem;
  }
}
.common-btn.whitebtn {
  color: var(--color);
}
.common-btn.whitebtn::after {
  border-color: var(--color);
}
.common-btn.bluebtn {
  background: #0080ff;
}
.common-btn:hover .btn-text {
  color: #0080ff;
}
@media screen and (max-width: 1260px) {
  .common-btn {
    height: 0.5rem;
    padding: 0 0.2rem;
    border-radius: 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .common-btn {
    padding: 0 0.25rem;
    height: 0.6rem;
    border-radius: 0.3rem;
  }
}
@media screen and (max-width: 480px) {
  .common-btn {
    padding: 0 0.3rem;
    font-size: 14px;
  }
}
.common-btn .btn-fill {
  display: block;
  border-radius: 50%;
  width: 150%;
  height: 200%;
  inset-block-start: -50%;
  inset-inline-start: -25%;
  position: absolute;
  z-index: 1;
  background-color: #ffffff;
  transform: translate3d(0, -76%, 0);
  transition: all 0.7s cubic-bezier(0.3, 1, 0.3, 1);
}
.common-btn .btn-text {
  position: relative;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.module-panel1 .box {
  margin-top: 0.6rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 12.8rem;
  width: 100%;
}
.module-panel1 .box .panel1-item-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.28rem;
}
@media screen and (max-width: 991px) {
  .module-panel1 .box .panel1-item-box {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .module-panel1 .box .panel1-item-box {
    flex-wrap: wrap;
  }
}
.module-panel1 .box .panel1-item-box .tab-item {
  width: calc((100% - 0.84rem) / 4);
  text-align: center;
  padding: 0.42rem 0.3rem;
  background: #1f1f1f;
  cursor: pointer;
  border-radius: 26px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel1 .box .panel1-item-box .tab-item {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel1 .box .panel1-item-box .tab-item {
    border-radius: 0.26rem;
  }
}
@media screen and (max-width: 767px) {
  .module-panel1 .box .panel1-item-box .tab-item {
    width: calc((100% - 20px) / 2);
    padding: 0.3rem;
  }
}
.module-panel1 .box .panel1-item-box .tab-item.active {
  background: linear-gradient(120deg, #0080ff 60%, #82ccff 100%);
}
.module-panel1 .box .panel1-item-box .tab-item.active .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.module-panel1 .box .panel1-item-box .tab-item .icon img {
  width: 0.43rem;
  transition: all 0.5s ease;
}
.module-panel1 .box .panel1-item-box .tab-item .text {
  margin-top: 0.2rem;
  font-family: var(--font1);
  color: #ffffff;
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .module-panel1 .box .panel1-item-box .tab-item .text {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .module-panel1 .box .panel1-item-box .tab-item .text {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .module-panel1 .box .panel1-item-box .tab-item .text {
    font-size: 18px;
  }
}
.module-panel1 .box .panel1-panel-box {
  margin-top: 0.28rem;
  position: relative;
}
@media screen and (max-width: 991px) {
  .module-panel1 .box .panel1-panel-box {
    margin-top: 20px;
  }
}
.module-panel1 .box .panel1-panel-box .tab-panel {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.module-panel1 .box .panel1-panel-box .tab-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  display: block;
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel.equally .swiper .swiper-wrapper .swiper-slide {
    flex: 1;
  }
}
.module-panel1 .box .panel1-panel-box .tab-panel.equally .swiper:hover .swiper-wrapper .swiper-slide {
  flex: auto;
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper {
    gap: 0.28rem;
  }
}
.module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .swiper-slide {
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .swiper-slide {
    width: calc((100% - 0.84rem) / 4) !important;
    height: 5rem;
    transition: width 0.2s ease;
  }
}
.module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item {
    border-radius: 0.26rem;
  }
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item {
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    transition: width 0.2s;
  }
}
.module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
.module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item .imgbox {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item .imgbox {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item .imgbox img {
  height: 100%;
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item .imgbox img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: inherit;
  }
}
@media screen and (max-width: 991px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item .imgbox img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
}
.module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  padding: 0.3rem;
  box-sizing: border-box;
}
.module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item .textbox .subtitle {
  font-family: var(--font1);
  color: #ffffff;
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item .textbox .subtitle {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper .swiper-wrapper .item .textbox .subtitle {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper:hover .swiper-wrapper .swiper-slide.on {
    width: calc((50.9375% - 0.84rem) / 3) !important;
  }
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper:hover .swiper-wrapper .swiper-slide.on .item {
    width: 100%;
  }
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper:hover .swiper-wrapper .swiper-slide:hover {
    width: 49.0625% !important;
  }
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper.one:hover .swiper-wrapper .swiper-slide.on {
    width: 100% !important;
  }
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper.one:hover .swiper-wrapper .swiper-slide.on .item {
    width: 100%;
  }
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper.one:hover .swiper-wrapper .swiper-slide:hover {
    width: 100% !important;
  }
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper.two:hover .swiper-wrapper .swiper-slide.on {
    width: calc((100% - 0.28rem) / 2) !important;
  }
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper.two:hover .swiper-wrapper .swiper-slide.on .item {
    width: 100%;
  }
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper.two:hover .swiper-wrapper .swiper-slide:hover {
    width: calc((100% - 0.28rem) / 2) !important;
  }
}
@media screen and (min-width: 992px) {
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper.three .swiper-wrapper .swiper-slide.on {
    width: calc((50.9375% - 0.84rem) / 2) !important;
  }
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper.three .swiper-wrapper .swiper-slide.on .item {
    width: 100%;
  }
  .module-panel1 .box .panel1-panel-box .tab-panel .swiper.three .swiper-wrapper .swiper-slide:hover {
    width: 49.0625% !important;
  }
}
.module-panel2 .box {
  margin-top: 0.6rem;
}
.module-panel2 .box .wrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.module-panel2 .box .wrap .swiper .swiper-wrapper {
  align-items: stretch;
}
.module-panel2 .box .wrap .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  height: auto;
}
.module-panel2 .box .wrap .swiper .swiper-wrapper .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}
.module-panel2 .box .wrap .swiper .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel2 .box .wrap .swiper .swiper-wrapper .swiper-slide .img {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel2 .box .wrap .swiper .swiper-wrapper .swiper-slide .img {
    border-radius: 0.26rem;
  }
}
.module-panel2 .box .wrap .swiper .swiper-wrapper .swiper-slide .img video,
.module-panel2 .box .wrap .swiper .swiper-wrapper .swiper-slide .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-panel2 .box .wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active::before {
  opacity: 0;
}
.module-panel2 .box .wrap .swiper .swiper-button-prev,
.module-panel2 .box .wrap .swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
}
.module-panel2 .box .wrap .swiper .swiper-button-prev::before,
.module-panel2 .box .wrap .swiper .swiper-button-next::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #0080ff 60%, #82ccff 100%);
  opacity: 0;
  transition: all 0.5s ease;
}
.module-panel2 .box .wrap .swiper .swiper-button-prev::after,
.module-panel2 .box .wrap .swiper .swiper-button-next::after {
  width: 100%;
  height: 100%;
  font-size: 0;
}
@media screen and (max-width: 1260px) {
  .module-panel2 .box .wrap .swiper .swiper-button-prev,
  .module-panel2 .box .wrap .swiper .swiper-button-next {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .module-panel2 .box .wrap .swiper .swiper-button-prev,
  .module-panel2 .box .wrap .swiper .swiper-button-next {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.module-panel2 .box .wrap .swiper .swiper-button-prev {
  left: 20.833333%;
}
.module-panel2 .box .wrap .swiper .swiper-button-prev::after {
  background: rgba(255, 255, 255, 0.15) url(../images/icon16.webp) center no-repeat;
  background-size: 15% auto;
}
.module-panel2 .box .wrap .swiper .swiper-button-prev:hover {
  background: url(../images/icon16.webp) center no-repeat;
  background-size: 15% auto;
}
.module-panel2 .box .wrap .swiper .swiper-button-prev:hover::before {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .module-panel2 .box .wrap .swiper .swiper-button-prev {
    left: 6%;
  }
}
@media screen and (max-width: 540px) {
  .module-panel2 .box .wrap .swiper .swiper-button-prev {
    left: 2%;
  }
}
.module-panel2 .box .wrap .swiper .swiper-button-next {
  right: 20.833333%;
}
.module-panel2 .box .wrap .swiper .swiper-button-next::after {
  background: url(../images/icon17.webp) center no-repeat;
  background-size: 15% auto;
}
.module-panel2 .box .wrap .swiper .swiper-button-next:hover {
  background: url(../images/icon17.webp) center no-repeat;
  background-size: 15% auto;
}
.module-panel2 .box .wrap .swiper .swiper-button-next:hover::before {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .module-panel2 .box .wrap .swiper .swiper-button-next {
    right: 6%;
  }
}
@media screen and (max-width: 540px) {
  .module-panel2 .box .wrap .swiper .swiper-button-next {
    right: 2%;
  }
}
.module-panel2 .box .item-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 991px) {
  .module-panel2 .box .item-box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.module-panel2 .box .item-box ul {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
  background: #f5f5f7;
  border-radius: 30px;
}
@media screen and (max-width: 991px) {
  .module-panel2 .box .item-box ul {
    overflow-x: auto;
    padding: 0.12rem 0;
  }
}
.module-panel2 .box .item-box ul li {
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .module-panel2 .box .item-box ul li {
    padding: 0 0.06rem;
  }
}
.module-panel2 .box .item-box ul li.active span,
.module-panel2 .box .item-box ul li.active a {
  color: #ffffff;
}
.module-panel2 .box .item-box ul li.active span::before,
.module-panel2 .box .item-box ul li.active a::before {
  opacity: 1;
}
.module-panel2 .box .item-box ul li span,
.module-panel2 .box .item-box ul li a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.5rem;
  border-radius: 0.25rem;
  font-family: var(--font1);
  color: #000000;
  font-size: 20px;
  white-space: nowrap;
  padding: 0 0.15rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1580px) {
  .module-panel2 .box .item-box ul li span,
  .module-panel2 .box .item-box ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel2 .box .item-box ul li span,
  .module-panel2 .box .item-box ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel2 .box .item-box ul li span,
  .module-panel2 .box .item-box ul li a {
    padding: 0 0.25rem;
    height: 0.6rem;
    border-radius: 0.3rem;
  }
}
@media screen and (min-width: 768px) {
  .module-panel2 .box .item-box ul li span,
  .module-panel2 .box .item-box ul li a {
    min-width: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .module-panel2 .box .item-box ul li span,
  .module-panel2 .box .item-box ul li a {
    font-size: 14px;
  }
}
.module-panel2 .box .item-box ul li span::before,
.module-panel2 .box .item-box ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #0080ff 60%, #82ccff 100%);
  opacity: 0;
  transition: all 0.5s ease;
}
.gather {
  position: relative;
}
.gather .panel3-img {
  left: 0;
  top: 0;
  width: 100%;
}
.gather .panel3-img img {
  display: block;
  width: 100%;
}
.module-panel3 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .module-panel3 {
    min-height: 1px;
  }
}
.module-panel3 .panel3-animation {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1260px) {
  .module-panel3 .panel3-animation {
    display: none;
  }
}
.module-panel3 .wordmask {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 56.823%;
  overflow: hidden;
}
.module-panel3 .wordmask img {
  display: block;
  width: 100%;
}
.module-panel3 .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: 10vh;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1260px) {
  .module-panel3 .bg {
    display: none;
  }
}
.module-panel3 .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(20);
}
@media screen and (max-width: 1260px) {
  .module-panel3 .bg img {
    height: 70%;
  }
}
@media screen and (max-width: 480px) {
  .module-panel3 .bg img {
    height: 55%;
  }
}
.module-panel3 .bg1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 1260px) {
  .module-panel3 .bg1 {
    display: none;
  }
}
.module-panel3 .bg1 span {
  width: 200%;
  height: 200%;
  border-top: 60vh solid #ffffff;
  border-bottom: 60vh solid #ffffff;
  border-left: 30vw solid #ffffff;
  border-right: 30vw solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 3;
}
@media screen and (max-width: 1260px) {
  .module-panel3 .bg1 span {
    border-left: 0px solid #ffffff;
    border-right: 0px solid #ffffff;
    border-top: 70vh solid #ffffff;
    border-bottom: 70vh solid #ffffff;
  }
}
.module-panel3 .panel3-title {
  position: absolute;
  left: 0;
  top: 10vw;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 1260px) {
  .module-panel3 .panel3-title {
    display: none;
  }
}
.module-panel3 .panel3-title .title {
  font-family: var(--font1);
  background-image: url('../images/img40.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 18% bottom;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 150px;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 1900px) and (min-width: 992px) {
  .module-panel3 .panel3-title .title {
    font-size: 7.8125vw;
  }
}
.module-panel3 .panel3-mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: #ffffff;
}
@media screen and (max-width: 1260px) {
  .module-panel3 .panel3-mask {
    display: none;
  }
}
.module-panel3 .box {
  position: relative;
  width: 100%;
}
.module-panel3 .box .content {
  position: relative;
}
.module-panel3 .box .content .imgbox {
  width: 100%;
  overflow: hidden;
}
.module-panel3 .box .content .imgbox img {
  display: block;
  width: 100%;
}
.module-panel3 .box .content .textbox {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.module-panel3 .box .content .textbox.mt-type ul li.a1 {
  top: 18.1%;
  left: 35.8%;
}
.module-panel3 .box .content .textbox.mt-type ul li.a2 {
  top: 29.7%;
  left: 34.5%;
  width: 18%;
}
.module-panel3 .box .content .textbox.mt-type ul li.a3 {
  top: 38.6%;
  left: 35.5%;
}
.module-panel3 .box .content .textbox.mt-type ul li.a4 {
  top: 40.7%;
  left: 35.5%;
}
.module-panel3 .box .content .textbox.mt-type ul li.a5 {
  top: 46.3%;
  left: 35.55%;
}
.module-panel3 .box .content .textbox.mt-type ul li.a6 {
  top: 53.2%;
  left: 36.7%;
}
.module-panel3 .box .content .textbox.mt-type ul li.a7 {
  top: 23.7%;
  right: 8.4%;
  width: 20.3125%;
}
.module-panel3 .box .content .textbox.mt-type ul li.a7.active .item .content {
  animation: clipLeftRight 1s forwards;
}
.module-panel3 .box .content .textbox.mt-type ul li.a7 .item .point {
  position: absolute;
  left: -0.03rem;
  top: 0;
  z-index: 1;
}
.module-panel3 .box .content .textbox.mt-type ul li.a7 .item .content .line {
  height: auto;
  background: none;
}
.module-panel3 .box .content .textbox.mt-type ul li.a7 .item .content .line svg,
.module-panel3 .box .content .textbox.mt-type ul li.a7 .item .content .line img {
  display: block;
  width: 100%;
}
.module-panel3 .box .content .textbox.mt-type ul li.a7 .item .content .text {
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
}
@media screen and (max-width: 767px) {
  .module-panel3 .box .content .textbox.mt-type ul li.a7 .item .content .text {
    right: 1.2vmin;
    bottom: 1.2vmin;
  }
}
.module-panel3 .box .content .textbox.mq-type ul li.a1 {
  top: 29.5%;
  left: 44.5%;
}
.module-panel3 .box .content .textbox.mq-type ul li.a2 {
  top: 40.7%;
  left: 45%;
}
.module-panel3 .box .content .textbox.mq-type ul li.a3 {
  top: 54.5%;
  left: 44.5%;
}
.module-panel3 .box .content .textbox.mq-type ul li.a4 {
  top: 61.5%;
  left: 44.5%;
}
.module-panel3 .box .content .textbox.mq-type ul li.a5 {
  top: 71%;
  left: 44%;
}
.module-panel3 .box .content .textbox.mq-type ul li.a6 {
  top: 33.5%;
  right: 7%;
  width: 20.3125%;
}
.module-panel3 .box .content .textbox.mq-type ul li.a6.active .item .content {
  animation: clipLeftRight 1s forwards;
}
.module-panel3 .box .content .textbox.mq-type ul li.a6 .item .point {
  position: absolute;
  left: -0.03rem;
  top: 0;
  z-index: 1;
}
.module-panel3 .box .content .textbox.mq-type ul li.a6 .item .content .line {
  height: auto;
  background: none;
}
.module-panel3 .box .content .textbox.mq-type ul li.a6 .item .content .line svg,
.module-panel3 .box .content .textbox.mq-type ul li.a6 .item .content .line img {
  display: block;
  width: 100%;
}
.module-panel3 .box .content .textbox.mq-type ul li.a6 .item .content .text {
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
}
@media screen and (max-width: 767px) {
  .module-panel3 .box .content .textbox.mq-type ul li.a6 .item .content .text {
    right: 1.2vmin;
    bottom: 1.2vmin;
  }
}
.module-panel3 .box .content .textbox.mq-type ul li .item {
  flex-direction: row;
}
.module-panel3 .box .content .textbox.mq-type ul li .item .content {
  flex-direction: row;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a1 {
  top: 18.1%;
  left: 35.8%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a2 {
  top: 29.7%;
  left: 34.5%;
  width: 18%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a3 {
  top: 38.6%;
  left: 34.5%;
  width: 17%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a3-1 {
  top: 36.6%;
  left: 34.5%;
  width: 17%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a3-1 .line::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 20%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  transform-origin: left top;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a4 {
  top: 40.7%;
  left: 34.5%;
  width: 17%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a5 {
  top: 46.3%;
  left: 35.55%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a6 {
  top: 53.2%;
  left: 36.7%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a7 {
  top: 23.7%;
  right: 8.4%;
  width: 20.3125%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a7.active .item .content {
  animation: clipLeftRight 1s forwards;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a7 .item .point {
  position: absolute;
  left: -0.03rem;
  top: 0;
  z-index: 1;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a7 .item .content .line {
  height: auto;
  background: none;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a7 .item .content .line svg,
.module-panel3 .box .content .textbox.mt2-type ul li.a7 .item .content .line img {
  display: block;
  width: 100%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a7 .item .content .text {
  position: absolute;
  right: 0.2rem;
  bottom: 0.2rem;
}
@media screen and (max-width: 767px) {
  .module-panel3 .box .content .textbox.mt2-type ul li.a7 .item .content .text {
    right: 1.2vmin;
    bottom: 1.2vmin;
  }
}
.module-panel3 .box .content .textbox.mt2-type ul li.a8 {
  top: 55.2%;
  right: 9.7%;
  width: 19%;
}
.module-panel3 .box .content .textbox.mt2-type ul li.a8 .content {
  flex-direction: row;
  gap: 0.1rem;
}
.module-panel3 .box .content .textbox ul {
  padding-left: 0;
}
.module-panel3 .box .content .textbox ul li {
  list-style: none;
  position: absolute;
  width: 15.625%;
}
.module-panel3 .box .content .textbox ul li.active .item .content {
  animation: clipRightLeft 1s forwards;
}
.module-panel3 .box .content .textbox ul li .item {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.module-panel3 .box .content .textbox ul li .item .point {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: #0080ff;
  cursor: pointer;
  opacity: 0;
}
@media screen and (max-width: 1260px) {
  .module-panel3 .box .content .textbox ul li .item .point {
    width: 0.625vw;
    height: 0.625vw;
  }
}
.module-panel3 .box .content .textbox ul li .item .point .animate-wave {
  display: none;
}
.module-panel3 .box .content .textbox ul li .item .content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.module-panel3 .box .content .textbox ul li .item .content .line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.module-panel3 .box .content .textbox ul li .item .content .text {
  max-width: 65%;
  flex-shrink: 0;
  margin-left: 0.1rem;
  font-family: var(--font1);
  color: #000000;
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .module-panel3 .box .content .textbox ul li .item .content .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel3 .box .content .textbox ul li .item .content .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .module-panel3 .box .content .textbox ul li .item .content .text {
    font-size: 1vw;
  }
}
.module-panel3 .box .content .annotate {
  position: absolute;
  top: 28vh;
  left: 8.33333333vw;
}
@media screen and (max-width: 1260px) {
  .module-panel3 .box .content .annotate {
    top: 18%;
    left: 5%;
  }
}
@media screen and (max-width: 480px) {
  .module-panel3 .box .content .annotate {
    left: 3%;
  }
}
.module-panel3 .box .content .annotate ul {
  padding-left: 0;
}
.module-panel3 .box .content .annotate ul li {
  display: flex;
  align-items: center;
  list-style: none;
  color: #000000;
  font-size: 20px;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 1580px) {
  .module-panel3 .box .content .annotate ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel3 .box .content .annotate ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 1260px) {
  .module-panel3 .box .content .annotate ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .module-panel3 .box .content .annotate ul li {
    font-size: 2vmin;
  }
}
.module-panel3 .box .content .annotate ul li.b1 i {
  border-color: #ffffff;
}
.module-panel3 .box .content .annotate ul li.b2 i {
  border-color: #0080ff;
}
.module-panel3 .box .content .annotate ul li.b3 i {
  border-color: #e7ff00;
}
.module-panel3 .box .content .annotate ul li i {
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  border: #ffffff solid 0.02rem;
  box-sizing: border-box;
  margin-right: 0.15rem;
}
@media screen and (max-width: 1900px) and (min-width: 992px) {
  .module-panel3 .box .content .annotate ul li i {
    width: 1.5625vw;
    height: 1.5625vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel3 .box .content .annotate ul li i {
    width: 0.24rem;
    height: 0.24rem;
  }
}
@media screen and (max-width: 767px) {
  .module-panel3 .box .content .annotate ul li i {
    width: 2.25vmin;
    height: 2.25vmin;
    margin-right: 1vmin;
  }
}
.module-panel3 .box .content .ring-group {
  position: absolute;
  top: 13.15vw;
  left: 21vw;
}
.module-panel3 .box .content .ring-group ul li {
  position: absolute;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  border: #ffffff solid 0.02rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1900px) {
  .module-panel3 .box .content .ring-group ul li {
    width: 1.5625vw;
    height: 1.5625vw;
    border-width: 0.10416667vw;
  }
}
.module-panel3 .box .content .ring-group ul li.r1 {
  top: 0;
  left: 2.8vw;
}
.module-panel3 .box .content .ring-group ul li.r2 {
  top: 3.6vw;
  left: 1vw;
}
.module-panel3 .box .content .ring-group ul li.r3 {
  top: 3.6vw;
  left: 4.7vw;
}
.module-panel3 .box .content .ring-group ul li.r4 {
  top: 5.8vw;
  left: 1.7vw;
  border-color: #fcff00;
}
.module-panel3 .box .content .ring-group ul li.r5 {
  top: 5.8vw;
  left: 4vw;
  border-color: #fcff00;
}
.module-panel3 .box .content .ring-group ul li.r6 {
  top: 7.73vw;
  left: 0.95vw;
  border-color: #fcff00;
}
.module-panel3 .box .content .ring-group ul li.r7 {
  top: 7.73vw;
  left: 4.8vw;
  border-color: #fcff00;
}
.module-panel3 .box .content .ring-group ul li.r8 {
  top: 9.56vw;
  left: 1.75vw;
  border-color: #fcff00;
}
.module-panel3 .box .content .ring-group ul li.r9 {
  top: 9.56vw;
  left: 4vw;
  border-color: #fcff00;
}
.module-panel3 .box .content .ring-group ul li.r10 {
  top: 22.2vw;
  left: 1.16vw;
}
.module-panel3 .box .content .ring-group ul li.r11 {
  top: 22.2vw;
  left: 4.7vw;
}
.module-panel3 .box .content .ring-group ul li.r12 {
  top: 25.8vw;
  left: 2.8vw;
}
@keyframes clipLeftRight {
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}
@keyframes clipRightLeft {
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}
.animate-wave {
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .animate-wave {
    width: 0.35rem;
    height: 0.35rem;
  }
}
@media screen and (max-width: 480px) {
  .animate-wave {
    width: 0.25rem;
    height: 0.25rem;
  }
}
.animate-wave * {
  background: #0080ff;
  position: absolute;
  border-radius: 50%;
  animation: opac 2s infinite;
}
.animate-wave *.w2 {
  animation-delay: 1s;
}
@-webkit-keyframes opac {
  from {
    opacity: 1;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
  }
  to {
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
@keyframes opac {
  from {
    opacity: 1;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
  }
  to {
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.module-panel4 {
  position: relative;
  min-height: 50vh;
}
.module-panel4 .box {
  margin-top: 0.6rem;
  max-width: 12.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.module-panel4 .box .wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.module-panel4 .box .wrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel4 .box .wrap .swiper {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel4 .box .wrap .swiper {
    border-radius: 0.26rem;
  }
}
.module-panel4 .box .wrap .swiper .swiper-wrapper {
  align-items: stretch;
}
.module-panel4 .box .wrap .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.module-panel4 .box .wrap .swiper .swiper-wrapper .swiper-slide .img {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.module-panel4 .box .wrap .swiper .swiper-wrapper .swiper-slide .img video,
.module-panel4 .box .wrap .swiper .swiper-wrapper .swiper-slide .img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-panel4 .box .wrap .swiper .swiper-wrapper .swiper-slide .progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.04rem;
}
.module-panel4 .box .switchbox {
  margin-top: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .module-panel4 .box .switchbox {
    margin-top: 15px;
  }
}
.module-panel4 .box .switchbox .switchwrap {
  display: inline-block;
}
.module-panel4 .box .item-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.module-panel4 .box .item-box ul {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 0.25rem;
}
@media screen and (max-width: 991px) {
  .module-panel4 .box .item-box ul {
    overflow-x: auto;
    gap: 0;
  }
}
.module-panel4 .box .item-box ul::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.04rem;
  border-radius: 0.02rem;
  background: rgba(0, 0, 0, 0.1);
}
.module-panel4 .box .item-box ul li {
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0.2rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 1580px) {
  .module-panel4 .box .item-box ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel4 .box .item-box ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel4 .box .item-box ul li {
    padding: 0.25rem 0.2rem;
  }
}
.module-panel4 .box .item-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0%;
  height: 0.04rem;
  border-radius: 0.02rem;
  background: #000000;
}
.module-panel4 .box .item-box ul li.active {
  color: #000000;
}
.module-panel4 .box .item-box ul li.active::before {
  width: 100%;
}
.module-panel4 .box .panel4-panel-box .tab-panel {
  display: none;
  padding: 0.3rem 0;
  color: #000000;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 1580px) {
  .module-panel4 .box .panel4-panel-box .tab-panel {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel4 .box .panel4-panel-box .tab-panel {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel4 .box .panel4-panel-box .tab-panel {
    padding: 0.4rem 0;
  }
}
.module-panel4 .box .panel4-panel-box .tab-panel.active {
  display: block;
}
.module-panel5 .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}
.module-panel5 .box .item {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.module-panel5 .box .item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .module-panel5 .box .item {
    flex-wrap: wrap;
  }
}
.module-panel5 .box .item:hover .imgbox img {
  transform: scale(1.06);
}
.module-panel5 .box .item .textbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 36.71875%;
}
@media screen and (max-width: 991px) {
  .module-panel5 .box .item .textbox {
    width: 100%;
  }
}
.module-panel5 .box .item .textbox .serial {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}
.module-panel5 .box .item .textbox .serial span {
  display: inline-block;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4), 1px -1px 0 rgba(0, 0, 0, 0.4), -1px 1px 0 rgba(0, 0, 0, 0.4), -1px -1px 0 rgba(0, 0, 0, 0.4);
  font-family: var(--font1);
  font-size: 150px;
  color: #ffffff;
  line-height: 1;
}
@media screen and (max-width: 1580px) and (min-width: 1261px) {
  .module-panel5 .box .item .textbox .serial span {
    font-size: 7.8125vw;
  }
}
@media screen and (max-width: 1260px) {
  .module-panel5 .box .item .textbox .serial span {
    font-size: 1.25rem;
  }
}
.module-panel5 .box .item .textbox .wrap .subtitle {
  font-family: var(--font1);
  color: #000000;
  font-size: 40px;
  line-height: 1.2;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel5 .box .item .textbox .wrap .subtitle {
    font-size: 2.08333333vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel5 .box .item .textbox .wrap .subtitle {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .module-panel5 .box .item .textbox .wrap .subtitle {
    font-size: 24px;
  }
}
.module-panel5 .box .item .textbox .wrap .text {
  margin-top: 0.15rem;
  color: #000000;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .module-panel5 .box .item .textbox .wrap .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel5 .box .item .textbox .wrap .text {
    font-size: 16px;
  }
}
.module-panel5 .box .item .imgbox {
  width: 56.25%;
  border-radius: 26px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel5 .box .item .imgbox {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel5 .box .item .imgbox {
    border-radius: 0.26rem;
  }
}
@media screen and (max-width: 991px) {
  .module-panel5 .box .item .imgbox {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.module-panel5 .box .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
@media screen and (max-width: 991px) {
  .module-panel6 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.module-panel6 .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
}
.module-panel6 .box .c-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 26px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel6 .box .c-video {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel6 .box .c-video {
    border-radius: 0.26rem;
  }
}
.module-panel6 .box .c-video .autovideo {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .module-panel6 .box .c-video .autovideo {
    display: none;
  }
}
.module-panel6 .box .c-video .autovideo video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel6 .box .c-video .autovideo video {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel6 .box .c-video .autovideo video {
    border-radius: 0.26rem;
    display: none;
  }
}
.module-panel6 .box .c-video .videoimg {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .module-panel6 .box .c-video .videoimg {
    display: block;
  }
}
.module-panel6 .box .c-video .videoimg img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-panel6 .box .c-video .movie {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.module-panel6 .box .c-video .movie video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-panel6 .box .c-video .btns {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 991px) {
  .module-panel6 .box .c-video .btns.playButton {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .module-panel6 .box .c-video .btns.c-play {
    display: none;
  }
}
.module-panel6 .box .c-video .btns img {
  width: 0.56rem;
}
@media screen and (max-width: 1260px) {
  .module-panel6 .box .c-video .btns img {
    width: 0.64rem;
  }
}
.module-panel7 .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.6rem;
}
.module-panel7 .box .wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel7 .box .wrap {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel7 .box .wrap {
    border-radius: 0.26rem;
  }
}
.module-panel7 .box .wrap .imgbefore {
  width: 100%;
  height: 6rem;
  user-select: none;
  pointer-events: auto !important;
}
@media screen and (max-width: 991px) {
  .module-panel7 .box .wrap .imgbefore {
    position: relative;
    height: auto;
    padding-bottom: 46.875%;
  }
}
.module-panel7 .box .wrap .imgbefore img {
  min-width: 100%;
  object-fit: cover;
  float: right;
  max-width: inherit;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .module-panel7 .box .wrap .imgbefore img {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.module-panel7 .box .wrap .imgafter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}
.module-panel7 .box .wrap .imgafter .img {
  width: 100%;
  overflow: hidden;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  user-select: none;
  pointer-events: auto !important;
}
.module-panel7 .box .wrap .imgafter .img img {
  min-width: 100%;
  object-fit: cover;
  float: right;
  max-width: inherit;
  height: 100%;
}
.module-panel7 .box .wrap .imgafter .resizeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(255, 255, 255, 0.5);
  z-index: 3;
  border-radius: 100%;
  position: absolute;
  right: -0.3rem;
  top: calc(50% - 0.3rem);
  right: auto;
  left: -0.3rem;
  cursor: e-resize;
}
.module-panel7 .box .wrap .imgafter .resizeBtn::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0.04rem;
  height: 9999px;
  background: rgba(0, 128, 255, 0.6);
}
.module-panel7 .box .wrap .imgafter .resizeBtn::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0.04rem;
  height: 9999px;
  background: rgba(0, 128, 255, 0.6);
}
.module-panel7 .box .wrap .imgafter .resizeBtn span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/icon19.webp) center no-repeat;
  background-size: 100% auto;
}
.module-panel8 .box {
  margin-top: 0.6rem;
}
.module-panel8 .box .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.module-panel8 .box .swiper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 18%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
}
.module-panel8 .box .swiper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  width: 18%;
  height: 100%;
  background: linear-gradient(to left, #ffffff 50%, rgba(255, 255, 255, 0) 100%);
}
.module-panel8 .box .swiper .swiper-wrapper {
  align-items: stretch;
}
.module-panel8 .box .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item {
    border-radius: 0.26rem;
  }
}
.module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item:hover .imgbox img {
  transform: scale(1.1);
}
.module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background: #fafbfd;
}
.module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item .imgbox img {
  display: block;
  width: 100%;
  transition: transform 0.3s;
}
.module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item .textbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0.2rem;
  min-height: 1.1rem;
  box-sizing: border-box;
  background: rgba(232, 234, 236, 0.4);
  font-family: var(--font1);
  color: #000000;
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item .textbox {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item .textbox {
    font-size: 16px;
  }
}
.module-panel8 .box .swiper .swiper-button-prev,
.module-panel8 .box .swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
}
.module-panel8 .box .swiper .swiper-button-prev::after,
.module-panel8 .box .swiper .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 1260px) {
  .module-panel8 .box .swiper .swiper-button-prev,
  .module-panel8 .box .swiper .swiper-button-next {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .module-panel8 .box .swiper .swiper-button-prev,
  .module-panel8 .box .swiper .swiper-button-next {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.module-panel8 .box .swiper .swiper-button-prev {
  left: 16%;
  background: rgba(0, 0, 0, 0.06) url(../images/icon16a.webp) center no-repeat;
  background-size: 15% auto;
  transition: all 0.5s ease;
}
.module-panel8 .box .swiper .swiper-button-prev:hover {
  background: #0080ff url(../images/icon16.webp) center no-repeat;
  background-size: 15% auto;
}
@media screen and (max-width: 1260px) {
  .module-panel8 .box .swiper .swiper-button-prev {
    left: 12%;
  }
}
@media screen and (max-width: 991px) {
  .module-panel8 .box .swiper .swiper-button-prev {
    left: 6%;
  }
}
@media screen and (max-width: 540px) {
  .module-panel8 .box .swiper .swiper-button-prev {
    left: 2%;
  }
}
.module-panel8 .box .swiper .swiper-button-next {
  right: 16%;
  background: rgba(0, 0, 0, 0.06) url(../images/icon17a.webp) center no-repeat;
  background-size: 15% auto;
  transition: all 0.5s ease;
}
.module-panel8 .box .swiper .swiper-button-next:hover {
  background: #0080ff url(../images/icon17.webp) center no-repeat;
  background-size: 15% auto;
}
@media screen and (max-width: 1260px) {
  .module-panel8 .box .swiper .swiper-button-next {
    right: 12%;
  }
}
@media screen and (max-width: 991px) {
  .module-panel8 .box .swiper .swiper-button-next {
    right: 6%;
  }
}
@media screen and (max-width: 540px) {
  .module-panel8 .box .swiper .swiper-button-next {
    right: 2%;
  }
}
.module-panel9 .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.6rem;
}
.module-panel9 .box .c-table {
  border: rgba(231, 232, 235, 0.1) solid 0.02rem;
  border-radius: 26px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel9 .box .c-table {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel9 .box .c-table {
    border-radius: 0.26rem;
  }
}
.module-panel9 .box .c-table table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.module-panel9 .box .c-table table tr th {
  height: 0.56rem;
  border-right: rgba(255, 255, 255, 0.1) solid 0.02rem;
  font-family: var(--font1);
  color: #000000;
  font-size: 20px;
  padding: 0.15rem 0.32rem;
  box-sizing: border-box;
  background: rgba(231, 232, 235, 0.4);
}
@media screen and (max-width: 1580px) {
  .module-panel9 .box .c-table table tr th {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel9 .box .c-table table tr th {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel9 .box .c-table table tr th {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .module-panel9 .box .c-table table tr th {
    padding: 0.15rem;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .module-panel9 .box .c-table table tr th {
    font-size: 12px;
  }
}
.module-panel9 .box .c-table table tr th:last-child {
  border-right: none;
}
.module-panel9 .box .c-table table tr td {
  height: 0.56rem;
  border-right: #e2e2e2 solid 0.02rem;
  color: #000000;
  font-size: 16px;
  padding: 0.15rem 0.32rem;
  box-sizing: border-box;
  background: rgba(231, 232, 235, 0.4);
}
@media screen and (max-width: 1580px) {
  .module-panel9 .box .c-table table tr td {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel9 .box .c-table table tr td {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel9 .box .c-table table tr td {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .module-panel9 .box .c-table table tr td {
    padding: 0.15rem;
    font-size: 12px;
  }
}
.module-panel9 .box .c-table table tr td:last-child {
  border-right: none;
}
.module-panel9 .box .c-table table tr td .subtitle {
  font-family: var(--font1);
  color: #000000;
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .module-panel9 .box .c-table table tr td .subtitle {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel9 .box .c-table table tr td .subtitle {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel9 .box .c-table table tr td .subtitle {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .module-panel9 .box .c-table table tr td .subtitle {
    min-width: 100px;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .module-panel9 .box .c-table table tr td .subtitle {
    font-size: 12px;
  }
}
.module-panel9 .box .c-table table tr td .tips {
  font-family: "NotoSansSC-Regular";
  color: #000000;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .module-panel9 .box .c-table table tr td .tips {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel9 .box .c-table table tr td .tips {
    font-size: 16px;
  }
}
.module-panel9 .box .c-table table tr:nth-child(even) td {
  background: #fafbfd;
}
.module-panel10 .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.6rem;
}
.module-panel10 .box .wrap .item {
  margin-bottom: 0.1rem;
  background: rgba(237, 238, 240, 0.4);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel10 .box .wrap .item {
    border-radius: 0.52083333vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel10 .box .wrap .item {
    margin-bottom: 0.2rem;
  }
}
.module-panel10 .box .wrap .item.active .title .icon {
  transform: rotate(180deg);
}
.module-panel10 .box .wrap .item .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 0.8rem;
  padding: 0.2rem 0.35rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .module-panel10 .box .wrap .item .title {
    padding: 0.3rem 0.4rem;
  }
}
.module-panel10 .box .wrap .item .title .sp {
  flex: 1;
  overflow: hidden;
  font-size: 20px;
  color: #000000;
}
@media screen and (max-width: 1580px) {
  .module-panel10 .box .wrap .item .title .sp {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel10 .box .wrap .item .title .sp {
    font-size: 16px;
  }
}
.module-panel10 .box .wrap .item .title .icon {
  flex-shrink: 0;
  margin-left: 0.2rem;
  width: 0.45rem;
  height: 0.45rem;
  background: url(../images/icon20a.webp) center no-repeat;
  background-size: 45% auto;
}
.module-panel10 .box .wrap .item .part {
  display: none;
  padding: 0 0.35rem;
}
.module-panel10 .box .wrap .item .part .text {
  padding: 0.2rem 0 0.3rem;
  border-top: rgba(237, 238, 240, 0.4) solid 0.02rem;
  color: #000000;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .module-panel10 .box .wrap .item .part .text {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel10 .box .wrap .item .part .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .module-panel10 .box .wrap .item .part .text {
    padding: 0.3rem 0;
  }
}
.module-panel10 .box .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.4rem;
}
@media screen and (max-width: 991px) {
  .module-panel10 .box .btns {
    margin-top: 0.6rem;
  }
}
.module-panel11 {
  background: #f5f5f7;
}
.module-panel11 .box {
  margin-top: 0.6rem;
}
.module-panel11 .box .panel11-wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.2rem;
}
@media screen and (max-width: 991px) {
  .module-panel11 .box .panel11-wrapper {
    gap: 0.3rem;
  }
}
.module-panel11 .box .panel11-wrapper .panel11-slide {
  position: relative;
  width: calc((100% - 0.6rem) / 4);
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide {
    border-radius: 0.52083333vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide {
    width: calc((100% - 0.3rem) / 2);
  }
}
.module-panel11 .box .panel11-wrapper .panel11-slide.half {
  width: calc((100% - 0.2rem) / 2);
}
@media screen and (max-width: 991px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide.half {
    width: 100%;
  }
}
.module-panel11 .box .panel11-wrapper .panel11-slide:hover .imgbox img {
  transform: scale(1.06);
}
.module-panel11 .box .panel11-wrapper .panel11-slide .textbox {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  padding: 0.35rem;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide .textbox {
    padding: 0.3rem 0.15rem 0.3rem 0.3rem;
  }
}
.module-panel11 .box .panel11-wrapper .panel11-slide .textbox .t1 {
  font-family: var(--font1);
  color: #000000;
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide .textbox .t1 {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide .textbox .t1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide .textbox .t1 {
    font-size: 18px;
  }
}
.module-panel11 .box .panel11-wrapper .panel11-slide .textbox .t2 {
  margin-top: 0.12rem;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide .textbox .t2 {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide .textbox .t2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .module-panel11 .box .panel11-wrapper .panel11-slide .textbox .t2 {
    font-size: 14px;
  }
}
.module-panel11 .box .panel11-wrapper .panel11-slide .imgbox {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.module-panel11 .box .panel11-wrapper .panel11-slide .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.module-panel12 {
  background: #f5f5f7;
  padding-top: clamp(40px, 1rem, 100px);
  padding-bottom: clamp(40px, 1.7rem, 170px);
}
.module-panel12 .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.24rem, 24px);
  margin-top: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 991px) {
  .module-panel12 .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.module-panel12 .box .item {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
  padding: clamp(30px, 0.6rem, 60px) clamp(20px, 0.2rem, 20px);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.module-panel12 .box .item .icon {
  width: clamp(40px, 0.7rem, 70px);
  height: clamp(40px, 0.7rem, 70px);
  position: relative;
  z-index: 2;
}
.module-panel12 .box .item .text {
  color: #000;
  font-size: clamp(16px, 0.2rem, 20px);
  margin-top: clamp(30px, 0.6rem, 60px);
  font-family: var(--font1);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.module-panel12 .box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/img211.webp') no-repeat center / cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.module-panel12 .box .item:hover::after {
  opacity: 1;
}
.module-panel12 .box .item:hover .icon {
  filter: brightness(10);
}
.module-panel12 .box .item:hover .text {
  color: #fff;
}
.module-panel13 {
  position: relative;
  min-height: 50vh;
}
.module-panel13 .box {
  margin-top: 0.6rem;
  max-width: 12.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.module-panel13 .box .wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.module-panel13 .box .wrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel13 .box .wrap .swiper {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel13 .box .wrap .swiper {
    border-radius: 0.26rem;
  }
}
.module-panel13 .box .wrap .swiper .swiper-wrapper {
  align-items: stretch;
}
.module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide {
  height: auto;
  position: relative;
}
.module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide .img {
  position: relative;
  width: 100%;
  padding-bottom: 46.875%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide .img {
    padding-bottom: 56.875%;
  }
}
.module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide .img video,
.module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide .img img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide .progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.04rem;
}
.module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide .text {
  position: absolute;
  padding-left: clamp(20px, 0.8rem, 80px);
  padding-right: clamp(20px, 0.8rem, 80px);
  top: 30%;
  left: 0;
  margin: auto;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide .text {
    top: 20%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide .text .title {
  font-size: clamp(14px, 0.3rem, 30px);
  font-family: var(--font1);
}
.module-panel13 .box .wrap .swiper .swiper-wrapper .swiper-slide .text .summary {
  font-size: clamp(12px, 0.2rem, 20px);
  margin-top: clamp(10px, 0.2rem, 20px);
}
.module-panel13 .box .switchbox {
  margin-top: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .module-panel13 .box .switchbox {
    margin-top: 15px;
  }
}
.module-panel13 .box .switchbox .switchwrap {
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .module-panel13 .box .switchbox .switchwrap {
    width: 100%;
  }
}
.module-panel13 .box .item-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.module-panel13 .box .item-box ul {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 0.25rem;
}
@media screen and (max-width: 991px) {
  .module-panel13 .box .item-box ul {
    overflow-x: auto;
    gap: 0;
  }
}
.module-panel13 .box .item-box ul::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.04rem;
  border-radius: 0.02rem;
  background: rgba(0, 0, 0, 0.1);
}
.module-panel13 .box .item-box ul li {
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0.2rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 1580px) {
  .module-panel13 .box .item-box ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel13 .box .item-box ul li {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel13 .box .item-box ul li {
    padding: 0.25rem 0.2rem;
  }
}
.module-panel13 .box .item-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 0%;
  height: 0.04rem;
  border-radius: 0.02rem;
  background: #000000;
}
.module-panel13 .box .item-box ul li.active {
  color: #000000;
}
.module-panel13 .box .item-box ul li.active::before {
  width: 100%;
}
.module-panel14 {
  position: relative;
}
.module-panel14 .box {
  max-width: 12.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: #f5f5f7;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .module-panel14 .box {
    flex-direction: column;
  }
}
.module-panel14 .box .img {
  flex-basis: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.module-panel14 .box .img img {
  transition: all 0.3s;
}
.module-panel14 .box .img:hover img {
  transform: scale(1.06);
}
.module-panel14 .box .text {
  flex: 1;
  padding: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 991px) {
  .module-panel14 .box .text {
    width: 100%;
  }
}
.module-panel14 .box .text .detail-title {
  text-align: left;
}
.module-panel14 .box .text .list {
  margin-top: clamp(20px, 0.3rem, 30px);
  border-top: 2px solid #e7e7e8;
}
.module-panel14 .box .text .list .teacher-video {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #e7e7e8;
  padding: clamp(20px, 0.3rem, 30px) 0;
  font-size: clamp(14px, 0.2rem, 20px);
  cursor: pointer;
  transition: all 0.3s;
}
.module-panel14 .box .text .list .teacher-video .i {
  width: clamp(24px, 0.28rem, 28px);
  height: clamp(24px, 0.28rem, 28px);
  border-radius: 50%;
  border: 2px solid #e4e4e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4c4c6;
  font-size: 12px;
  transition: all 0.3s;
}
.module-panel14 .box .text .list .teacher-video:hover {
  color: var(--color);
}
.module-panel14 .box .text .list .teacher-video:hover .i {
  border: none;
  color: #fff;
  background: url('../images/img211.webp') no-repeat center / cover;
}
.module-panel15 {
  background: #f5f5f7;
  padding-top: clamp(40px, 1rem, 100px);
  padding-bottom: clamp(40px, 1.7rem, 170px);
}
.module-panel15 .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 0.24rem, 24px);
  margin-top: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 991px) {
  .module-panel15 .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.module-panel15 .box .item {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
  padding: clamp(30px, 0.6rem, 60px) clamp(30px, 0.6rem, 60px) clamp(30px, 0.5rem, 50px);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.module-panel15 .box .item .icon {
  width: clamp(40px, 0.7rem, 70px);
  height: clamp(40px, 0.7rem, 70px);
  position: relative;
  z-index: 2;
}
.module-panel15 .box .item .text {
  color: #000;
  font-size: clamp(16px, 0.2rem, 20px);
  margin-top: clamp(20px, 0.4rem, 40px);
  font-family: var(--font1);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.module-panel15 .box .item .summary {
  text-align: center;
  font-size: clamp(12px, 0.16rem, 16px);
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
  margin-top: clamp(10px, 0.1rem, 10px);
  position: relative;
  z-index: 2;
}
.module-panel15 .box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/img211.webp') no-repeat center / cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.module-panel15 .box .item:hover::after {
  opacity: 1;
}
.module-panel15 .box .item:hover .icon {
  filter: brightness(10);
}
.module-panel15 .box .item:hover .text,
.module-panel15 .box .item:hover .summary {
  color: #fff;
}
.module-panel16 .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.24rem, 24px);
  margin-top: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 991px) {
  .module-panel16 .box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.module-panel16 .box .item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
}
.module-panel16 .box .item img {
  transition: all 0.3s;
}
.module-panel16 .box .item:hover img {
  transform: scale(1.06);
}
.module-panel17 {
  background: #f5f5f7;
  padding-bottom: clamp(40px, 1.7rem, 170px);
}
.module-panel17 .box {
  margin-top: 0.6rem;
}
.module-panel17 .box .wrap .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.module-panel17 .box .wrap .swiper .swiper-wrapper {
  align-items: stretch;
}
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  height: auto;
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide {
    flex-direction: column-reverse;
  }
}
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide .text {
  flex-basis: 30%;
  padding: clamp(20px, 0.7rem, 70px);
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide .text {
    flex-basis: auto;
    width: 100%;
    padding: 20px;
  }
}
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide .text .title {
  font-size: clamp(14px, 0.24rem, 24px);
  font-family: var(--font1);
}
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide .text .summary {
  margin-top: clamp(10px, 0.1rem, 10px);
  font-size: clamp(12px, 0.16rem, 16px);
  color: rgba(0, 0, 0, 0.6);
}
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide .img {
  width: 70%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide .img {
    border-radius: 1.35416667vw;
  }
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide .img {
    border-radius: 0.26rem;
    width: 100%;
  }
}
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide .img video,
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide.swiper-slide-active::before {
  opacity: 0;
}
.module-panel17 .box .wrap .swiper .swiper-wrapper .swiper-slide:hover img {
  transform: scale(1.06);
}
.module-panel17 .box .wrap .swiper .swiper-button-prev,
.module-panel17 .box .wrap .swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
}
.module-panel17 .box .wrap .swiper .swiper-button-prev::before,
.module-panel17 .box .wrap .swiper .swiper-button-next::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #0080ff 60%, #82ccff 100%);
  opacity: 0;
  transition: all 0.5s ease;
}
.module-panel17 .box .wrap .swiper .swiper-button-prev::after,
.module-panel17 .box .wrap .swiper .swiper-button-next::after {
  width: 100%;
  height: 100%;
  font-size: 0;
}
@media screen and (max-width: 1260px) {
  .module-panel17 .box .wrap .swiper .swiper-button-prev,
  .module-panel17 .box .wrap .swiper .swiper-button-next {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .wrap .swiper .swiper-button-prev,
  .module-panel17 .box .wrap .swiper .swiper-button-next {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.module-panel17 .box .wrap .swiper .swiper-button-prev {
  left: 5.833333%;
}
.module-panel17 .box .wrap .swiper .swiper-button-prev::after {
  background: rgba(255, 255, 255, 0.15) url(../images/icon16.webp) center no-repeat;
  background-size: 15% auto;
}
.module-panel17 .box .wrap .swiper .swiper-button-prev:hover {
  background: url(../images/icon16.webp) center no-repeat;
  background-size: 15% auto;
}
.module-panel17 .box .wrap .swiper .swiper-button-prev:hover::before {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .wrap .swiper .swiper-button-prev {
    left: 6%;
  }
}
@media screen and (max-width: 540px) {
  .module-panel17 .box .wrap .swiper .swiper-button-prev {
    left: 2%;
  }
}
.module-panel17 .box .wrap .swiper .swiper-button-next {
  right: 5.833333%;
}
.module-panel17 .box .wrap .swiper .swiper-button-next::after {
  background: url(../images/icon17.webp) center no-repeat;
  background-size: 15% auto;
}
.module-panel17 .box .wrap .swiper .swiper-button-next:hover {
  background: url(../images/icon17.webp) center no-repeat;
  background-size: 15% auto;
}
.module-panel17 .box .wrap .swiper .swiper-button-next:hover::before {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .wrap .swiper .swiper-button-next {
    right: 6%;
  }
}
@media screen and (max-width: 540px) {
  .module-panel17 .box .wrap .swiper .swiper-button-next {
    right: 2%;
  }
}
.module-panel17 .box .item-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .item-box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.module-panel17 .box .item-box ul {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  box-sizing: border-box;
  background: #f5f5f7;
  border-radius: 30px;
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .item-box ul {
    overflow-x: auto;
    padding: 0.12rem 0;
  }
}
.module-panel17 .box .item-box ul li {
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .item-box ul li {
    padding: 0 0.06rem;
  }
}
.module-panel17 .box .item-box ul li.active span,
.module-panel17 .box .item-box ul li.active a {
  color: #ffffff;
}
.module-panel17 .box .item-box ul li.active span::before,
.module-panel17 .box .item-box ul li.active a::before {
  opacity: 1;
}
.module-panel17 .box .item-box ul li span,
.module-panel17 .box .item-box ul li a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.5rem;
  border-radius: 0.25rem;
  font-family: var(--font1);
  color: #000000;
  font-size: 20px;
  white-space: nowrap;
  padding: 0 0.15rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1580px) {
  .module-panel17 .box .item-box ul li span,
  .module-panel17 .box .item-box ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .item-box ul li span,
  .module-panel17 .box .item-box ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .module-panel17 .box .item-box ul li span,
  .module-panel17 .box .item-box ul li a {
    padding: 0 0.25rem;
    height: 0.6rem;
    border-radius: 0.3rem;
  }
}
@media screen and (min-width: 768px) {
  .module-panel17 .box .item-box ul li span,
  .module-panel17 .box .item-box ul li a {
    min-width: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .module-panel17 .box .item-box ul li span,
  .module-panel17 .box .item-box ul li a {
    font-size: 14px;
  }
}
.module-panel17 .box .item-box ul li span::before,
.module-panel17 .box .item-box ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #0080ff 60%, #82ccff 100%);
  opacity: 0;
  transition: all 0.5s ease;
}
.module-panel18 {
  position: relative;
  z-index: 2;
}
.module-panel18 .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
}
.module-panel18 .indexProductMain {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .module-panel18 .indexProductMain {
    flex-direction: column;
  }
}
.module-panel18 .indexProductMain .indexProductLeft {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  flex: 1;
  margin: 0;
  height: fit-content;
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  .module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper {
    flex-direction: row !important;
  }
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide {
  height: auto;
  padding-left: 60px;
  padding-bottom: clamp(20px, 0.4rem, 40px);
  position: relative;
  cursor: pointer;
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide::after {
  position: absolute;
  top: 32px;
  left: clamp(4px, 0.06rem, 6px);
  width: 4px;
  height: calc(100% - 30px);
  background: #d6d6d9;
  border-radius: 2px;
  content: "";
  display: block;
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .title {
  color: rgba(0, 0, 0, 0.3);
  position: relative;
  font-size: clamp(14px, 0.24rem, 24px);
  font-family: var(--font1);
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .title::after {
  position: absolute;
  top: 10px;
  left: -60px;
  width: clamp(12px, 0.16rem, 16px);
  height: clamp(12px, 0.16rem, 16px);
  background: #D1D1D1;
  border-radius: 50%;
  content: "";
  display: block;
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .introBox {
  display: none;
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .introBox .intro {
  font-size: clamp(12px, 0.2rem, 20px);
  color: #000;
  margin-top: 10px;
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .introBox .more {
  font-size: clamp(12px, 0.16rem, 16px);
  font-family: var(--font1);
  background: var(--dominant-color);
  width: clamp(100px, 1rem, 100px);
  height: clamp(30px, 0.4rem, 40px);
  color: #fff;
  margin-top: clamp(20px, 0.3rem, 30px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .introBox .more .text {
  position: relative;
  z-index: 2;
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .introBox .more:hover .text {
  -webkit-animation: MoveUpInitial 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, MoveUpEnd 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
  animation: MoveUpInitial 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, MoveUpEnd 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide.active::after {
  background: var(--color);
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide.active .title {
  padding-top: clamp(20px, 0.2rem, 20px);
  color: #000;
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide.active .title::after {
  background: var(--color);
}
.module-panel18 .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide:nth-child(1) .introBox {
  display: block;
}
.module-panel18 .indexProductMain .indexProductRight {
  width: 60%;
  overflow: visible;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .module-panel18 .indexProductMain .indexProductRight .swiper-wrapper {
    flex-direction: row !important;
  }
}
.module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide {
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
  overflow: hidden;
  margin-bottom: 80px;
  transform-origin: top;
  border-radius: 10px;
  height: 0;
  padding-bottom: 62.5%;
}
.module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide:nth-child(2) {
  top: 220px;
}
.module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide:nth-child(3) {
  top: 236px;
}
.module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide:nth-child(4) {
  top: 252px;
}
.module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide:nth-child(5) {
  top: 268px;
}
.module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide:last-child {
  margin-bottom: 60px;
}
.module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide img,
.module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide img,
  .module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide video {
    height: auto;
  }
}
.module-panel18 .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #indexProduct {
    padding: 50px 0;
    overflow: hidden;
  }
  #indexProduct .indexProductTitle {
    border-top: 0;
    padding-bottom: 25px;
  }
  #indexProduct .indexProductMain .indexProductLeft {
    position: static;
    width: 80%;
    overflow: visible;
    margin: 0;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide {
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 10%;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide::after {
    position: absolute;
    top: 7px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F1F1F1;
    border-radius: 2px;
    content: "";
    display: block;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .title {
    font-size: 14px;
    line-height: 26px;
    opacity: 1;
    position: relative;
    z-index: 2;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .title::after {
    top: -29px;
    left: -10px;
    width: 8px;
    height: 8px;
    border: 3px solid #FFFFFF;
    display: none;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .introBox {
    opacity: 9;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .introBox .intro {
    font-size: 13px;
    line-height: 20px;
    margin-top: 7px;
    margin-bottom: 20px;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .introBox .more {
    min-width: 107px;
    height: 37px;
    font-size: 12px;
    border-radius: 24px;
    border-width: 1px;
    padding: 0 20px;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide .introBox .more i {
    width: 16px;
    height: 16px;
    line-height: 19.2px;
    font-size: 5px;
    border-width: 1px;
    margin-right: 10px;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide.active::after {
    background: -webkit-linear-gradient(top, #2B2448, #BFBEC5);
    background: linear-gradient(180deg, #2B2448, #BFBEC5);
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide.active .title {
    color: var(--dominant-color);
    font-size: 18px;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide.active .title::after {
    background: var(--dominant-color);
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide.active .introBox {
    display: block;
    opacity: 1;
  }
  #indexProduct .indexProductMain .indexProductLeft .swiper-wrapper .swiper-slide:last-child::after {
    display: block;
  }
  #indexProduct .indexProductMain .indexProductRight {
    width: 100%;
    overflow: hidden;
  }
  #indexProduct .indexProductMain .indexProductRight .swiper-wrapper .swiper-slide {
    position: static;
    top: auto;
    height: auto;
    border-radius: 12px;
    margin-bottom: 0;
  }
}
.module-panel19 {
  position: relative;
}
.module-panel19 img {
  width: 100%;
  display: block;
}
.module-panel19 .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: fit-content;
}
.module-panel19 .text .detail-title {
  text-align: left;
}
.module-panel19 .text .detail-summary {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .module-panel19 .text {
    position: initial;
    margin-bottom: 50px;
  }
}
.darkmode {
  background-color: #070707;
}
.darkmode .detail-title {
  color: #FFFFFF;
}
.darkmode .module-panel2 .box .item-box ul {
  background: #202020;
}
.darkmode .module-panel2 .box .item-box ul li span,
.darkmode .module-panel2 .box .item-box ul li a {
  color: #ffffff;
}
.darkmode .module-panel2 .box .item-box ul li.active span,
.darkmode .module-panel2 .box .item-box ul li.active a {
  color: #FFFFFF;
}
.darkmode .module-panel3 .bg1 span {
  border-top-color: #070707;
  border-bottom-color: #070707;
  border-left-color: #070707;
  border-right-color: #070707;
}
.darkmode .module-panel3 .panel3-mask {
  background: #070707;
}
.darkmode .module-panel3 .box .content .textbox ul li.a7 .item .content .line {
  background: none;
}
.darkmode .module-panel3 .box .content .textbox ul li .item .point {
  background: #0080ff;
}
.darkmode .module-panel3 .box .content .textbox ul li .item .content .line {
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}
.darkmode .module-panel3 .box .content .textbox ul li .item .content .text {
  color: #FFFFFF;
  margin-left: 0;
  margin-right: 0.1rem;
}
.darkmode .module-panel3 .box .content .annotate ul li {
  color: #FFFFFF;
}
.darkmode .module-panel3 .box .content .annotate ul li.b1 i {
  border-color: #fc0012;
}
.darkmode .module-panel3 .box .content .annotate ul li.b2 i {
  border-color: #0080ff;
}
.darkmode .module-panel3 .box .content .annotate ul li.b3 i {
  border-color: #fcff00;
}
.darkmode .module-panel3 .box .content .ring-group {
  top: 11.95vw;
  left: 24vw;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r1 {
  top: 0;
  left: 2.8vw;
  border-color: #fc0012;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r2 {
  top: 1.12vw;
  left: 0.7vw;
  border-color: #0080ff;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r3 {
  top: 1.12vw;
  left: 4.85vw;
  border-color: #0080ff;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r4 {
  top: 3.5vw;
  left: 0.7vw;
  border-color: #fc0012;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r5 {
  top: 3.5vw;
  left: 4.85vw;
  border-color: #fc0012;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r6 {
  top: 4.75vw;
  left: 2.8vw;
  border-color: #0080ff;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r7 {
  top: 5.8vw;
  left: 1.42vw;
  border-color: #fcff00;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r8 {
  top: 5.8vw;
  left: 4.13vw;
  border-color: #fcff00;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r9 {
  top: 7.73vw;
  left: 0.56vw;
  border-color: #fcff00;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r10 {
  top: 7.73vw;
  left: 5.02vw;
  border-color: #fcff00;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r11 {
  top: 9.65vw;
  left: 1.42vw;
  border-color: #fcff00;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r12 {
  top: 9.65vw;
  left: 4.13vw;
  border-color: #fcff00;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r13 {
  top: 21.45vw;
  left: 2.8vw;
  border-color: #0080ff;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r14 {
  top: 22.65vw;
  left: 0.71vw;
  border-color: #fc0012;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r15 {
  top: 22.65vw;
  left: 4.85vw;
  border-color: #fc0012;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r16 {
  top: 25.05vw;
  left: 0.68vw;
  border-color: #0080ff;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r17 {
  top: 25.05vw;
  left: 4.85vw;
  border-color: #0080ff;
}
.darkmode .module-panel3 .box .content .ring-group ul li.r18 {
  top: 26.2vw;
  left: 2.8vw;
  border-color: #fc0012;
}
.darkmode .module-panel4 .item-box ul::before {
  background: rgba(255, 255, 255, 0.3);
}
.darkmode .module-panel4 .item-box ul li {
  color: rgba(255, 255, 255, 0.2);
}
.darkmode .module-panel4 .item-box ul li::before {
  background: #ffffff;
}
.darkmode .module-panel4 .item-box ul li.active {
  color: #ffffff;
}
.darkmode .module-panel4 .panel4-panel-box .tab-panel {
  color: #ffffff;
}
.darkmode .module-panel5 .box .item .textbox .serial span {
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4), 1px -1px 0 rgba(255, 255, 255, 0.4), -1px 1px 0 rgba(255, 255, 255, 0.4), -1px -1px 0 rgba(255, 255, 255, 0.4);
  color: #070707;
}
.darkmode .module-panel5 .box .item .textbox .wrap .subtitle {
  color: #FFFFFF;
}
.darkmode .module-panel5 .box .item .textbox .wrap .text {
  color: #FFFFFF;
}
.darkmode .module-panel8 .box .swiper::before {
  background: linear-gradient(to right, #070707, rgba(7, 7, 7, 0));
}
.darkmode .module-panel8 .box .swiper::after {
  background: linear-gradient(to left, #070707, rgba(7, 7, 7, 0));
}
.darkmode .module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  background: #161616;
}
.darkmode .module-panel8 .box .swiper .swiper-wrapper .swiper-slide .item .textbox {
  background: #1b1b1b;
  color: #FFFFFF;
}
.darkmode .module-panel8 .box .swiper .swiper-button-prev {
  background: rgba(255, 255, 255, 0.15) url(../images/icon16.webp) center no-repeat;
  background-size: 15% auto;
}
.darkmode .module-panel8 .box .swiper .swiper-button-prev:hover {
  background: #0080ff url(../images/icon16.webp) center no-repeat;
  background-size: 15% auto;
}
.darkmode .module-panel8 .box .swiper .swiper-button-next {
  background: rgba(255, 255, 255, 0.15) url(../images/icon17.webp) center no-repeat;
  background-size: 15% auto;
}
.darkmode .module-panel8 .box .swiper .swiper-button-next:hover {
  background: #0080ff url(../images/icon17.webp) center no-repeat;
  background-size: 15% auto;
}
.darkmode .module-panel9 .box .c-table {
  border: rgba(255, 255, 255, 0.1) solid 0.02rem;
}
.darkmode .module-panel9 .box .c-table table tr th {
  border-right: rgba(255, 255, 255, 0.1) solid 0.02rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}
.darkmode .module-panel9 .box .c-table table tr td {
  border-right: rgba(255, 255, 255, 0.1) solid 0.02rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}
.darkmode .module-panel9 .box .c-table table tr td .subtitle {
  color: #FFFFFF;
}
.darkmode .module-panel9 .box .c-table table tr td .tips {
  color: #FFFFFF;
}
.darkmode .module-panel9 .box .c-table table tr:nth-child(even) td {
  background: #070707;
}
.darkmode .module-panel10 .box .wrap .item {
  background: rgba(255, 255, 255, 0.06);
}
.darkmode .module-panel10 .box .wrap .item .title .sp {
  color: #ffffff;
}
.darkmode .module-panel10 .box .wrap .item .title .icon {
  background: url(../images/icon20.webp) center no-repeat;
  background-size: 45% auto;
}
.darkmode .module-panel10 .box .wrap .item .part .text {
  border-top: rgba(255, 255, 255, 0.1) solid 0.02rem;
  color: #FFFFFF;
}
.lineation {
  --reversed-link-gap: min(100%, 1.25em);
  background-image: linear-gradient(to right, #171717, #171717);
  background-position: 0 var(--reversed-link-gap);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position-x: right;
  transition: background-size 0.5s cubic-bezier(0.3, 1, 0.3, 1);
}
.lineation:hover {
  background-position-x: left;
  background-size: 100% 1px;
}
.contact .current-title .desp a {
  font-family: var(--font1);
  color: #0080ff;
  transition: all 0.5s ease;
}
.contact .current-title .desp a:hover {
  color: #0080ff;
}
.contact .box {
  margin-top: 0.6rem;
  gap: 0.3rem;
}
.contact .box .item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 0.3rem) / 2);
  padding: 0.5rem;
  background: url(../images/img43.webp) center no-repeat;
  background-size: cover;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .contact .box .item {
    border-radius: 0.52083333vw;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .item {
    width: 100%;
  }
}
.contact .box .item:hover {
  transform: translateY(-5px) scale(1.02);
}
.contact .box .item .icon {
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}
.contact .box .item .icon img {
  width: 0.47rem;
}
.contact .box .item .subtitle {
  flex-shrink: 0;
  font-family: var(--font1);
  color: #000000;
  font-size: 24px;
  margin-bottom: 0.12rem;
}
@media screen and (max-width: 1580px) {
  .contact .box .item .subtitle {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .item .subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact .box .item .subtitle {
    font-size: 18px;
  }
}
.contact .box .item .txt {
  flex: 1;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .contact .box .item .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .contact .box .item .txt {
    font-size: 16px;
  }
}
.contact .box .item .txt a {
  font-family: var(--font1);
  color: #0080ff;
}
.contact .box .item .btn {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .contact .box .item .btn {
    margin-top: 0.4rem;
  }
}
.contact_address {
  background: url(../images/img45.webp) center no-repeat;
  background-size: cover;
}
.contact_address .box {
  margin-top: 0.5rem;
}
.contact_address .box .wrap {
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .contact_address .box .wrap {
    border-radius: 0.52083333vw;
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .wrap {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
}
.contact_address .box .wrap .textbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.25rem;
  width: calc(50% - 0.25rem);
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .contact_address .box .wrap .textbox {
    width: 100%;
    gap: 0.3rem;
  }
}
.contact_address .box .wrap .textbox .item {
  background: #ffffff;
  padding: 8.75%;
  border-radius: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .contact_address .box .wrap .textbox .item {
    border-radius: 0.52083333vw;
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .wrap .textbox .item {
    padding: 0.5rem 0.4rem;
  }
}
.contact_address .box .wrap .textbox .item:hover {
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px) scale(1.02);
}
.contact_address .box .wrap .textbox .item .subtitle {
  font-family: var(--font1);
  font-size: 24px;
  color: #000000;
  padding-bottom: 0.15rem;
  margin-bottom: 0.15rem;
  border-bottom: rgba(0, 0, 0, 0.06) solid 0.02rem;
}
@media screen and (max-width: 1580px) {
  .contact_address .box .wrap .textbox .item .subtitle {
    font-size: 0.24rem;
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .wrap .textbox .item .subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .contact_address .box .wrap .textbox .item .subtitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .wrap .textbox .item .subtitle {
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
.contact_address .box .wrap .textbox .item .content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #000000;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .contact_address .box .wrap .textbox .item .content {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .wrap .textbox .item .content {
    font-size: 16px;
  }
}
.contact_address .box .wrap .textbox .item .content .part ul {
  padding-left: 0;
}
.contact_address .box .wrap .textbox .item .content .part ul li {
  list-style: none;
}
.contact_address .box .wrap .imgbox {
  width: 50%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .contact_address .box .wrap .imgbox {
    border-radius: 0.52083333vw;
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .wrap .imgbox {
    width: 100%;
  }
}
.contact_address .box .wrap .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact_address .box .wrap .imgbox .swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.contact_address .box .wrap .imgbox .swiper .swiper-wrapper {
  align-items: stretch;
}
.contact_address .box .wrap .imgbox .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.contact_address .box .wrap .imgbox .swiper .swiper-wrapper .swiper-slide .img {
  display: block;
  width: 100%;
  height: 100%;
}
.contact_address .box .wrap .imgbox .swiper .swiper-wrapper .swiper-slide .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact_address .box .wrap .imgbox .swiper .swiper-pagination {
  text-align: left;
  width: 100%;
  box-sizing: border-box;
  padding: 0 5%;
  display: none;
}
.contact_address .box .office {
  margin-top: 0.3rem;
  gap: 0.24rem;
}
@media screen and (max-width: 991px) {
  .contact_address .box .office {
    margin-top: 0.5rem;
    gap: 0.35rem;
  }
}
.contact_address .box .office .item {
  width: calc((100% - 0.72rem) / 4);
  padding: 2.625%;
  background: #ffffff;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 1580px) and (min-width: 992px) {
  .contact_address .box .office .item {
    border-radius: 0.52083333vw;
  }
}
@media screen and (max-width: 1260px) {
  .contact_address .box .office .item {
    width: calc((100% - 0.24rem) / 2);
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .office .item {
    width: 100%;
    padding: 0.4rem;
  }
}
.contact_address .box .office .item .subheadline {
  font-family: var(--font1);
  color: #000000;
  font-size: 20px;
  padding-bottom: 0.15rem;
  border-bottom: rgba(0, 0, 0, 0.06) solid 0.02rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 1580px) {
  .contact_address .box .office .item .subheadline {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .office .item .subheadline {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .office .item .subheadline {
    padding-bottom: 0.2rem;
  }
}
.contact_address .box .office .item .text {
  color: #000000;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .contact_address .box .office .item .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .contact_address .box .office .item .text {
    font-size: 16px;
  }
}
.download .phone-click {
  display: none;
}
@media screen and (max-width: 991px) {
  .download .phone-click {
    width: 40px;
    height: 40px;
    position: fixed;
    left: 5px;
    top: 30vh;
    z-index: 999;
    background: #0080ff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}
.download .phone-click svg {
  width: 60%;
  height: 60%;
  fill: #ffffff;
}
.download .download-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-top: 0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  padding-top: 20px;
}
@media screen and (max-width: 991px) {
  .download .download-title {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.download .download-title .d-search {
  border-radius: 99px;
  width: clamp(150px, 3rem, 300px);
  height: clamp(40px, 0.5rem, 50px);
  background: #f8f9fb;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .download .download-title .d-search {
    width: 100%;
  }
}
.download .download-title .d-search form {
  width: 100%;
}
.download .download-title .d-search form button {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download .download-title .d-search form button img {
  width: clamp(12px, 0.15rem, 15px);
}
.download .download-title .d-search form label {
  width: 100%;
  display: block;
  padding-left: 50px;
}
.download .download-content {
  margin-top: 0.6rem;
  display: flex;
  gap: clamp(20px, 0.8rem, 80px);
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 991px) {
  .download .download-content {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.download .download-content .left {
  width: clamp(150px, 2.6rem, 260px);
  position: sticky;
  top: 100px;
  height: fit-content;
}
@media screen and (max-width: 991px) {
  .download .download-content .left {
    position: fixed;
    height: 100vh;
    width: 80vw;
    top: 0;
    left: -100vw;
    background: #ffffff;
    z-index: 2000;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 991px) {
  .download .download-content .left.active {
    left: 0;
  }
}
.download .download-content .left .mask {
  display: none;
}
@media screen and (max-width: 991px) {
  .download .download-content .left .mask {
    display: block;
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
  }
}
@media screen and (max-width: 991px) {
  .download .download-content .left .items-box {
    background: #fff;
    position: relative;
    z-index: 20;
    padding: 0.5rem;
    width: 100%;
    height: 100vh;
  }
}
.download .download-content .left .items {
  color: #000;
}
.download .download-content .left .items .item-title {
  font-size: clamp(14px, 0.2rem, 20px);
  border-bottom: 1px solid #eee;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  color: #000;
  display: block;
}
.download .download-content .left .items .item-title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #0080ff;
  height: 50%;
  width: 3px;
  opacity: 0;
  transition: all 0.3s;
}
.download .download-content .left .items .item-title:hover {
  color: #0080ff;
  border-color: #0080ff;
  padding-left: clamp(10px, 0.2rem, 20px);
}
.download .download-content .left .items .item-title:hover::after {
  opacity: 1;
}
.download .download-content .left .items.active .item-title {
  color: #0080ff;
  border-color: #0080ff;
  padding-left: clamp(10px, 0.2rem, 20px);
  font-family: var(--font1);
}
.download .download-content .left .items.active .item-title::after {
  opacity: 1;
}
.download .download-content .left .items.active .lists {
  display: block;
}
.download .download-content .left .items .lists {
  margin-top: clamp(10px, 0.2rem, 20px);
  display: none;
}
.download .download-content .left .items .lists .list {
  color: #000;
  display: flex;
  transition: all 0.3s;
  font-size: clamp(12px, 0.16rem, 16px);
  cursor: pointer;
  margin-bottom: 10px;
}
.download .download-content .left .items .lists .list.active,
.download .download-content .left .items .lists .list:hover {
  color: #0080ff;
}
.download .download-content .right {
  flex: 1;
}
.download .download-content .right .download1 {
  background: #f4f5f8;
  display: flex;
  border-radius: 10px;
  padding: clamp(20px, 0.5rem, 50px) clamp(20px, 0.5rem, 50px) clamp(20px, 1rem, 100px) 0;
}
@media screen and (max-width: 991px) {
  .download .download-content .right .download1 {
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 20px;
  }
}
.download .download-content .right .download1 .logo {
  width: clamp(100px, 1.8rem, 180px);
  text-align: center;
}
.download .download-content .right .download1 .logo img {
  max-width: clamp(50px, 0.83rem, 83px);
}
.download .download-content .right .download1 .text-box {
  flex: 1;
}
.download .download-content .right .download1 .text-box .t-title {
  font-family: var(--font1);
  font-size: clamp(16px, 0.3rem, 30px);
}
.download .download-content .right .download1 .text-box .t-sup {
  font-family: var(--font1);
}
.download .download-content .right .download1 .text-box .t-sup,
.download .download-content .right .download1 .text-box .t-summary {
  font-size: clamp(12px, 0.16rem, 16px);
}
.download .download-content .right .download1 .text-box .t-sup {
  opacity: 0.6;
}
.download .download-content .right .download1 .text-box .t-summary {
  margin-top: clamp(10px, 0.2rem, 20px);
}
.download .download-content .right .download1 .text-box .version-lists .version-list {
  cursor: pointer;
}
.download .download-content .right .download1 .text-box .version-lists .version-list:nth-child(1) {
  margin-top: clamp(20px, 0.5rem, 50px);
}
.download .download-content .right .download1 .text-box .version-lists .version-list:nth-child(1) .download1-text {
  display: block;
}
.download .download-content .right .download1 .text-box .version-lists .version-list:nth-child(n+2) {
  display: none;
  margin-top: clamp(20px, 0.5rem, 50px);
}
.download .download-content .right .download1 .text-box .app-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #b7b7b7;
  padding-top: clamp(10px, 0.1rem, 10px);
  padding-bottom: clamp(10px, 0.1rem, 10px);
}
.download .download-content .right .download1 .text-box .app-download .version {
  font-size: clamp(16px, 0.28rem, 28px);
  font-family: "Poppins-SemiBold";
  font-weight: 600;
}
.download .download-content .right .download1 .text-box .app-download .time {
  font-size: clamp(12px, 0.14rem, 14px);
  opacity: 0.6;
}
.download .download-content .right .download1 .text-box .app-download .download-button {
  cursor: pointer;
  display: none;
}
.download .download-content .right .download1 .text-box .download1-text {
  margin-top: clamp(20px, 0.3rem, 30px);
  font-size: clamp(14px, 0.18rem, 18px);
  line-height: 1.8;
  color: #000;
  display: none;
}
.download .download-content .right .download1 .text-box .download1-text strong {
  font-size: clamp(16px, 0.2rem, 20px);
  display: block;
}
.download .download-content .right .download1 .text-box .text-data {
  display: flex;
  gap: clamp(10px, 0.2rem, 20px);
  margin-top: clamp(10px, 0.1rem, 10px);
  flex-wrap: wrap;
}
.download .download-content .right .download1 .text-box .text-data .item {
  min-width: clamp(120px, 1.4rem, 140px);
  height: clamp(40px, 0.4rem, 40px);
  border-radius: 99px;
  background: var(--color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 0.16rem, 16px);
  padding: 0 20px;
  font-family: var(--font1);
}
.download .download-content .right .download1 .text-box .text-data .common-btn {
  min-width: clamp(120px, 1.6rem, 160px);
}
.download .download-content .right .download1 .text-box .version-more {
  cursor: pointer;
  color: #0080ff;
  margin-top: clamp(30px, 0.5rem, 50px);
  display: inline-flex;
}
.download .download-content .right .download1 .text-box .version-more:hover {
  text-decoration: underline;
}
.download .download-content .right .download1 .text-box .version-more.version-more-hide {
  display: none;
}
.download .download-content .right .download2 .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #f6f7f9;
  border-radius: 10px;
  padding: clamp(10px, 0.2rem, 20px) clamp(10px, 0.3rem, 30px);
  cursor: pointer;
  margin-bottom: 12px;
}
.download .download-content .right .download2 .item .text {
  flex: 1;
  display: flex;
  gap: 16px;
}
.download .download-content .right .download2 .item .text .icon {
  width: clamp(16px, 0.2rem, 20px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: invert(0.5);
  transition: all 0.3s;
}
.download .download-content .right .download2 .item .text .title {
  transition: all 0.3s;
  flex: 1;
  font-size: clamp(14px, 0.2rem, 20px);
  font-family: var(--font1);
}
.download .download-content .right .download2 .item .more {
  width: clamp(80px, 1.2rem, 120px);
  height: clamp(30px, 0.4rem, 40px);
  background: var(--color);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font1);
  opacity: 0;
  transition: all 0.3s;
  font-size: clamp(12px, 0.16rem, 16px);
}
@media screen and (max-width: 991px) {
  .download .download-content .right .download2 .item .more {
    opacity: 1;
  }
}
.download .download-content .right .download2 .item:hover .icon {
  filter: none;
}
.download .download-content .right .download2 .item:hover .title {
  color: #0080ff;
}
.download .download-content .right .download2 .item:hover .more {
  opacity: 1;
}
.faq .item {
  background: #f6f7f9;
  border-radius: 10px;
  padding: clamp(10px, 0.2rem, 20px) clamp(10px, 0.3rem, 30px);
  cursor: pointer;
  margin-bottom: 12px;
}
.faq .item .top {
  transition: all 0.3s;
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.faq .item .top .title {
  flex: 1;
  font-size: clamp(14px, 0.2rem, 20px);
  font-family: var(--font1);
  transition: all 0.3s;
  display: flex;
  align-items: baseline;
}
.faq .item .top .title .q {
  flex-shrink: 0;
}
.faq .item .top .title .value {
  flex: 1;
}
.faq .item .top .icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  transform: rotate(180deg);
  filter: brightness(0);
}
.faq .item .bottom {
  margin-top: clamp(10px, 0.2rem, 20px);
  padding-top: clamp(10px, 0.2rem, 20px);
  padding-bottom: clamp(10px, 0.1rem, 10px);
  border-top: 1px solid #e1e2e4;
  font-size: clamp(12px, 0.18rem, 18px);
  display: none;
}
.faq .item .bottom .bottom-box {
  display: flex;
  align-items: baseline;
}
.faq .item .bottom .bottom-box .a {
  flex-shrink: 0;
}
.faq .item .bottom .bottom-box .value {
  flex: 1;
}
.faq .item:hover .title {
  color: #0080ff;
}
.faq .item.active .icon {
  filter: none;
  transform: rotate(0);
}
.faq .item.active .title {
  color: #0080ff;
}
.faq .item.active .more {
  opacity: 1;
}
.pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: clamp(40px, 0.7rem, 70px);
}
.pager a {
  width: clamp(30px, 0.38rem, 38px);
  height: clamp(30px, 0.38rem, 38px);
  border-radius: 50%;
  margin: 0 10px;
  transition: all 0.5s;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 0.18rem, 18px);
  font-family: "Poppins-regular";
}
.pager a:hover,
.pager a.active {
  background: var(--color);
  color: #fff;
}
.pager a.disable {
  color: #9CA3AF;
  pointer-events: none;
}
.pager a.prev i,
.pager a.next i {
  font-size: clamp(16px, 0.2rem, 20px);
}
.video1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.35rem, 35px);
}
@media screen and (max-width: 991px) {
  .video1 {
    grid-template-columns: 1fr;
  }
}
.video1 .item .img {
  position: relative;
  height: 0;
  padding-bottom: 58%;
  overflow: hidden;
  border-radius: 10px;
}
.video1 .item .img .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.video1 .item .img .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(40px, 0.5rem, 50px);
  height: clamp(40px, 0.5rem, 50px);
  opacity: 0;
  transition: all 0.5s;
}
.video1 .item .text {
  transition: all 0.3s;
  margin-top: clamp(10px, 0.1rem, 10px);
  font-size: clamp(12px, 0.2rem, 20px);
  color: #000;
}
.video1 .item:hover .cover {
  transform: scale(1.1);
}
.video1 .item:hover .play {
  opacity: 1;
}
.video1 .item:hover .text {
  color: #0080ff;
}
.news {
  margin-top: clamp(30px, 0.7rem, 70px);
  margin-bottom: clamp(30px, 0.7rem, 70px);
}
.news .news-box .item {
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  align-items: normal;
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 0.8rem, 80px);
  border-bottom: 1px solid #e1e2e4;
  padding-bottom: clamp(20px, 0.6rem, 60px);
  margin-bottom: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .news .news-box .item {
    flex-direction: column;
    gap: 10px;
  }
}
.news .news-box .item:last-child {
  margin-bottom: 0;
}
.news .news-box .item .img {
  overflow: hidden;
  flex-basis: clamp(240px, 4.8rem, 480px);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .img {
    flex-basis: auto;
  }
}
.news .news-box .item .img .imgBox {
  height: 0;
  padding-bottom: 57%;
  position: relative;
}
.news .news-box .item .img .imgBox img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .img {
    width: 100%;
  }
}
.news .news-box .item .text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .news .news-box .item .text-box {
    height: auto;
    gap: 20px;
  }
}
.news .news-box .item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: normal;
}
.news .news-box .item .text .time {
  font-size: clamp(12px, 0.18rem, 18px);
  transition: all 0.5s;
  opacity: 0.6;
  color: #000;
}
.news .news-box .item .text .title {
  color: #000;
  transition: all 0.5s;
  font-size: clamp(14px, 0.3rem, 30px);
  font-family: var(--font1);
}
.news .news-box .item .text .summary {
  color: #000;
  font-size: clamp(12px, 0.18rem, 18px);
  opacity: 0.6;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.news .news-box .item .more {
  font-family: var(--font1);
  gap: clamp(10px, 0.1rem, 10px);
  transition: all 0.5s;
  font-size: clamp(12px, 0.18rem, 18px);
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.news .news-box .item:hover .title,
.news .news-box .item:hover .more {
  color: var(--color);
}
.news .news-box .item:hover .more {
  border-bottom: 2px solid var(--color);
}
.news .pager {
  justify-content: center;
}
.news-detail .details {
  background: #fff;
  padding-bottom: clamp(40px, 1rem, 100px);
}
.news-detail .details .content {
  display: flex;
  gap: clamp(20px, 0.6rem, 60px);
}
@media screen and (max-width: 768px) {
  .news-detail .details .content {
    max-width: 100%;
    flex-direction: column;
  }
}
.news-detail .details .content .details-container {
  flex: 1;
}
.news-detail .details .content .details-container .title {
  font-size: clamp(16px, 0.4rem, 40px);
  line-height: 1.6;
  text-align: left;
  font-family: var(--font1);
  margin-bottom: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .news-detail .details .content .details-container .title {
    margin-bottom: 0.3rem;
  }
}
.news-detail .details .content .details-container .mid {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000000;
  gap: clamp(10px, 0.6rem, 60px);
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.2rem;
  margin-bottom: clamp(10px, 0.2rem, 20px);
}
@media screen and (max-width: 768px) {
  .news-detail .details .content .details-container .mid {
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
    padding-bottom: 20px;
  }
}
.news-detail .details .content .details-container .mid .item {
  opacity: 0.6;
  display: flex;
  align-items: center;
  font-size: clamp(12px, 0.18rem, 18px);
}
.news-detail .details .content .details-container .summary {
  font-size: clamp(12px, 0.2rem, 20px);
  color: #000000;
  line-height: 1.8;
  min-height: 300px;
}
@media screen and (max-width: 768px) {
  .news-detail .details .content .details-container .summary {
    font-size: 14px;
    margin-top: 20px;
    width: 100%;
  }
  .news-detail .details .content .details-container .summary img {
    max-width: 100% !important;
    height: auto !important;
  }
}
.news-detail .details .content .details-container .summary iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.news-detail .details .content .details-container .summary iframe video {
  width: 100%;
}
.news-detail .detail-pager {
  display: flex;
  flex-direction: column;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.news-detail .detail-pager a {
  display: flex;
  font-size: clamp(12px, 0.2rem, 20px);
  transition: all 0.5s;
  padding: clamp(20px, 0.2rem, 20px) 0;
  color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a {
    flex-basis: 100%;
  }
}
.news-detail .detail-pager a:first-child {
  border-top: 1px solid #eee;
}
.news-detail .detail-pager a .text .t-summary {
  position: relative;
  color: #000;
}
.news-detail .detail-pager a .text .t-summary .icon {
  position: absolute;
  left: -0.5rem;
}
@media screen and (max-width: 768px) {
  .news-detail .detail-pager a .text .t-summary .icon {
    left: -20px;
  }
}
.news-detail .detail-pager a:hover {
  background: var(--color);
  padding: clamp(20px, 0.2rem, 20px);
}
.news-detail .detail-pager a:hover .t-summary {
  color: #fff;
}
.news-detail .footer-link {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  flex-basis: 50%;
  margin-top: clamp(10px, 0.2rem, 20px);
}
.news-detail .footer-link .item {
  width: clamp(40px, 0.64rem, 64px);
  height: clamp(40px, 0.64rem, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
  background: #f0f0f0;
  border-radius: 50%;
}
.news-detail .footer-link .item .show {
  position: absolute;
  bottom: clamp(40px, 0.7rem, 70px);
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  display: none;
}
.news-detail .footer-link .item img {
  filter: brightness(0);
  opacity: 0.4;
  transition: all 0.5s;
  width: 33%;
  height: 33%;
  object-fit: contain;
}
.news-detail .footer-link .item:hover img {
  filter: none;
  opacity: 1;
}
.news-detail .footer-link .item:hover .show {
  display: block;
}
.news-relate {
  flex-basis: clamp(300px, 5.2rem, 520px);
}
.news-relate .page-title .title {
  text-align: left;
  font-size: clamp(14px, 0.24rem, 24px);
  color: #000;
  font-family: var(--font1);
}
.news-relate .items {
  gap: 20px;
}
.news-relate .items .item {
  transition: all 0.5s;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.3rem, 30px);
  margin-bottom: clamp(20px, 0.45rem, 45px);
  padding-bottom: clamp(20px, 0.45rem, 45px);
}
.news-relate .items .item:first-child {
  margin-top: clamp(10px, 0.2rem, 20px);
  padding-top: clamp(10px, 0.45rem, 45px);
  border-top: 1px solid #f0f0f0;
}
.news-relate .items .item .img {
  flex-basis: 39%;
  border-radius: 10px;
  overflow: hidden;
}
.news-relate .items .item .img .imgBox {
  padding-bottom: 56%;
  position: relative;
  height: 0;
}
.news-relate .items .item .img .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.news-relate .items .item .text {
  flex: 1;
}
.news-relate .items .item .text .time {
  font-size: clamp(12px, 0.18rem, 18px);
  opacity: 0.6;
}
.news-relate .items .item .text .title {
  margin-top: clamp(10px, 0.1rem, 10px);
  transition: all 0.5s;
  color: #000;
  font-family: var(--font1);
  font-size: clamp(14px, 0.2rem, 20px);
}
.news-relate .items .item:hover .title {
  color: var(--color);
}
.news-relate .pro-lists {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(20px, 0.3rem, 30px);
}
.news-relate .pro-lists .list {
  margin-top: clamp(10px, 0.2rem, 20px);
}
.news-relate .pro-lists .list .img {
  height: 0;
  position: relative;
  padding-bottom: 54%;
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
}
.news-relate .pro-lists .list .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  z-index: 2;
}
.news-relate .pro-lists .list .text {
  margin-top: clamp(10px, 0.1rem, 10px);
  font-size: clamp(12px, 0.2rem, 20px);
  transition: all 0.5s;
}
.news-relate .pro-lists .list:hover .text {
  color: var(--color);
}
.page-menu {
  width: 100%;
}
.page-menu .page-phone-click {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-menu .page-phone-click {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: var(--dominant-color);
    color: #fff;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-menu {
    width: 100%;
  }
}
.page-menu .menu-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 0.4rem, 40px);
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box {
    justify-content: flex-start;
    overflow: auto;
    gap: 10px;
  }
  .page-menu .menu-box::-webkit-scrollbar {
    height: 0;
  }
}
.page-menu .menu-box a {
  color: #333333;
  font-size: clamp(14px, 0.2rem, 20px);
  transition: all 0.5s;
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box a {
    flex-shrink: 0;
    padding-bottom: 20px;
  }
}
.page-menu .menu-box a.active,
.page-menu .menu-box a:hover {
  color: var(--color);
}
.page-menu .menu-box a.active::after,
.page-menu .menu-box a:hover::after {
  width: 100%;
}
.page-menu .menu-box a.active {
  font-family: var(--font1);
}
.page-menu .menu-box a::after {
  content: '';
  width: 0;
  position: absolute;
  left: 0;
  bottom: -20px;
  background: var(--color);
  height: 2px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .page-menu .menu-box a::after {
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-menu {
    flex-direction: column;
    font-size: 14px;
    height: auto;
  }
}
.page-menu .first-menu {
  width: 100%;
  position: relative;
  background: #fff;
  margin-bottom: 10px;
}
.page-menu .first-menu.active span {
  background: #15808f;
}
.page-menu .first-menu.active span .f-title {
  color: #fff;
}
.page-menu .first-menu.active span i::before,
.page-menu .first-menu.active span i::after {
  background: #fff;
}
.page-menu .first-menu span {
  position: relative;
  width: 100%;
}
.page-menu .first-menu span i {
  position: absolute;
  top: 0;
  bottom: 0;
  font-size: 12px;
  transition: all 0.5s;
  border-radius: 50%;
  width: 50px;
  height: 100%;
  display: flex;
  right: 0;
  margin: auto;
}
.page-menu .first-menu span i::before,
.page-menu .first-menu span i::after {
  content: '';
  position: absolute;
  background: #000;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.page-menu .first-menu span i::before {
  width: 14px;
  height: 2px;
}
.page-menu .first-menu span i::after {
  height: 14px;
  width: 2px;
}
.page-menu .first-menu span:hover i::before,
.page-menu .first-menu span:hover i::after {
  background: #fff;
}
.page-menu .first-menu span:hover .f-title {
  background: #ed941e;
  color: #fff;
}
.page-menu .first-menu .f-title {
  font-size: 16px;
  position: relative;
  color: #000;
  text-align: left;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  border: 1px solid #ddd;
  line-height: 1.4;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .page-menu .first-menu .f-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-menu .first-menu .f-title {
    padding: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    justify-content: center;
  }
}
.page-menu .first-menu .f-title.active,
.page-menu .first-menu .f-title:hover {
  background: #ed941e;
  color: #fff;
}
.page-menu .first-menu .f-title.active::after,
.page-menu .first-menu .f-title:hover::after {
  width: 100%;
}
.page-menu .first-menu .s-box {
  display: none;
}
.page-menu .first-menu .s-box a {
  font-size: 16px;
  text-align: left;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #ddd;
  width: 100%;
  padding: 15px 40px;
  display: block;
}
.page-menu .first-menu .s-box a::after {
  display: none;
}
.page-menu .first-menu .s-box a:hover {
  background: #ed941e;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .page-menu .first-menu .s-box a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-menu .first-menu .s-box a {
    font-size: 12px;
    height: 40px;
    text-align: center;
    justify-content: center;
    line-height: 40px;
    padding: 0;
  }
}
.news-title {
  align-items: flex-end !important;
}
@media screen and (max-width: 991px) {
  .news-title {
    align-items: center !important;
    padding-bottom: 0 !important;
  }
}
.location {
  margin: 30px auto;
  font-size: clamp(12px, 0.18rem, 18px);
}
@media screen and (max-width: 767px) {
  .d-menu {
    margin-left: 0;
    margin-right: auto;
  }
}
.video-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(20px, 0.5rem, 50px);
  gap: clamp(20px, 0.3rem, 30px);
}
@media screen and (max-width: 767px) {
  .video-top {
    grid-template-columns: repeat(1, 1fr);
  }
}
.video-top .item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.video-top .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.video-top .item .img {
  height: 0;
  position: relative;
  padding-bottom: 65%;
}
.video-top .item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.video-top .item .text {
  font-size: clamp(12px, 0.2rem, 20px);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: clamp(20px, 0.4rem, 40px);
  color: #fff;
  font-family: var(--font1);
  z-index: 3;
  transition: all 0.5s;
}
.video-top .item .play {
  width: clamp(30px, 0.55rem, 50px);
  height: clamp(30px, 0.55rem, 50px);
  position: absolute;
  bottom: clamp(20px, 0.25rem, 25px);
  right: clamp(20px, 0.45rem, 45px);
  z-index: 2;
  opacity: 0;
  transition: all 0.5s;
}
.video-top .item:hover img {
  transform: scale(1.05);
}
.video-top .item:hover .play {
  opacity: 1;
}
.video-top .item:hover .text {
  color: var(--color);
}
.video-bottom {
  margin-top: clamp(20px, 0.5rem, 50px);
  margin-bottom: clamp(30px, 0.7rem, 70px);
}
.video-bottom .video-menu {
  display: flex;
  gap: clamp(10px, 0.2rem, 20px);
  flex-wrap: wrap;
}
.video-bottom .video-menu .list {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(120px, 1.6rem, 160px);
  padding: 0 20px;
  color: #000;
  font-size: clamp(12px, 0.18rem, 18px);
  height: clamp(32px, 0.36rem, 36px);
  border-radius: 99px;
  transition: all 0.5s;
  cursor: pointer;
  font-family: var(--font1);
}
.video-bottom .video-menu .list.active,
.video-bottom .video-menu .list:hover {
  color: #fff;
  background: var(--color);
}
.video-bottom .video-lists {
  margin-top: clamp(20px, 0.5rem, 50px);
}
@media screen and (max-width: 1260px) {
  .video-bottom .video-lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .video-bottom .video-lists {
    grid-template-columns: repeat(1, 1fr);
  }
}
.video-bottom .video-lists .video-list {
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
  display: none;
}
.video-bottom .video-lists .video-list.active {
  display: grid;
}
.video-bottom .video-lists .list .img {
  height: 0;
  position: relative;
  padding-bottom: 56%;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s;
}
.video-bottom .video-lists .list .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.video-bottom .video-lists .list .img .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(30px, 0.36rem, 36px);
  height: clamp(30px, 0.36rem, 36px);
  opacity: 0;
  transition: all 0.5s;
}
.video-bottom .video-lists .list .text {
  margin-top: clamp(10px, 0.1rem, 10px);
  color: #000;
  font-size: clamp(12px, 0.16rem, 16px);
  transition: all 0.5s;
}
.video-bottom .video-lists .list:hover img {
  transform: scale(1.05);
}
.video-bottom .video-lists .list:hover .play {
  opacity: 1;
}
.video-bottom .video-lists .list:hover .text {
  color: var(--color);
}
.video-bottom .pager {
  justify-content: center;
}
.apply-download {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: none;
}
.apply-download .mask {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.apply-download .apply-download-content {
  max-width: 950px;
  border-radius: 10px;
  padding: clamp(20px, 0.6rem, 60px) clamp(20px, 0.8rem, 80px);
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 80vh;
  overflow: auto;
}
.apply-download .apply-download-content .close {
  cursor: pointer;
  position: absolute;
  right: clamp(20px, 0.2rem, 20px);
  top: clamp(20px, 0.2rem, 20px);
  font-size: 24px;
  opacity: 0.6;
}
.apply-download .apply-download-content .apply-download-title {
  font-size: clamp(16px, 0.3rem, 30px);
  font-family: var(--font1);
  text-align: center;
  margin-bottom: clamp(10px, 0.2rem, 20px);
}
.apply-download .apply-download-content .form {
  text-align: center;
}
.apply-download .apply-download-content .box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(20px, 0.2rem, 20px);
}
.apply-download .apply-download-content .layui-form-item .layui-form-label {
  float: none;
  padding-left: 0;
  text-align: left;
  width: 100%;
  font-size: clamp(12px, 0.16rem, 16px);
}
.apply-download .apply-download-content .layui-form-item .layui-input-block {
  margin-left: 0;
}
.apply-download .apply-download-content .layui-form-item .layui-input-block input {
  border-radius: 8px;
  height: clamp(40px, 0.5rem, 50px);
}
.apply-download .apply-download-content .code-box {
  gap: 0 clamp(20px, 0.2rem, 20px);
  display: flex;
  align-items: flex-end;
}
.apply-download .apply-download-content .code-box .layui-form-item {
  flex: 1;
}
.apply-download .apply-download-content .code-box .code {
  flex-basis: clamp(150px, 2rem, 200px);
  margin-bottom: 15px;
}
.apply-download .apply-download-content button {
  border-radius: 99px;
  background: var(--color);
  font-size: clamp(12px, 0.18rem, 18px);
  color: #fff;
  height: clamp(40px, 0.5rem, 50px);
  width: clamp(150px, 2rem, 200px);
  margin-top: clamp(20px, 0.4rem, 40px);
  transition: all 0.5s;
}
.apply-download .apply-download-content button:hover {
  opacity: 0.6;
}
.common-btn {
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}
.module-banner .textbox.textbox-left {
  text-align: left;
  top: 0;
  bottom: 10vh;
  margin: auto;
  height: fit-content;
}
.module-banner .textbox.textbox-left .box {
  max-width: 12.8rem;
  margin-left: auto;
  margin-right: auto;
}
.module-banner .textbox.textbox-left .detail-title {
  text-align: left;
}
.module-banner .textbox.textbox-left .btns {
  justify-content: flex-start;
}
.module-banner .textbox .detail-title span {
  color: var(--color);
  font-family: "Poppins-SemiBold";
}
.module-banner .textbox .text {
  color: #fff;
}
.detail-summary {
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-top: clamp(10px, 0.1rem, 10px);
  font-size: clamp(14px, 0.2rem, 20px);
}
.detail-more {
  min-width: clamp(100px, 1.2rem, 120px);
  padding-left: 10px;
  padding-right: 10px;
  height: clamp(30px, 0.4rem, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/img232.webp') no-repeat center / contain;
  color: #fff;
  cursor: pointer;
  font-family: var(--font1);
  transition: all 0.5s;
}
.detail-more:hover {
  opacity: 0.6;
}
.b-table td {
  width: 50%;
}
.layui-input:hover,
.layui-textarea:hover {
  border-color: var(--color) !important;
}
.layui-form-select dl dd.layui-this {
  background: var(--color) !important;
}
#interval {
  display: none;
}
.contact-box {
  margin: auto;
  padding: 35px 30px;
  background: #fafbfc;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.contact-box h3 {
  font-size: 24px;
  color: #1f2937;
  margin: 0 0 14px;
  font-weight: 600;
}
.contact-box p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
}
td,
th {
  padding: 10px 20px;
}
iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
iframe video {
  width: 100%;
}
.about {
  padding-top: clamp(40px, 0.9rem, 90px);
}
.about .about-text {
  display: flex;
  gap: clamp(20px, 0.3rem, 30px);
  justify-content: space-between;
}
.about .about-text .headline {
  color: var(--color);
  line-height: 1.5;
}
.about .about-text .text-summary {
  font-size: clamp(12px, 0.2rem, 20px);
  color: #000;
  max-width: clamp(500px, 8.5rem, 850px);
}
.about .about-img {
  width: 100%;
  margin-top: clamp(30px, 0.75rem, 75px);
}
.about .about-img img {
  width: 100%;
}
.about .about-culture {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 0.3rem, 30px);
  padding: clamp(20px, 0.3rem, 30px);
}
.about .about-culture .item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.about .about-culture .item .text {
  top: 0;
  position: absolute;
  padding: clamp(20px, 0.75rem, 75px);
  text-align: center;
  width: 100%;
}
.about .about-culture .item .text .headline {
  color: var(--color);
}
.about .about-culture .item .text .summary {
  font-family: var(--font1);
  font-size: clamp(14px, 0.3rem, 30px);
  margin-top: clamp(10px, 0.1rem, 10px);
}
.about .about-culture .item .img {
  transition: all 0.5s;
  width: 100%;
}
.about .about-culture .item .img img {
  width: 100%;
}
.about .about-culture .item:hover .img {
  transform: scale(1.02);
}
/*# sourceMappingURL=common.css.map */