﻿* {
  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;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "SourceHanSansCNRegular", "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
:root {
  /* COLOR */
  --active_color: #0026bb;
  --color_fff: #ffffff;
  --color_text: #282828;
  --color_active2: #0026bb;
  --color_f6f: #f6f6f6;
  --color_f4f: #f4f4f4;
  --color_eee: #eeeeee;
  --color_ddd: #dddddd;
  --color_bbb: #bbbbbb;
  --color_999: #999999;
  --color_666: #666666;
  --color_444: #444444;
  --color_333: #333333;
  --color_222: #222222;
  --color_000: #000000;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(16px, 0.24rem, 24px);
  --font26: clamp(16px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "SourceHanSansCNRegular";
  src: url("../fonts/SourceHanSansCN-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-Bold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-Heavy.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "MyriadPro";
  src: url("../fonts/MyriadPro-Regular.otf");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url('../fonts/Poppins-SemiBold.woff') format('woff'),
       url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
       url("../fonts/Poppins-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: 'MyCustomFont';
  src: url('fonts/myfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* --------------------------------------------------------------- 全站内容区 */
.w1600,
.container,
.wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  font-family: "SourceHanSansCNRegular", "MyriadPro", "SourceHanSansCN";
}
@media (max-width:1920px) {
  .w1600,
  .container,
  .wrap {
    max-width: 83.33333333%;
  }
}
@media (max-width:480px) {
  .w1600,
  .container,
  .wrap {
    max-width: 100%;
    padding: 0 20px;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 1rem;
  --Point:-1rem;
}
main.active {
  --header-height: 0.8rem;
  --Point:-1rem;
}
.anchorPoint{top: var(--Point); position: relative;}

@media (max-width:990px) {
  main {
    --header-height: 50px;
    --Point:-50px;
  }
  .anchorPoint{top:var(--Point);}
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
  transform: translateY(-3rem);
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background-image: linear-gradient(339deg, #3fbbfe, #a541ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg_gra2 {
  background-image: -moz-linear-gradient(-46deg, #b591ff 0%, #5686ff 100%);
  background-image: -webkit-linear-gradient(-46deg, #b591ff 0%, #5686ff 100%);
  background-image: -ms-linear-gradient(-46deg, #b591ff 0%, #5686ff 100%);
}
.bg_gra3 {
  background-image: -moz-linear-gradient(-90deg, #000000 0%, #282828 100%);
  background-image: -webkit-linear-gradient(-90deg, #000000 0%, #282828 100%);
  background-image: -ms-linear-gradient(-90deg, #000000 0%, #282828 100%);
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    background: #00000031;
    opacity: 1;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    width: 15px;
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.15rem;
}
.idxPageShow span {
  width: 9px;
  height: 9px;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
/* --------------------------------------------------------------- wow */
.wowUp_z {
  overflow: hidden;
}
.wowUp_z .wowSon {
  opacity: 0;
  transform: translateY(50px);
  -webkit-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  transition: all 1.1s ease;
}
.wowUp_z.fadeInUp .wowSon {
  opacity: 1;
  transform: translateY(0px);
}
.wowUp {
  opacity: 0;
}
.wowUpB {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
.reveal {
  overflow: hidden;
}
.reveal span {
  opacity: 0;
  display: inline-block;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.5;
}
.newContent p {
  min-height: 0.5em;
}
.newContent img {
  width: 100% !important;
  height: unset !important;
}

.newContent ul,
.newContent ul li, 
.newContent ol,
.newContent ol li, 
.newContent dl, 
.newContent dl dd, 
.newContent dl dt, 
.newContent h1, 
.newContent h2, 
.newContent h3, 
.newContent h4, 
.newContent h5, 
.newContent h6, 
.newContent{
  all:revert;
}

.imgScale {
  overflow: hidden;
}
.imgScale img {
  transform: scale(1.05);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_more .more {
  width: fit-content;
  height: 0.65rem;
  min-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0.22rem;
  font-size: var(--font14);
  border-radius: 100px;
  border: 1px solid #ffF;
  background: none;
  color: #FFF;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  pointer-events: initial;
}
.idx_more .more.more2 {
  padding: 0 0.14rem;
}
.idx_more .more.more3 {
  border: 1px solid #000;
  color: #000;
}
.idx_more .more:hover {
  background: var(--color_active2) !important;
  border-color: var(--color_active2) !important;
  color: #FFF !important;
}
.idx_title {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx_title .t1 {
  background-image: linear-gradient(109deg, #000000 7%, #6f6f6f 91%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.idx_title .t2 {
  margin-top: 0.3rem;
  color: #666666;
}
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .content {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.idx_banner .content .contBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.65rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  z-index: 5;
}
.idx_banner .content .contBox .center_box {
  width: 100%;
  height: auto;
  color: #FFF;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx_banner .content .contBox .center_box .word {
  width: 100%;
  height: auto;
}
.idx_banner .content .contBox .center_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 600;
  letter-spacing: 0.35rem;
  transform: translateX(0.145rem);
}
.idx_banner .content .contBox .center_box .word .t1 span {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.idx_banner .content .contBox .center_box .word .t2 {
  width: 100%;
  height: auto;
  letter-spacing: 0.05rem;
}
.idx_banner .content .contBox .center_box .word1 {
  width: 100%;
  height: auto;
}
.idx_banner .content .contBox .center_box .word1 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.6rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.25rem;
}
.idx_banner .content .contBox .center_box .word1 .list .one {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_banner .content .contBox .center_box .word1 .list .one .imgs {
  width: 0.74rem;
}
.idx_banner .content .contBox .center_box .word1 .list .one .icic {
  font-size: var(--font16);
  margin-top: 0.11rem;
  text-align: center;
}
.idx_banner .content .contBox .center_box .word1 .idx_more {
  margin-top: 1.5rem;
}
.idx_banner .content .contBox .center_box .icon {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 40px;
  min-height: 40px;
  margin-top: 0.3rem;
  cursor: pointer;
}
.idx_banner .content .maskBox {
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.idx_banner .content .maskBox .img_w100 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_banner .content .maskBox .img_w100 img,
.idx_banner .content .maskBox .img_w100 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_banner .content.gaspTY .contBox {
  padding-bottom: 0.5rem 0;
}
.idx_banner .btnSwiper {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 0.5rem;
  pointer-events: none;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_banner .btnSwiper .w1600 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_banner .btnSwiper .infoBtn {
  width: fit-content;
  height: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.16rem;
  padding: 0 0.42rem;
  background: #FFFFFF1A;
  border-radius: 100px;
  transform: translateY(1.5rem) scale(0.5);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_banner .btnSwiper .infoBtn .svgBox {
  width: 8px;
  height: 8px;
  background: #FFF;
  border-radius: 100px;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_banner .btnSwiper .infoBtn .svgBox.active {
  width: 0.32rem;
}
.idx_banner .btnSwiper.active .infoBtn {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.idx_product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.8rem;
  padding-bottom: 0.7rem;
  background: #f5f5f5;
}
.idx_product .center_box {
  width: 100%;
  height: auto;
}
.idx_product .center_box .swiper_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-top: 0.55rem;
  position: relative;
  z-index: 1;
}
.idx_product .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.idx_product .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_product .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #000000;
}
.idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 50%;
}
.idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb .ab img,
.idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb .ab video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  text-align: center;
  color: #FFFFFF;
}
.idx_product .center_box .swiper_info .swiper_box ul li.swiper-slide-prev .centerInfo .img .pb .ab .one,
.idx_product .center_box .swiper_info .swiper_box ul li.swiper-slide-next .centerInfo .img .pb .ab .one {
  transform: scale(1.3);
}
.idx_product .center_box .swiper_info .swiper_box ul li.swiper-slide-active .centerInfo .img .pb .ab .one {
  transform: scale(1);
}
.idx_product .center_box .swiper_info .swiper_word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  bottom: 1.09rem;
  pointer-events: none;
}
.idx_product .center_box .swiper_info .swiper_word ul li {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.idx_product .center_box .swiper_info .swiper_word ul li .centerInfo {
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_product .center_box .swiper_info .swiper_word ul li .centerInfo .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
.idx_product .center_box .swiper_info .swiper_word ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 1.2s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  pointer-events: initial !important;
}
.idx_product .center_box .idxProgressbar {
  width: 26.4%;
  height: 2px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  background: #cccccc;
}
.idx_product .center_box .idxProgressbar span {
  background: #000000;
}
.idx_product .center_box .swiper_btn {
  width: fit-content;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(50%) translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 10;
}
.idx_product .center_box .swiper_btn .btn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF1A;
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_product .center_box .swiper_btn .btn i {
  font-size: var(--font24);
  color: #FFF;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_product .center_box .swiper_btn .btn.next {
  background: none;
}
.idx_product .center_box .swiper_btn .btn.next i {
  color: #000;
}
.idx_product .center_box .swiper_btn .btn:hover {
  background: var(--active_color);
}
.idx_product .center_box .swiper_btn .btn:hover i {
  color: #FFF;
}
.idx_product .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_product .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .idx_product .swiper_word {
    display: none;
  }
  .idx_product .center_box .swiper_info .swiper_box ul li .centerInfo {
    border-radius: 0.2rem;
    overflow: hidden;
  }
  .idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .word {
    padding: 0.8rem 0.4rem;
    position: absolute;
    bottom: 0;
    z-index: 10;
  }
  .idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .word .idx_more {
    width: 100%;
    height: auto;
    margin-top: 0.4rem;
  }
  .idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    top: 0;
    z-index: 6;
    background: linear-gradient(180deg, #00000000 10%, #000000 100%);
  }
  .idx_product .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb {
    padding-bottom: 100%;
  }
  .idx_product .swiper_btn {
    display: none !important;
  }
}
.idx_app {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.9rem;
  background: #FFFFFF;
}
.idx_app .center_box {
  width: 100%;
  height: auto;
}
.idx_app .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.74rem;
  margin-top: 0.65rem;
}
.idx_app .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_app .center_box .item_box .item.grid2 {
  grid-column: span 2;
}
.idx_app .center_box .item_box .item.grid3 {
  grid-column: span 2;
  grid-row: span 2;
}
.idx_app .center_box .item_box .item .img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.idx_app .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_app .center_box .item_box .item .word {
  font-size: var(--font26);
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.7rem;
  text-align: center;
  z-index: 10;
  color: #FFF;
}
.idx_app .center_box .item_box .item:hover .img {
  transform: scale(1.01);
}
@media (max-width:990px) {
  .idx_app .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
  .idx_app .center_box .item_box .item {
    width: 100%;
    height: 250px;
    border-radius: 0.2rem;
    overflow: hidden;
  }
  .idx_app .center_box .item_box .item.grid2 {
    grid-column: unset;
  }
  .idx_app .center_box .item_box .item.grid3 {
    grid-column: unset;
    grid-row: unset;
  }
}
.idx_about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.9rem 0;
  padding-bottom: 2.07rem;
  background: #FFFFFF;
}
.idx_about .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx_about .center_box .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 5.3rem;
  padding: 0 0.5rem;
}
.idx_about .center_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_about .center_box .list .one .icon {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 0.6rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-image: linear-gradient(339deg, #3fbbfe, #a541ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
  font-family: "Poppins-SemiBold" !important;
}
.idx_about .center_box .list .one .icon .bgImg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_about .center_box .list .one .icon .bgImg img {
  width: 100%;
  height: 100%;
}
.idx_about .center_box .list .one .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.4rem;
  color: #FFF;
  font-size: var(--font18);
}
.idx_about .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 1.6rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.idx_about .img_bg .img {
  width: 83.33333333%;
  height: 7.6rem;
  overflow: hidden;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.idx_about .img_bg .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_about.active .center_box .idx_title .t1 {
  background: none;
  color: #FFFFFF;
}
.idx_about.active .center_box .idx_title .t2 {
  color: #FFFFFF;
}
.idx_about.active .img_bg {
  bottom: 0;
}
.idx_about.active .img_bg .img {
  width: 100%;
  height: 100%;
}
@media (max-width:990px) {
  .mfooter{display: flex; flex-wrap: wrap; justify-content: center;padding: 0.3rem 0px 0.5rem;border-top: 1px solid #fff;line-height: 0.4rem;font-size: var(--font16);}
  .mfooter p{width: auto;}
  .mfooter .link{display: flex; flex-wrap: wrap; align-items: center;}
  .mfooter .link a{margin-left: 0.1rem;}
  .idx_about {
    position: relative;
    z-index: 1;
  }
  .idx_about::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    left: 0;
    opacity: 0.2;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .idx_about .center_box .idx_title {
    text-align: start;
  }
  .idx_about .center_box .idx_title .t1 {
    background: none;
    color: #FFFFFF;
  }

  
  .idx_about .center_box .idx_title .t2 {
    color: #FFFFFF;
    font-size: var(--font18);
    text-align: center;
  }

  .idx_about .center_box .idx_title .t2 br{display: none;}


  .idx_about .center_box .list {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9rem;
    padding: 0;
  }
  .idx_about .center_box .list .one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
  }
  .idx_about .center_box .list .one .icon {
    flex-shrink: 0;
  }
  .idx_about .center_box .list .one .word {
    margin-top: 0;
    text-align: start;
  }
  .idx_about .img_bg {
    bottom: 0;
  }
  .idx_about .img_bg .img {
    width: 100%;
    height: 100%;
  }
}
.idx_new {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.54rem;
  padding-bottom: 2rem;
  background: #f5f5f5;
}
.idx_new .center_box {
  width: 100%;
  height: auto;
}
.idx_new .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  overflow: hidden;
}
.idx_new .center_box .swiper_box ul li {
  width: auto;
  height: auto;
}
.idx_new .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_new .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.idx_new .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 66%;
}
.idx_new .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  padding-right: 0.76rem;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box .icon {
  position: absolute;
  width: 0.25rem;
  transform: translateX(-100%);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  left: 0;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box .word {
  width: 100%;
  height: auto;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box .word .t1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box .word .t2 {
  margin-top: 0.15rem;
}
.idx_new .center_box .swiper_box ul li .centerInfo:hover .word_box {
  padding-left: 0.76rem;
  padding-right: 0;
}
.idx_new .center_box .swiper_box ul li .centerInfo:hover .word_box .icon {
  transform: translateX(0);
}
.idx_new .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.idx_new .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.idx_new .center_box .swiper_btn {
  width: fit-content;
  position: absolute;
  bottom: 0%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.27rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 10;
}
.idx_new .center_box .swiper_btn .btn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF1A;
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_new .center_box .swiper_btn .btn i {
  font-size: var(--font24);
  color: #000;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_new .center_box .swiper_btn .btn.next {
  background: none;
}
.idx_new .center_box .swiper_btn .btn:hover {
  background: #0000001A;
}
.idx_new .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_new .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .idx_new .swiper_btn {
    display: none !important;
  }
}
.idx_productS {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.4rem;
  --width: 100%;
  --borr: 0px;
}
.ins_productCon1 .idx_title {
  width: 100%;
  height: auto;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_productCon1 .idx_title .t1 {
  text-align: start;
}
.ins_productCon1 .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.54rem;
  position: relative;
  z-index: 1;
}
.ins_productCon1 .content_info .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1rem;
}
.ins_productCon1 .content_info .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .content_info .content .center_box .ins_title {
  width: 100%;
  height: auto;
  color: #FFF;
  text-align: center;
}
.ins_productCon7 .center_box .swiper_info .swiper_word ul li.swiper-slide-active .wowUpS{font-weight: 600;}
.ins_productCon1 .content_info .content .center_box .ins_title .font42{font-weight: 600;}
.ins_productCon1 .content_info .content .center_box .ins_title .font42 p,
.ins_productCon1 .content_info .content .center_box .ins_title .font42 p span,
.ins_productCon1 .content_info .content .center_box .ins_title .font42 span,
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .font42 span,
.ins_productCon2 .content .center_box .ins_title .t1 span,
.ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .word span,
.ins_productCon1 .swiper_cont .swiper_info .swiper_word ul li.swiper-slide-active .wowUpS,
.ins_productCon2 .content .center_box .ins_title .t1,
.ins_productCon3 .center_box .word,
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .font42,
.ins_productCon3 .center_box .word,
.ins_productCon7 .center_box .swiper_info .swiper_word ul li.swiper-slide-active .wowUpS{font-family: "Poppins-SemiBold" !important;}

.ins_productCon1 .content_info .content .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
.ins_productCon1 .swiper_cont {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}
.ins_productCon1 .swiper_cont .swiper_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.ins_productCon1 .swiper_cont .swiper_info::after {
 
  position: absolute;
  width: 100vh;
  height: 100%;
  background: #FFF;
  top: 0;
  transform: translateY(-10px) translateX(-0.5rem);
  right: 100%;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  z-index: 3;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #000000;
  border-radius: 0.2rem;
  overflow: hidden;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .font46{font-family: "Poppins-SemiBold" !important;}

.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .t1{font-weight: 600;font-family: "Poppins-SemiBold" !important;}

.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 50%;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .img .pb .ab img,
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .img .pb .ab video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  text-align: center;
  color: #FFFFFF;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo:hover {
  transform: scale(1.01);
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li.swiper-slide-prev .centerInfo .img .pb .ab .one,
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li.swiper-slide-next .centerInfo .img .pb .ab .one {
  transform: scale(1.3);
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li.swiper-slide-active .centerInfo .img .pb .ab .one {
  transform: scale(1);
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  top: 1.09rem;
  pointer-events: none;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_word ul li {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_word ul li .centerInfo {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_word ul li .centerInfo .font42{ font-weight: 600;}
.ins_productCon1 .swiper_cont .swiper_info .swiper_word ul li .centerInfo .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_word ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 1.2s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  pointer-events: initial !important;
}
.ins_productCon1 .swiper_cont .swiper_info .idxProgressbar {
  width: 26.4%;
  height: 2px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  background: #cccccc;
}
.ins_productCon1 .swiper_cont .swiper_info .idxProgressbar span {
  background: #000000;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_btn {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.27rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 10;
  margin-top: 0.5rem;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_btn .btn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF1A;
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_btn .btn i {
  font-size: var(--font24);
  color: #000;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_btn .btn.next {
  background: none;
}
.ins_productCon1 .swiper_cont .swiper_info .swiper_btn .btn:hover {
  background: #0000001A;
}
.ins_productCon1 .img_w100 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon1 .img_w100 .img {
  width: var(--width);
  border-radius: var(--borr);
  overflow: hidden;
  height: auto;
}
.ins_productCon1 .img_w100 .img img {
  width: 100%;
  height: auto;
}
.ins_productCon1 .idxProgressbar {
  display: none;
}
.ins_productCon1.pb100 {
  padding-bottom: 1.05rem;
}
.ins_productCon1.pt105 {
  padding-top: .85rem;
}
.ins_productCon1:first-child {
  padding-top: 1rem;
}
@media (max-width:990px) {
  .ins_productCon1 .swiper_word {
    display: none;
  }
  .ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo {
    border-radius: 0.2rem;
    overflow: hidden;
  }
  .ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .word {
    padding: 0.6rem 0.4rem;
    position: absolute;
    top: 0px;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
  }
  .ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .word .idx_more {
    width: 100%;
    height: auto;
    margin-top: 0.3rem;
  }
  .ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    top: 0;
    z-index: 6;
    background: linear-gradient(180deg, #00000000 10%, #000000 100%);
  }
  .ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .img .pb {
    padding-bottom: 120%;
  }
  .ins_productCon1 .swiper_btn {
    display: none !important;
  }
  .ins_productCon1 .idxProgressbar {
    width: 26.4%;
    height: 2px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
    background: #cccccc;
    display: block !important;
  }
  .ins_productCon1 .idxProgressbar span {
    background: #000000;
  }

  .ins_productCon2 .content{padding-top: 1.5rem !important;}
  
  .ins_productCon1 .img_w100 .img img {
    min-height: 500px;
    object-position: 49.5%;
    object-fit: cover;
  }
  .ins_productCon1 .content_info .content .center_box .ins_title {
    width: 100%;
    margin: 0 auto;
  }
}
.ins_productCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon2 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 2.1rem;
}
.ins_productCon2 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon2 .content .center_box .ins_title {
  width: 100%;
  height: auto;
  color: #FFF;
  text-align: center;
}

.ins_productCon2 .content .center_box .ins_title .t1{font-weight: 600;}

.ins_productCon2 .content .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
.ins_productCon2 .img_w100 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon2 .img_w100 .img {
  width: 100%;
  border-radius: var(--borr);
  overflow: hidden;
  height: auto;
}
.ins_productCon2 .img_w100 .img img {
  width: 100%;
  height: auto;
}
.ins_productCon2 .img_w100 .img img.wap {
  min-height: 500px;
  object-fit: cover;
}
.ins_productCon3 {
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 10;
  top: var(--header-height);
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF1A;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_productCon3 .center_box {
  width: 100%;
  height: 0.6rem;
  min-height: 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
}

.ins_productCon3 .center_box .word{font-weight: 600;}

.ins_productCon3 .center_box .left_box {
  width: fit-content;
  max-width: 30%;
}
.ins_productCon3 .center_box .right_box {
  width: fit-content;
  max-width: 60%;
}
.ins_productCon3 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 1.2rem;
}
.ins_productCon3 .center_box .right_box .item_box .item {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  cursor: pointer;
  color: #666666;
}
.ins_productCon3 .center_box .right_box .item_box .item.active {
  color: #FFFFFF;
}
.ins_productCon3.active {
  background: #000000b5;
  color: #FFFFFF;
  border-bottom: 1px solid #0000001A;
  backdrop-filter: blur(10px);
}
.ins_productCon3.posFix {
  top: 0 !important;
}
.ins_productCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2.8rem;
  padding-bottom: 3rem;
  background-image: url(../images/z14.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.ins_productCon4 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_productCon4 .center_box .word {
  width: 82%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.ins_productCon4 .center_box .word .tit {
  font-size: 1.2rem;
  background-image: linear-gradient(339deg, #3fbbfe, #a541ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.ins_productCon4 .center_box .word .sub {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  color: #FFFFFF;
  font-weight: 500;
}
@media (max-width:990px) {
  .ins_productCon4 .center_box .word {
    width: 100%;
    height: auto;
  }
  .ins_productCon4 .center_box .word .tit {
    font-size: 0.8rem;
  }
  .ins_productCon4 .center_box .word .sub {
    font-size: var(--font28);
  }
}
.ins_productCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.ins_productCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding-top: 2.6rem;
}
.ins_productCon5 .center_box .content .word_box {
  width: 82%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.ins_productCon5 .center_box .content .word_box .tit {
  text-align: center;
  background-image: linear-gradient(339deg, #3fbbfe, #a541ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.ins_productCon5 .center_box .content .list {
  width: 82%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 1rem;
}
.ins_productCon5 .center_box .content .list .one {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon5 .center_box .content .list .one .icon {
  width: 0.72rem;
  height: 0.72rem;
}
.ins_productCon5 .center_box .content .list .one .word {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
  text-align: center;
  color: #FFFFFF;
}
.ins_productCon5 .center_box .content .list .one .word .t1 {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .content .list .one .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
}
.ins_productCon5 .center_box .content.pt260 {
  margin-top: 2.7rem;
}
.ins_productCon5 .center_box .content1 {
  width: 100%;
  height: auto;
  background: #1b1c2233;
  padding-top: 1.3rem;
  padding-bottom: 1.1rem;
  border-radius: 0.2rem;
  overflow: hidden;
  backdrop-filter: blur(15px);
}
.ins_productCon5 .center_box .content1 .img {
  width: 82%;
  margin-top: 0.6rem;
}
.ins_productCon5 .center_box .content1 .img img {
  width: 100%;
  height: auto;
}
.ins_productCon5 .maskBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
}

.ins_productCon5 .maskBox .sticky{ 
  position: sticky;
  top: 0px;
  overflow: hidden;
  width: 100%;
  transform: translateY(-1px);
}
.ins_productCon5 .maskBox img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_productCon5 .center_box .content .list {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_productCon5 .center_box .content .list .one {
    width: 100%;
    height: auto;
  }
}
.ins_productCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #15161b;
  padding: 1.5rem 0;
  margin-top: -2px;
}
.ins_productCon6::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3rem;
  background: linear-gradient(0deg, #15161b 10%, #090a0cca 100%);
  top: 0;
  left: 0;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_productCon6 .center_box {
  width: 100%;
  height: auto;
  background: #1b1c2233;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_productCon6 .center_box .word_box {
  width: 61.2%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.ins_productCon6 .center_box .word_box .tit {
  text-align: center;
  background-image: linear-gradient(339deg, #3fbbfe, #a541ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.ins_productCon6 .center_box .imgS {
  width: 61.2%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.5rem;
}
.ins_productCon6 .center_box .item_box {
  width: 61.2%;
  height: auto;
  margin-top: 0.5rem;
  border-top: 1px solid #494a4e;
}
.ins_productCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid #494a4e;
}
.ins_productCon6 .center_box .item_box .item .word {
  width: fit-content;
  color: #FFF;
  min-width: 35%;
}
.ins_productCon6 .center_box .item_box .item .word .t1 {
  width: 100%;
  height: auto;
  color: #cccccc;
}
.ins_productCon6 .center_box .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
}
.ins_productCon6 .center_box .item_box .item .word .t3 {
  width: 100%;
  height: auto;
  color: #666666;
}
@media (max-width:990px) {
  .ins_productCon6 .center_box .word_box,
  .ins_productCon6 .center_box .imgS,
  .ins_productCon6 .center_box .item_box {
    width: 100%;
    height: auto;
  }
  .ins_productCon6 .center_box .item_box {
    width: 100%;
    height: auto;
  }
  .ins_productCon6 .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_productCon6 .center_box .item_box .item .word {
    width: 45%;
  }
}
.ins_productCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.3rem;
  padding-bottom: 1.6rem;
  overflow: hidden;
}
.ins_productCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .swiper_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
}
.ins_productCon7 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #000000;
  border-radius: 0.2rem;
  overflow: hidden;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 50%;
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb .ab img,
.ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb .ab video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  text-align: center;
  color: #FFFFFF;
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo:hover {
  transform: scale(1.01);
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li.swiper-slide-prev .centerInfo .img .pb .ab .one,
.ins_productCon7 .center_box .swiper_info .swiper_box ul li.swiper-slide-next .centerInfo .img .pb .ab .one {
  transform: scale(1.3);
}
.ins_productCon7 .center_box .swiper_info .swiper_box ul li.swiper-slide-active .centerInfo .img .pb .ab .one {
  transform: scale(1);
}
.ins_productCon7 .center_box .swiper_info .swiper_word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 12;
  top: 1.09rem;
  pointer-events: none;
}
.ins_productCon7 .center_box .swiper_info .swiper_word ul li {
  width: 100%;
  height: auto;
  pointer-events: none;
}
.ins_productCon7 .center_box .swiper_info .swiper_word ul li .centerInfo {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon7 .center_box .swiper_info .swiper_word ul li .centerInfo .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
.ins_productCon7 .center_box .swiper_info .swiper_word ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 1.2s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  pointer-events: initial !important;
}
.ins_productCon7 .center_box .swiper_info .swiper_btn {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.27rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 10;
  margin-top: 0.5rem;
}
.ins_productCon7 .center_box .swiper_info .swiper_btn .btn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF1A;
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_productCon7 .center_box .swiper_info .swiper_btn .btn i {
  font-size: var(--font24);
  color: #000;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_productCon7 .center_box .swiper_info .swiper_btn .btn.next {
  background: none;
}
.ins_productCon7 .center_box .swiper_info .swiper_btn .btn:hover {
  background: #0000001A;
}
.ins_productCon7 .center_box .swiper_info .idxProgressbar {
  display: none;
}
@media (max-width:990px) {
  .ins_productCon7 .swiper_word {
    display: none;
  }
  .ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo {
    border-radius: 0.2rem;
    overflow: hidden;
  }
  .ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .font46{font-weight: 600;font-size: var(--font42); }
  .ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .word {
    padding: 0.6rem 0.4rem;
    position: absolute;
    top: 0px;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
  }
  .ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .t1{font-size: var(--font42);}
  .ins_productCon1 .swiper_cont .swiper_info .swiper_box ul li .centerInfo .t1 span{display: block;}
  .ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .word span{display: block;}
  .ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .word .idx_more {
    width: 100%;
    height: auto;
    margin-top: 0.3rem;
  }
  .ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .img::after {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    top: 0;
    z-index: 6;
    background: linear-gradient(180deg, #00000000 10%, #000000 100%);
  }
  .ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb {
    padding-bottom: 120%;
  }
  .ins_productCon7 .swiper_btn {
    display: none !important;
  }
  .ins_productCon7 .idxProgressbar {
    width: 26.4%;
    height: 2px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
    background: #cccccc;
    display: block !important;
  }
  .ins_productCon7 .idxProgressbar span {
    background: #000000;
  }
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2.5rem;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;justify-content: center;height: 100vh;
}
.ins_aboutCon1 .center_box .content .word {
  width: 75%;


  color: #FFFFFF;
  text-align: center;
}
.ins_aboutCon1 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: .8rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding-bottom: 2.2rem;
}
.ins_aboutCon1 .center_box .content1 .word {
  width: 75%;
  color: #FFFFFF;
  text-align: center;
}
.ins_aboutCon1 .center_box .content1 .word .t2 {
  margin-top: 0.3rem;
}
.ins_aboutCon1 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
}
.ins_aboutCon1 .maskBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_aboutCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .center_box .content {
    padding-top: 2rem;
  }
  .ins_aboutCon1 .center_box .content .word {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .center_box .content1 {
    padding-bottom: 1.2rem;
  }
  .ins_aboutCon1 .center_box .content1 .word {
    width: 100%;
    height: auto;
  }
}
.ins_sectionCon1 {
  width: 100%;
  height: 300vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #0e0e0e;
}
.ins_sectionCon1 .maskBox {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ins_sectionCon1 .maskBox .item {
  width: 45.1%;
  border-radius: 0.2rem;
  overflow: hidden;
  position: absolute;
  transform: scale(0.3);
  opacity: 0;
  transform-origin: center center;
  background: #FFFFFF;
  padding: 0.53rem;
}
.ins_sectionCon1 .maskBox .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(-46deg, #b591ff 0%, #5686ff 100%);
  background-image: -webkit-linear-gradient(-46deg, #b591ff 0%, #5686ff 100%);
  background-image: -ms-linear-gradient(-46deg, #b591ff 0%, #5686ff 100%);
  opacity: 0.2;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  top: 0;
  left: 0;
}
.ins_sectionCon1 .maskBox .item .icon {
  width: 2.3rem;
  height: 2.3rem;
  background-image: -moz-linear-gradient(-46deg, #b591ff 0%, #5686ff 100%);
  background-image: -webkit-linear-gradient(-46deg, #b591ff 0%, #5686ff 100%);
  background-image: -ms-linear-gradient(-46deg, #b591ff 0%, #5686ff 100%);
  border-radius: 0.55rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins-SemiBold" !important;
}
.ins_sectionCon1 .maskBox .item .word {
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
  font-size: var(--font26);
  font-weight: 500;
}
.ins_sectionCon1 .maskBox .item0 {
  transform: scale(1);
  opacity: 1;
}
@media (max-width:990px) {
  .ins_sectionCon1 .maskBox .item {
    width: 80%;
  }
}
.ins_technologyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_technologyCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 1.5rem 0;
}
.ins_technologyCon1 .content .center_box {
  width: 81%;
  height: auto;
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
}
.ins_technologyCon1 .content .center_box .t1 {
  font-weight: 500;
}
.ins_technologyCon1 .content .center_box .t2 {
  margin-top: 0.4rem;
}
.ins_technologyCon1 .content .center_box .t2.mt0 {
  margin-top: 0;
}
.ins_technologyCon1 .img_w100 img.wap {
  min-height: 100vh;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_technologyCon1 .content .center_box {
    width: 100%;
    height: auto;
  }
  .ins_technologyCon1 .content .center_box .t2 p {
    display: contents;
  }
}
.ins_technologyCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_technologyCon2 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem 0;
}
.ins_technologyCon2 .content .center_box {
  width: 81%;
  height: auto;
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
}
.ins_technologyCon2 .content .center_box .t1 {
  font-weight: 500;
}
.ins_technologyCon2 .content .center_box .iconS {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_technologyCon2 .content .center_box .iconS img {
  width: 0.8rem;
}
.ins_technologyCon2 .icon {
  width: 50px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  right: 2.08rem;
  bottom: 0.5rem;
  border: 1px solid #FFF;
  border-radius: 50px;
  cursor: pointer;
}
.ins_technologyCon2 .icon .be {
  display: none;
}
.ins_technologyCon2 .img_w100 {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (max-width:990px) {
  .ins_technologyCon2 .img_w100 video,
  .ins_technologyCon2 .img_w100 img {
    min-height: 600px;
    object-fit: cover;
  }
  .ins_technologyCon2 .img_w100 .videoBtn{
    top: 28% !important;
  }
  .ins_technologyCon2 .icon {
    display: none;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon3 .maskBox {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .maskBox .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .maskBox .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.5rem;
  z-index: 10;
}
.ins_aboutCon3 .content .ins_title .t1 {
  color: #FFFFFF;
  font-weight: 500;
}
.ins_aboutCon3 .content .swiper_info {
  width: 3.32rem;
  height: auto;
  position: absolute;
  z-index: 10;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
.ins_aboutCon3 .content .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  opacity: 0;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .centerInfo .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .centerInfo .word {
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.3rem;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .centerInfo .word .t1 {
  font-size: var(--font18) !important; 
}
.ins_aboutCon3 .content .swiper_info .swiper_box .swiper-slide-next {
  opacity: 1 !important;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .swiper-slide-next .centerInfo {
  transform: translateX(170%) translateY(118%) scale(0.8);
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .swiper-slide-active {
  opacity: 1 !important;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .swiper-slide-active .centerInfo {
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .swiper-slide-prev {
  opacity: 1 !important;
}
.ins_aboutCon3 .content .swiper_info .swiper_box .swiper-slide-prev .centerInfo {
  transform: translateX(-165%) translateY(118%) scale(0.8);
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_aboutCon3 .content .swiper_info .idxPageHide {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_aboutCon3 .content .swiper_btn {
  width: 100%;
  flex-shrink: 0;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 10;
  position: absolute;
  bottom: 1rem;
  left: 0;
}
.ins_aboutCon3 .content .swiper_btn .btn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_aboutCon3 .content .swiper_btn .btn i {
  font-size: var(--font24);
  color: #FFF;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_aboutCon3 .content .swiper_btn .btn.next {
  background: none;
}
.ins_aboutCon3 .content .swiper_btn .btn:hover {
  background: #FFFFFF1A;
}
@media (max-width:990px) {
  .ins_aboutCon3 {
    padding: 1.5rem 0.4rem;
    padding-bottom: 5rem;
  }
  .ins_aboutCon3 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 0;
  }
  .ins_aboutCon3 .content .swiper_info {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset;
    left: unset;
    transform: translateX(0);
    margin-top: 1rem;
  }
  .ins_aboutCon3 .content .swiper_info .swiper_box {
    width: 80%;
    height: auto;
  }
  .ins_aboutCon3 .content .swiper_info .swiper_box ul {
    transition-timing-function: linear !important;
  }
  .ins_aboutCon3 .content .swiper_info .swiper_box ul li {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .content .swiper_info .swiper_box ul li .centerInfo {
    opacity: 1;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    transform: translateX(0) translateY(0) scale(1) !important;
  }
  .ins_aboutCon3 .content .swiper_btn {
    display: none;
  }
  .ins_aboutCon3 .maskBox {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ins_aboutCon3 .maskBox .img {
    width: 100%;
    height: 100%;
  }
  .ins_aboutCon3 .maskBox .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: 300vh;
  position: relative;
  z-index: 1;
  background-image: url(../images/svg/bg1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow: hidden;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 1rem 0;
  padding-bottom: 1.2rem;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info {
  width: 100%;
  height: auto;
  padding-top: 0.7rem;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box ul li {
  width: 42%;
  height: auto;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.5rem;
  padding-top: 0.3rem;
  background: #FFFFFF;
  border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .centerInfo .word .t1 {
  font-size: 0.8rem;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-family: "Poppins-SemiBold" !important;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .centerInfo .word .t2 {
  font-size: var(--font30);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .centerInfo .imgBox {
  width: 100%;
  height: 2.68rem;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .centerInfo .imgBox .img {
  width: 100%;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .centerInfo .imgBox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .active {
  width: 59%;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .active .centerInfo .word {
  border-radius: 0;
}
.ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box .active .centerInfo .imgBox .img {
  height: 2.68rem;
}
.ins_aboutCon2 .center_box .maskBox .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  bottom: 0.5rem;
  position: absolute;
  left: 0;
  z-index: 10;
}
.ins_aboutCon2 .center_box .maskBox .icon_box .word {
  font-size: var(--font16);
  color: #999999;
  margin-top: 0.1rem;
}
@media (max-width:990px) {
  .ins_aboutCon2 {
    width: 100%;
    height: auto !important;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .center_box .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon2 .center_box .maskBox .swiper_info {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box ul li {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box ul li .centerInfo {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    background: #FFFFFF;
  }
  .ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box ul li .centerInfo .word {
    padding: 0.8rem 0.5rem;
    padding-bottom: 0.5rem;
  }
  .ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box ul li .centerInfo .imgBox {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .center_box .maskBox .swiper_info .swiper_box ul li .centerInfo .imgBox .img {
    width: 100% !important;
    height: auto !important;
  }
  .ins_aboutCon2 .center_box .maskBox .icon_box {
    display: none;
  }
}
.ins_newCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
  padding-bottom: 0.7rem;
  background-image: url(../images/bg5.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.ins_newCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon5 .center_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.85rem;
}
.ins_newCon5 .center_box .list_box .list {
  font-size: var(--font32);
  color: #666666;
}
.ins_newCon5 .center_box .list_box .list.active {
  color: #000;
  font-weight: 600;
}
.ins_newCon5 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_newCon5 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box {
  width: 59.5%;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img .pb {
  padding-bottom: 67%;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box {
  width: 40.5%;
  padding: 0.5rem;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word {
  width: 100%;
  height: auto;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  color: #333;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .t3 {
  width: 100%;
  height: auto;
  margin-top: 0.22rem;
  color: #666666;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.ins_newCon5 .center_box .swiper_btn {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 10;
  margin-top: 0.6rem;
}
.ins_newCon5 .center_box .swiper_btn .btn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF1A;
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_newCon5 .center_box .swiper_btn .btn i {
  font-size: var(--font24);
  color: #000;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_newCon5 .center_box .swiper_btn .btn.next {
  background: none;
}
.ins_newCon5 .center_box .swiper_btn .btn:hover {
  background: #0000001A;
}
.ins_newCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.4rem;
}
.ins_newCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon6 .center_box .swiper_info {
  width: 100%;
  height: auto;
}
.ins_newCon6 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  padding-top: 1.4rem;
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
  visibility: hidden;
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li .item_box .item {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li .item_box .item .img .pb {
  padding-bottom: 65%;
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li .item_box .item .word .t2 {
  margin-top: 0.13rem;
  color: #333333;
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li .item_box .item:hover {
  transform: scale(1.02);
}
.ins_newCon6 .center_box .swiper_info .swiper_box ul li.swiper-slide-active {
  visibility: visible;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.35rem;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .idxBtn {
  width: 0.98rem;
  height: 0.68rem;
  background: url(../images/bg6.png) no-repeat;
  background-size: 100% 100%;
  flex-shrink: 0;
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font26);
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .idxBtn .swiper-pagination-total {
  display: none;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .idxPro {
  width: 100%;
  height: 2px;
  background: #ececec;
  --width: 10%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .idxPro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--width);
  height: 100%;
  background: #000000;
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .idxPro .icon {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  z-index: 10;
  left: var(--width);
  transform: translateX(-50%);
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
  cursor: pointer;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .swiper_btn {
  width: fit-content;
  flex-shrink: 0;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 10;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .swiper_btn .btn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF1A;
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .swiper_btn .btn i {
  font-size: var(--font24);
  color: #000;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .swiper_btn .btn.next {
  background: none;
}
.ins_newCon6 .center_box .swiper_info .swiperProgressbar .swiper_btn .btn:hover {
  background: #0000001A;
}
@media (max-width:990px) {
  .ins_newCon6 .center_box .swiper_info .swiper_box ul li .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_technologyCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_technologyCon3 .center_box {
  width: 98%;
  height: auto;
}
.ins_technologyCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
.ins_technologyCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_technologyCon3 .center_box .item_box .item .word {
  font-size: var(--font36);
  color: #FFF;
  line-height: 1;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem;
  z-index: 2;
}
.ins_technologyCon3 .center_box .item_box .item .img {
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_technologyCon3 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_technologyCon3 .center_box .item_box .item.grid2 {
  grid-row: span 2;
}
.ins_technologyCon3 .center_box .item_box .item:hover .img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_technologyCon3 {
    padding: 1.5rem 20px;
  }
    .ins_technologyCon3 .center_box { width: 100%; }
  .ins_technologyCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_technologyCon3 .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_technologyCon3 .center_box .item_box .item.grid2 {
    grid-row: unset;
  }
}
.ins_technologyCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_technologyCon4 .center_box {
  width: 98%;
  height: auto;
}
.ins_technologyCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.ins_technologyCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
  gap: 0.2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_technologyCon4 .center_box .item_box .item .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #000000;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_technologyCon4 .center_box .item_box .item.item3 .one,.ins_technologyCon4 .center_box .item_box .item.item1 { height: 100%; }
.ins_technologyCon4 .center_box .item_box .item .one .word {
  font-size: var(--font36);
  color: #FFF;
  z-index: 10;
  line-height: 1;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem;
}
.ins_technologyCon4 .center_box .item_box .item .one .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_technologyCon4 .center_box .item_box .item .one .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_technologyCon4 .center_box .item_box .item .one:hover .img {
  transform: scale(1.03);
}
.ins_technologyCon4 .center_box .item_box .item.item1 {
  width: 27%;
  background: #000000;
}
.ins_technologyCon4 .center_box .item_box .item.item2 {
  width: 26%;
}
.ins_technologyCon4 .center_box .item_box .item.item3 {
  width: 19%;
  background: #000000;
  border-radius: 0.2rem;
  overflow: hidden;
}
@media (max-width:990px) {
  .ins_technologyCon4 {
    padding: 1.5rem 0.4rem;
  }
  .ins_technologyCon4 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_technologyCon4 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
  }
.idx_bannerGasp .content .contBox .center_box .word .t1 { font-size: var(--font70); }
}
.ins_technologyCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.5rem;
}
.ins_technologyCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_technologyCon5 .center_box .textBox {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_technologyCon5 .center_box .textBox .t1 {
  font-weight: 500;
}
.ins_technologyCon5 .center_box .textBox .t1 p {
  background-image: linear-gradient(339deg, #3fbbfe, #a541ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ins_technologyCon5 .center_box .textBox .t2 {
  margin-top: 0.4rem;
  color: #666666;
}
.ins_technologyCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
  margin-top: 1.7rem;
}
.ins_technologyCon5 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #ffffff0d;
  backdrop-filter: blur(6px);
  padding: 1.15rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_technologyCon5 .center_box .item_box .item .icon {
  width: fit-content;
}
.ins_technologyCon5 .center_box .item_box .item .word {
  width: fit-content;
  font-size: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_technologyCon5 .center_box .item_box .item .word span {
  background-image: linear-gradient(339deg, #3fbbfe, #a541ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.ins_technologyCon5 .center_box .item_box .item .word i {
  font-size: var(--font26);
  font-style: unset;
  background-image: linear-gradient(339deg, #3fbbfe, #a541ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 2;
}
.ins_technologyCon5 .img_w100 {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_technologyCon5 .img_w100 img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_technologyCon5 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_technologyCon5 .img_w100 {
    width: 100%;
    height: 100%;
  }
  .ins_technologyCon5 .img_w100 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.4rem;
  padding-bottom: 2.1rem;
  overflow: hidden;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .idx_title .t2 {
  font-weight: 500;
  margin-top: 0.15rem;
  color: #000000;
  position: relative;
  z-index: 1;
  padding-bottom: 0.03rem;
}
.ins_contactCon1 .center_box .idx_title .t2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_contactCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.ins_contactCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_contactCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_contactCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 60%;
}
.ins_contactCon1 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_contactCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.3rem;
  margin-top: 0.35rem;
}
.ins_contactCon1 .center_box .item_box .item .word_box .icon {
  width: fit-content;
  flex-direction: 0;
  font-size: var(--font36);
  background-image: linear-gradient(109deg, #000000 7%, #6f6f6f 91%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.ins_contactCon1 .center_box .item_box .item .word_box .word {
  width: fit-content;
  font-size: var(--font26);
  font-weight: 200;
  color: #000000;
}
.ins_contactCon1 .center_box .item_box .item:hover {
  transform: scale(1.02);
}
@media (max-width:990px) {
  .ins_contactCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 4;
  padding-top: 1.4rem;
  padding-bottom: 1.04rem;
  background: #dfdfdf;
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .idx_title .t2 {
  margin-top: 0.15rem;
}
.ins_contactCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.3rem;
}
.ins_contactCon2 .center_box .item_box .item {
  width: 100%;
  background: #FFFFFF;
  border-radius: 0.1rem;
  grid-column: span 2;
}
.ins_contactCon2 .center_box .item_box .item.grid3 {
  grid-column: span 3;
}
.ins_contactCon2 .center_box .item_box .item.grid6 {
  grid-column: span 6;
}
.ins_contactCon2 .center_box .item_box .item .input {
  width: 100%;
}
.ins_contactCon2 .center_box .item_box .item .input input {
  width: 100%;
  font-size: var(--font20);
  height: 0.85rem;
  min-height: 40px;
  background: none;
  border: 0;
  color: #666666;
  padding-left: 0.3rem;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-input:focus,
.ins_contactCon2 .center_box .item_box .item .input .layui-textarea:focus {
  box-shadow: unset;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-style: unset;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(-50%);
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select .layui-edge::after {
  content: '\e71a';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-family: "iconfont";
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #000000;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-selected .layui-edge {
  transform: translateY(0%) rotate(180deg);
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-selected dl {
  width: 100%;
  height: auto;
  top: calc(100% + 0.1rem);
  bottom: unset;
  background: #f3f3f3;
  border: 0;
  border-radius: 0.08rem;
  padding: 0.24rem 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.3rem;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select dl dd.layui-this {
  background: none;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select dl dd,
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select dl dt {
  line-height: 1.4;
  padding: 0;
  color: #666666;
  background: none !important;
  font-size: var(--font18);
  flex-shrink: 0;
}
.ins_contactCon2 .center_box .item_box .item .input .layui-form-select dl dd.layui-this {
  font-weight: 320;
  color: var(--active_color);
}
.ins_contactCon2 .center_box .item_box .item .input textarea {
  width: 100%;
  height: 3.3rem;
  background: none;
  border: 0;
  padding: 0.3rem;
  font-size: var(--font20);
}
.ins_contactCon2 .center_box .ins_btn {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.3rem;
}
.ins_contactCon2 .center_box .ins_btn .btn {
  width: fit-content;
  height: 0.85rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font20);
  padding: 0 0.75rem;
  color: #666666;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #FFF;
  border: 0;
  cursor: pointer;
}
.ins_contactCon2 .center_box .ins_btn .btn:hover {
  background: var(--active_color);
  color: #FFF;
}
@media (max-width:990px) {
  .ins_contactCon2 .center_box .item_box .item {
    grid-column: span 6 !important;
  }
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.45rem 0;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon1 .center_box a {
  font-size: var(--font16);
  color: #666666;
}
.ins_newCon1 .center_box i {
  font-size: 12px;
  color: #000;
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fafafa;
  padding-top: 1.4rem;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .new_title {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .new_title .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
}
.ins_newCon2 .center_box .content {
  width: 100%;
  height: auto;
  padding: 1.5rem;
  margin-top: 1.5rem;
  font-size: var(--font18);
  background: #FFF;
  border-radius: 0.2rem;
}
.ins_newCon2 .center_box .newContent {
  width: 100%;
  height: auto;
  line-height: 1.6;
}
.ins_newCon2 .center_box .newContent p {
  min-height: 0.5em;
}
.ins_newCon2 .center_box .newContent img {
  border-radius: 0.2rem;
  width: 100% !important;
  height: auto !important;
  max-width: 90%;
  margin: 0px auto;
}
.ins_newCon2 .center_box .newContent video {
  border-radius: 0.2rem;
  width: 100% !important;
  height: auto !important;
  max-width: 90%;
  margin: 0px auto;
}
.ins_newCon2 .center_box .newContent input {
  border-radius: 0.2rem;
  width: 100% !important;
  height: auto !important;
  max-width: 90%;
  display: block;
  margin: auto;
}
.ins_newCon2 .center_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 0.2rem;
  margin-top: 0.68rem;
}
.ins_newCon2 .center_box .list .one {
  width: fit-content;
}
.ins_newCon2 .center_box .list .one .icon {
  width: 0.73rem;
  height: 0.54rem;
  min-width: 60px;
  min-height: 35px;
  background: #fafafa;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_newCon2 .center_box .list .one .icon img {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .list .one .word {
  font-size: var(--font16);
  color: #666666;
  text-align: center;
}
.ins_newCon2 .center_box .nextBox {
  width: 100%;
  height: auto;
  background: #fafafa;
  padding: 0.5rem;
  padding-bottom: 0.75rem;
  border-radius: 0.2rem;
  margin-top: 0.56rem;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .nextBox:hover {
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); 
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); z-index: 2; 
}
.ins_newCon2 .center_box .nextBox .t1 {
  color: #999999;
}
.ins_newCon2 .center_box .nextBox .t2 {
  margin-top: 0.4rem;
  color: #000;
}
.ins_newCon2 .center_box .nextBox .t3 {
  margin-top: 0.12rem;
  color: #333333;
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .content {
    padding: 0.4rem;
  }
}
.ins_newCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
  padding-bottom: 0.7rem;
  background: #fafafa;
}
.ins_newCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .swiper_info {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box {
  width: 59.5%;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img .pb {
  padding-bottom: 67%;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box {
  width: 40.5%;
  padding: 0.5rem;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  color: #333;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .t3 {
  width: 100%;
  height: auto;
  margin-top: 0.22rem;
  color: #666666;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.ins_newCon3 .center_box .swiper_btn {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 10;
  margin-top: 0.6rem;
}
.ins_newCon3 .center_box .swiper_btn .btn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF1A;
  cursor: pointer;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_newCon3 .center_box .swiper_btn .btn i {
  font-size: var(--font24);
  color: #000;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_newCon3 .center_box .swiper_btn .btn.next {
  background: none;
}
.ins_newCon3 .center_box .swiper_btn .btn:hover {
  background: #0000001A;
}
.toUpBox {
  width: 0.66rem;
  height: 0.66rem;
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  border-radius: 50%;
  z-index: 50;
  transform: translateY(80px) scale(0);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.toUpBox img {
  width: 100%;
  height: auto;
}
.toUpBox.active {
  transform: translateY(0) scale(1);
}
.btnSwiper {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 0.65rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  display: none !important;
}
.btnSwiper .w1600 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.btnSwiper .infoBtn {
  width: fit-content;
  height: 0.65rem;
  min-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.16rem;
  padding: 0 0.42rem;
  background: #FFFFFF1A;
  border-radius: 100px;
  pointer-events: initial;
}
.btnSwiper .infoBtn .svgBox {
  width: 8px;
  height: 8px;
  background: #FFF;
  border-radius: 100px;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.btnSwiper .infoBtn .svgBox.active {
  width: 0.32rem;
}
.btnSwiper .infoBtn span {
  width: 8px;
  height: 8px;
  background: #FFF;
  border-radius: 100px;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.btnSwiper .infoBtn .swiper-pagination-bullet-active {
  width: 0.32rem;
}
.idx_productGasp {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.idx_productGasp .maskBox {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  --width: 80%;
  --radius: 0.2rem;
  --tY: translateY(-30%);
}
.idx_productGasp .maskBox .swiper_img {
  width: 100%;
  height: auto;
}
.idx_productGasp .maskBox .swiper_img ul li {
  width: 100%;
  height: auto;
}
.idx_productGasp .maskBox .swiper_img ul li .centerInfo {
  width: var(--width);
  border-radius: var(--radius);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  background: #000;
}
.idx_productGasp .maskBox .swiper_img ul li .centerInfo .img {
  width: 100%;
  height: auto;
  height: 100vh;
  position: relative;
  z-index: 1;
  transform: var(--tY);
}
.idx_productGasp .maskBox .swiper_img ul li .centerInfo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_productGasp .swiper_word {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_productGasp .swiper_word ul li {
  width: 100%;
  height: auto;
}
.idx_productGasp .swiper_word ul li .centerInfo {
  width: 100%;
  height: 100vh;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.65rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  z-index: 5;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box {
  width: 100%;
  height: auto;
  color: #FFF;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word {
  width: 100%;
  height: auto;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 600;
  letter-spacing: 0.35rem;
  transform: translateX(0.145rem);
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word .t1 span {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word .t2 {
  width: 100%;
  height: auto;
  letter-spacing: 0.05rem;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 {
  width: 100%;
  height: auto;
}

.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .font42{font-weight: 600;}

.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.6rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.25rem;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .list .one {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .list .one .imgs {
  width: 0.74rem;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .list .one .icic {
  font-size: var(--font16);
  margin-top: 0.11rem;
  text-align: center;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .idx_more {
  margin-top: 1.5rem;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .idx_more .more {
  pointer-events: initial;
}
.idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .icon {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 40px;
  min-height: 40px;
  margin-top: 0.3rem;
  cursor: pointer;
}
@media (max-width:990px) {
  .idx_productGasp .swiper_word ul li .centerInfo .contBox {
    padding-bottom: 2rem;
  }
}
.idx_bannerGasp {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_bannerGasp .content {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.idx_bannerGasp .content .contBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.65rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  z-index: 5;
}
.idx_bannerGasp .content .contBox .center_box {
  width: 100%;
  height: auto;
  color: #FFF;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx_bannerGasp .content .contBox .center_box .word {
  width: 100%;
  height: auto;
}
.idx_bannerGasp .content .contBox .center_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 600;
  transform: translateX(0.145rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.35rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_bannerGasp .content .contBox .center_box .word .t1 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.35rem;
}
.idx_bannerGasp .content .contBox .center_box .word .t1 .cai1 {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.idx_bannerGasp .content .contBox .center_box .word .t2 {
  width: 100%;
  height: auto;
  letter-spacing: 0.06rem;
}
.idx_bannerGasp .content .contBox .center_box .icon {
  width: 0.5rem;
  height: 0.5rem;
  min-width: 40px;
  min-height: 40px;
  margin-top: 0.3rem;
  cursor: pointer;
}
.idx_bannerGasp .content .maskBox {
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.idx_bannerGasp .content .maskBox .img_w100 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_bannerGasp .content .maskBox .img_w100::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000066;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  top: 0;
  left: 0;
  z-index: 3;
}
.idx_bannerGasp .content .maskBox .img_w100 img,
.idx_bannerGasp .content .maskBox .img_w100 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.Third_Navigation {
  width: 100vw;
  height: auto;
  background: #fafafa;
  position: absolute;
  top: var(--header-height);
  z-index: 20;
 left: 50%;  display: none;
transform: translateX(-50%);
}
.Third_Navigation .navBox1 {
  width: 100%;
  min-height: 1.05rem;
  color: #000;
  gap: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.14rem 0;
  position: relative;
}
.Third_Navigation .navBox1 .oneT {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;

  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  color: #000;
}
.Third_Navigation .navBox1 .oneT .img {
  width: 0.4rem;
  height: 0.4rem;
  min-width: 30px;
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.Third_Navigation .navBox1 .oneT .word {
  font-size: var(--font14);
  color: #666666;
  margin-top: 0.17rem;
}
.Third_Navigation .navBox1 .oneT.active {
  opacity: 1;
}
.Third_Navigation .navBox1 .oneT:hover .word {
	color: var(--active_color);
}
.Third_Navigation.active {
  background: #FFFFFFb5;
  backdrop-filter: blur(10px);
  top: 0;
}
.popup_language {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background: #00000083;
  backdrop-filter: blur(10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 0;
  visibility: hidden;
}
.popup_language .language_box {
  width: 5rem;
  height: auto;
  min-width: 400px;
  background: #FFFFFF;
  border-radius: 0.2rem;
  position: relative;
  z-index: 1;
}
.popup_language .language_box .icon_colse {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  cursor: pointer;
}
.popup_language .language_box .icon_colse i {
  font-size: var(--font20);
}
.popup_language .language_box .title {
  width: 100%;
  height: auto;
  padding: 0.5rem;
  border-bottom: 1px solid #f6f6f6;
}
.popup_language .language_box .item_box {
  width: 100%;
  height: auto;
  padding: 0.42rem 0.52rem;
  padding-top: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.08rem;
}
.popup_language .language_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.14rem 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font18);
  border-radius: 0.06rem;
  color: #333;
}
.popup_language .language_box .item_box .item:hover {
  background: #f6f6f6;
}
.popup_language .language_box .item_box .item span:last-child {
  color: #999999;
}
.popup_language.active {
  opacity: 1;
  visibility: visible;
}
.popup_language .language_box .item_box .item span:first-child { display: none; }
footer .item_box .item .one:first-child {
  font-weight: 800;
  line-height: 1.4;

}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.bgImg_full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .list_icon .one {
  width: 0.32rem;
  height: 0.32rem;
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
  background: #ffffffaf;
  backdrop-filter: blur(10px);
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}

.popVideoMain{position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 999; background-color: rgba(0,0,0,0.5); backdrop-filter: blur(15px); display: none;}
.popVideoBox{position: absolute; left: 0px; top: 0px; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;}
.popVideo{max-width: 1100px; margin:auto; width: 90%; position: relative;}
.closePopVideo{position: absolute; right: 0px; top: -0.7rem; width: 0.7rem; height: 0.7rem; display: flex; justify-content: center; align-items: center; cursor: pointer;}
.closePopVideo i{display: block; width: 0.5rem; height: 0.5rem; transform: rotate(45deg);}
.closePopVideo i::after{content: ''; width: 100%; height: 2px; background-color: #fff; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);}
.closePopVideo i::before{content: ''; width: 2px; height: 100%; background-color: #fff; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);}
.videoPlay video{width: 100%; display: block;}


@media (max-width:990px) {
  .videoBtn{position: absolute; left: 50%; top: 40%; width: 0.9rem; height: 0.9rem; transform: translate(-50%,-50%); z-index: 10; background-image: url(../images/i1.png); background-repeat: no-repeat; background-size: cover;}



  .idx_bannerGasp2 .swiper_word ul li .centerInfo{
    padding: 0.65rem 0 2rem !important;
  }
  .idx_bannerGasp2 .swiper_word ul li .centerInfo .word .t1 p{
    letter-spacing:0.46rem !important;
    transform: translateX(0.24rem) !important
  }
  .idx_title .t1{text-align: center;}

  .idx_productGasp .swiper_word ul li .centerInfo .contBox .center_box .word1 .font42 span{display: block;}
  .ins_productCon1 .content_info .content .center_box .ins_title .font42 span{display: block;}
  .ins_productCon2 .content .center_box .ins_title .t1 span{display: block;}

  .btnSwiper {
    width: 100%;
    height: auto;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .btnSwiper .w1600 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .search_for .logo {
    display: none;
  }
  .search_for .center_boxS .search_in {
    width: 100%;
  }
  .search_for .center_boxS .souSuoBox {
    width: 94%;
  }
  .popup_language .language_box {
    min-width: unset;
    width: 90%;
  }
  .ins_technologyCon3 .center_box .item_box .item .img,
  .ins_technologyCon4 .center_box .item_box .item .one .img {
    height: auto;
  }
  .ins_technologyCon3 .center_box .item_box .item .img img,
  .ins_technologyCon4 .center_box .item_box .item .one .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ins_technologyCon5 .center_box .textBox .t2 p {
    display: contents;
  }
  .ins_technologyCon5 .center_box .textBox .t2 br{display: none;}
}



.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img .pb .ab img {
  transition: all 0.5s ease;
}
.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo:hover .left_box .img .pb .ab img {
  transform: scale(1.02);
}

.ins_newCon5 .center_box .swiper_info .swiper_box ul li .centerInfo:hover .right_box .word .t1 {
  color: var(--active_color);
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img .pb .ab img {
  transition: all 0.5s ease;
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo:hover .left_box .img .pb .ab img {
  transform: scale(1.02);
}
.ins_newCon3 .center_box .swiper_info .swiper_box ul li .centerInfo:hover .right_box .word .t1 {
  color: var(--active_color);
}

.ins_productCon7 .center_box .swiper_info .swiper_word ul li .centerInfo .idx_more .more.active { background: var(--active_color) !important; }

.idx_app .center_box .item_box .item .img { position: relative; }
.idx_app .center_box .item_box .item .img::after { content:''; position: absolute; bottom: 0; right: 0; width: 100%; height: 100%; background: #0000003d;  }
@media (max-width:990px) {
  .ins_productCon7 .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb .ab .one { transform: scale(1) !important; }
  .idx_bannerGasp .content .contBox .center_box .word .t1 { font-size: 40px;  }
  .idx_bannerGasp .content .contBox .center_box .word .t1 p { gap: 12px; }
  .idx_bannerGasp .content .contBox .center_box .word .t1 { gap: 12px; }
  .idx_bannerGasp .content .contBox .center_box .word .t2 { font-size: 16px; letter-spacing: 3px; }
}

@media (max-width:990px) {
  .ins_productCon3.posFix {
    top: 50px !important;
  }
  .ins_productCon3 .center_box .left_box {
    display: none;
  }
  .ins_productCon3 .center_box .right_box {
    width: 100%;
    max-width: 100%;
    overflow: auto;
  }
  .ins_productCon3 .center_box .right_box .item_box .item {
     white-space: nowrap;
     height: 50px; 
     display: flex;
     align-items: center;
     justify-content: center;
  }
  .ins_productCon2 .content .center_box .idx_more { display: none; }
}

.ins_productCon1 .swiper_cont .swiper_info .swiper_word ul li.swiper-slide-active { z-index: 20; pointer-events: initial; } 
.ins_productCon7 .center_box .swiper_info .swiper_word ul li.swiper-slide-active { z-index: 20; pointer-events: initial; } 

.idx_bannerGasp .content .contBox .center_box .icon { display: none; }

.idx_productGasp .maskBox .swiper_img ul li { opacity: 1 !important; }
.idx_productGasp .maskBox .swiper_img ul li.swiper-slide-active { z-index: 10; }
.Third_Navigation .navBox1 .oneT{ cursor: pointer; }
.ins_technologyCon2 .content .center_box .iconS { display: none; }
.ins_contactCon1 .center_box .item_box .item .word_box .word { font-family: "SourceHanSansCN"; }
.idx_app .center_box .item_box { gap: 0.2rem; }
.idx_about .center_box .idx_title .idx_more { margin-top: 0.5rem; }
.idx_about .center_box .idx_title .idx_more .more { border-color: #000; color: #000; }
.idx_about.active .center_box .idx_title .idx_more .more { border-color: #FFF; color: #FFF; }
header .header_box .center_box .column_left .logo_box img { width: 1.97rem; }
header .header_box .center_box .column_left .logo_box .logo { max-width: unset; }
.idx_app .center_box .item_box .item:hover .img { transform: scale(1.2); }
footer .footer_box .footer_center .foot_left .content .cont .conInfo { display: block !important; }
footer .footer_box .footer_center .foot_left .content .list,
footer .footer_box .footer_bottom .foot_right .right .tit { display: none !important; }
.ins_technologyCon1 .img_w100 img { min-height: 100vh; object-fit: cover; }

.ins_aboutCon2 { height: 600vh; }


.idx_bannerGasp2 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.idx_bannerGasp2 .maskBox {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  --width: 100%;
  --radius: 0;
  --tY: translateY(0%);
}
.idx_bannerGasp2 .maskBox .swiper_img {
  width: 100%;
  height: auto;
}
.idx_bannerGasp2 .maskBox .swiper_img ul li {
  width: 100%;
  height: auto;
}
.idx_bannerGasp2 .maskBox .swiper_img ul li .centerInfo {
  width: var(--width);
  border-radius: var(--radius);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  background: #000;
}
.idx_bannerGasp2 .maskBox .swiper_img ul li .centerInfo .img {
  width: 100%;
  height: auto;
  height: 100vh;
  position: relative;
  z-index: 1;
  transform: var(--tY);
}
.idx_bannerGasp2 .maskBox .swiper_img ul li .centerInfo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_bannerGasp2 .swiper_word {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_bannerGasp2 .swiper_word ul li {
  width: 100%;
  height: auto;
}
.idx_bannerGasp2 .swiper_word ul li .centerInfo {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: end;
  padding: 0.65rem 0;
}



.idx_bannerGasp2 .swiper_word ul li .centerInfo .word {
  width: 100%;
  height: auto;
}
.idx_bannerGasp2 .swiper_word ul li .centerInfo .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 600;
  transform: translateX(0.145rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
}
.idx_bannerGasp2 .swiper_word ul li .centerInfo .word .t1 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.35rem;
  letter-spacing: 0.35rem;
  transform: translateX(0.16rem);
}
.idx_bannerGasp2 .swiper_word ul li .centerInfo .word .t1 .cai1 {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.idx_bannerGasp2 .swiper_word ul li .centerInfo .word .t2 {
  width: 100%;
  height: auto;
  letter-spacing: 0.06rem;
  color: #FFFFFF;
}



.idx_bannerGasp2 .content {
  width: 100%; height: 100%; position: absolute;
}

.idx_bannerGasp2 .maskBox .swiper_img ul li .centerInfo .img_w100 video,
.idx_bannerGasp2 .maskBox .swiper_img ul li .centerInfo .img_w100 img { width: 100%; height: 100vh; object-fit: cover; }

[lang="zh-Hans"] *{
  font-family: "Open Sans", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", "Hiragino Sans GB", "WenQuanYi Micro Hei", Arial, sans-serif;
}