@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  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: "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;
  overflow-x: hidden;
}
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.swiper-wrapper,
ol.swiper-slide,
li.swiper-slide {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
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.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s 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;
}
.ab img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* 图片 水平垂直 居中 */
.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.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: grow5 0.5s linear; } } */
@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;
  }
}
@keyframes grow3 {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes grow4 {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@keyframes grow6 {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes grow5 {
  0% {
    transform: translateY(-100%);
    top: 0;
  }
  100% {
    transform: translateY(0%);
    top: 100%;
  }
}
/* 旋转 */
/* 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%;
}
.imgVideo {
  width: 100%;
  height: auto;
}
.imgVideo img,
.imgVideo video {
  width: 100%;
  height: auto;
}
:root {
  /* COLOR */
  --active_color: #2EC6D6;
  --color_fff: #ffffff;
  --color_text: #282828;
  --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(17px, 0.24rem, 24px);
  --font26: clamp(18px, 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);
}
.font180 {
  font-size: 1.8rem;
}
/* 间距 */
.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;
}
.pb80 {
  padding-bottom: 0.8rem !important;
}
.mt0 {
  margin-top: 0 !important;
}
.pt80 {
  padding-top: 0.8rem !important;
}
.pb160 {
  padding-bottom: 1.6rem !important;
}
/* 文字颜色 */
.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);
}
.CoFF {
  color: var(--color_fff);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-ExtraLight.otf");
  font-weight: 100;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Light.otf");
  font-weight: 200;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Normal.otf");
  font-weight: normal;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Demibold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Semibold.otf");
  font-weight: 700;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Heavy.otf");
  font-weight: 900;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Light.otf");
  font-weight: 300;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1780,
.container,
.wrap {
  width: 100%;
  max-width: 1780px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1780,
  .container,
  .wrap {
    max-width: 92.70833333%;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 0.94rem;
  font-size: var(--font16);
  color: #000000;
  font-family: "MiSans";
}
main.active {
  --header-height: 0.7rem;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: calc(var(--header-height) + 44px);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width:990px) {
  .head_nbsp {
    height: var(--header-height);
  }
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.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;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img {
  width: 100%;
  height: auto;
}
.banner_img img.wap {
  min-height: 400px;
  object-fit: cover;
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background: linear-gradient(90deg, #25E9FE 0%, #FFF 93.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.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: 5px;
    height: 5px;
    background: #FFF;
    opacity: 1;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color) !important;
  }
}
/* --------------------------------------------------------------- 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.12rem;
}
.idxPageShow span {
  width: 0.4rem;
  height: 0.08rem;
  border-radius: 100px;
  opacity: 1;
  background: #FFFFFF33;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idxPageShow span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--active_color);
  left: 0;
  right: 0;
}
.idxPageShow .swiper-pagination-bullet-active {
  opacity: 1;
  width: 0.96rem;
}
.idxPageShow .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 5s linear;
}
.idxPageShow2 {
  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.04rem;
}
.idxPageShow2 span {
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 0;
  opacity: 1;
  background: none;
  border: 1px solid #CCCCCC;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idxPageShow2 .swiper-pagination-bullet-active {
  opacity: 1;
  border-color: var(--active_color);
  background: var(--active_color);
}
/* --------------------------------------------------------------- 吸顶 */
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
.grid-2 {
  grid-row: span 2;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.grid_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid_6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid_7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid_8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid_1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.top_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;
}
.imgScale img {
  transform: scale(1.5);
  -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;
}
.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;
}
.fw900 {
  font-weight: 900 !important;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
  z-index: 50;
}
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;
}
.layui-input:focus,
.layui-textarea:focus {
  box-shadow: unset;
  border-color: var(--active_color) !important;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-weight: normal;
}
* {
  scrollbar-color: #c2c2c2 #000;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
/* 头部-导航栏 */
.tY100 {
  transform: translateY(-100%);
}
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
.wowUp2 {
  opacity: 0;
}
.wowFg {
  overflow: hidden;
}
.wowFg span {
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@keyframes color1 {
  0% {
    color: #ffffff;
  }
  50% {
    color: var(--active_color);
  }
  100% {
    opacity: 1;
    color: #FFF;
  }
}
.colorFFF.active span {
  animation: color1 1s forwards;
  color: #FFF;
}
@keyframes color2 {
  0% {
    color: #000000;
  }
  33% {
    color: var(--active_color);
  }
  66% {
    color: #005777;
  }
  100% {
    opacity: 1;
    color: #000000;
  }
}
.color000.active span {
  animation: color2 1.5s forwards;
  color: #000000;
}
/* --------------------------------------------------------------- 新增公共组件 */
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.5;
}
.newContent p {
  min-height: 0.5em;
}
.newContent img {
  width: unset !important;
  height: unset !important;
}
.idx_more {
  width: 100%;
  height: auto;
}
.idx_more .more {
  width: fit-content;
  padding: 0.18rem 0.3rem;
  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.8rem;
  color: #FFFFFF4D;
  border-radius: 100px;
  border: 1px solid #FFFFFF4D;
  font-size: var(--font16);
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #FFFFFF;
}
.idx_more .more .tex {
  width: fit-content;
  position: relative;
  z-index: 2;
}
.idx_more .more .svg {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 100px;
  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-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_more .more .svg::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: var(--active_color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: 1000px;
}
.idx_more .more .svg i {
  font-size: var(--font20);
  font-weight: 700;
  transform: scale(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_more .more:hover {
  border-color: #2EC6D600 !important;
  color: #FFFFFF !important;
}
.idx_more .more:hover .svg::after {
  width: 8rem;
  height: 8rem;
}
.idx_more .more:hover .svg i {
  transform: scale(1);
}
.idx_more .more.bor00 {
  border-color: #000;
  color: #000;
}
.swiper_switch {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
@media (max-width:990px) {
  .swiper_switch {
    display: none;
  }
}
.swiper_icon {
  width: 0.56rem;
  height: 0.56rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid #FFFFFF66;
  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;
}
.swiper_icon img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}
.swiper_icon i {
  color: #FFF;
  font-size: var(--font20);
}
.swiper_icon:hover {
  background: var(--active_color) !important;
  border-color: var(--active_color) !important;
}
.swiper_icon:hover img {
  filter: unset;
}
/* <div class="light_beam"><div class="pagerBtn"></div></div> */
.light_beam {
  width: 100%;
  height: 7.78rem;
  position: absolute;
  top: 0;
  left: 0;
  mask-image: url(../images/bg1.png);
  mask-repeat: no-repeat;
  mask-position: 70% 50%;
  mask-size: 40.57%;
}
.light_beam .pagerBtn {
  width: 6rem;
  height: 6rem;
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 1702.569px;
  background: linear-gradient(180deg, #21E1F7 0%, #134A91 100%);
  filter: blur(150px);
  pointer-events: none;
  top: 50%;
  left: 50%;
}
@media (max-width:990px) {
  .light_beam {
    mask-size: 100%;
    transform: scale(1);
  }
}
.small_light {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mask-image: url(../images/bg3.png);
  mask-repeat: no-repeat;
  mask-position: 0% 15%;
  mask-size: auto;
  opacity: 0.4;
}
.small_light .pagerBtn {
  width: 3rem;
  height: 3rem;
  position: fixed;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 1702.569px;
  top: 50%;
  left: 50%;
  z-index: 10;
  background-image: radial-gradient(circle, #21E1F7 0%, rgba(33, 225, 247, 0) 100%);
  pointer-events: none;
}
.img_light {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  mask-image: url(../images/bg3.png);
  mask-repeat: no-repeat;
  mask-position: 0% 15%;
  mask-size: auto;
  opacity: 0.4;
}
.img_light .pagerBtn {
  width: 3rem;
  height: 3rem;
  position: fixed;
  transform: translateY(-50%) translateX(-50%);
  border-radius: 1702.569px;
  top: 50%;
  left: 50%;
  z-index: 10;
  background-image: radial-gradient(circle, #21E1F7 0%, rgba(33, 225, 247, 0) 100%);
  pointer-events: none;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 700;
  font-size: var(--font64) !important;
}
.idx_title .t2 {
  margin-top: 0.2rem;
  font-weight: 500;
  font-size: var(--font32) !important;
}
.idx_title .t3 {
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 0.24rem;
}
.idx_title .t4 {
  color: #FFF;
  margin-top: 0.2rem;
  font-weight: 200;
}
.idx_title .t5 {
  color: #FFF;
  margin-top: 0.2rem;
  font-weight: 200;
}
.idx_title .t5 p {
  width: 100%;
  height: auto;
  padding-left: 0.2rem;
  position: relative;
  z-index: 1;
}
.idx_title .t5 p::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #FFF;
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0.5em;
  left: 0.05rem;
}
@media (max-width:990px) {
  .idx_title {
    text-align: start !important;
  }
  .idx_title * {
    text-align: start !important;
  }
}
.idx_more2 {
  width: 100%;
  height: auto;
}
.idx_more2 .more {
  width: fit-content;
  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.08rem;
  font-size: var(--font16);
}
.idx_more2 .more span {
  color: #FFFFFFB2;
  font-weight: 200;
}
.idx_more2 .more i {
  width: 0.24rem;
  height: 0.24rem;
  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;
  border-radius: 100px;
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_more3 {
  width: 100%;
  height: auto;
}
.idx_more3 .more {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 100px;
  border: 1px solid #FFFFFF66;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.swiper_line {
  width: 100%;
  height: 2px;
  position: relative;
  z-index: 1;
  background: #0000001A;
  display: flex;
  margin-top: 0.46rem;
}
.swiper_line span {
  background: var(--active_color) !important;
}
.particle_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}
.idx_homeCon1 .pin-spacer {
  pointer-events: none;
}
.idx_homeCon1 .mask_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0%;
  left: 0;
  padding-top: 2.23rem;
  z-index: 8;
  pointer-events: none;
}
.idx_homeCon1 .mask_box .center_box {
  width: 100%;
  height: 100%;
}
.idx_homeCon1 .mask_box .center_box .swiper_word {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_homeCon1 .mask_box .center_box .swiper_word .centerInfo {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .mask_box .center_box .swiper_word .centerInfo .word {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .mask_box .center_box .swiper_word .centerInfo .word .t1 {
  font-weight: 900;
  color: #FFFFFF;
}
.idx_homeCon1 .mask_box .center_box .swiper_word .centerInfo .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
  pointer-events: initial;
}
.idx_homeCon1 .mask_box .center_box .btnBox {
  position: absolute;
  bottom: 0.66rem;
  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.1rem;
}
.idx_homeCon1 .mask_box .center_box .btnBox img {
  max-width: 0.2rem;
}
.idx_homeCon1 .mask_box .center_box .btnBox span {
  color: var(--active_color);
  opacity: 0.4;
}
.idx_homeCon1 .mask_box2 {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0%;
  left: 0;
  z-index: -1;
}
.idx_homeCon1 .mask_box2 .leftImg {
  width: 15rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: initial;
  transform: translateY(-50%) translateX(-50%);
}
.idx_homeCon1 .mask_box2 .leftImg img {
  position: relative;
  width: 100%;
  height: auto;
}
.idx_homeCon1 .content1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  margin-top: 7.88rem;
  background: #000;
}
.idx_homeCon1 .content1 .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.idx_homeCon1 .content1 .swiper_box ul li {
  width: 0%;
  height: auto;
}
.idx_homeCon1 .content1 .swiper_box ul li .contentb {
  width: 100%;
  height: 100%;
  position: absolute;
  padding-top: 1.8rem;
}
.idx_homeCon1 .content1 .swiper_box ul li .contentb .centerInfo2 {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .content1 .swiper_box ul li .contentb .centerInfo2 .word {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .content1 .swiper_box ul li .contentb .centerInfo2 .word .t1 {
  font-weight: 900;
  color: #FFFFFF;
}
.idx_homeCon1 .content1 .swiper_box ul li .contentb .centerInfo2 .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
  pointer-events: initial;
}
.idx_homeCon1 .content1 .swiper_box ul li .banner_img {
  width: 100%;
  height: 100vh;
}
.idx_homeCon1 .content1 .swiper_box ul li .banner_img img,
.idx_homeCon1 .content1 .swiper_box ul li .banner_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon1 .content1 .content {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.66rem;
  z-index: 5;
}
.idx_homeCon1 .content1 .content .w1780 {
  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_homeCon1 .content1 .content .w1780 .center_box {
  width: 25.6%;
  height: auto;
  position: relative;
  z-index: 1;
  background: linear-gradient(86deg, rgba(0, 28, 37, 0) 21.17%, #000 100%);
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item .centerInfo {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item .centerInfo .left_box {
  width: 49%;
  position: relative;
  z-index: 2;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item .centerInfo .left_box .img {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item .centerInfo .left_box .img .pb {
  padding-bottom: 70%;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item .centerInfo .left_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item .centerInfo .right_box {
  width: 51%;
  padding: 0.16rem;
  position: relative;
  z-index: 1;
  border: 1px solid #065861;
  border-bottom-right-radius: 0.16rem;
  border-top-right-radius: 0.16rem;
  border-left: 0;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item .centerInfo .right_box .word {
  color: #FFF;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 500;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn {
  width: 51%;
  bottom: 0;
  z-index: 5;
  position: absolute;
  right: 0;
  padding: 0.16rem;
  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;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn .swiper_switch {
  gap: 0.06rem;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn .swiper_switch .swiper_icon {
  background: #000000;
  width: 0.24rem;
  height: 0.24rem;
  border-color: #FFF;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn .swiper_line {
  width: 30%;
  height: 1px;
  background: #FFFFFF4D;
  position: relative;
  z-index: 1;
  margin-top: 0;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn .swiper_line::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  top: 0;
  left: 0;
  transition: all 0s linear;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn .swiper_line.active::after {
  width: 100%;
  transition: all 5s linear;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn .idxNumber {
  width: fit-content;
  color: #FFFFFF80;
  font-weight: 200;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn .idxNumber .swiper-pagination-current {
  color: #FFF;
}
.idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn .idxNumber span {
  font-size: var(--font16);
}
@media (max-width:990px) {
  .idx_homeCon1 .content1 .content .w1780 .center_box {
    width: fit-content;
    height: auto;
    background: none;
  }
  .idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item {
    display: none;
  }
  .idx_homeCon1 .content1 .content .w1780 .center_box .swiper_item .centerInfo {
    flex-direction: row;
  }
  .idx_homeCon1 .content1 .content .w1780 .center_box .swiper_btn {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
}
.idx_homeCon1 .idxPageShow {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  z-index: 5;
  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;
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 6;
  padding-top: 1.2rem;
  background: linear-gradient(187deg, #82E1F6 -28.78%, #FFF 57.41%);
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon2 .images_box .img {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .images_box .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .images_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.idx_homeCon2 .images_box .item_box .item {
  width: 0;
  height: 0;
  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;
}
.idx_homeCon2 .images_box .item_box .item .icon {
  width: 0.59rem;
  height: 0.59rem;
  background: #2EC6D6CC;
  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;
  border-radius: 100px;
}
.idx_homeCon2 .images_box .item_box .item .icon::after {
  content: '';
  position: absolute;
  width: 0.14rem;
  height: 0.14rem;
  background: #FFF;
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_homeCon2 .images_box .item_box .item .icon i {
  width: 100%;
  height: 100%;
  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;
}
.idx_homeCon2 .images_box .item_box .item .icon i::after {
  content: '';
  position: absolute;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--active_color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  animation: grow4 5s linear infinite;
}
.idx_homeCon2 .images_box .item_box .item .icon i::before {
  content: '';
  position: absolute;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--active_color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  animation: grow4 6s linear infinite;
}
.idx_homeCon2 .images_box .item_box .item .word_box {
  width: 4.52rem;
  height: auto;
  position: absolute;
  padding: 0.22rem 0.2rem;
  top: 0.5rem;
  border-radius: 0.16rem;
  transform: translateX(-1rem);
  left: 0;
  background: linear-gradient(88deg, rgba(0, 0, 0, 0.8) -23.21%, rgba(0, 28, 37, 0) 101.24%);
  backdrop-filter: blur(12px);
  border: 1px solid #2ec5d6cc;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.34);
}
.idx_homeCon2 .images_box .item_box .item .word_box::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 13px;
  background: url(../images/icon7.png);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 100%;
  left: 0.8rem;
}
.idx_homeCon2 .images_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon2 .images_box .item_box .item .word_box .word .t1 {
  width: 100%;
  height: auto;
  font-size: var(--font32) !important;
  font-weight: 500;
}
.idx_homeCon2 .images_box .item_box .item .word_box .word .t2 {
  font-weight: 200;
  color: #FFFFFFB2;
  margin-top: 0.06rem;
  font-size: var(--font24);
}
.idx_homeCon2 .images_box .item_box .item .word_box .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.36rem;
}
.idx_homeCon2 .images_box .item_box .item .word_box .small_light {
  pointer-events: none;
}
.idx_homeCon2 .images_box .item_box .item:hover .word_box {
  opacity: 1;
  visibility: visible;
}
@media (max-width:990px) {
  .idx_homeCon2 .images_box .item_box .item .word_box {
    width: 2.6rem;
    padding: 0.2rem;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  background: #000;
}
.idx_homeCon3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.35rem;
}
.idx_homeCon3 .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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 1.17rem;
}
.idx_homeCon3 .center_box .content .swiper_box {
  width: 27.6%;
  height: auto;
  padding-top: 1.3rem;
}
.idx_homeCon3 .center_box .content .swiper_box ul li {
  width: 0%;
  height: auto;
}
.idx_homeCon3 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  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-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: scale(0.8) translateY(0%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.idx_homeCon3 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 101%;
}
.idx_homeCon3 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab {
  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;
}
.idx_homeCon3 .center_box .content .swiper_box ul li .centerInfo .word {
  position: absolute;
  z-index: 5;
  bottom: 0.55rem;
  text-align: center;
  color: #FFF;
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.idx_homeCon3 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  text-align: center;
  font-size: var(--font28) !important;
  font-weight: 500;
  color: var(--active_color);
}
.idx_homeCon3 .center_box .content .swiper_box ul li .centerInfo .word .t2 {
  font-weight: 100;
  font-size: var(--font24) !important;
}
.idx_homeCon3 .center_box .content .swiper_box ul li .centerInfo .number {
  position: absolute;
  top: 0;
  text-align: center;
  width: max-content;
  font-weight: 900;
  opacity: 0.12;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 14.85%, #75E0E5 86.73%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-60%) scale(0) translateX(-1rem);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.idx_homeCon3 .center_box .content .swiper_box ul li.swiper-slide-active .centerInfo {
  transform: scale(1) translateY(0);
}
.idx_homeCon3 .center_box .content .swiper_box ul li.swiper-slide-active .centerInfo .number {
  transform: translateY(-60%) scale(1) translateX(0rem);
}
.idx_homeCon3 .center_box .content .swiper_box ul li.swiper-slide-active .centerInfo .word {
  opacity: 1;
}
.idx_homeCon3 .center_box .content .swiper_icon {
  position: relative;
  z-index: 5;
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
  .idx_homeCon3 .center_box .content .swiper_icon {
    display: none;
  }
  .idx_homeCon3 .center_box .content .swiper_box {
    width: 70%;
  }
  .idx_homeCon3 .center_box .content .swiper_box ul li .centerInfo .number {
    font-size: 1rem;
  }
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box {
    padding-bottom: 0.8rem;
  }
}
.idx_homeCon3 .bgImg_adap {
  width: 100%;
  height: 100%;
  bottom: 0;
  top: unset;
}
.idx_homeCon3 .bgImg_adap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon4 {
  width: 100%;
  height: 350vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.idx_homeCon4 .mask_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.idx_homeCon4 .mask_box .light_beam {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  mask-image: url(../images/bg6.png);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
}
.idx_homeCon4 .mask_box .bgImg1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.idx_homeCon4 .mask_box .content1 {
  width: 100%;
  height: 100%;
  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: 6;
}
.idx_homeCon4 .content2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}
.idx_homeCon4 .content2 .path_slider {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.idx_homeCon4 .content2 .path_slider .slider_item {
  width: 0;
  height: 0;
  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;
  opacity: 1;
  transform: var(--scale1);
}
.idx_homeCon4 .content2 .path_slider .slider_item .img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.16rem;
  background: linear-gradient(135deg, #0EC6D6 -398.93%, rgba(14, 198, 214, 0.06) 67.86%);
  position: absolute;
}
.idx_homeCon4 .content2 .path_slider .slider_item .img img {
  opacity: var(--opacity);
}
.idx_homeCon4 .content2 .path_slider .imgbgImg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
}
.idx_homeCon4 .content2 .path_slider .imgbgImg img {
  width: 100%;
  height: auto;
  max-height: unset;
}
.idx_homeCon5 {
  width: 100%;
  height: 400vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.idx_homeCon5 .mask_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  --clip_path: polygon(50% 100%, 50% 100%, 50% 100%, 50% 100%);
}
.idx_homeCon5 .mask_box .content1 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  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;
}
.idx_homeCon5 .mask_box .content1 .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;
}
.idx_homeCon5 .mask_box .content1 .content .svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_homeCon5 .mask_box .content1 .content .svg svg {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content1 .content .aircraftBox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.idx_homeCon5 .mask_box .content1 .content .aircraftBox .item {
  width: 0;
  height: 0;
  background: darkred;
  position: relative;
}
.idx_homeCon5 .mask_box .content1 .content .aircraftBox .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--active_color);
  width: 0.25rem;
  height: 2px;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(80%);
  box-shadow: 0 0 12px 4px var(--active_color);
}
.idx_homeCon5 .mask_box .content1 .Con5_img {
  width: 27.55rem;
  height: 23.55rem;
  position: fixed;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
}
.idx_homeCon5 .mask_box .content1 .Con5_img img {
  opacity: 0.5;
}
.idx_homeCon5 .mask_box .content2 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  clip-path: var(--clip_path);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.idx_homeCon5 .mask_box .content2 .swiper_box {
  width: 100%;
  height: 100vh;
  background: #000;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul {
  transition-timing-function: linear !important;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li {
  width: auto;
  height: auto;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo1 {
  width: 100%;
  height: 100%;
  color: #FFFFFF;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo1 .imgs {
  width: 100%;
  height: 100%;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo1 .imgs img,
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo1 .imgs video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content {
  width: 100vw;
  height: 100vh;
  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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: var(--header-height);
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item {
  width: 100%;
  height: auto;
  background-image: url(../images/bg11.png);
  background-size: 100% auto;
  background-position: center center;
  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;
  padding: 0.2rem 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item .top_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;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item .top_box .left {
  width: fit-content;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item .top_box .left .t1 {
  font-size: 0.96rem;
  font-weight: 700;
  background: linear-gradient(90deg, #25E9FE 0%, #FFF 93.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item .top_box .left .t1 i {
  font-style: unset;
  font-size: var(--font40);
  background: linear-gradient(90deg, #25E9FE 0%, #FFF 93.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item .top_box .left .t2 {
  font-size: var(--font32);
  font-weight: 500;
  color: #FFFFFF;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item .top_box .rigth {
  width: fit-content;
  font-size: var(--font18) !important;
  opacity: 0.5;
  font-weight: 200;
  color: #FFFFFF;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item .icon_box {
  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;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item .icon_box .icon {
  width: 1.38rem;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item .icon_box .icon img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .content .item_box .item.grid2 .icon_box {
  margin-top: 0.3rem;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 {
  width: 100%;
  height: 100%;
  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;
  color: #FFF;
  gap: 0.9rem;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box1 {
  width: 9.18rem;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box1 .img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box1 .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box1 .word {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box1 .word .t1 {
  font-size: var(--font40) !important;
  font-weight: 500;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box1 .word .t2 {
  margin-top: 0.18rem;
  font-size: var(--font24) !important;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box2 {
  width: 13rem;
  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;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box2 .img {
  width: 45%;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box2 .word {
  width: 53%;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box2 .word .t1 {
  font-size: var(--font40) !important;
  font-weight: 500;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box2 .word .t2 {
  margin-top: 0.24rem;
  font-size: var(--font24) !important;
}
.idx_homeCon5 .mask_box .content2 .swiper_box ul li .centerInfo2 .img_box2 .word .idx_more {
  margin-top: 0.8rem;
}
.idx_homeCon5 .mask_box .content2 .bgImg {
  width: 68.64%;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
}
.idx_homeCon5 .mask_box .content3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: none;
  margin-top: 0.6rem;
}
.idx_homeCon5 .mask_box .content3 .centerInfo1 {
  width: 100%;
  height: 100%;
  color: #FFFFFF;
}
.idx_homeCon5 .mask_box .content3 .centerInfo1 .imgs {
  width: 100%;
  height: 100%;
}
.idx_homeCon5 .mask_box .content3 .centerInfo1 .imgs img,
.idx_homeCon5 .mask_box .content3 .centerInfo1 .imgs video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon5 .mask_box .content3 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.2rem;
  margin-top: 0.5rem;
}
.idx_homeCon5 .mask_box .content3 .item_box .item {
  width: 100%;
  height: auto;
  background-image: url(../images/bg11.png);
  background-size: 100% auto;
  background-position: center center;
  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.6rem;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon5 .mask_box .content3 .item_box .item .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 0.2rem;
}
.idx_homeCon5 .mask_box .content3 .item_box .item .top_box .left {
  width: fit-content;
}
.idx_homeCon5 .mask_box .content3 .item_box .item .top_box .left .t1 {
  font-size: 0.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #25E9FE 0%, #FFF 93.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.idx_homeCon5 .mask_box .content3 .item_box .item .top_box .left .t1 i {
  font-style: unset;
  font-size: var(--font20);
  background: linear-gradient(90deg, #25E9FE 0%, #FFF 93.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.idx_homeCon5 .mask_box .content3 .item_box .item .top_box .left .t2 {
  font-size: var(--font20);
  color: #FFFFFF;
}
.idx_homeCon5 .mask_box .content3 .item_box .item .top_box .rigth {
  width: fit-content;
  font-size: var(--font16);
  color: #FFFFFF;
}
.idx_homeCon5 .mask_box .content3 .item_box .item .icon_box {
  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;
}
.idx_homeCon5 .mask_box .content3 .item_box .item .icon_box .icon {
  width: 1.2rem;
}
.idx_homeCon5 .mask_box .content3 .item_box .item .icon_box .icon img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 {
  width: 100%;
  height: 100%;
  color: #FFF;
  gap: 0.9rem;
  margin-top: 0.5rem;
  padding: 0 0.4rem;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box1 {
  width: 100%;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box1 .img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box1 .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box1 .word {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box1 .word .t2 {
  margin-top: 0.2rem;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box2 {
  width: 100%;
  margin-top: 0.6rem;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box2 .img {
  width: 100%;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box2 .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box2 .word {
  width: 100%;
  margin-top: 0.4rem;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box2 .word .t2 {
  margin-top: 0.24rem;
}
.idx_homeCon5 .mask_box .content3 .centerInfo2 .img_box2 .word .idx_more {
  margin-top: 0.8rem;
}
.idx_homeCon5 .mask_box.active {
  --clip_path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width:990px) {
  .idx_homeCon5 {
    width: 100%;
    height: auto;
  }
  .idx_homeCon5 .mask_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    --clip_path: unset;
  }
  .idx_homeCon5 .mask_box .content1,
  .idx_homeCon5 .mask_box .content2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .idx_homeCon5 .mask_box .content1 {
    padding-top: 1rem;
  }
  .idx_homeCon5 .mask_box .content1 .content {
    width: 100%;
    height: auto;
    display: none;
  }
  .idx_homeCon5 .mask_box .content2 {
    display: none;
  }
  .idx_homeCon5 .mask_box .content3 {
    display: block !important;
  }
}
.idx_homeCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.idx_homeCon6 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 1.28rem;
  left: 0;
  z-index: 5;
}
.idx_homeCon6 .content .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .content .center_box .idx_more {
  margin-top: 0.35rem;
}
.idx_homeCon6 .content1 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.9rem;
  left: 0;
  z-index: 5;
}
.idx_homeCon6 .content1 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .content1 .center_box .swiper_item {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  padding: 0.46rem 0.34rem;
  border-radius: 0.16rem;
  background: rgba(21, 24, 29, 0.4);
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg9.png);
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
  z-index: -1;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg10.png);
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: -1;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .left {
  width: fit-content;
  font-size: var(--font40);
  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;
  gap: 0.24rem;
  font-weight: 500;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .left .img {
  width: fit-content;
  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-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .left .img .be {
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .left .img .af {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .right {
  width: fit-content;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .right .icon {
  width: 0.56rem;
  height: 0.56rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid #FFFFFF66;
  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;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .right .icon img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .right .icon i {
  color: #FFF;
  font-size: var(--font20);
  font-weight: 600;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .right .icon:hover {
  background: var(--active_color) !important;
  border-color: var(--active_color) !important;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .icon_box .right .icon:hover img {
  filter: unset;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 1.2rem;
  color: #FFFFFFB2;
  font-weight: 200;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .word .t1 {
  font-size: var(--font24) !important;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li.active .centerInfo::after {
  opacity: 0;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li.active .centerInfo::before {
  opacity: 1;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li.active .centerInfo .icon_box .left .img .be {
  opacity: 0;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li.active .centerInfo .icon_box .left .img .af {
  opacity: 1;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li.active .centerInfo .icon_box .right .icon {
  background: var(--active_color);
  border-color: var(--active_color);
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li.active .centerInfo .icon_box .right .icon i {
  color: #FFFFFF;
}
.idx_homeCon6 .content1 .center_box .swiper_item ul li.active .centerInfo .word {
  color: #FFFFFF;
}
.idx_homeCon6 .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .idx_homeCon6 {
    padding: 1.28rem 0;
  }
  .idx_homeCon6 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset;
  }
  .idx_homeCon6 .content1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    bottom: unset;
    margin-top: 0.6rem;
  }
  .idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .word {
    margin-top: 0.4rem;
  }
  .idx_homeCon6 .content1 .center_box .swiper_item ul li .centerInfo .img.wap {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    position: relative;
    z-index: 5;
  }
  .idx_homeCon6 .swiper_box {
    display: none;
  }
}
.idx_homeCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  background: #000;
  padding-bottom: 1.28rem;
}
.idx_homeCon7 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon7 .center_box .top_info {
  width: 100%;
  height: auto;
}
.idx_homeCon7 .center_box .top_info .idx_title {
  width: fit-content;
  height: auto;
}
.idx_homeCon7 .center_box .top_info .idx_more {
  width: fit-content;
}
@media (max-width:990px) {
  .idx_homeCon7 .center_box .top_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
}
.idx_homeCon7 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
}
.idx_homeCon7 .center_box .item_box .item {
  width: 100%;
  height: 5.5rem;
  position: relative;
  z-index: 1;
  background: rgba(21, 24, 29, 0.9);
  backdrop-filter: blur(20px);
  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;
  border-radius: 0.16rem;
  overflow: hidden;
  color: #FFF;
  font-weight: 200;
}
.idx_homeCon7 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg12.png);
  background-size: 100% 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0;
  left: 0;
  z-index: -2;
}
.idx_homeCon7 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.48rem 0.26rem;
  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;
}
.idx_homeCon7 .center_box .item_box .item .word_box .left {
  width: fit-content;
}
.idx_homeCon7 .center_box .item_box .item .word_box .left .t1 {
  opacity: 0.5;
  font-size: var(--font18) !important;
}
.idx_homeCon7 .center_box .item_box .item .word_box .left .t2 {
  margin-top: 0.36rem;
  font-size: var(--font24) !important;
}
.idx_homeCon7 .center_box .item_box .item .word_box .left .idx_more2 {
  margin-top: 0.32rem;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_homeCon7 .center_box .item_box .item .word_box .left .idx_more2 .more span {
  color: #FFF;
}
.idx_homeCon7 .center_box .item_box .item .word_box .right {
  width: fit-content;
  opacity: 0.5;
  font-size: var(--font18);
}
.idx_homeCon7 .center_box .item_box .item .icon_box {
  width: 100%;
  height: auto;
  padding: 0.3rem 0.26rem;
  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-top: 1px solid #FFFFFF4D;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_homeCon7 .center_box .item_box .item .icon_box .left {
  opacity: 0.5;
  font-size: var(--font18) !important;
}
.idx_homeCon7 .center_box .item_box .item .icon_box .right {
  width: 0.32rem;
}
.idx_homeCon7 .center_box .item_box .item .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #06e6ff5e;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon7 .center_box .item_box .item .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon7 .center_box .item_box .item:hover .img_bg {
  opacity: 1;
}
.idx_homeCon7 .center_box .item_box .item:hover .word_box .left .idx_more2 {
  opacity: 1;
}
.idx_homeCon7 .center_box .item_box .item:hover .icon_box {
  opacity: 0;
}
@media (max-width:990px) {
  .idx_homeCon7 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_homeCon7 .bgImg {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  pointer-events: none;
}
.idx_homeCon7 .bgImg img {
  width: 100%;
  height: auto;
}
.idx_homeCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
  background: #000;
}
.idx_homeCon8 .center_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.4rem;
}
.idx_homeCon8 .center_box .content {
  width: 51.2%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #FFFFFF;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.4rem;
}
.idx_homeCon8 .center_box .content .left {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.11rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon8 .center_box .content .left img {
  width: 0.54rem;
}
.idx_homeCon8 .center_box .content .left span {
  font-size: var(--font40);
  font-weight: 500;
}
.idx_homeCon8 .center_box .content .right {
  width: 40.4%;
}
.idx_homeCon8 .center_box .content .right .word {
  width: 100%;
  height: auto;
  font-size: var(--font24) !important;
}
.idx_homeCon8 .center_box .content .right .list {
  width: 100%;
  height: auto;
  margin-top: 0.23rem;
  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.15rem;
}
.idx_homeCon8 .center_box .content .right .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.14rem;
  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.16rem;
  border-bottom: 1px solid #FFFFFF1A;
  font-weight: 300;
}
.idx_homeCon8 .center_box .content .right .list .one img {
  width: 0.32rem;
}
.idx_homeCon8 .center_box .content .right .list .one span {
  font-size: var(--font24);
}
.idx_homeCon8 .center_box .idx_more {
  width: fit-content;
}
@media (max-width:990px) {
  .idx_homeCon8 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_homeCon8 .center_box .content {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_homeCon8 .center_box .content .left {
    width: 100%;
    height: auto;
  }
  .idx_homeCon8 .center_box .content .right {
    width: 100%;
    height: auto;
  }
  .idx_homeCon8 .center_box .content .right .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.6rem;
  }
}
.idx_homeCon8 .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.idx_homeCon8 .light_b {
  width: 31.09rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-50%);
}
.idx_homeCon8 .light_b img {
  width: 100%;
  height: auto;
  opacity: 0.5;
}
.idx_homeCon8 .wordBig {
  width: max-content;
  position: absolute;
  font-size: 3.7rem;
  bottom: 0;
  transform: translateY(40%);
  background: linear-gradient(180deg, rgba(14, 198, 214, 0.05) 24.95%, rgba(0, 0, 0, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.ins_title64 {
  color: #000;
  font-size: var(--font64);
  font-weight: 700;
}
.idxPageShow_square {
  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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.1142rem;
}
.idxPageShow_square span {
  width: 0.13867rem;
  height: 0.13867rem;
  min-width: 8px;
  min-height: 8px;
  border-radius: 0.04rem;
  border: 1px solid #CCC;
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idxPageShow_square span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--active_color);
  left: 0;
  right: 0;
}
.idxPageShow_square .swiper-pagination-bullet-active {
  background: var(--active_color);
  border: none;
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}
.ins_aboutCon1 .mask_box2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0;
  z-index: -1;
}
.ins_aboutCon1 .mask_box2 .light_beam {
  height: 100%;
  mask-position: 91.0417% calc(100% - 0.4093rem);
}
.ins_aboutCon1 .mask_box2 .light_beam .pagerBtn {
  right: 8.9583%;
  left: auto;
  bottom: 0.4093rem;
  top: auto;
  transform: none;
}
.ins_aboutCon1 .mask_box2 .leftImg {
  width: 15rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: initial;
  transform: translateY(-50%) translateX(-50%);
}
.ins_aboutCon1 .mask_box2 .leftImg img {
  position: relative;
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
  padding-top: 3.39rem;
  padding-bottom: 3.62rem;
}
.ins_aboutCon1 .center_box .word .t1 {
  font-weight: 700;
  line-height: normal;
}
.ins_aboutCon1 .center_box .word .number {
  width: max-content;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(46, 198, 214, 0.2) 16.47%, rgba(46, 198, 214, 0) 95.88%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  /*  padding-top: 1.6rem; */
  padding-bottom: 0.8rem;
}
.ins_aboutCon2 .content1_box {
  width: 100%;
  height: 200vh;
}
.ins_aboutCon2 .content1_box .mask_box {
  width: 100%;
  height: 100vh;
  position: relative;
}
.ins_aboutCon2 .content1_box .mask_box .content1 {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon2 .content1_box .mask_box .content1 .left_box {
  width: fit-content;
  height: auto;
  opacity: 1;
}
.ins_aboutCon2 .content1_box .mask_box .content1 .left_box .t1 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
}
.ins_aboutCon2 .content1_box .mask_box .content1 .left_box .t2 {
  color: var(--color_fff);
  font-weight: 600;
  line-height: normal;
  margin-top: 0.2rem;
}
.ins_aboutCon2 .content1_box .mask_box .content1 .right_box {
  /* width: 52.3033%; */
  width: 100%;
  height: auto;
  position: absolute;
}
.ins_aboutCon2 .content1_box .mask_box .content1 .right_box .t3 {
  width: 52.3033%;
  color: var(--color_fff);
  opacity: 0.7;
  font-weight: 400;
  line-height: normal;
  position: relative;
  left: 48.3707%;
}
.ins_aboutCon2 .content1_box .mask_box .content1 .right_box .image {
  width: 35.8979%;
  width: 18.7758%;
  height: auto;
  border-radius: 0.16rem;
  position: relative;
  left: 48.3707%;
  overflow: hidden;
  margin-top: 0.4rem;
}
.ins_aboutCon2 .content1_box .mask_box .content1 .right_box .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_aboutCon2 .content2_box {
  width: 100%;
  height: auto;
  /* margin-top: 1rem; */
}
.ins_aboutCon2 .content2_box .content2 {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.52rem 0;
}
.ins_aboutCon2 .content2_box .content2 .item {
  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;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.ins_aboutCon2 .content2_box .content2 .item:nth-child(3n + 1) {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_aboutCon2 .content2_box .content2 .item:nth-child(3n + 2) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon2 .content2_box .content2 .item:nth-child(3n) {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  border-right: none;
}
.ins_aboutCon2 .content2_box .content2 .item .t1 {
  width: 3.3rem;
  color: var(--color_fff);
  font-weight: 600;
  line-height: normal;
}
.ins_aboutCon2 .content2_box .content2 .item .t1 span {
  background: linear-gradient(90deg, #25E9FE 0%, #FFF 93.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ins_aboutCon2 .content2_box .content2 .item .t1 .unit {
  margin-left: 0.12rem;
}
.ins_aboutCon2 .content2_box .content2 .item .t2 {
  width: 3.3rem;
  color: var(--color_fff);
  font-weight: 500;
  line-height: normal;
  margin-top: 0.06rem;
}
.ins_aboutCon2 .content2_box .content2 .item .t3 {
  width: 3.3rem;
  color: var(--color_fff);
  opacity: 0.7;
  font-weight: 400;
  line-height: normal;
  margin-top: 0.12rem;
}
@media (max-width:990px) {
  .ins_aboutCon2 .content1_box {
    height: auto;
  }
  .ins_aboutCon2 .content1_box .mask_box {
    height: auto;
  }
  .ins_aboutCon2 .content1_box .mask_box .content1 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.52rem;
    position: relative;
    transform: none;
  }
  .ins_aboutCon2 .content1_box .mask_box .content1 .right_box {
    position: relative;
  }
  .ins_aboutCon2 .content1_box .mask_box .content1 .right_box .t3,
  .ins_aboutCon2 .content1_box .mask_box .content1 .right_box .image {
    width: 100%;
    left: 0;
  }
  .ins_aboutCon2 .content2_box .content2 {
    grid-template-columns: 1fr;
    margin-top: 0.52rem;
  }
  .ins_aboutCon2 .content2_box .content2 .item {
    border-right: none;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }
  .ins_aboutCon2 .content2_box .content2 .item .t1,
  .ins_aboutCon2 .content2_box .content2 .item .t2,
  .ins_aboutCon2 .content2_box .content2 .item .t3 {
    width: 100%;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_aboutCon3 .content_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .content_box .t1 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
}
.ins_aboutCon3 .content_box .content {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-top: 0.4rem;
  padding-bottom: 3.79rem;
  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;
}
.ins_aboutCon3 .content_box .content .t2 {
  width: fit-content;
  height: auto;
  color: var(--color_fff);
  font-weight: 600;
  line-height: normal;
}
.ins_aboutCon3 .content_box .content .swiper_box {
  width: 41.57%;
  height: 1.23rem;
  position: relative;
  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_aboutCon3 .content_box .content .swiper_box ul {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .content_box .content .swiper_box ul li {
  width: 100%;
  height: auto !important;
}
.ins_aboutCon3 .content_box .content .swiper_box ul li.swiper-slide-active .contentInfo {
  opacity: 1;
}
.ins_aboutCon3 .content_box .content .swiper_box ul li.swiper-slide-active .contentInfo .image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url('../images/l3.png') no-repeat 100% 100%;
  z-index: 2;
}
.ins_aboutCon3 .content_box .content .swiper_box ul li.swiper-slide-active .contentInfo .word .t3 span {
  color: var(--active_color);
}
.ins_aboutCon3 .content_box .content .swiper_box ul li .contentInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  gap: 0.74rem;
  opacity: 0.1;
}
.ins_aboutCon3 .content_box .content .swiper_box ul li .contentInfo .image {
  width: 2.44rem;
  height: auto;
  border-radius: 0.16rem;
  position: relative;
  overflow: hidden;
}
.ins_aboutCon3 .content_box .content .swiper_box ul li .contentInfo .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .content_box .content .swiper_box ul li .contentInfo .word {
  flex: 1;
  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-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon3 .content_box .content .swiper_box ul li .contentInfo .word .t2 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
}
.ins_aboutCon3 .content_box .content .swiper_box ul li .contentInfo .word .t3 {
  color: var(--color_fff);
  font-weight: 500;
  line-height: normal;
}
.ins_aboutCon3 .content_box .content .swiper_box .idxPageShow_square {
  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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.04rem;
  position: absolute;
  top: 0;
  right: 0;
  transform: none;
  z-index: 2;
}
.ins_aboutCon3 .content_box .content .swiper_box .idxPageShow_square span {
  width: 0.13867rem;
  height: 0.13867rem;
  min-width: 8px;
  min-height: 8px;
  border-radius: 0.04rem;
  border: 1px solid #CCC;
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_aboutCon3 .content_box .content .swiper_box .idxPageShow_square span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--active_color);
  left: 0;
  right: 0;
}
.ins_aboutCon3 .content_box .content .swiper_box .idxPageShow_square .swiper-pagination-bullet-active {
  background: var(--active_color);
  border: none;
}
@media (max-width:990px) {
  .ins_aboutCon3 .content_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.52rem;
    padding-bottom: 0;
  }
  .ins_aboutCon3 .content_box .content .t2 {
    font-size: var(--font52);
  }
  .ins_aboutCon3 .content_box .content .swiper_box {
    width: 100%;
    height: auto;
    display: block;
  }
  .ins_aboutCon3 .content_box .content .swiper_box .idxPageShow_square {
    position: relative;
    flex-direction: initial;
    gap: 0.1142rem;
    margin: 0.32rem auto 0 auto;
  }
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon4 .image_box {
  width: 100%;
  height: 10.8rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0;
}
.ins_aboutCon4 .image_box .image {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .image_box .image li {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.ins_aboutCon4 .image_box .image li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: grayscale(1) brightness(0.5);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_aboutCon4 .image_box .image li.active img {
  opacity: 1;
  filter: unset;
}
.ins_aboutCon4 .image_box .image:nth-child(1) li:first-child img {
  height: 5.15rem;
}
.ins_aboutCon4 .image_box .image:nth-child(1) li:last-child img {
  height: 5.68rem;
}
.ins_aboutCon4 .image_box .image:nth-child(2) li:first-child img {
  height: 8.13rem;
}
.ins_aboutCon4 .image_box .image:nth-child(2) li:last-child img {
  height: 2.67rem;
}
.ins_aboutCon4 .image_box .image:nth-child(3) li:first-child img {
  height: 5.15rem;
}
.ins_aboutCon4 .image_box .image:nth-child(3) li:last-child img {
  height: 5.68rem;
}
.ins_aboutCon4 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ins_aboutCon4 .content .t1 {
  color: var(--color_fff);
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
@media (max-width:990px) {
  .ins_aboutCon4 .content .t1 {
    font-size: var(--font52);
  }
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  padding-top: 1.6rem;
  padding-bottom: 1.175rem;
}
.ins_aboutCon5 .content_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .content_box .ins_title {
  font-size: var(--font64);
  font-weight: 600;
  line-height: normal;
  text-align: center;
}
.ins_aboutCon5 .content_box .content {
  width: 100%;
  height: auto;
  margin-top: 3.4098rem;
}
.ins_aboutCon5 .content_box .content .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon5 .content_box .content .img_box .svg_box {
  width: 75.67%;
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.ins_aboutCon5 .content_box .content .img_box .svg_box svg {
  width: 100%;
  height: 100%;
}
.ins_aboutCon5 .content_box .content .img_box .image {
  width: 75.67%;
  height: 100%;
  position: absolute;
  top: -0.09rem;
  left: 50%;
  transform: translateX(-50%);
}
.ins_aboutCon5 .content_box .content .img_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item .icon {
  width: 0.12rem;
  height: 0.12rem;
  position: relative;
  border-radius: 50%;
  background-color: var(--active_color);
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item .icon span {
  position: absolute;
  top: calc(-0.14rem + -0.32rem);
  left: -0.06rem;
  color: var(--color_fff);
  font-weight: 500;
  line-height: normal;
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item .icon svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item .word {
  width: max-content;
  position: absolute;
  /* top: calc(-0.34rem + -1.24rem); */
  left: 0.45rem;
  bottom: calc(100% + 0.34rem);
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item .word.right {
  right: 0.0998rem;
  left: auto;
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item .word .t1 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item .word .t2 {
  color: var(--active_color);
  font-weight: 500;
  line-height: normal;
  margin-top: 0.06rem;
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item .word .t3 {
  max-width: 2.87rem;
  color: var(--color_fff);
  opacity: 0.7;
  font-weight: 400;
  line-height: normal;
  margin-top: 0.06rem;
}
.ins_aboutCon5 .content_box .content .img_box .item_box .item .word .t3 .max_w {
  max-width: 2.99rem;
}
@media (max-width:990px) {
  .ins_aboutCon5 .content_box .ins_title {
    font-size: var(--font52);
  }
  .ins_aboutCon5 .content_box .content {
    margin-top: 0.52rem;
  }
  .ins_aboutCon5 .content_box .content .img_box .svg_box {
    position: absolute;
    left: 2px;
    transform: none;
  }
  .ins_aboutCon5 .content_box .content .img_box .svg_box svg {
    width: 2px;
    height: 100%;
  }
  .ins_aboutCon5 .content_box .content .img_box .item_box {
    position: relative;
    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.52rem;
  }
  .ins_aboutCon5 .content_box .content .img_box .item_box .item {
    width: 100%;
    height: auto;
    position: static;
    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;
    gap: 0.32rem;
  }
  .ins_aboutCon5 .content_box .content .img_box .item_box .item .word {
    flex: 1;
    position: static;
  }
  .ins_aboutCon5 .content_box .content .img_box .item_box .item .word .t3 {
    max-width: initial;
  }
  .ins_aboutCon5 .content_box .content .img_box .item_box .item .icon span,
  .ins_aboutCon5 .content_box .content .img_box .item_box .item .icon svg {
    display: none;
  }
}
.ins_aboutCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  padding-top: 1.175rem;
  padding-bottom: 0.8rem;
}
.ins_aboutCon6 .content_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .content_box .title_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .content_box .title_box .ins_title {
  font-weight: 600;
  line-height: normal;
}
.ins_aboutCon6 .content_box .title_box .ins_subTitle {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
  margin-top: 0.2rem;
}
.ins_aboutCon6 .content_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.98rem;
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon6 .content_box .content .left_box {
  width: 20.9739%;
  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_aboutCon6 .content_box .content .left_box .image {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .content_box .content .left_box .image img {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .content_box .content .left_box .t1 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
}
.ins_aboutCon6 .content_box .content .left_box .t1 span {
  color: var(--color_fff);
  font-weight: 600;
}
.ins_aboutCon6 .content_box .content .left_box .t1 .unit {
  margin-left: 0.18rem;
  margin-right: 0.24rem;
}
.ins_aboutCon6 .content_box .content .right_box {
  width: 50.8427%;
  height: auto;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box ul {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box ul li .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.2776rem 1.047rem;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box ul li .con .item {
  width: 100%;
  height: auto;
  position: relative;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box ul li .con .item .image {
  width: 100%;
  height: auto;
  position: relative;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box ul li .con .item .image img {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box ul li .con .item .word {
  width: 1.47rem;
  height: auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box ul li .con .item .word .t1 {
  color: var(--color_fff);
  opacity: 0.7;
  font-weight: 300;
  line-height: normal;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box ul li .con .item .word .t2 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
  margin-top: 0.08rem;
}
.ins_aboutCon6 .content_box .content .right_box .swiper_box .idxPageShow_square {
  margin-top: 0.6629rem;
}
@media (max-width:990px) {
  .ins_aboutCon6 .content_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
  }
  .ins_aboutCon6 .content_box .content .left_box,
  .ins_aboutCon6 .content_box .content .right_box {
    width: 100%;
  }
  .ins_aboutCon6 .content_box .content .right_box .swiper_box ul li .con {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_aboutCon7 {
  width: 100%;
  height: 250vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_aboutCon7 .content_box {
  width: 100%;
  height: 100%;
}
.ins_aboutCon7 .content_box .mask_box {
  width: 100%;
  height: 100vh;
}
.ins_aboutCon7 .content_box .mask_box .content {
  width: 100%;
  height: auto;
  position: relative;
  /* top: 10%; */
}
.ins_aboutCon7 .content_box .mask_box .content .map_box {
  width: 12.81rem;
  /* width: 12.58rem; */
  height: 5.34rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* right: 0; */
  z-index: 1;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .img img {
  width: 100%;
  height: 100%;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .svg_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .svg_box svg {
  width: 100%;
  height: 100%;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item {
  width: 0;
  height: 0;
  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;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item .icon {
  position: absolute;
  width: 0.08726rem;
  height: 0.08726rem;
  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;
  border-radius: 0.5rem;
  background: var(--active_color);
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item .icon::before,
.ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item .icon::before {
  background: var(--active_color);
  animation-delay: 0s;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item .icon::after {
  background: var(--active_color);
  animation-delay: 0.5s;
}
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  40% {
    opacity: 0.4;
  }
  60% {
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
  }
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item .word {
  position: absolute;
  width: max-content;
  top: 0.27rem;
}
.ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item .word .t1 {
  color: #C7C7C7;
  line-height: normal;
}
.ins_aboutCon7 .content_box .mask_box .content .title_box,
.ins_aboutCon7 .content_box .mask_box .content .word_box,
.ins_aboutCon7 .content_box .mask_box .content .swiper_box {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: none;
}
.ins_aboutCon7 .content_box .mask_box .content .title_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon7 .content_box .mask_box .content .title_box .ins_title {
  font-weight: 600;
  line-height: normal;
}
.ins_aboutCon7 .content_box .mask_box .content .title_box .sub_title {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
  margin-top: 0.2rem;
}
.ins_aboutCon7 .content_box .mask_box .content .word_box {
  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;
  gap: 0.74rem;
  margin-top: 0.86rem;
}
.ins_aboutCon7 .content_box .mask_box .content .word_box .item {
  width: fit-content;
  height: auto;
}
.ins_aboutCon7 .content_box .mask_box .content .word_box .item .t1 {
  width: 100%;
  color: var(--color_fff);
  font-weight: 600;
  line-height: normal;
}
.ins_aboutCon7 .content_box .mask_box .content .word_box .item .t1 span {
  background: linear-gradient(90deg, #25E9FE 0%, #FFF 93.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ins_aboutCon7 .content_box .mask_box .content .word_box .item .t1 .unit {
  margin-left: 0.12rem;
}
.ins_aboutCon7 .content_box .mask_box .content .word_box .item .t2 {
  width: 100%;
  color: var(--color_fff);
  font-weight: 500;
  line-height: normal;
  margin-top: 0.06rem;
}
.ins_aboutCon7 .content_box .mask_box .content .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 2.39rem;
}
.ins_aboutCon7 .content_box .mask_box .content .swiper_box ul {
  width: 100%;
  height: auto;
}
.ins_aboutCon7 .content_box .mask_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon7 .content_box .mask_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  /* min-height: 1.6196rem; */
  border-radius: 0.16rem;
  background: url('../images/l19.png') no-repeat 100% 100%;
  background-size: cover;
}
.ins_aboutCon7 .content_box .mask_box .content .swiper_box ul li .centerInfo .pb {
  padding-bottom: 45.4943%;
}
@media (max-width:990px) {
  .ins_aboutCon7,
  .ins_aboutCon7 .content_box,
  .ins_aboutCon7 .content_box .mask_box {
    height: auto;
  }
  .ins_aboutCon7 .content_box .mask_box .content {
    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_aboutCon7 .content_box .mask_box .content .map_box {
    width: 100%;
    height: auto;
    position: relative;
    left: auto;
    transform: none;
    margin-top: 0.86rem;
    order: 1;
  }
  .ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item .word {
    top: 0.1rem;
  }
  .ins_aboutCon7 .content_box .mask_box .content .map_box .item_box .item .word .t1 {
    font-size: var(--font14);
  }
  .ins_aboutCon7 .content_box .mask_box .content .title_box,
  .ins_aboutCon7 .content_box .mask_box .content .word_box,
  .ins_aboutCon7 .content_box .mask_box .content .swiper_box {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .ins_aboutCon7 .content_box .mask_box .content .word_box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .ins_aboutCon7 .content_box .mask_box .content .word_box .item {
    width: calc(50% - 0.37rem);
    text-align: center;
  }
  .ins_aboutCon7 .content_box .mask_box .content .swiper_box {
    margin-top: 0.86rem;
  }
}
.ins_aboutCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}
.ins_aboutCon8 .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.ins_aboutCon8 .img_w100::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(82deg, #2EC6D6 -6.02%, rgba(0, 0, 0, 0) 60.97%);
}
.ins_aboutCon8 .img_w100 img,
.ins_aboutCon8 .img_w100 video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_aboutCon8 .img_w100 img.wap {
  width: 100%;
  height: auto;
  min-height: 500px;
}
.ins_aboutCon8 .content_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  padding: 1.12rem 0;
}
.ins_aboutCon8 .content_box .w1780 {
  height: 100%;
}
.ins_aboutCon8 .content_box .content {
  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;
}
.ins_aboutCon8 .content_box .content .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon8 .content_box .content .word .ins_title {
  color: var(--color_fff);
  font-weight: 600;
  line-height: normal;
}
.ins_aboutCon8 .content_box .content .word .t1 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
  margin-top: 0.2rem;
}
.ins_aboutCon8 .content_box .content .word .t2 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
  margin-top: 0.1rem;
}
.ins_aboutCon8 .content_box .content .btn_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;
  gap: 0.68rem;
}
.ins_aboutCon8 .content_box .content .btn_box .idx_more {
  width: fit-content;
}
.ins_aboutCon8 .content_box .content .btn_box .idx_more .more {
  min-width: 2.16rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.23rem;
}
.ins_aboutCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.34rem;
  padding-bottom: 2.99rem;
}
.ins_aboutCon9 .mask_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0;
  z-index: -1;
}
.ins_aboutCon9 .mask_box .light_beam {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  mask-image: url(../images/l20.png);
  mask-repeat: no-repeat;
  mask-position: 100% 100%;
  mask-size: 100%;
}
.ins_aboutCon9 .mask_box .light_beam .pagerBtn {
  width: 10rem;
  top: 100%;
  left: 85%;
}
.ins_aboutCon9 .mask_box .leftImg {
  width: 15rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: initial;
  transform: translateY(-50%) translateX(-50%);
}
.ins_aboutCon9 .mask_box .leftImg img {
  position: relative;
  width: 100%;
  height: auto;
}
.ins_aboutCon9 .content_box {
  width: 100%;
  height: auto;
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}
.ins_aboutCon9 .content_box .left_box {
  width: 55%;
  height: auto;
  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;
  gap: 1.48rem;
}
.ins_aboutCon9 .content_box .left_box .word_box .ins_title {
  color: var(--color_fff);
  font-weight: 600;
  line-height: normal;
}
.ins_aboutCon9 .content_box .left_box .word_box .sub_title {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
  margin-top: 0.2rem;
}
.ins_aboutCon9 .content_box .left_box .word_box .t1 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
}
.ins_aboutCon9 .content_box .left_box .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  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.1rem;
  color: var(--color_fff);
  font-weight: 300;
  line-height: 1.4;
}
.ins_aboutCon9 .content_box .right_box {
  width: fit-content;
  height: auto;
}
.ins_aboutCon9 .content_box .right_box .image_box {
  width: fit-content;
  height: auto;
  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;
  gap: 0.28rem;
}
.ins_aboutCon9 .content_box .right_box .image_box .item {
  width: fit-content;
  height: auto;
}
.ins_aboutCon9 .content_box .right_box .image_box .item .image {
  width: 1.14rem;
  min-width: 80px;
  height: auto;
}
.ins_aboutCon9 .content_box .right_box .image_box .item .image img {
  width: 100%;
  height: auto;
}
.ins_aboutCon9 .content_box .right_box .image_box .item .t3 {
  color: var(--color_fff);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-top: 0.2rem;
}
@media (max-width:990px) {
  .ins_aboutCon9 .content_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 1.48rem;
  }
  .ins_aboutCon9 .content_box .left_box {
    width: 100%;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.ins_breadcrumb {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
}
.ins_breadcrumb .center_box {
  width: 100%;
  height: auto;
}
.ins_breadcrumb .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;
  gap: 0.09rem;
  padding: 0.35rem 0 0.34rem 0;
}
.ins_breadcrumb .center_box .content span,
.ins_breadcrumb .center_box .content i {
  color: var(--color_fff);
  font-size: var(--font18);
  font-weight: 400;
  line-height: normal;
}
.ins_breadcrumb .center_box .content i {
  font-size: var(--font14);
}
.ins_breadcrumb .center_box .content a:last-child span {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_breadcrumb {
    display: none;
  }
}
/* 轮播图分页器-进度条 */
.idxPageProgressbar {
  width: 100%;
  height: 1px !important;
  position: relative;
}
.idxPageProgressbar.swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.3);
}
.idxPageProgressbar.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  height: 0.03rem;
  background: var(--active_color);
  position: absolute;
  top: -0.01rem;
}
/* 分页 */
.laypage .layui-laypage {
  gap: 0.02rem;
  margin: 0;
}
.laypage .layui-laypage .layui-laypage-prev,
.laypage .layui-laypage .layui-laypage-next {
  width: fit-content;
  height: 0.56rem;
  padding: 0 0.3rem;
  gap: 0.24rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
}
.laypage .layui-laypage .layui-laypage-prev > span,
.laypage .layui-laypage .layui-laypage-next > span {
  width: fit-content;
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: var(--font16);
  font-weight: 400;
  line-height: calc(24 / 16);
  background-color: transparent;
}
.laypage .layui-laypage .layui-laypage-prev .svg,
.laypage .layui-laypage .layui-laypage-next .svg {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 100px;
  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-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.laypage .layui-laypage .layui-laypage-prev .svg::after,
.laypage .layui-laypage .layui-laypage-next .svg::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: var(--active_color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: 1000px;
}
.laypage .layui-laypage .layui-laypage-prev .svg i,
.laypage .layui-laypage .layui-laypage-next .svg i {
  font-size: var(--font20);
  font-weight: 700;
  transform: scale(0);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.laypage .layui-laypage .layui-laypage-prev:hover,
.laypage .layui-laypage .layui-laypage-next:hover {
  border-color: transparent !important;
  color: #FFFFFF !important;
}
.laypage .layui-laypage .layui-laypage-prev:hover .svg::after,
.laypage .layui-laypage .layui-laypage-next:hover .svg::after {
  width: 370px;
  height: 370px;
}
.laypage .layui-laypage .layui-laypage-prev:hover .svg i,
.laypage .layui-laypage .layui-laypage-next:hover .svg i {
  transform: scale(1);
}
.laypage .layui-laypage .layui-laypage-prev {
  margin-right: 0.6rem;
}
.laypage .layui-laypage .layui-laypage-next {
  margin-left: 0.6rem;
}
.laypage .layui-laypage > a {
  background-color: transparent;
}
.laypage .layui-laypage .layui-laypage-curr,
.laypage .layui-laypage > a {
  width: 0.56rem;
  height: 0.56rem;
  color: #fff;
  font-size: var(--font16);
  font-weight: 500;
  line-height: calc(24 / 16);
}
.ins_banner1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_banner1 .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.ins_banner1 .img_w100::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_banner1 .img_w100::before {
  content: '';
  position: absolute;
  top: 1.46rem;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(46, 198, 214, 0) 50.06%, #2EC6D6 117.22%);
  opacity: 0.6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_banner1 .img_w100 img,
.ins_banner1 .img_w100 video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ins_banner1 .img_w100 img.wap {
  width: 100%;
  height: auto;
  min-height: 500px;
}
.ins_banner1 .center_box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  padding-top: 1rem;
}
.ins_banner1 .center_box .content {
  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;
}
.ins_banner1 .center_box .content .t1 {
  font-weight: 700;
  line-height: normal;
  color: #FFF;
}
.ins_banner1 .center_box .content .search_form {
  width: fit-content;
  height: 0.57rem;
  min-width: 4.94rem;
  min-height: 36px;
  position: relative;
  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.28rem;
  border-radius: 0.6rem;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
}
.ins_banner1 .center_box .content .search_form .layui-input {
  flex: 1;
  height: 100%;
  padding: 0 0.3rem;
  background-color: transparent;
  border: none;
  color: var(--color_fff);
  font-size: var(--font18);
  font-weight: 400;
  line-height: normal;
}
.ins_banner1 .center_box .content .search_form .layui-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.ins_banner1 .center_box .content .search_form .layui-input-suffix {
  width: 1.04rem;
  height: calc(100% + 2px);
  position: relative;
  top: -0.5px;
  right: -1px;
  padding: 0;
}
.ins_banner1 .center_box .content .search_form .layui-input-suffix .layui-btn {
  width: 100%;
  height: 100%;
  border-radius: 0.6rem;
  background-color: var(--active_color);
  border: none;
}
.ins_banner1 .center_box .content .search_form .layui-input-suffix .layui-btn i {
  font-size: var(--font18);
  color: #fff;
}
.ins_resources1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  padding-top: 1.6rem;
  padding-bottom: 0.825rem;
}
.ins_resources1 .center_box {
  width: 100%;
  height: auto;
}
.ins_resources1 .center_box .title_box {
  width: 100%;
  height: auto;
}
.ins_resources1 .center_box .title_box .ins_title {
  font-weight: 600;
  line-height: normal;
}
.ins_resources1 .center_box .title_box .ins_subTitle {
  color: #fff;
  font-weight: 300;
  line-height: normal;
  margin-top: 0.2rem;
}
.ins_resources1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_resources1 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.ins_resources1 .center_box .content .swiper_box ul {
  width: 100%;
  height: auto;
}
.ins_resources1 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: 0.16rem;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("../images/r2.png") no-repeat 100% 100%, rgba(24, 85, 116, 0.3);
  backdrop-filter: blur(16px);
  background-size: cover;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box {
  width: calc(32.9588% + 0.48rem);
  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-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.48rem 0 0.48rem 0.48rem;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .top {
  width: 100%;
  height: auto;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .top .t1 {
  color: var(--color_fff);
  font-weight: 500;
  line-height: normal;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .top .t2 {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: normal;
  margin-top: 0.4rem;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot {
  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;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .item {
  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;
  gap: 0.12rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .item:hover .icon img,
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .item.active .icon img {
  filter: unset;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .item:hover span,
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .item.active span {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .item a {
  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;
  gap: 0.12rem;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .item .icon {
  width: 0.32rem;
  height: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .item .icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1) opacity(0.7);
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .item span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: normal;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot .b_line {
  width: 1px;
  height: 0.32rem;
  background-color: rgba(255, 255, 255, 0.3);
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .image {
  width: 50.9363%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_resources1 .center_box .content .swiper_box ul li .contentInfo .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_resources1 .center_box .content .swiper_box .idxPageProgressbar {
  margin-top: 1.04rem;
}
@media (max-width:990px) {
  .ins_resources1 .center_box .content .swiper_box ul li .contentInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.32rem;
  }
  .ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box,
  .ins_resources1 .center_box .content .swiper_box ul li .contentInfo .image {
    width: 100%;
  }
  .ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box {
    padding: 0.48rem;
  }
  .ins_resources1 .center_box .content .swiper_box ul li .contentInfo .word_box .bot {
    margin-top: 0.4rem;
  }
}
.ins_resources2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  padding-top: 0.825rem;
  padding-bottom: 0.8rem;
}
.ins_resources2 .center_box {
  width: 100%;
  height: auto;
}
.ins_resources2 .center_box .title_box {
  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-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_resources2 .center_box .title_box .ins_title {
  font-weight: 600;
  line-height: normal;
}
.ins_resources2 .center_box .title_box .search_form {
  width: fit-content;
  height: 0.57rem;
  min-width: 4.94rem;
  min-height: 36px;
  position: relative;
  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;
  border-radius: 0.6rem;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
}
.ins_resources2 .center_box .title_box .search_form .layui-input {
  flex: 1;
  height: 100%;
  padding: 0 0.3rem;
  background-color: transparent;
  border: none;
  color: var(--color_fff);
  font-size: var(--font18);
  font-weight: 400;
  line-height: normal;
}
.ins_resources2 .center_box .title_box .search_form .layui-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.ins_resources2 .center_box .title_box .search_form .layui-input-suffix {
  width: 1.04rem;
  height: calc(100% + 2px);
  position: relative;
  top: -0.5px;
  right: -1px;
  padding: 0;
}
.ins_resources2 .center_box .title_box .search_form .layui-input-suffix .layui-btn {
  width: 100%;
  height: 100%;
  border-radius: 0.6rem;
  background-color: var(--active_color);
  border: none;
}
.ins_resources2 .center_box .title_box .search_form .layui-input-suffix .layui-btn i {
  font-size: var(--font18);
  color: #fff;
}
.ins_resources2 .center_box .form_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_resources2 .center_box .form_box .form {
  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;
  gap: 0.24rem;
}
.ins_resources2 .center_box .form_box .form .layui-form-item {
  width: fit-content;
  height: auto;
  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;
  gap: 0.48rem;
  margin-bottom: 0;
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-form-label {
  width: fit-content;
  float: initial;
  padding: 0;
  color: var(--color_fff);
  font-size: var(--font18);
  font-weight: 500;
  line-height: normal;
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block {
  flex: 1;
  min-height: initial;
  margin-left: 0;
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-radio,
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-checkbox,
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-checkbox > div {
  margin: 0;
  padding: 0;
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-radio > div,
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-checkbox > div {
  color: var(--color_fff);
  font-size: var(--font18);
  font-weight: 400;
  line-height: normal;
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-radio > i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  margin-right: 0.1rem;
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-radioed > i {
  color: var(--active_color);
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-radio:hover > *,
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-radioed,
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-radioed > i {
  color: var(--active_color);
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-checkbox {
  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-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.1rem;
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-checkbox:hover i {
  border-color: var(--active_color);
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-checkbox:hover div {
  color: var(--active_color);
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-checkbox > i {
  width: 11px;
  height: 11px;
  position: relative;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-checkbox > i::before {
  content: '';
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: var(--active_color);
  border-radius: 50%;
}
.ins_resources2 .center_box .form_box .form .layui-form-item .layui-input-block .layui-form-checked > i::before {
  opacity: 1;
}
.ins_resources2 .center_box .form_box .form .layui-form-item:first-child .layui-input-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.16rem 0.48rem;
}
.ins_resources2 .center_box .form_box .form .layui-form-item:nth-child(2) .layui-input-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.16rem 0.84rem;
}
.ins_resources2 .center_box .form_box .idx_more {
  margin-top: 0.4rem;
}
.ins_resources2 .center_box .form_box .idx_more .more {
  gap: 0.2rem;
}
.ins_resources2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_resources2 .center_box .content .con {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: url("../images/r3.png") no-repeat 100% 100%, rgba(24, 85, 116, 0.3);
  backdrop-filter: blur(16px);
  background-size: cover;
  padding: 0.2rem 0.64rem;
}
.ins_resources2 .center_box .content .con .item {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.44rem 0;
}
.ins_resources2 .center_box .content .con .item a {
  width: 100%;
  height: 100%;
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_resources2 .center_box .content .con .item:not(:first-child) {
  border-top: 0.5px solid rgba(255, 255, 255, 0.3);
}
.ins_resources2 .center_box .content .con .item:hover .t1,
.ins_resources2 .center_box .content .con .item:hover .t4 {
  color: var(--active_color);
}
.ins_resources2 .center_box .content .con .item:hover .t1 span,
.ins_resources2 .center_box .content .con .item:hover .t4 span {
  text-decoration: underline;
}
.ins_resources2 .center_box .content .con .item:hover .t1 .icon img,
.ins_resources2 .center_box .content .con .item:hover .t4 .icon img {
  filter: unset;
}
.ins_resources2 .center_box .content .con .item .t1 {
  width: 37.3%;
  color: var(--color_fff);
  font-weight: 500;
  line-height: normal;
  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.12rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_resources2 .center_box .content .con .item .t1 .icon {
  width: 0.4rem;
  height: 0.4rem;
  min-width: 26px;
  min-height: 26px;
}
.ins_resources2 .center_box .content .con .item .t1 .icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}
.ins_resources2 .center_box .content .con .item .t2,
.ins_resources2 .center_box .content .con .item .t3 {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: normal;
}
.ins_resources2 .center_box .content .con .item .t4 {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: normal;
  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.12rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_resources2 .center_box .content .con .item .t4 .icon {
  width: 0.32rem;
  height: 0.32rem;
  min-width: 18px;
  min-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_resources2 .center_box .content .con .item .t4 .icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1) opacity(0.7);
}
.ins_resources2 .center_box .content #laypage1 {
  margin-top: 1rem;
}
@media (max-width:990px) {
  .ins_resources2 .center_box .title_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.32rem;
  }
  .ins_resources2 .center_box .title_box .search_form {
    width: 100%;
  }
  .ins_resources2 .center_box .content .con .item,
  .ins_resources2 .center_box .content .con .item a {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.32rem;
  }
  .ins_resources2 .center_box .content .con .item .t1,
  .ins_resources2 .center_box .content .con .item a .t1,
  .ins_resources2 .center_box .content .con .item .t2,
  .ins_resources2 .center_box .content .con .item a .t2,
  .ins_resources2 .center_box .content .con .item .t3,
  .ins_resources2 .center_box .content .con .item a .t3,
  .ins_resources2 .center_box .content .con .item .t4,
  .ins_resources2 .center_box .content .con .item a .t4 {
    width: 100%;
  }
}
.ins_resources3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #000;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_resources3 .center_box {
  width: 100%;
  height: auto;
}
.ins_resources3 .center_box .ins_title {
  font-weight: 600;
  line-height: normal;
}
.ins_resources3 .center_box .tab_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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.32rem 1.58rem;
  margin-top: 0.4rem;
}
.ins_resources3 .center_box .tab_box .item {
  padding-bottom: 0.08rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_resources3 .center_box .tab_box .item:hover,
.ins_resources3 .center_box .tab_box .item.active {
  border-bottom: 0.02rem solid var(--active_color);
}
.ins_resources3 .center_box .tab_box .item:hover span,
.ins_resources3 .center_box .tab_box .item.active span,
.ins_resources3 .center_box .tab_box .item:hover p,
.ins_resources3 .center_box .tab_box .item.active p {
  color: var(--active_color);
}
.ins_resources3 .center_box .tab_box .item span,
.ins_resources3 .center_box .tab_box .item p {
  color: var(--color_fff);
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_resources3 .center_box .content_box {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_resources3 .center_box .content_box .con {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0.8rem 0.24rem;
}
.ins_resources3 .center_box .content_box .con .item {
  width: 100%;
  height: auto;
}
.ins_resources3 .center_box .content_box .con .item:hover .image_box .image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #2EC6D6 -85.14%, rgba(46, 198, 214, 0) 62.41%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_resources3 .center_box .content_box .con .item:hover .image_box .play_box img {
  filter: unset;
}
.ins_resources3 .center_box .content_box .con .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_resources3 .center_box .content_box .con .item .image_box {
  width: 100%;
  height: auto;
  position: relative;
}
.ins_resources3 .center_box .content_box .con .item .image_box .image {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.ins_resources3 .center_box .content_box .con .item .image_box .image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_resources3 .center_box .content_box .con .item .image_box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_resources3 .center_box .content_box .con .item .image_box .play_box {
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ins_resources3 .center_box .content_box .con .item .image_box .play_box img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_resources3 .center_box .content_box .con .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_resources3 .center_box .content_box .con .item .word .t1 {
  width: 100%;
  height: auto;
  color: var(--color_fff);
  font-weight: 500;
  line-height: normal;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_resources3 .center_box .content_box #laypage2 {
  margin-top: 1rem;
}
@media (max-width:990px) {
  .ins_resources3 .center_box .content_box .con {
    grid-template-columns: 1fr;
  }
}
/* 轮播图的线条 */
.swiper_line {
  width: 100%;
  height: 2px;
  position: relative;
  z-index: 1;
  background: #FFFFFF4D;
  display: flex;
}
.swiper_line span {
  background: var(--active_color) !important;
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon1::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3.94rem;
  background: linear-gradient(180deg, #82E1F6 -22.04%, rgba(235, 243, 247, 0) 94.16%);
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}
.ins_productCon1 .content {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  padding-top: 1rem;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  transform: translateX(0%);
}
.ins_productCon1 .content .center_box {
  width: 100%;
  height: auto;
  color: #000000;
}
.ins_productCon1 .content .center_box .idx_title {
  width: 100%;
  height: auto;
  text-align: center;
  line-height: 1.1;
}
.ins_productCon1 .content .center_box .idx_title .t1 {
  font-weight: 900;
}
.ins_productCon1 .content .center_box .idx_title .t3 {
  margin-top: 0;
  font-weight: 900;
}
.ins_productCon1 .content.active {
  opacity: 0;
  transform: translateX(-30%);
}
.ins_productCon1 .content3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon1 .content3 .imgVideo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.ins_productCon1 .content3 .imgVideo .imgs {
  width: 100%;
  height: auto;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_productCon1 .content3 .imgVideo .imgs.active {
  opacity: 1;
  visibility: hidden;
}
.ins_productCon1 .content3 .imgVideo .imgs img {
  width: 100%;
  height: auto;
}
.ins_productCon1 .content3 .imgVideo .imgB {
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.ins_productCon1 .content3 .imgVideo .imgB.active {
  opacity: 1;
  visibility: visible;
}
.ins_productCon1 .content3 .imgVideo .imgB img {
  width: 100%;
  height: auto;
}
.ins_productCon1 .content3 .imgVideo .imgC {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
}
.ins_productCon1 .content3 .imgVideo .imgC.active {
  opacity: 1;
  visibility: visible;
}
.ins_productCon1 .content3 .imgVideo .imgC img {
  width: 100%;
  height: auto;
}
.ins_productCon1 .content3 .imgVideo .video {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
}
.ins_productCon1 .content3 .imgVideo .video.active {
  opacity: 1;
  visibility: visible;
}
.ins_productCon1 .content3 .imgVideo .video video {
  width: 100%;
  height: auto;
}
.ins_productCon1 .content3 .content1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_productCon1 .content3 .content1 .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_productCon1 .content3 .content1 .item_box .item {
  width: 0;
  height: 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;
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_productCon1 .content3 .content1 .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.15rem;
  height: 0.15rem;
  background: #FFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
}
.ins_productCon1 .content3 .content1 .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.58rem;
  height: 0.58rem;
  background: #2EC6D6CC;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
}
.ins_productCon1 .content3 .content1 .item_box .item .icon {
  width: 0;
  height: 0;
  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;
}
.ins_productCon1 .content3 .content1 .item_box .item .icon::before {
  content: '';
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid #0EC6D6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  animation: grow4 5s linear infinite;
}
.ins_productCon1 .content3 .content1 .item_box .item .icon::after {
  content: '';
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #0EC6D6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  animation: grow4 6s linear infinite;
}
.ins_productCon1 .content3 .content1 .item_box .item .word {
  position: absolute;
  width: max-content;
  top: 0.45rem;
  font-size: var(--font24);
  padding: 0.15rem 0.24rem;
  background: linear-gradient(89deg, rgba(0, 0, 0, 0.9) -46.25%, rgba(0, 28, 37, 0) 299.25%);
  border: 1px solid #4AF1FF;
  backdrop-filter: blur(32px);
  border-radius: 0.16rem;
  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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon1 .content3 .content1 .item_box .item .word::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 13px;
  background: url(../images/icon7.png);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 100%;
}
.ins_productCon1 .content3 .content1 .item_box .item.active {
  opacity: 0;
  visibility: hidden;
}
.ins_productCon1 .content3 .content1.active {
  opacity: 0;
  visibility: hidden;
}
@media (max-width:990px) {
  .ins_productCon1 {
    width: 100%;
    height: auto;
  }
  .ins_productCon1 .content {
    position: relative;
    transform: translateX(0%) !important;
    opacity: 1 !important;
  }
  .ins_productCon1 .content .center_box .idx_title {
    max-width: 100%;
    height: auto;
  }
  .ins_productCon1 .content3 {
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }
  .ins_productCon1 .content3 .content1 .item_box .item .word {
    font-size: 12px;
    transform: scale(0.8);
  }
  .ins_productCon1.pt100 {
    padding-top: 1rem;
  }
}
.ins_productCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_productCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.89rem;
}
.ins_productCon2 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .content .swiper_box ul li {
  width: 30%;
  height: auto;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: rgba(21, 24, 29, 0.9);
  backdrop-filter: blur(20px);
  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;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg22.png);
  bottom: 0;
  left: 0;
  background-size: cover;
  pointer-events: none;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg23.png);
  bottom: 0;
  left: 0;
  background-size: cover;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  padding: 0.46rem 0.5rem;
  padding-bottom: 0;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .word {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .word .t1 {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .word .t2 {
  margin-top: 0.18rem;
  font-weight: 200;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .word .t2 p {
  opacity: 0.7;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .idx_more3 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .bntBox {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.28rem;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .bntBox .btn {
  width: fit-content;
  border: 1px solid #FFFFFF4D;
  font-size: var(--font16);
  padding: 0.09rem 0.16rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  color: #FFFFFF;
  cursor: pointer;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .bntBox .btn.active {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  margin-top: 0.11rem;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 67.5%;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.11rem;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .img_box .proImg {
  width: 100%;
  height: auto;
  display: none;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .img_box .proImg .pb {
  padding-bottom: 67.5%;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .img_box .proImg .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo .img_box .proImg.active {
  display: block;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo:hover::before {
  opacity: 1;
}
.ins_productCon2 .center_box .content .swiper_box ul li .centerInfo:hover .word_box .idx_more3 .more {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_productCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_productCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.2rem;
  margin-top: 1rem;
}
.ins_productCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: rgba(21, 24, 29, 0.9);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_productCon3 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg24.png);
  background-size: 100% auto;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.ins_productCon3 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon3 .center_box .item_box .item .img .pb {
  padding-bottom: 83%;
}
.ins_productCon3 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon3 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.36rem;
  padding-bottom: 0.47rem;
  color: #FFFFFF;
  text-align: center;
}
.ins_productCon3 .center_box .item_box .item:hover::after {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_productCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.48rem 0.2rem;
  }
  .ins_productCon3 .center_box .item_box .item .word {
    font-size: var(--font24);
    padding: 0.32rem;
  }
}
.ins_productCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.93rem;
  padding-bottom: 1.93rem;
}
.ins_productCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .idx_title .t4 {
  margin-top: 0.36rem;
}
.ins_productCon4 .center_box .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.36rem;
}
.ins_productCon4 .center_box .idx_more .more {
  gap: 0.5rem;
}
@media (max-width:990px) {
  .ins_productCon4 .center_box .idx_title .t1 p {
    display: contents;
  }
  .ins_productCon4 .center_box .idx_title .t4 p {
    display: contents;
  }
  .ins_productCon4 .center_box .idx_more {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.ins_productCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_productCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .left_box {
  width: 22%;
  padding-top: 1.28rem;
  padding-bottom: 1.28rem;
  position: relative;
  z-index: 1;
}
.ins_productCon5 .center_box .left_box::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0;
  right: 0.5px;
  opacity: 0.3;
}
.ins_productCon5 .center_box .left_box::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 0.4rem;
  background: var(--active_color);
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0;
  right: 0;
  animation: grow5 10s linear infinite;
}
.ins_productCon5 .center_box .left_box .t1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: var(--active_color);
  gap: 0.12rem;
}
.ins_productCon5 .center_box .left_box .t1 img {
  width: 0.52rem;
  height: 0.52rem;
}
.ins_productCon5 .center_box .left_box .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
  font-weight: 300;
}
.ins_productCon5 .center_box .left_box .t2 p {
  opacity: 0.5;
}
.ins_productCon5 .center_box .right_box {
  width: 74.4%;
  padding-top: 1.28rem;
  padding-bottom: 1.28rem;
}
.ins_productCon5 .center_box .right_box .content {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.06rem 0.58rem;
}
.ins_productCon5 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .input {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #FFFFFF1A;
  padding-bottom: 0.06rem;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .input input,
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea {
  width: 100%;
  height: 0.55rem;
  min-height: 40px;
  border: 0;
  border-radius: 0.08rem;
  font-size: var(--font16);
  background: none;
  --color: #FFFFFF66;
  font-weight: 300;
  color: #FFFFFF;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .input input::-webkit-input-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea::-webkit-input-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input input textarea::-webkit-input-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .input input:-moz-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea:-moz-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input input textarea:-moz-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .input input::-moz-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea::-moz-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input input textarea::-moz-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .input input:-ms-input-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea:-ms-input-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input input textarea:-ms-input-placeholder,
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .input textarea {
  min-height: 80px;
  padding: 0.23rem 0.26rem;
  border: 1px solid #FFFFFF1A;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem 0.2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 0.26rem 0;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .list .one {
  font-size: var(--font16);
  color: #FFFFFF66;
}
.ins_productCon5 .center_box .right_box .content .item_box .item .list .one .layui-form-radio > i {
  font-size: var(--font15);
}
.ins_productCon5 .center_box .right_box .content .item_box .item.grid3 .input {
  border-bottom: 0;
}
.ins_productCon5 .center_box .right_box .content .cont_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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.26rem;
}
.ins_productCon5 .center_box .right_box .content .cont_box .cont {
  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;
  gap: 0.16rem;
}
.ins_productCon5 .center_box .right_box .content .cont_box .cont .item {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .right_box .content .cont_box .cont .item .layui-form-checkbox div {
  font-size: var(--font16);
  color: #FFFFFF66;
}
.ins_productCon5 .center_box .right_box .content .cont_box .cont .item a {
  display: contents;
  font-size: var(--font16);
  color: #FFFFFF66;
}
.ins_productCon5 .center_box .right_box .content .cont_box .cont .item .layui-form-checkbox[lay-skin=primary] > i {
  width: 14px;
  height: 14px;
  border-radius: 100px;
  background: none;
  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_productCon5 .center_box .right_box .content .cont_box .cont .item .layui-icon-ok::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--active_color);
  display: block;
  border-radius: 100px;
  opacity: 0;
}
.ins_productCon5 .center_box .right_box .content .cont_box .cont .item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.ins_productCon5 .center_box .right_box .content .cont_box .idx_more {
  width: fit-content;
  height: auto;
}
.ins_productCon5 .center_box .right_box .content .cont_box .idx_more .more {
  gap: 0.5rem;
}
.ins_productCon5 .imgbg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.ins_productCon5 .imgbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_productCon5 {
    width: 100%;
    height: auto;
    padding: 1.6rem 0;
  }
  .ins_productCon5 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_productCon5 .center_box .left_box,
  .ins_productCon5 .center_box .right_box {
    padding: 0;
  }
  .ins_productCon5 .center_box .left_box::after {
    opacity: 0;
  }
  .ins_productCon5 .center_box .left_box::before {
    opacity: 0;
  }
}
.videoBtn {
  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.24rem;
}
.videoBtn .btn {
  width: fit-content;
  position: relative;
  z-index: 1;
  border-radius: 100px;
  padding: 0.16rem 0.4rem;
  overflow: hidden;
  cursor: pointer;
}
.videoBtn .btn .video {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -1;
  top: 0;
  left: 0;
}
.videoBtn .btn .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videoBtn .btn .word {
  width: 100%;
  height: auto;
  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;
  gap: 0.16rem;
  font-size: var(--font16);
}
.ins_solveCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 1rem;
}
.ins_solveCon1::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3.94rem;
  background: linear-gradient(180deg, #82E1F6 -22.04%, rgba(235, 243, 247, 0) 94.16%);
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}
.ins_solveCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1.38rem;
  position: relative;
  z-index: 1;
}
.ins_solveCon1 .center_box .content .img {
  width: 100%;
  height: auto;
}
.ins_solveCon1 .center_box .content .img img {
  width: 100%;
  height: auto;
}
.ins_solveCon1 .center_box .content .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_solveCon1 .center_box .content .item_box .item {
  width: 0;
  height: 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;
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_solveCon1 .center_box .content .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.15rem;
  height: 0.15rem;
  background: #FFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
}
.ins_solveCon1 .center_box .content .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.58rem;
  height: 0.58rem;
  background: #2EC6D6CC;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
}
.ins_solveCon1 .center_box .content .item_box .item .icon {
  width: 0;
  height: 0;
  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;
}
.ins_solveCon1 .center_box .content .item_box .item .icon::before {
  content: '';
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid #0EC6D6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  animation: grow4 5s linear infinite;
}
.ins_solveCon1 .center_box .content .item_box .item .icon::after {
  content: '';
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #0EC6D6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  animation: grow4 6s linear infinite;
}
.ins_solveCon1 .center_box .content .item_box .item .word {
  position: absolute;
  width: max-content;
  top: 0.4rem;
  font-size: var(--font24);
  padding: 0.15rem 0.24rem;
  background: linear-gradient(89deg, rgba(0, 0, 0, 0.9) -46.25%, rgba(0, 28, 37, 0) 299.25%);
  border: 1px solid #4AF1FF;
  backdrop-filter: blur(32px);
  border-radius: 0.16rem;
  color: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_solveCon1 .center_box .content .item_box .item.active {
  opacity: 0;
  visibility: hidden;
}
.ins_solveCon1 .center_box .content .item_box .item:hover .word {
  opacity: 1;
  visibility: visible;
}
.ins_solveCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_solveCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ins_solveCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding-left: 1rem;
  padding-right: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_solveCon2 .center_box .item_box .item.item1 {
  padding-left: 0;
}
.ins_solveCon2 .center_box .item_box .item.item2 {
  padding-right: 0;
}
.ins_solveCon2 .center_box .item_box .item .icon {
  width: 1.14rem;
  height: 1.14rem;
  flex-shrink: 0;
}
.ins_solveCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_solveCon2 .center_box .item_box .item .word .t1 {
  color: var(--active_color);
  font-weight: 700;
}
.ins_solveCon2 .center_box .item_box .item .word .t2 {
  color: #FFFFFFB2;
  margin-top: 0.1rem;
}
@media (max-width:990px) {
  .ins_solveCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.32rem;
  }
  .ins_solveCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
    padding: 0.4rem !important;
    border: 1px solid #0ec5d64b;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    border-radius: 0.16rem;
  }
}
.ins_solveCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_solveCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon3 .content_info {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_solveCon3 .content_info .content_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
}
.ins_solveCon3 .content_info .content_box .content {
  width: 100%;
  height: auto;
}
.ins_solveCon3 .content_info .content_box .content .left_box {
  width: 45%;
  padding-top: 2.3rem;
  position: relative;
  z-index: 1;
  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;
  padding-bottom: 1.6rem;
  gap: 1.6rem;
}
.ins_solveCon3 .content_info .content_box .content .left_box .number {
  font-size: 2.2rem;
  background: linear-gradient(180deg, rgba(46, 198, 214, 0.15) 19.41%, rgba(46, 198, 214, 0) 87.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width:990px) {
  .ins_solveCon3 .content_info .content_box .content .left_box .number {
    font-size: 1.2rem;
    background: linear-gradient(180deg, rgba(46, 198, 214, 0.5) 19.41%, rgba(46, 197, 214, 0.164) 87.8%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.ins_solveCon3 .content_info .content_box .content .left_box .word {
  width: 100%;
  height: auto;
}
.ins_solveCon3 .content_info .content_box .content .left_box .word .t1 {
  color: var(--active_color);
  font-weight: 700;
}
.ins_solveCon3 .content_info .content_box .content .left_box .word .t2 {
  color: #FFFFFF;
  opacity: 0.7;
  margin-top: 0.24rem;
  font-weight: 300;
}
.ins_solveCon3 .content_info .content_box .content .left_box .word .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem 0.3rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: var(--font24);
  margin-top: 0.46rem;
  color: #FFFFFF;
}
.ins_solveCon3 .content_info .content_box .content .left_box .word .list .one {
  color: #FFFFFF;
  font-weight: 200;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_solveCon3 .content_info .content_box .content .left_box .word .list .one:hover {
  color: var(--active_color);
  text-decoration: underline;
}
@media (max-width:990px) {
  .ins_solveCon3 .content_info .content_box .content .left_box {
    padding-bottom: 0.4rem;
    gap: 0.4rem;
  }
}
.ins_solveCon3 .content_info .content_box .content .right_box {
  width: 41.5%;
  height: auto;
}
.ins_solveCon3 .content_info .content_box .content .right_box .img {
  width: 100%;
  height: 100%;
  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;
}
@media (max-width:990px) {
  .ins_solveCon3 .content_info .content_box .content .right_box .img {
    width: 100%;
    height: 300px;
  }
}
@media (max-width:990px) {
  .ins_solveCon3 .content_info .content_box .content {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
  }
  .ins_solveCon3 .content_info .content_box .content::after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 50%;
    background: linear-gradient(194deg, #82E1F6 -22.04%, rgba(235, 243, 247, 0) 94.16%);
    left: 50%;
    transform: translateX(-50vw);
    opacity: 0.3;
    z-index: -1;
    top: 0;
  }
  .ins_solveCon3 .content_info .content_box .content .left_box {
    padding-top: 0;
  }
  .ins_solveCon3 .content_info .content_box .content .left_box .number {
    position: relative;
    z-index: 1;
    line-height: 1;
  }
}
.ins_solveCon3 .content_info .content_box .light_b {
  width: 22.82rem;
  height: auto;
  position: absolute;
  top: 80%;
  left: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}
.ins_solveCon3 .content_info .content_box .light_b img {
  width: 100%;
  height: auto;
  opacity: 0.3;
}
@media (max-width:990px) {
  .ins_solveCon3 .content_info .content_box {
    padding-top: 0;
  }
}
@media (max-width:990px) {
  .ins_solveCon3 .content_info {
    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.6rem;
  }
}
.ins_solveCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_solveCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon4 .content_info {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_solveCon4 .content_info .content_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  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;
}
.ins_solveCon4 .content_info .content_box .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.68rem;
}
.ins_solveCon4 .content_info .content_box .content .center_box {
  width: 45%;
  height: 100%;
  position: relative;
  z-index: 1;
  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;
  padding-bottom: 1.6rem;
  gap: 1.6rem;
}
.ins_solveCon4 .content_info .content_box .content .center_box .number {
  font-size: 2.2rem;
  background: linear-gradient(180deg, rgba(46, 198, 214, 0.15) 19.41%, rgba(46, 198, 214, 0) 87.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_solveCon4 .content_info .content_box .content .center_box .word {
  width: 100%;
  height: auto;
}
.ins_solveCon4 .content_info .content_box .content .center_box .word .t1 {
  color: var(--active_color);
  font-weight: 700;
}
.ins_solveCon4 .content_info .content_box .content .center_box .word .t2 {
  color: #FFFFFF;
  opacity: 0.7;
  margin-top: 0.24rem;
  font-weight: 300;
}
.ins_solveCon4 .content_info .content_box .content .center_box .word .t3 {
  margin-top: 0.24rem;
  color: #FFFFFFB2;
}
.ins_solveCon4 .content_info .content_box .content .center_box .word .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: var(--font24);
  margin-top: 0.24rem;
  color: #FFFFFFB2;
}
.ins_solveCon4 .content_info .content_box .content .center_box .word .list .one {
  color: #FFFFFFB2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_solveCon4 .content_info .content_box .content .center_box .word .list .one:hover {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_solveCon4 .content_info .content_box .images_box {
  width: 41.5%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box .item {
  width: 0;
  height: 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;
  position: absolute;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.15rem;
  height: 0.15rem;
  background: #FFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.58rem;
  height: 0.58rem;
  background: #2EC6D6CC;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box .item .icon {
  width: 0;
  height: 0;
  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;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box .item .icon::before {
  content: '';
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid #0EC6D6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  animation: grow4 5s linear infinite;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box .item .icon::after {
  content: '';
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #0EC6D6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  animation: grow4 6s linear infinite;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box .item .word {
  position: absolute;
  width: max-content;
  top: 0.4rem;
  font-size: var(--font24);
  color: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box .item.active {
  opacity: 0;
  visibility: hidden;
}
.ins_solveCon4 .content_info .content_box .images_box .item_box .item:hover .word {
  opacity: 1;
  visibility: visible;
}
.ins_solveCon4 .content_info .content_box .images_box .img {
  width: 100%;
  height: 100%;
  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_solveCon4 .content_info .content_box .light_b {
  width: 31.09rem;
  height: auto;
  position: absolute;
  top: 80%;
  left: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}
.ins_solveCon4 .content_info .content_box .light_b img {
  width: 100%;
  height: auto;
  opacity: 0.5;
}
@media (max-width:990px) {
  .ins_solveCon4 .content_info .content_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_solveCon4 .content_info .content_box .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 0;
  }
  .ins_solveCon4 .content_info .content_box .content .center_box {
    width: 100%;
    height: auto;
  }
  .ins_solveCon4 .content_info .content_box .content .center_box .number {
    transform: translateY(30%);
  }
  .ins_solveCon4 .content_info .content_box .images_box {
    width: 100%;
    height: auto;
  }
  .ins_solveCon4 .content_info .content_box:first-child {
    padding-top: 0 !important;
  }
}
.ins_solveCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_solveCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_solveCon5 .center_box .content .left_box {
  width: 59.7%;
}
.ins_solveCon5 .center_box .content .left_box .swiper_box {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_solveCon5 .center_box .content .left_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .content .left_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .content .left_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 63%;
}
.ins_solveCon5 .center_box .content .left_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_solveCon5 .center_box .content .left_box {
    display: none;
  }
}
.ins_solveCon5 .center_box .content .right_box {
  width: 36%;
}
.ins_solveCon5 .center_box .content .right_box .word {
  width: 100%;
  height: auto;
  color: var(--active_color);
}
.ins_solveCon5 .center_box .content .right_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.31rem;
}
.ins_solveCon5 .center_box .content .right_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.29rem 0;
  border-bottom: 1px solid #FFFFFF4D;
}
.ins_solveCon5 .center_box .content .right_box .item_box .item .top {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  font-size: var(--font24);
  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;
  gap: 0.2rem;
}
.ins_solveCon5 .center_box .content .right_box .item_box .item .top i {
  width: 0.2rem;
  height: 0.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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  flex-shrink: 0;
  transform: rotate(-90deg);
  font-size: 12px;
}
.ins_solveCon5 .center_box .content .right_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.16rem;
  display: none;
}
.ins_solveCon5 .center_box .content .right_box .item_box .item .bot .t1 {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .content .right_box .item_box .item .bot .t1 p {
  color: #FFFFFF99;
}
.ins_solveCon5 .center_box .content .right_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_solveCon5 .center_box .content .right_box .item_box .item.active .top i {
  transform: rotate(0deg);
}
@media (max-width:990px) {
  .ins_solveCon5 .center_box .content .right_box .item_box .item {
    padding: 0.4rem 0;
  }
}
.ins_solveCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_solveCon6 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_solveCon6 .content .center_box {
  width: 31%;
}
.ins_solveCon6 .content .center_box .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.26rem;
}
.ins_solveCon6 .content .center_box .word_box .one {
  color: #FFFFFF;
  font-weight: 700;
}
.ins_solveCon6 .content .center_box .word_box .one span {
  color: var(--active_color);
}
.ins_solveCon6 .content .center_box .word_box1 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_solveCon6 .content .center_box .word_box1 .t1 {
  color: #FFFFFF;
  font-size: var(--font18);
}
.ins_solveCon6 .content.center {
  width: 100%;
  height: 100%;
  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_solveCon6 .content2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_solveCon6 .content2 .svg_box {
  width: fit-content;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_solveCon6 .content2 .svg_box .svg {
  width: 2.6rem;
  position: relative;
  z-index: 1;
}
.ins_solveCon6 .content2 .svg_box .svg svg {
  width: 100%;
  height: auto;
}
.ins_solveCon6 .content2 .svg_box .img1 {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  transform: translateY(-80%) translateX(-50%);
}
.ins_solveCon6 .content2 .svg_box .img2 {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  transform: translateY(50%) translateX(-50%);
  background: var(--active_color);
  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;
  width: 0.88rem;
  height: 0.88rem;
}
.ins_solveCon6 .content2 .svg_box .img2::before {
  content: '';
  position: absolute;
  width: 0.88rem;
  height: 0.88rem;
  border: 1px solid #0EC6D6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  animation: grow4 5s linear infinite;
}
.ins_solveCon6 .content2 .svg_box .img2::after {
  content: '';
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid #0EC6D6;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  animation: grow4 4s linear infinite;
}
.ins_solveCon6 .content2 .svg_box .aircraftBox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ins_solveCon6 .content2 .svg_box .aircraftBox .item {
  width: 0;
  height: 0;
  background: darkred;
  position: relative;
}
.ins_solveCon6 .content2 .svg_box .aircraftBox .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--active_color);
  width: 0.25rem;
  height: 2px;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(80%);
  box-shadow: 0 0 12px 4px var(--active_color);
}
.ins_solveCon6 .content2 .img {
  width: 33.5%;
}
@media (max-width:990px) {
  .ins_solveCon6 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_solveCon6 .content .center_box {
    width: 100%;
    height: auto;
  }
  .ins_solveCon6 .content2 {
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }
  .ins_solveCon6 .content2 .svg_box {
    width: 30%;
  }
  .ins_solveCon6 .content2 .img {
    width: 50%;
  }
}
.ins_solveCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_solveCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon7 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_solveCon7 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.ins_solveCon7 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #1855744D;
  position: relative;
  z-index: 1;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg26.png);
  background-size: 100% 100%;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo .left_box {
  width: 37.24%;
  padding: 0.52rem 0.48rem;
  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;
  gap: 0.4rem;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo .left_box .word {
  width: 100%;
  height: auto;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo .left_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
  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.1rem;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo .left_box .word .t2 span {
  opacity: 0.7;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo .right_box {
  width: 62.76%;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo .right_box .img .pb {
  padding-bottom: 66%;
}
.ins_solveCon7 .center_box .content .swiper_box ul li .centerInfo .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_solveCon7 .center_box .content .swiper_line {
  margin-top: 1rem;
}
.ins_appCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_appCon1 .content {
  width: 100%;
  height: 100%;
  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;
}
.ins_appCon1 .content .center_box {
  width: 39%;
  height: auto;
}
.ins_appCon1 .content .center_box .t1 {
  font-weight: 900;
}
.ins_appCon1 .content .center_box .t2 {
  margin-top: 0.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;
  gap: 0.29rem;
}
.ins_appCon1 .content .center_box .t3 {
  margin-top: 0.2rem;
  font-weight: 300;
}
.ins_appCon1 .content .center_box .idx_more {
  margin-top: 1.2rem;
}
@media (max-width:990px) {
  .ins_appCon1 .content .center_box {
    width: 100%;
    height: auto;
  }
}
.ins_appCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 0.18rem;
  padding-bottom: 0.18rem;
  margin-top: 0.13rem;
  border-bottom: 1px solid #FFFFFF4D;
}
.ins_appCon2 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_appCon2 .center_box .left_box {
  width: fit-content;
}
.ins_appCon2 .center_box .left_box .ins_nav {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  font-size: var(--font18);
  font-weight: 300;
}
.ins_appCon2 .center_box .left_box .ins_nav .one {
  color: #FFFFFF;
}
.ins_appCon2 .center_box .left_box .ins_nav .one.active {
  color: var(--active_color);
}
.ins_appCon2 .center_box .right_box {
  width: fit-content;
  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.68rem;
}
.ins_appCon2 .center_box .right_box .item_box {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem 0.68rem;
  font-size: var(--font18);
  font-weight: 300;
}
.ins_appCon2 .center_box .right_box .item_box .item {
  cursor: pointer;
}
.ins_appCon2 .center_box .right_box .item_box .item.active {
  color: var(--active_color);
}
.ins_appCon2 .center_box .right_box .idx_more {
  width: fit-content;
}
.ins_appCon2.posFix {
  margin-top: 0;
}
.ins_appCon2.small {
  margin-top: 0.18rem;
}
.ins_appCon2.pa34 {
  padding: 0.34rem 0;
}
@media (max-width:990px) {
  .ins_appCon2 {
    display: none;
  }
}
.ins_appCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_appCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_appCon3 .center_box .swiper_box ul li {
  width: 0%;
  height: auto;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: rgba(21, 24, 29, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 0.16rem;
  position: relative;
  z-index: 1;
  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;
  gap: 1.6rem;
  padding: 0.44rem;
  border: 1px solid #2EC6D600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg28.png);
  bottom: 0;
  left: 0;
  background-size: cover;
  pointer-events: none;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg27.png);
  bottom: 0;
  left: 0;
  background-size: cover;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: none;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo .top {
  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;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo .top .icon {
  width: 0.88rem;
  height: 0.88rem;
  flex-shrink: 0;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo .top .word {
  width: fit-content;
  color: #FFF;
  font-size: var(--font40);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo .bot {
  width: 100%;
  height: auto;
  color: #FFF;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo:hover {
  border: 1px solid #2EC6D6;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo:hover::before {
  opacity: 1;
}
.ins_appCon3 .center_box .swiper_box ul li .centerInfo:hover .top .word {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_appCon3 .center_box .idx_title .t1 p {
    display: contents;
  }
}
.ins_appCon4 {
  width: 100%;
  height: 200vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_appCon4 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.ins_appCon4 .maskBox .center_box {
  width: 100%;
  height: 100%;
  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_appCon4 .maskBox .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-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.ins_appCon4 .maskBox .center_box .content .left {
  width: 36%;
  height: auto;
  padding: 1.3rem 0;
  opacity: 0;
  transform: translateY(1rem);
  position: relative;
  z-index: 5;
}
.ins_appCon4 .maskBox .center_box .content .left .item_box {
  width: 100%;
  height: auto;
}
.ins_appCon4 .maskBox .center_box .content .left .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.29rem 0;
  border-bottom: 1px solid #FFFFFF4D;
}
.ins_appCon4 .maskBox .center_box .content .left .item_box .item .top {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  font-size: var(--font24);
  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;
  gap: 0.2rem;
}
.ins_appCon4 .maskBox .center_box .content .left .item_box .item .top i {
  width: 0.2rem;
  height: 0.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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  flex-shrink: 0;
  transform: rotate(-90deg);
  font-size: 12px;
}
.ins_appCon4 .maskBox .center_box .content .left .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.16rem;
  display: none;
}
.ins_appCon4 .maskBox .center_box .content .left .item_box .item .bot .t1 {
  width: 100%;
  height: auto;
}
.ins_appCon4 .maskBox .center_box .content .left .item_box .item .bot .t1 p {
  color: #FFFFFF99;
}
.ins_appCon4 .maskBox .center_box .content .left .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appCon4 .maskBox .center_box .content .left .item_box .item.active .top i {
  transform: rotate(0deg);
}
@media (max-width:990px) {
  .ins_appCon4 .maskBox .center_box .content .left .item_box .item {
    padding: 0.4rem 0;
  }
}
.ins_appCon4 .maskBox .center_box .content .word_box {
  width: fit-content;
  height: auto;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.ins_appCon4 .maskBox .center_box .content .word_box .t1 {
  font-weight: 700;
  color: #FFFFFF;
}
.ins_appCon4 .maskBox .center_box .content .img_box {
  width: 59.5%;
  height: 6.6rem;
  position: relative;
  z-index: 1;
}
.ins_appCon4 .maskBox .center_box .content .img_box img {
  width: 110vw;
  height: 110vh;
  object-fit: cover;
  position: absolute;
  max-width: unset;
  max-height: unset;
  left: -45vw;
  top: -15vh;
}
@media (max-width:990px) {
  .ins_appCon4 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-bottom: 1.6rem;
  }
  .ins_appCon4 .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_appCon4 .maskBox .center_box {
    width: 100%;
    height: auto;
  }
  .ins_appCon4 .maskBox .center_box .content {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_appCon4 .maskBox .center_box .content .left {
    width: 100%;
    height: auto;
    order: 2;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    margin-top: 1rem;
  }
  .ins_appCon4 .maskBox .center_box .content .word_box {
    order: 1;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    left: unset;
    top: unset;
    transform: translateY(0) translateX(0);
  }
  .ins_appCon4 .maskBox .center_box .content .img_box {
    order: 3;
    width: 100%;
    height: auto;
    margin-top: 0.6rem;
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .ins_appCon4 .maskBox .center_box .content .img_box img {
    width: 100%;
    height: auto;
    left: unset;
    top: unset;
    position: relative;
    z-index: 1;
  }
}
.ins_appCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_appCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 1rem;
  border-radius: 0.16rem;
  background: rgba(24, 85, 116, 0.3);
  backdrop-filter: blur(16px);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_appCon5 .center_box .item_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg29.png);
  bottom: 0;
  left: 0;
  background-size: cover;
  pointer-events: none;
}
.ins_appCon5 .center_box .item_box .item {
  width: 20%;
  height: 5.23rem;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appCon5 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 1.2rem);
  background: #FFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0.6rem;
  right: 0;
  opacity: 0.2;
}
.ins_appCon5 .center_box .item_box .item .content1 {
  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;
  padding: 0.6rem 0.44rem;
  position: relative;
  z-index: 2;
}
.ins_appCon5 .center_box .item_box .item .content1 .word_box {
  width: 100%;
  height: auto;
}
.ins_appCon5 .center_box .item_box .item .content1 .word_box .icon {
  width: 0.78rem;
  height: 0.78rem;
}
.ins_appCon5 .center_box .item_box .item .content1 .word_box .word {
  color: var(--active_color);
  margin-top: 0.48rem;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_appCon5 .center_box .item_box .item .content1 .idx_more3 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_appCon5 .center_box .item_box .item .content2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.56rem 0.4rem;
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  opacity: 0;
  transform: translateX(100%);
}
.ins_appCon5 .center_box .item_box .item .content2 .word {
  width: 100%;
  height: auto;
}
.ins_appCon5 .center_box .item_box .item .content2 .word .icon {
  width: 0.78rem;
  height: 0.78rem;
}
.ins_appCon5 .center_box .item_box .item .content2 .word .t2 {
  margin-top: 0.12rem;
  color: #FFFFFFB2;
  font-weight: 300;
}
.ins_appCon5 .center_box .item_box .item .content2 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ins_appCon5 .center_box .item_box .item .content2 .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_appCon5 .center_box .item_box .item.active {
  width: 40%;
}
.ins_appCon5 .center_box .item_box .item.active::after {
  opacity: 0;
}
.ins_appCon5 .center_box .item_box .item.active .content1 .word_box .icon {
  filter: brightness(0) invert(1);
}
.ins_appCon5 .center_box .item_box .item.active .content1 .word_box .word {
  transform: translateX(-1rem);
  opacity: 0;
}
.ins_appCon5 .center_box .item_box .item.active .content1 .idx_more3 {
  transform: translateX(-1rem);
  opacity: 0;
}
.ins_appCon5 .center_box .item_box .item.active .content2 {
  transform: translateX(0);
  opacity: 1;
}
.ins_appCon5 .center_box .item_box .item:last-child::after {
  opacity: 0;
}
@media (max-width:990px) {
  .ins_appCon5 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.32rem;
  }
  .ins_appCon5 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
  }
  .ins_appCon5 .center_box .item_box .item::after {
    opacity: 0;
  }
  .ins_appCon5 .center_box .item_box .item .content1 {
    display: none;
  }
  .ins_appCon5 .center_box .item_box .item .content2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    transform: translateX(0);
    opacity: 1;
  }
  .ins_appCon5 .center_box .item_box .item .content2 .word {
    width: 100%;
    height: auto;
  }
  .ins_appCon5 .center_box .item_box .item .content2 .word .icon {
    filter: brightness(0) invert(1);
  }
  .ins_appCon5 .center_box .item_box .item .content2 .word .t1 {
    margin-top: 0.6rem;
  }
}
.ins_appCon6 {
  width: 100%;
  height: 300vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_appCon6 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/bg30.png);
  background-size: cover;
  padding-top: 1.6rem;
}
.ins_appCon6 .maskBox .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon6 .maskBox .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .left_box {
  width: 37%;
  transform: translateY(1rem);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .left_box .word {
  color: #FFF;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box {
  width: 58.5%;
  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;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box .img {
  width: 47.6%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box .img .pb {
  padding-bottom: 115%;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box .list {
  width: 40%;
  transform: translateY(1rem);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  opacity: 0;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box .list p {
  color: #FFFFFFB2;
  font-size: var(--font20);
  font-weight: 200;
  position: relative;
  z-index: 1;
  padding-left: 0.24rem;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box .list p::after {
  content: '';
  position: absolute;
  width: 0.1rem;
  height: 0.1rem;
  background: #FFFFFFB2;
  border-radius: 100px;
  top: 0.4em;
  left: 0;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li.swiper-slide-active .centerInfo .left_box {
  transform: translateY(0);
  opacity: 1;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li.swiper-slide-active .centerInfo .right_box .list {
  transform: translateY(0);
  opacity: 1;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li.swiper-slide-prev .centerInfo .left_box {
  transform: translateY(-1rem);
  opacity: 0;
}
.ins_appCon6 .maskBox .center_box .swiper_box ul li.swiper-slide-prev .centerInfo .right_box .list {
  transform: translateY(-1rem);
  opacity: 0;
}
.ins_appCon6 .maskBox .idxPageShow2 {
  width: fit-content;
  position: absolute;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  right: 0;
  top: 54%;
  bottom: unset;
  transform: translateY(0%) translateX(50%);
}
@media (max-width:990px) {
  .ins_appCon6 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-bottom: 1.6rem;
  }
  .ins_appCon6 .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_appCon6 .maskBox .center_box {
    width: 100%;
    height: auto;
  }
  .ins_appCon6 .maskBox .center_box .swiper_box {
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }
  .ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo {
    width: 100%;
    height: auto;
  }
  .ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .left_box {
    width: 100%;
    height: auto;
  }
  .ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.42rem;
  }
  .ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box .img {
    width: 100%;
    height: auto;
  }
  .ins_appCon6 .maskBox .center_box .swiper_box ul li .centerInfo .right_box .list {
    width: 100%;
    height: auto;
  }
  .ins_appCon6 .maskBox .idxPageShow2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: 0.4rem;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -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;
    transform: translateY(0%) translateX(0%);
    top: unset;
  }
}
.ins_productCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_productCon6 .banner_img {
  width: 100%;
  height: auto;
}
.ins_productCon6 .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: rgba(21, 24, 29, 0.4);
  backdrop-filter: blur(5px);
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_productCon6 .item_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg31.png);
  bottom: 0;
  left: 0;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}
.ins_productCon6 .item_box .item {
  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;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
  padding: 0.2rem 0;
}
.ins_productCon6 .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #2EC6D6 0%, rgba(46, 198, 214, 0) 100%);
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: -1;
}
.ins_productCon6 .item_box .item::before {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 0.38rem - 0.38rem);
  background: #FFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0.38rem;
  right: 0;
  opacity: 0.2;
}
.ins_productCon6 .item_box .item .img {
  width: 33%;
}
.ins_productCon6 .item_box .item .img .pb {
  padding-bottom: 100%;
}
.ins_productCon6 .item_box .item .img .pb .ab {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon6 .item_box .item .word {
  font-size: var(--font24);
  color: #FFF;
  font-weight: 200;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_productCon6 .item_box .item.active::after {
  opacity: 1;
}
.ins_productCon6 .item_box .item.active .word {
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width:990px) {
  .ins_productCon6 .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_productCon6 .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_productCon6 .item_box .item .img {
    width: 20%;
  }
  .ins_productCon6 .item_box .item .word {
    font-size: var(--font18);
  }
}
.ins_productCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_productCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_productCon7 .center_box .content .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon7 .center_box .content .img img,
.ins_productCon7 .center_box .content .img video {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content .icon {
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  cursor: pointer;
}
.ins_productCon7 .center_box .content2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 1.6rem;
  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: 1.2rem;
}
.ins_productCon7 .center_box .content2 .swiper_box {
  width: 68%;
}
.ins_productCon7 .center_box .content2 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content2 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_productCon7 .center_box .content2 .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(46, 198, 214, 0) 22.98%, rgba(46, 198, 214, 0.6) 100%);
  bottom: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_productCon7 .center_box .content2 .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 3;
  bottom: 0;
  z-index: 5;
  color: #FFF;
  padding: 0.4rem;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_productCon7 .center_box .content2 .swiper_box ul li .centerInfo .word .t1 {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content2 .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.2rem;
  color: #FFFFFFB2;
}
.ins_productCon7 .center_box .content2 .swiper_box ul li .centerInfo .imgVideo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0.3;
}
@media (max-width:990px) {
  .ins_productCon7 .center_box .content2 .swiper_box ul li .centerInfo {
    background: #0EC6D61A;
  }
  .ins_productCon7 .center_box .content2 .swiper_box ul li .centerInfo::after {
    height: 60%;
    z-index: -1;
  }
  .ins_productCon7 .center_box .content2 .swiper_box ul li .centerInfo .word {
    position: relative;
    z-index: 1;
  }
}
.ins_productCon7 .center_box .content2 .swiper_box ul li.swiper-slide-active .centerInfo::after {
  opacity: 1;
}
.ins_productCon7 .center_box .content2 .swiper_box ul li.swiper-slide-active .centerInfo .word {
  opacity: 1;
}
.ins_productCon7 .center_box .content2 .swiper_box ul li.swiper-slide-active .centerInfo .imgVideo {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_productCon7 .center_box .content2 .swiper_box {
    width: 100%;
    height: auto;
  }
}
.ins_productCon7 .center_box .content2 .swiper_icon {
  z-index: 5;
}
@media (max-width:990px) {
  .ins_productCon7 .center_box .content2 .swiper_icon {
    display: none;
  }
}
.ins_productCon7 .center_box .content2 .idxPageShow {
  width: 68%;
  position: absolute;
  bottom: 0.4rem;
  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;
  padding-right: 0.4rem;
}
@media (max-width:990px) {
  .ins_productCon7 .center_box .content2 .idxPageShow {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width:990px) {
  .ins_productCon7 .center_box .content2 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.ins_productCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_productCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon8 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_productCon8 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon8 .center_box .content .swiper_box ul li {
  width: calc(50% - 0.12rem);
  height: auto;
}
.ins_productCon8 .center_box .content .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-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  border-radius: 0.16rem;
  background: #1855744D;
  backdrop-filter: blur(16px);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #2EC6D600;
  overflow: hidden;
}
.ins_productCon8 .center_box .content .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg33.png);
  bottom: 0;
  left: 0;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}
.ins_productCon8 .center_box .content .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  padding: 0.36rem;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}
.ins_productCon8 .center_box .content .swiper_box ul li .centerInfo .word_box .t1 {
  color: var(--active_color);
  font-weight: 500;
}
.ins_productCon8 .center_box .content .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: 0.2rem;
  color: #FFFFFFB2;
}
.ins_productCon8 .center_box .content .swiper_box ul li .centerInfo .word_box .number {
  font-size: 0.96rem;
  background: linear-gradient(180deg, rgba(46, 197, 214, 0.2) -45%, rgba(46, 198, 214, 0) 86.76%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  position: absolute;
  top: 100%;
  line-height: 1.4;
}
.ins_productCon8 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 57.3%;
  margin-top: 0.68rem;
}
.ins_productCon8 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 84%;
}
.ins_productCon8 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon8 .center_box .content .swiper_box ul li .centerInfo:hover {
  background: rgba(24, 85, 116, 0.5);
  border: 1px solid #2EC6D6;
}
.ins_productCon8 .center_box .content .swiper_line {
  margin-top: 1rem;
}
.ins_productCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 0.8rem;
}
.ins_productCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon9 .content_info {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon9 .content_info .content {
  width: 100%;
  height: auto;
}
.ins_productCon9 .content_info .content .left_box {
  width: 40%;
}
.ins_productCon9 .content_info .content .left_box .swiper_img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon9 .content_info .content .left_box .swiper_img ul li {
  width: 100%;
  height: auto;
}
.ins_productCon9 .content_info .content .left_box .swiper_img ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon9 .content_info .content .left_box .swiper_img ul li .centerInfo .pb {
  padding-bottom: 113.1%;
}
.ins_productCon9 .content_info .content .left_box .swiper_img ul li .centerInfo .pb .ab {
  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_productCon9 .content_info .content .right_box {
  width: 53%;
  padding: 1.54rem 0;
  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;
  gap: 1rem;
}
.ins_productCon9 .content_info .content .right_box .item_box {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #FFFFFF4D;
  border-radius: 100px;
}
.ins_productCon9 .content_info .content .right_box .item_box .item {
  width: fit-content;
  padding: 0.18rem 0.28rem;
  border-radius: 100px;
  font-size: var(--font18);
  color: #FFFFFF;
  font-weight: 200;
  cursor: pointer;
}
.ins_productCon9 .content_info .content .right_box .item_box .item.active {
  background: var(--active_color);
}
.ins_productCon9 .content_info .content .right_box .swiper_word {
  width: 100%;
  height: auto;
}
.ins_productCon9 .content_info .content .right_box .swiper_word ul li {
  width: 100%;
  height: auto;
}
.ins_productCon9 .content_info .content .right_box .swiper_word ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon9 .content_info .content .right_box .swiper_word ul li .centerInfo .number {
  font-size: 1.8rem;
  color: #FFF;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(46, 198, 214, 0.1) -45%, rgba(46, 198, 214, 0) 86.76%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  transform: translateY(-80%);
  white-space: nowrap;
}
@media (max-width:990px) {
  .ins_productCon9 .content_info .content .right_box .swiper_word ul li .centerInfo .number {
    transform: translateY(50%);
    bottom: 0;
  }
}
.ins_productCon9 .content_info .content .right_box .swiper_word ul li .centerInfo .list_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.46rem;
}
.ins_productCon9 .content_info .content .right_box .swiper_word ul li .centerInfo .list_box .item {
  width: 100%;
  height: auto;
}
.ins_productCon9 .content_info .content .right_box .swiper_word ul li .centerInfo .list_box .item .icon {
  font-size: var(--font32);
  color: #FFFFFF;
}
.ins_productCon9 .content_info .content .right_box .swiper_word ul li .centerInfo .list_box .item .word {
  font-size: var(--font24);
  color: #FFFFFF;
  opacity: 0.6;
  margin-top: 0.12rem;
}
@media (max-width:990px) {
  .ins_productCon9 .content_info .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .ins_productCon9 .content_info .content .right_box {
    padding: 0;
  }
  .ins_productCon9 .content_info .content .right_box .swiper_word ul li .centerInfo .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_productCon9 .content_info .content .left_box .swiper_img ul li .centerInfo .pb {
    padding-bottom: 80%;
  }
}
.ins_productCon9 .content_info .light_b {
  width: 31.09rem;
  height: auto;
  position: absolute;
  top: 80%;
  left: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-50%);
  z-index: -5;
}
.ins_productCon9 .content_info .light_b img {
  width: 100%;
  height: auto;
  opacity: 0.5;
}
.ins_technicalCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2.83rem;
  padding-bottom: 2.83rem;
  background-color: #000;
}
.ins_technicalCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_technicalCon1 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.ins_technicalCon1 .bgImg1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.ins_technicalCon1 .light_beam {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  mask-image: url(../images/bg6.png);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
}
.ins_technicalCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_technicalCon2 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.08rem;
}
.ins_technicalCon2 .content .center_box {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_technicalCon2 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 0;
  }
}
.ins_technicalCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_technicalCon3 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_technicalCon3 .center_box .left_box {
  width: 43%;
}
.ins_technicalCon3 .center_box .right_box {
  width: 45%;
}
.ins_technicalCon3 .center_box .right_box .img_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;
  border-radius: 0.06rem;
  overflow: hidden;
}
.ins_technicalCon3 .center_box .right_box .img_box .icon {
  position: absolute;
  width: 0.62rem;
  height: 0.62rem;
  cursor: pointer;
}
.ins_technicalCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_technicalCon4 .content {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.64rem 0.7rem;
}
.ins_technicalCon4 .content .center_box {
  width: 36%;
  height: auto;
}
.ins_technicalCon4 .content .center_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.6rem;
}
.ins_technicalCon4 .content .center_box .list_box .one {
  width: fit-content;
}
.ins_technicalCon4 .content .center_box .list_box .one .t1 {
  color: #FFFFFFB2;
}
.ins_technicalCon4 .content .center_box .list_box .one .t2 {
  color: var(--active_color);
  margin-top: 0.12rem;
}
@media (max-width:990px) {
  .ins_technicalCon4 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0;
  }
  .ins_technicalCon4 .content .center_box {
    width: 100%;
    height: auto;
  }
}
.ins_technicalCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_technicalCon5 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_technicalCon5 .center_box .left_box {
  width: 41%;
}
.ins_technicalCon5 .center_box .left_box .img {
  width: 100%;
  height: auto;
}
.ins_technicalCon5 .center_box .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_technicalCon5 .center_box .right_box {
  width: 34%;
}
.ins_technicalCon5 .center_box .right_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.6rem;
}
.ins_technicalCon5 .center_box .right_box .list_box .one {
  width: fit-content;
}
.ins_technicalCon5 .center_box .right_box .list_box .one .t1 {
  color: #FFFFFFB2;
}
.ins_technicalCon5 .center_box .right_box .list_box .one .t2 {
  color: var(--active_color);
  margin-top: 0.12rem;
}
.ins_technicalCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: #000;
  padding-top: 1.36rem;
  padding-bottom: 0.56rem;
}
.ins_technicalCon6::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/z41.png);
  bottom: 0;
  left: 0;
  background-size: cover;
  pointer-events: none;
}
.ins_technicalCon6 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_technicalCon6 .center_box .left_box {
  width: 40%;
}
.ins_technicalCon6 .center_box .right_box {
  width: 36.6%;
  padding-bottom: 0.52rem;
  --height: 0;
}
.ins_technicalCon6 .center_box .right_box .item_box {
  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;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}
.ins_technicalCon6 .center_box .right_box .item_box::after {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% + 0.42rem + 0.52rem);
  background: #FFF;
  top: -0.42rem;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.3;
}
.ins_technicalCon6 .center_box .right_box .item_box::before {
  content: '';
  position: absolute;
  width: 3px;
  height: var(--height);
  background: var(--active_color);
  top: -0.42rem;
  left: -1px;
}
.ins_technicalCon6 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
  padding-left: 0.7rem;
  position: relative;
  z-index: 1;
}
.ins_technicalCon6 .center_box .right_box .item_box .item i {
  width: 0.17rem;
  height: 0.17rem;
  border-radius: 100px;
  background: var(--active_color);
  left: 0;
  top: 0.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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  transform: translateX(-50%);
}
.ins_technicalCon6 .center_box .right_box .item_box .item .icon {
  font-size: var(--font40);
  color: #FFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_technicalCon6 .center_box .right_box .item_box .item .word {
  font-size: var(--font20);
  color: #FFF;
  margin-top: 0.2rem;
  font-weight: 200;
}
.ins_technicalCon6 .center_box .right_box .item_box .item.active .icon {
  color: var(--active_color);
}
.ins_technicalCon6 .center_box .right_box .item_box .item.active i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--active_color);
  opacity: 0.5;
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  animation: grow6 5s linear infinite;
}
.ins_technicalCon6 .center_box .right_box .item_box .item.active i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--active_color);
  opacity: 0.5;
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  animation: grow6 7s linear infinite;
}
@media (max-width:990px) {
  .ins_technicalCon6 .center_box {
    gap: 1.6rem;
  }
}
.ins_serviceCon1 {
  width: 100%;
  height: 200vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_serviceCon1 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/bg34.png);
  background-size: cover;
}
.ins_serviceCon1 .maskBox .content1 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  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-top: 1rem;
  padding-bottom: 1rem;
}
.ins_serviceCon1 .maskBox .content1 .center_box {
  width: 33%;
  height: auto;
}
.ins_serviceCon1 .maskBox .content1 .center_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.6rem;
}
.ins_serviceCon1 .maskBox .content1 .center_box .list_box .one {
  width: fit-content;
}
.ins_serviceCon1 .maskBox .content1 .center_box .list_box .one .t1 {
  color: #FFFFFFB2;
}
.ins_serviceCon1 .maskBox .content1 .center_box .list_box .one .t2 {
  color: var(--active_color);
  margin-top: 0.12rem;
}
.ins_serviceCon1 .maskBox .content2 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.ins_serviceCon1 .maskBox .content2 .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_serviceCon1 .maskBox .content2 .item_box .item {
  width: var(--width);
  height: auto;
  position: absolute;
  z-index: 1;
  border-radius: 0.04rem;
  overflow: hidden;
}
.ins_serviceCon1 .maskBox .content2 .item_box .item.active {
  z-index: 2;
}
.ins_serviceCon1 .maskBox .content2 .item_box .item.active .img {
  width: 100%;
  height: 100%;
}
.ins_serviceCon1 .maskBox .content2 .item_box .item.active .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_serviceCon1 .maskBox .content3 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  background: #000000BF;
  opacity: 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_serviceCon1 .maskBox .content3 .center_box {
  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;
  opacity: 0;
  transform: translateY(3rem);
}
.ins_serviceCon1 .maskBox .content3 .center_box .item_box {
  width: 72.3%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: 40% 30% 30%;
  gap: 0.34rem;
}
.ins_serviceCon1 .maskBox .content3 .center_box .item_box .item {
  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.28rem;
}
.ins_serviceCon1 .maskBox .content3 .center_box .item_box .item img {
  width: 0.4rem;
  height: 0.4rem;
}
.ins_serviceCon1 .maskBox .content3 .center_box .item_box .item span {
  color: #FFF;
  font-size: var(--font32);
}
@media (max-width:990px) {
  .ins_serviceCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_serviceCon1 .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_serviceCon1 .maskBox .content1,
  .ins_serviceCon1 .maskBox .content2,
  .ins_serviceCon1 .maskBox .content3 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_serviceCon1 .maskBox .content1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_serviceCon1 .maskBox .content2 .item_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
    padding: 0.4rem;
  }
  .ins_serviceCon1 .maskBox .content2 .item_box .item {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset !important;
    left: unset !important;
  }
  .ins_serviceCon1 .maskBox .content3 {
    opacity: 1 !important;
    padding: 1rem 0;
  }
  .ins_serviceCon1 .maskBox .content3 .center_box {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
  .ins_serviceCon1 .maskBox .content3 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
  }
  .ins_serviceCon1 .maskBox .content3 .center_box .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
    border: 1px solid #0ec5d652;
    padding: 0.3rem;
    border-radius: 0.16rem;
  }
  .ins_serviceCon1 .maskBox .content3 .center_box .item_box .item img {
    width: 0.8rem;
    height: 0.8rem;
  }
  .ins_serviceCon1 .maskBox .content3 .center_box .item_box .item span {
    font-size: var(--font18);
  }
}
.ins_serviceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1.6rem;
  padding-bottom: 0.55rem;
}
.ins_serviceCon2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg35.png);
  z-index: -1;
  bottom: 0;
  left: 0;
  background-size: cover;
  pointer-events: none;
}
.ins_serviceCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .top_info {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .top_info .idx_title {
  width: fit-content;
  max-width: 70%;
}
.ins_serviceCon2 .center_box .top_info .color_box {
  width: fit-content;
  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.1rem;
}
.ins_serviceCon2 .center_box .top_info .color_box .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_serviceCon2 .center_box .top_info .color_box .one i {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 100px;
  background: var(--color);
  display: block;
}
.ins_serviceCon2 .center_box .top_info .color_box .one span {
  color: var(--color);
  font-size: var(--font16);
}
.ins_serviceCon2 .center_box .content {
  width: 75.5%;
  height: auto;
  margin: 0 auto;
  margin-top: 0.94rem;
  position: relative;
  z-index: 1;
}
.ins_serviceCon2 .center_box .content .img {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .content .img img {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .content .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_serviceCon2 .center_box .content .item_box .item {
  width: 0;
  height: 0;
  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;
}
.ins_serviceCon2 .center_box .content .item_box .item i {
  width: 0.08rem;
  height: 0.05rem;
  background: var(--color);
  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;
  border-radius: 100px;
}
.ins_serviceCon2 .center_box .content .item_box .item i::after {
  content: '';
  position: absolute;
  width: 1px;
  height: var(--height);
  background: linear-gradient(180deg, var(--color) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 0;
}
.ins_serviceCon2 .center_box .content .item_box .item span {
  color: var(--color);
  position: absolute;
  width: max-content;
  bottom: calc(var(--height) - 0.2rem);
  left: calc(100% + 0.1rem);
  font-weight: 200;
}
.ins_serviceCon2 .center_box .content .item_box .item:first-child i {
  background: #FFF;
}
.ins_serviceCon2 .center_box .content .item_box .item.left span {
  left: unset;
  right: calc(100% + 0.1rem);
}
.ins_serviceCon2 .center_box .content .img_icon {
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  transform: translateX(-60%);
  width: 2.02rem;
}
@media (max-width:990px) {
  .ins_serviceCon2 .center_box .content .img_icon {
    transform: translateX(0) translateY(80%);
  }
}
@media (max-width:990px) {
  .ins_serviceCon2 .center_box .top_info {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
  }
  .ins_serviceCon2 .center_box .top_info .idx_title {
    max-width: unset;
  }
  .ins_serviceCon2 .center_box .content {
    width: 100%;
    height: auto;
  }
  .ins_serviceCon2 .center_box .content .item_box .item span {
    font-size: 12px;
  }
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1rem;
  padding-bottom: 1.48rem;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 48%;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box .img .pb {
  padding-bottom: 56%;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 45.9%;
  padding-bottom: 0.8rem;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box .word {
  width: 100%;
  height: auto;
  color: #FFF;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box .word .time {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box .word .t1 {
  margin-top: 0.12rem;
  font-weight: 600;
  background: linear-gradient(90deg, #2EC6D6 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box .word .t2 {
  margin-top: 0.24rem;
  font-weight: 200;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box .word .idx_more {
  margin-top: 0.66rem;
}
.ins_newCon1 .center_box .content {
  width: 45.9%;
  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;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 5;
}
.ins_newCon1 .center_box .content .idxNumber {
  font-size: var(--font16);
  color: #666;
  margin-top: 0.16rem;
  font-weight: 500;
}
.ins_newCon1 .center_box .content .idxNumber .swiper-pagination-current {
  font-size: var(--font48);
  font-weight: 500;
  line-height: 1.5;
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_newCon1 .center_box .content {
    width: fit-content;
    height: auto;
  }
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding: 0.32rem 0;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem 1.58rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon2 .center_box .item_box .item {
  width: fit-content;
  height: auto;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_newCon2 .center_box .item_box .item.active {
  padding-bottom: 0.08rem;
  color: var(--active_color);
  border-bottom: 2px solid var(--active_color);
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .item_box {
    gap: 0.4rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.ins_newCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
  padding-top: 1rem;
  padding-bottom: 1.6rem;
}
.ins_newCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  border-top: 1px solid #FFFFFF22;
}
.ins_newCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.63rem;
  padding-top: 0.37rem;
  border-bottom: 1px solid #FFFFFF22;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_newCon3 .center_box .item_box .item .left_box {
  width: 56.5%;
  color: #FFFFFF;
  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.4rem;
}
.ins_newCon3 .center_box .item_box .item .left_box .left {
  width: 32%;
  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;
  gap: 0.2rem;
}
.ins_newCon3 .center_box .item_box .item .left_box .left .t1 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_newCon3 .center_box .item_box .item .left_box .right {
  width: 39%;
  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;
  gap: 0.2rem;
}
.ins_newCon3 .center_box .item_box .item .left_box .right .word {
  font-weight: 200;
  font-size: var(--font16);
  opacity: 0.7;
}
.ins_newCon3 .center_box .item_box .item .left_box .right .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.18rem;
}
.ins_newCon3 .center_box .item_box .item .left_box .right .list .one {
  width: fit-content;
  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.08rem;
  font-weight: 200;
  font-size: var(--font16);
}
.ins_newCon3 .center_box .item_box .item .left_box .right .list .one span {
  opacity: 0.7;
}
@media (max-width:990px) {
  .ins_newCon3 .center_box .item_box .item .left_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.56rem;
  }
  .ins_newCon3 .center_box .item_box .item .left_box .left {
    width: 100%;
    height: auto;
  }
  .ins_newCon3 .center_box .item_box .item .left_box .right {
    width: 100%;
    height: auto;
    gap: 0.4rem;
  }
}
.ins_newCon3 .center_box .item_box .item .right_box {
  width: 22.3%;
}
.ins_newCon3 .center_box .item_box .item .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newCon3 .center_box .item_box .item .right_box .img .pb {
  padding-bottom: 56%;
}
.ins_newCon3 .center_box .item_box .item .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon3 .center_box .item_box .item:hover {
  border-bottom: 1px solid var(--active_color);
}
.ins_newCon3 .center_box .item_box .item:hover .left_box .t1 {
  color: var(--active_color);
}
.ins_newCon3 .center_box .item_box .item:hover .right_box .img .pb .ab img {
  transform: scale(1.3);
}
@media (max-width:990px) {
  .ins_newCon3 .center_box .item_box .item {
    padding: 1rem 0;
  }
}
.ins_newCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #000;
  padding-top: 1rem;
  padding-bottom: 1.6rem;
}
.ins_newCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon4 .center_box .left_box {
  width: 67%;
  height: auto;
}
.ins_newCon4 .center_box .left_box .title {
  font-weight: 800;
  background: linear-gradient(90deg, #2EC6D6 0%, #FFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ins_newCon4 .center_box .left_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.6rem;
  margin-top: 0.2rem;
}
.ins_newCon4 .center_box .left_box .list .one {
  width: fit-content;
  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.08rem;
  font-weight: 200;
  font-size: var(--font16);
  color: #FFFFFF99;
}
.ins_newCon4 .center_box .left_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  color: #FFF;
  font-size: var(--font20);
  padding-bottom: 1rem;
  border-bottom: 1px solid #FFFFFF4D;
}
.ins_newCon4 .center_box .left_box .content_info p {
  color: #FFF;
  min-height: 0.5em;
  font-weight: 200;
}
.ins_newCon4 .center_box .left_box .content_info h2 {
  font-size: var(--font32);
  font-weight: 700;
}
.ins_newCon4 .center_box .left_box .content_info img {
  border-radius: 0.16rem;
  width: unset !important;
  height: auto !important;
}
.ins_newCon4 .center_box .left_box .btn_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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.46rem;
}
.ins_newCon4 .center_box .left_box .btn_box .one {
  width: fit-content;
  height: 0.56rem;
  min-height: 40px;
  padding: 0 0.3rem;
  border-radius: 100px;
  border: 1px solid #FFFFFF4D;
  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;
  gap: 0.24rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_newCon4 .center_box .left_box .btn_box .one i {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 100px;
  background: var(--active_color);
  display: block;
}
.ins_newCon4 .center_box .left_box .btn_box .one:hover {
  border-color: var(--active_color);
  color: var(--active_color);
}
.ins_newCon4 .center_box .left_box .btn_box .one:nth-child(2) {
  gap: 0.12rem;
}
.ins_newCon4 .center_box .right_box {
  width: 27.7%;
  height: 100%;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}
.ins_newCon4 .center_box .right_box .content {
  width: 100%;
  height: auto;
  background-image: url(../images/bg36.png);
  background-size: cover;
  border-radius: 0.16rem;
  overflow: hidden;
  max-height: 70vh;
  overflow: auto;
}
.ins_newCon4 .center_box .right_box .content .name {
  width: 100%;
  height: auto;
  padding: 0.32rem 0.4rem;
  border-bottom: 1px solid #FFFFFF22;
  color: var(--active_color);
}
.ins_newCon4 .center_box .right_box .content .list {
  width: 100%;
  height: auto;
  padding: 0 0.4rem;
}
.ins_newCon4 .center_box .right_box .content .list .one {
  width: 100%;
  height: auto;
  padding: 0.24rem 0;
  border-bottom: 1px dashed #FFFFFF22;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_newCon4 .center_box .right_box .content .list .one:last-child {
  border-bottom: 0;
  padding-bottom: 0.32rem;
}
.ins_newCon4 .center_box .right_box .content .list .one:hover {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_newCon4 .center_box .left_box {
    width: 100%;
    height: auto;
  }
  .ins_newCon4 .center_box .left_box .btn_box {
    display: none;
  }
  .ins_newCon4 .center_box .right_box {
    display: none;
  }
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.1rem;
  padding: 0;
  padding-left: 0;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div {
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
  line-height: 1;
  margin-top: 0;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: underline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.14rem;
  height: 0.14rem;
  min-width: 10px;
  min-height: 10px;
  position: absolute;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  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: none;
  border: 1px solid #999999;
  left: 0;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 0;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
  content: "";
  width: 60%;
  height: 60%;
  background: var(--active_color);
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
}
.layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.layui_item .layui-form-checkbox > div {
  white-space: unset;
  text-overflow: unset;
}
.layui_item .layui-form-checkbox > div a {
  display: contents;
}
