@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,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes grow4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #FF9900;
  --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(12px, 0.16rem, 16px);
  --font17: clamp(12px, 0.17rem, 17px);
  --font18: clamp(13px, 0.18rem, 18px);
  --font20: clamp(14px, 0.2rem, 20px);
  --font22: clamp(15px, 0.22rem, 22px);
  --font24: clamp(15px, 0.24rem, 24px);
  --font26: clamp(15px, 0.26rem, 26px);
  --font28: clamp(16px, 0.28rem, 28px);
  --font30: clamp(16px, 0.3rem, 30px);
  --font32: clamp(16px, 0.32rem, 32px);
  --font34: clamp(17px, 0.34rem, 34px);
  --font36: clamp(17px, 0.36rem, 36px);
  --font38: clamp(18px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(18px, 0.4rem, 40px);
  --font42: clamp(18px, 0.42rem, 42px);
  --font44: clamp(19px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(19px, 0.5rem, 50px);
  --font52: clamp(20px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
/* -------------------------------------------------------------------  字体 */
/* 小米 */
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-ExtraLight.otf");
  font-weight: 200;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Light.otf");
  font-weight: 250;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Normal.otf");
  font-weight: 300;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Regular.otf");
  font-weight: normal;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Medium.otf");
  font-weight: 380;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Demibold.otf");
  font-weight: 450;
}
@font-face {
  font-family: "MiSans";
  src: url("../fonts/MiSans-Semibold.otf");
  font-weight: 520;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1760,
.container,
.wrap {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  font-family: "MiSans";
}
@media (max-width:1920px) {
  .w1760,
  .container,
  .wrap {
    max-width: 91.66666667%;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 1.05rem;
  background: #0D0D0D;
  color: #FFF;
}
main.active {
  --header-height: 0.7rem;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
  transform: translateY(-1.5rem);
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background-image: linear-gradient(180deg, #e3e3e375, #ffffff00);
  -webkit-background-clip: text;
  background-clip: text;
  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;
    opacity: 1;
    background: #FFF;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 10px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
    width: 10px;
  }
  .idxPageHide.bgColor span {
    background: #0000003d;
  }
  .idxPageHide.bgColor .swiper-pagination-bullet-active {
    background: var(--active_color);
    width: 10px;
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.15rem;
  margin-top: 0.5rem;
}
.idxPageShow span {
  width: 9px;
  height: 9px;
  background: #FFF;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
/* --------------------------------------------------------------- 吸顶 */
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s 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);
}
@media (max-width:990px) {
  .toUp_Box.posFix {
    top: 50px !important;
  }
}
/* --------------------------------------------------------------- 圖片放大 */
.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) !important;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
/* --------------------------------------------------------------- wow */
.wowUp_z {
  overflow: hidden;
}
.wowUp_z .wowSon {
  opacity: 0;
  transform: translateY(50px);
  -webkit-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  transition: all 1.1s ease;
}
.wowUp_z.fadeInUp .wowSon {
  opacity: 1;
  transform: translateY(0px);
}
.wowUp {
  opacity: 0;
}
/* --------------------------------------------------------------- 轮播图依次出现 */
.wowUpSB {
  width: 100%;
  height: auto;
  overflow: hidden;
}
/*  适用于轮播图中的依次间隔时间 
 *  data-atime="100"
 *  &.swiper-slide-active { .wowUpS { animation: fadeInUp 0.7s forwards; .dh(.1); } }
 *  .wowUpS { opacity: 0; } 
*/
/**
*
* <div class="it_info">
*     <div class="item_box">
*         <div class="item active">干货文章</div>
*         <div class="item">学习园地</div>
*         <div class="item">企微使用指南</div>
*         <div class="item">资讯动态</div>
*         <div class="item">行业资讯</div>
*         <div class="item">解决方案</div>
*     </div>
* </div>
* .it_info { max-height: 36px; overflow: hidden; }
* .item_box { overflow: auto; padding-bottom: 10px; justify-content: start !important;
*     .item { white-space: nowrap; font-size: 16px !important; }
* }
*
*/
* {
  scrollbar-color: #ffffff #0D0D0D;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #ffffff;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: #ffffff2a;
}
.wowUpS {
  opacity: 0;
}
.reveal {
  overflow: hidden;
}
.reveal span {
  opacity: 0;
  display: inline-block;
}
.swiperActive .reveal span {
  animation: fadeInUp 0.5s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  display: inline-block;
}
/* --------------------------------------------------------------- 轮播图一排出现 */
.reveal {
  overflow: hidden;
}
.reveal span {
  opacity: 0;
  display: inline-block;
}
.swiperActive .reveal2 {
  animation: fadeInUp 0.5s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  display: inline-block;
}
/* --------------------------------------------------------------- 代替class */
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img {
  width: 100%;
  height: auto;
}
/* --------------------------------------------------------------- 视频播放图标 */
.vIcon {
  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;
}
.vIcon::after {
  content: '\e61d';
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "iconfont";
  font-size: var(--font50);
  color: #FFFFFF;
  cursor: pointer;
}
/* --------------------------------------------------------------- 点击同意条款 
<div class="checkbox_c"><div class="icon"><i></i></div><input type="checkbox"><span>我理解并同意按照隐私保护条款使用和传递我的个人信息。</span></div>
*/
.checkbox_c {
  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.1rem;
  cursor: pointer;
}
.checkbox_c span {
  color: #717171;
}
.checkbox_c .icon {
  width: 0.15rem;
  height: 0.15rem;
  border: 1px solid #979797;
  flex-shrink: 0;
  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;
  font-style: normal;
}
.checkbox_c .icon i {
  width: 0.08rem;
  height: 0.08rem;
  background: #000;
  opacity: 0;
  display: block;
}
.checkbox_c input {
  display: none;
}
.checkbox_c.active .icon i {
  opacity: 1;
}
.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: fit-content;
  height: auto;
  --color: #FFFFFF;
}
.idx_more .more {
  width: fit-content;
  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;
}
.idx_more .more span {
  font-size: var(--font18);
  color: var(--color);
}
.idx_more .more i {
  width: 13px;
  height: 13px;
  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: 50%;
  border: 1px solid var(--color);
  color: var(--color);
  font-size: 12px;
  font-size: var(--font18);
}
.idx_more.acBg {
  --color: var(--active_color);
}
.idx_more2 {
  width: fit-content;
  height: auto;
  --color: #FFFFFF;
}
.idx_more2 .more {
  width: fit-content;
  height: 0.4rem;
  min-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: var(--color);
  padding: 0 0.53rem;
  overflow: hidden;
  border-radius: 0.08rem;
  border: 1px solid var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
  cursor: pointer;
}
.idx_more2.acBg {
  --color: var(--active_color);
}
.idx_more3 {
  width: fit-content;
  height: auto;
  --color: #FFFFFF;
}
.idx_more3 .more {
  width: fit-content;
  height: 0.48rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: var(--color);
  padding: 0 0.96rem;
  overflow: hidden;
  border-radius: 0.08rem;
  border: 1px solid var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
  cursor: pointer;
}
.idx_more3 .more:hover {
  background: var(--active_color);
  color: #000;
}
.idx_more3.acBg {
  --color: var(--active_color);
}
.ins_navBox {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.24rem;
}
.ins_navBox .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
}
.ins_navBox .center_box .one {
  font-size: var(--font18);
  opacity: 0.8;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_navBox .center_box .one:hover {
  color: var(--active_color);
}
.ins_navBox .center_box .one.active {
  opacity: 1;
  color: #FFF;
}
.ins_navBox .center_box span {
  opacity: 0.8;
}
@media (max-width:990px) {
  .ins_navBox {
    display: none;
  }
}
.idxPager {
  width: 2.02rem;
  position: relative;
  height: 0.04rem;
  background: #FFFFFF33;
  z-index: 10;
}
.idxPager span {
  background: var(--active_color) !important;
}
.swiPger {
  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.68rem;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 520;
}
.idx_title .t2 {
  font-weight: 220;
}
.ins_title {
  width: 100%;
  height: auto;
}
.ins_title .t1 {
  font-weight: 520;
}
.ins_title .t2 {
  margin-top: 0.4rem;
  font-weight: 220;
}
.ins_title .t2.mt16 {
  margin-top: 0.16rem;
}
.idx_laypage {
  width: 100%;
  height: auto;
  margin-top: 0.92rem;
}
.tableInfo {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  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;
}
.tableInfo .info {
  width: 100%;
  height: auto;
  overflow: auto;
}
.tableInfo .info table {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #B7CEFF1A;
  min-width: 800px;
  backdrop-filter: blur(17px);
}
.tableInfo .info table tbody {
  width: 100%;
  height: auto;
}
.tableInfo .info table tbody tr td {
  padding: 0.32rem 0.2rem;
  text-align: center;
  font-size: var(--font18);
  border-left: 1px solid #FFFFFF1A;
  border-top: 1px solid #FFFFFF1A;
  font-weight: 220;
}
.tableInfo .info table tbody tr:nth-child(odd) {
  background: #B7CEFF05;
}
.tableInfo .info table tbody tr:first-child td {
  border-top: 0;
  font-weight: 520;
}
.tableInfo .notes {
  width: 100%;
  height: auto;
  font-weight: 220;
}
.tableInfo .notes span {
  font-weight: 520;
}
.notesS {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-weight: 220;
}
.notesS span {
  font-weight: 520;
}
.notesS .soi {
  flex-shrink: 0;
}
.tableInfo2 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  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;
}
.tableInfo2 .info {
  width: 100%;
  height: auto;
  overflow: auto;
}
.tableInfo2 .info table {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #B7CEFF1A;
  min-width: 800px;
  backdrop-filter: blur(17px);
}
.tableInfo2 .info table tbody {
  width: 100%;
  height: auto;
}
.tableInfo2 .info table tbody tr td {
  padding: 0.32rem 0.2rem;
  text-align: center;
  font-size: var(--font18);
  border-left: 1px solid #FFFFFF1A;
  border-top: 1px solid #FFFFFF1A;
  font-weight: 220;
}
.tableInfo2 .info table tbody .bgColor {
  background: #B7CEFF05;
}
.tableInfo2 .info table tbody tr:first-child td {
  border-top: 0;
  font-weight: 520;
}
.tableInfo2 .notes {
  width: 100%;
  height: auto;
  font-weight: 220;
}
.tableInfo2 .notes span {
  font-weight: 520;
}
.tableInfo3 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  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;
}
.tableInfo3 .info {
  width: 100%;
  height: auto;
  overflow: auto;
}
.tableInfo3 .info table {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #B7CEFF1A;
  min-width: 800px;
  backdrop-filter: blur(17px);
}
.tableInfo3 .info table tbody {
  width: 100%;
  height: auto;
}
.tableInfo3 .info table tbody tr td {
  padding: 0.32rem 0.2rem;
  text-align: center;
  font-size: var(--font18);
  border-left: 1px solid #FFFFFF1A;
  border-top: 1px solid #FFFFFF1A;
  font-weight: 220;
}
.tableInfo3 .info table tbody .bgColor {
  background: #B7CEFF05;
}
.tableInfo3 .info table tbody tr:first-child td {
  border-top: 0;
  font-weight: 520;
}
.tableInfo3 .notes {
  width: 100%;
  height: auto;
  font-weight: 220;
}
.tableInfo3 .notes span {
  font-weight: 520;
}
.inputInfo {
  width: 100%;
  height: auto;
  margin-top: 0.58rem;
  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;
}
.inputInfo .input {
  width: 49.55%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #B7CEFF1A;
  border-radius: 0.16rem;
  overflow: hidden;
  backdrop-filter: blur(17px);
}
.inputInfo .input input {
  width: 100%;
  height: 0.86rem;
  background: none;
  border: 0;
  padding-left: 0.4rem;
  font-size: var(--font18);
  color: #FFF;
}
.inputInfo .input button {
  width: 0.86rem;
  height: 0.86rem;
  background: none;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-right: 0.1rem;
  cursor: pointer;
  flex-shrink: 0;
}
.inputInfo .input button img {
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.inputInfo .input button:hover img {
  filter: unset;
}
@media (max-width:990px) {
  .inputInfo .input {
    width: 100%;
    height: auto;
  }
}
.swiperProgressbar {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.swiperProgressbar .idxBtn {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.swiperProgressbar .idxPro {
  width: 100%;
  height: 2px;
  background: #F6F7F933;
  --width: 10%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiperProgressbar .idxPro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--width);
  height: 100%;
  background: #2F609A;
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}
.swiperProgressbar .idxPro .icon {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  z-index: 10;
  left: var(--width);
  transform: translateX(-50%);
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
  cursor: pointer;
}
.tag_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  margin-top: 0.52rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.tag_box .one {
  width: fit-content;
  height: 0.4rem;
  min-height: 35px;
  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: 1px solid var(--active_color);
  color: var(--active_color);
  padding: 0 0.2rem;
  border-radius: 0.04rem;
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tag_box .one:hover {
  background: var(--active_color);
  color: #FFF;
}
.tag_box.bgColor .one {
  border-color: var(--color_fff);
  color: var(--color_fff);
}
.navBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #999999;
  font-size: var(--font18);
}
.navBox .one {
  color: #CCCCCC;
  padding: 0 0.1rem;
}
.navBox .one.active {
  color: #666666;
}
.navBox i {
  font-style: unset;
}
.navBox.bg000 .one {
  color: #999999;
}
.navBox.bg000 .one.active {
  color: var(--color_666);
}
.navBox.bgFFF .one {
  color: #FFFFFF;
}
.navBox.bgFFF .one.active {
  color: var(--color_fff);
}
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_banner .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_banner .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_banner .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding-top: 1.94rem;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .word {
  width: 100%;
  height: auto;
  text-align: center;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .word .t1 {
  font-weight: 450;
  letter-spacing: -1.56px;
  color: #FFF;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .word .t2 {
  color: var(--active_color);
  font-weight: 300;
  letter-spacing: -0.48px;
  margin-top: 0.16rem;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .word .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_banner .swiper_box ul li .centerInfo .img_w100 {
  position: relative;
  z-index: 1;
}
.idx_banner .swiper_box ul li .centerInfo .img_w100 img.wap {
  min-height: 500px;
  object-fit: cover;
}
.idx_banner .swiper_box ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.idx_banner .swiper_box ul li.swiper-slide-active .img_w100 img {
  animation: grow2 1.2s forwards;
}
.idx_banner .idxPager {
  width: 2.02rem;
  position: absolute;
  bottom: 0.72rem;
  z-index: 10;
}
.idx_banner .btn {
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}
.idx_banner .btn i {
  color: var(--color_fff);
  font-size: var(--font20);
}
.idx_banner .btn.prev {
  left: 4.16%;
}
.idx_banner .btn.next {
  right: 4.16%;
}
.idx_product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.idx_product .center_box {
  width: 100%;
  height: auto;
}
.idx_product .center_box .item_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.56rem;
  margin-top: 0.71rem;
}
.idx_product .center_box .item_box .item {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.idx_product .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.idx_product .center_box .item_box .item .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 380;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .center_box .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.16rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.25rem;
}
.idx_product .center_box .item_box .item .word .t2 p {
  padding-left: 0.1rem;
  position: relative;
  z-index: 1;
  opacity: 0.8;
  font-weight: 200;
}
.idx_product .center_box .item_box .item .word .t2 p::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #FFF;
  left: 0;
  top: 0.5em;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .center_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.idx_product .center_box .swiper_box {
  width: 100%;
  height: auto;
  display: none;
  margin-top: 0.71rem;
}
.idx_product .center_box .swiper_box .item {
  width: 100%;
  height: auto;
}
.idx_product .center_box .swiper_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  text-align: center;
}
.idx_product .center_box .swiper_box .item .word .t1 {
  width: 100%;
  height: auto;
}
.idx_product .center_box .swiper_box .item .word .t2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.16rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.25rem;
}
.idx_product .center_box .swiper_box .item .word .t2 p {
  padding-left: 0.1rem;
  position: relative;
  z-index: 1;
  opacity: 0.8;
}
.idx_product .center_box .swiper_box .item .word .t2 p::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #FFF;
  left: 0;
  top: 0.5em;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .idx_product .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    display: none;
  }
  .idx_product .center_box .swiper_box {
    display: block;
  }
  .idx_product .center_box .swiper_box .item {
    width: 100%;
    height: auto;
  }
  .idx_product .center_box .swiper_box .item .img {
    width: 100%;
    height: auto;
  }
  .idx_product .center_box .swiper_box .item .img .pb {
    padding-bottom: 90%;
  }
}
.idx_partners {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background-image: url(../images/z1.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.idx_partners .center_box {
  width: 100%;
  height: auto;
}
.idx_partners .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  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.8rem;
}
.idx_partners .center_box .content_info .content {
  width: 100%;
  height: auto;
}
.idx_partners .center_box .content_info .content .word {
  text-align: center;
}
.idx_partners .center_box .content_info .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.28rem;
  margin-top: 0.39rem;
}
.idx_partners .center_box .content_info .content .item_box .item {
  width: calc(25% - 0.21rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_partners .center_box .content_info .content .item_box .item .pb {
  padding-bottom: 38%;
}
.idx_partners .center_box .content_info .content .item_box .item .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_partners .center_box .content_info .content .item_box .item .pb .ab img {
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_partners .center_box .content_info .content .item_box .item:hover {
  background: rgba(255, 255, 255, 0.4);
}
.idx_partners .center_box .content_info .content .item_box .item:hover .pb .ab img {
  filter: unset;
}
.idx_partners .center_box .content_info .content .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.61rem;
}
.idx_partners .center_box .content_info .content .swiper_box ul li {
  width: calc(25% - 0.21rem);
  height: auto;
}
.idx_partners .center_box .content_info .content .swiper_box ul li .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_partners .center_box .content_info .content .swiper_box ul li .item .pb {
  padding-bottom: 29%;
}
.idx_partners .center_box .content_info .content .swiper_box ul li .item .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_partners .center_box .content_info .content .swiper_box ul li .item .pb .ab img {
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_partners .center_box .content_info .content .swiper_box ul li .item:hover {
  background: rgba(255, 255, 255, 0.4);
}
.idx_partners .center_box .content_info .content .swiper_box ul li .item:hover .pb .ab img {
  filter: unset;
}
@media (max-width:990px) {
  .idx_partners {
    background-attachment: unset;
  }
  .idx_partners .center_box .content_info .content .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .idx_partners .center_box .content_info .content .item_box .item {
    width: 100%;
    height: auto;
  }
}
.idx_about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-bottom: 3.58rem;
  background-image: url(../images/z2.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.idx_about .center_box {
  width: 100%;
  height: auto;
}
.idx_about .center_box .idx_title {
  width: 100%;
  height: auto;
}
.idx_about .center_box .idx_title .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.16rem;
}
.idx_about .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 2.45rem;
  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.5rem;
}
.idx_about .center_box .item_box .item {
  width: auto;
  max-width: 13%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_about .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  font-size: var(--font24);
}
.idx_about .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.17rem;
}
.idx_about .center_box .item_box .item .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 450;
}
.idx_about .center_box .item_box .item .word .t1 span {
  font-size: var(--font52);
}
.idx_about .center_box .item_box .item .word .t1 i {
  font-size: var(--font32);
  font-style: unset;
  padding-left: 0.1rem;
}
.idx_about .center_box .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  font-size: var(--font18);
  font-weight: 220;
}
@media (max-width:990px) {
  .idx_about {
    background-attachment: unset;
    padding: 1.2rem 0;
  }
  .idx_about .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.16rem;
    margin-top: 0.5rem;
  }
  .idx_about .center_box .item_box .item {
    width: 100%;
    height: auto;
    max-width: unset;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    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;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0.4rem;
    gap: 0.4rem;
  }
  .idx_about .center_box .item_box .item .icon {
    width: fit-content;
    font-size: var(--font20);
    flex-shrink: 0;
  }
  .idx_about .center_box .item_box .item .word {
    width: fit-content;
    height: auto;
  }
  .idx_about .center_box .item_box .item .word .t1 {
    font-size: var(--font52);
  }
  .idx_about .center_box .item_box .item .word .t2 {
    margin-top: 0.72rem;
    font-size: var(--font18);
  }
  .idx_about .center_box .item_box .item .word .t2 p {
    display: contents;
  }
}
.idx_video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 3.22rem 0;
  background-image: url(../images/z3.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.idx_video .center_box {
  width: 100%;
  height: auto;
}
.idx_video .center_box .idx_title {
  width: 22%;
  height: auto;
  margin: 0 auto;
}
.idx_video .center_box .idx_title .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.idx_video .center_box .idx_title .idx_more3 {
  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.52rem;
}
.idx_video .maskBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.idx_video .maskBox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .idx_video {
    background-attachment: unset;
  }
  .idx_video .center_box .idx_title {
    width: 100%;
    height: auto;
  }
}
.idx_new {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background-color: #FFFFFF;
}
.idx_new .center_box {
  width: 100%;
  height: auto;
}
.idx_new .center_box .idx_title {
  color: #000;
}
.idx_new .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.idx_new .center_box .swiper_box ul li {
  height: auto;
}
.idx_new .center_box .swiper_box .centerInfo {
  width: 100%;
  height: 100%;
  background: #F6F7F9;
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .center_box .swiper_box .centerInfo .img {
  width: 100%;
  height: auto;
}
.idx_new .center_box .swiper_box .centerInfo .img .pb {
  padding-bottom: 55%;
}
.idx_new .center_box .swiper_box .centerInfo .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_new .center_box .swiper_box .centerInfo .word_box {
  width: 100%;
  height: auto;
  padding: 0.33rem;
  padding-bottom: 0.5rem;
}
.idx_new .center_box .swiper_box .centerInfo .word_box .icon {
  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.16rem;
}
.idx_new .center_box .swiper_box .centerInfo .word_box .icon .line {
  width: 1px;
  height: 11px;
  background: #DEDEDE;
}
.idx_new .center_box .swiper_box .centerInfo .word_box .icon .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  line-height: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #848484;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 250;
  font-size: var(--font16);
}
.idx_new .center_box .swiper_box .centerInfo .word_box .icon .one i {
  font-size: var(--font16);
}
.idx_new .center_box .swiper_box .centerInfo .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .center_box .swiper_box .centerInfo .word_box .more {
  width: 100%;
  height: auto;
  margin-top: 0.22rem;
  font-size: var(--font16);
  color: #848484;
  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.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .center_box .swiper_box .centerInfo .word_box .more i {
  font-size: var(--font24);
  color: var(--active_color);
}
.idx_new .center_box .swiper_box .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.idx_new .center_box .swiper_box .centerInfo:hover .word_box .word {
  color: var(--active_color);
}
.idx_new .center_box .swiper_box .centerInfo:hover .word_box .more {
  color: var(--active_color);
}
.idx_new .center_box .swiper_box .centerInfo:hover .word_box .more i {
  animation: grow3 0.5s linear;
}
.idx_new .center_box .swiper_box .centerInfo:hover {
  box-shadow: 0 0 20px 1px #3e63a333;
  transform: scale(1.03);
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
  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_bannerCon1 .content {
  width: 100%;
  height: auto;
  position: absolute;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .t1 {
  font-weight: 520;
}
.ins_bannerCon1 .content .center_box .t2 {
  color: #666666;
  margin-top: 0.16rem;
  font-weight: 220;
}
.ins_bannerCon1 .content .center_box .t2.t32 {
  margin-top: 0.32rem;
}
.ins_bannerCon1 .content .center_box .idx_more3 {
  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.72rem;
}
.ins_bannerCon1 .img_w100 {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .img_w100 img {
  width: 100%;
  height: auto;
}
.ins_bannerCon1.coFFF .content .center_box .t1,
.ins_bannerCon1.coFFF .content .center_box .t2 {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_bannerCon1 .img_w100 img.wap {
    min-height: 500px;
    object-fit: cover;
  }
  .ins_bannerCon1 .content .center_box .t2 p {
    display: contents;
  }
}
.ins_serviceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_serviceCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.2rem 0;
}
.ins_serviceCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon1 .content .center_box .ins_title {
  width: var(--width);
}
.ins_serviceCon1 .content.top .center_box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-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_serviceCon1 .content.left {
  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_serviceCon1 .content.right {
  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_serviceCon1 .content.right .center_box {
  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;
}
.ins_serviceCon1 .content.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_serviceCon1 .content.center .center_box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-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_serviceCon1 .content.bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_serviceCon1 .content.bottom .center_box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-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;
}
@media (max-width:990px) {
  .ins_serviceCon1 .content {
    padding: 0.8rem 0.4rem !important;
  }
  .ins_serviceCon1 .content .center_box .ins_title {
    width: 100% !important;
  }
  .ins_serviceCon1 .img_w100 img.wap {
    min-height: 500px;
    object-fit: cover;
  }
}
.ins_serviceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background-image: url(../images/bg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
.ins_serviceCon2 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_serviceCon2 .center_box .left_box {
  width: 54%;
}
.ins_serviceCon2 .center_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_serviceCon2 .center_box .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_serviceCon2 .center_box .right_box {
  width: 37%;
  padding-right: 0.51rem;
}
.ins_serviceCon2 .center_box .right_box .ins_title .t2 {
  margin-top: 0.16rem;
}
.ins_serviceCon2.bgTow {
  background-image: url(../images/bg2.jpg);
  background-position: left center;
}
.ins_serviceCon2.bgTow .center_box {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.ins_serviceCon2.pleft .center_box .right_box {
  padding-right: 0 !important;
}
@media (max-width:990px) {
  .ins_serviceCon2 .center_box {
    flex-direction: column !important;
  }
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  background: #0D0D0D;
}
.ins_productCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .left_box {
  width: 18.5%;
  height: auto;
  max-height: calc(100vh - var(--header-height) - 0.3rem);
  position: sticky;
  top: calc(var(--header-height) + 0.3rem);
  overflow: auto;
  scrollbar-width: thin;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .left_box .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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font20);
  font-weight: 520;
  padding-bottom: 0.32rem;
  cursor: pointer;
}
.ins_productCon1 .center_box .left_box .top img {
  width: 0.18rem;
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .left_box .bot {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
}
.ins_productCon1 .center_box .left_box .bot .one {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  color: #FFFFFFCC;
  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;
  cursor: pointer;
  margin-top: 0.24rem;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .left_box .bot .one i {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  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;
}
.ins_productCon1 .center_box .left_box .bot .one i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/i5.png) center center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_productCon1 .center_box .left_box .bot .one input {
  display: none;
}
.ins_productCon1 .center_box .left_box .bot .one:hover {
  opacity: 1;
}
.ins_productCon1 .center_box .left_box .bot .one.active {
  color: var(--active_color);
  opacity: 0.8;
}
.ins_productCon1 .center_box .left_box .bot .one:first-child {
  margin-top: 0;
}
.ins_productCon1 .center_box .left_box .bot .cInfo {
  width: 100%;
  height: auto;
  display: none;
}
.ins_productCon1 .center_box .left_box .bot .cInfo.active {
  display: block !important;
}
.ins_productCon1 .center_box .left_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.32rem;
}
.ins_productCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #FFFFFF33;
}
.ins_productCon1 .center_box .left_box .item_box .item.active .top img {
  transform: rotate(0deg);
}
.ins_productCon1 .center_box .left_box .list_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.32rem;
  margin-top: 0.4rem;
}
.ins_productCon1 .center_box .left_box .list_box .list {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #FFFFFF33;
}
.ins_productCon1 .center_box .left_box .list_box .list.active .top img {
  transform: rotate(0deg);
}
.ins_productCon1 .center_box .right_box {
  width: 75%;
  height: auto;
}
.ins_productCon1 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}
.ins_productCon1 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
  background: #C7D7FF1A;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .right_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .right_box .item_box .item .img .pb {
  padding-bottom: 76%;
}
.ins_productCon1 .center_box .right_box .item_box .item .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;
}
.ins_productCon1 .center_box .right_box .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.6rem 0.4rem;
  padding-top: 0.2rem;
}
.ins_productCon1 .center_box .right_box .item_box .item .word .t1 {
  color: #FFF;
  font-weight: 520;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .right_box .item_box .item .word .t2 {
  margin-top: 0.24rem;
  opacity: 0.6;
  color: #FFFFFF;
  font-weight: 220;
}
.ins_productCon1 .center_box .right_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_productCon1 .center_box .right_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_productCon1 .center_box .left_box {
    position: relative;
    z-index: 1;
    top: unset;
  }
  .ins_productCon1 .center_box .left_box .item_box .item .bot {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_productCon1 .center_box .left_box .item_box .item .bot .one {
    width: 100%;
    height: auto;
    padding: 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;
    background: #ffffff1a;
    margin-top: 0 !important;
  }
  .ins_productCon1 .center_box .left_box .list_box .list .bot .cInfo.active {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_productCon1 .center_box .left_box .list_box .list .bot .cInfo.active .one {
    width: 100%;
    height: auto;
    padding: 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;
    background: #ffffff1a;
    margin-top: 0 !important;
  }
  .ins_productCon1 .center_box .right_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_productCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.24rem 0;
  background: #16191F;
}
.ins_productCon2 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon2 .center_box .left_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
}
.ins_productCon2 .center_box .left_box .word {
  font-size: var(--font18);
}
.ins_productCon2 .center_box .left_box .inputBox {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .left_box .inputBox input {
  width: fit-content;
  font-size: var(--font18);
  height: auto;
  background: none;
  border: 0;
  color: #fff;
}
.ins_productCon2 .center_box .left_box .inputBox .layui-input:focus,
.ins_productCon2 .center_box .left_box .inputBox .layui-textarea:focus {
  box-shadow: unset;
}
.ins_productCon2 .center_box .left_box .inputBox .layui-form-select {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_productCon2 .center_box .left_box .inputBox .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-style: unset;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(-50%);
}
.ins_productCon2 .center_box .left_box .inputBox .layui-form-select .layui-edge::after {
  content: '\e71a';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "iconfont";
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFF;
}
.ins_productCon2 .center_box .left_box .inputBox .layui-form-selected .layui-edge {
  transform: translateY(0%) rotate(180deg);
}
.ins_productCon2 .center_box .left_box .inputBox .layui-form-selected dl {
  top: calc(100% + 0.2rem);
  bottom: unset;
  background: #292C30;
  border: 0;
  border-radius: 0.08rem;
  padding: 0.24rem 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.3rem;
}
.ins_productCon2 .center_box .left_box .inputBox .layui-form-select dl dd.layui-this {
  background: none;
}
.ins_productCon2 .center_box .left_box .inputBox .layui-form-select dl dd,
.ins_productCon2 .center_box .left_box .inputBox .layui-form-select dl dt {
  line-height: 1.4;
  padding: 0;
  color: #FFF;
  background: none !important;
  font-size: var(--font18);
  flex-shrink: 0;
}
.ins_productCon2 .center_box .left_box .inputBox .layui-form-select dl dd.layui-this {
  font-weight: 320;
  color: var(--active_color);
}
.ins_productCon2 .center_box .right_box {
  width: fit-content;
}
.ins_productCon2 .center_box .right_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.ins_productCon2 .center_box .right_box .list .one {
  color: #fff;
  opacity: 0.8;
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon2 .center_box .right_box .list .one:hover {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_productCon2 .center_box {
    gap: 0.2rem;
  }
}
.ins_productCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.16rem;
  padding-bottom: 1.9rem;
}
.ins_productCon3 .center_box2 {
  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_productCon3 .center_box2 * {
  scrollbar-color: #ffffff2a #B7CEFF1A;
}
.ins_productCon3 .center_box2 .leftBox {
  width: 18.5%;
  height: 100%;
  max-height: calc(100vh - var(--header-height) - 1.2rem);
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  overflow: auto;
  scrollbar-width: thin;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.24rem 0;
  border-radius: 0.16rem;
  background: #B7CEFF1A;
}
.ins_productCon3 .center_box2 .leftBox .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;
}
.ins_productCon3 .center_box2 .leftBox .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.18rem 0.32rem;
  font-size: var(--font18);
  color: #FFF;
  cursor: pointer;
  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;
  gap: 0.05rem;
}
.ins_productCon3 .center_box2 .leftBox .item_box .item i {
  font-size: var(--font16);
}
.ins_productCon3 .center_box2 .leftBox .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  opacity: 0;
}
.ins_productCon3 .center_box2 .leftBox .item_box .item.active {
  background: #B7CEFF1A;
}
.ins_productCon3 .center_box2 .leftBox .item_box .item.active::after {
  opacity: 1;
}
.ins_productCon3 .center_box2 .rightBox {
  width: 78.5%;
  height: auto;
}
.ins_productCon3 .center_box2 .rightBox .ins_serviceCon1 .content {
  padding: 1.2rem 0.77rem;
}
.ins_productCon3 .center_box2 .rightBox .ins_serviceCon2 {
  background-image: unset;
  margin-top: 1.2rem;
  padding: 0;
}
.ins_productCon3 .center_box2 .rightBox .ins_serviceCon2 .center_box .right_box {
  width: 42%;
}
.ins_productCon3 .center_box2 .rightBox .ins_serviceCon2.pb120 {
  padding-bottom: 1.2rem;
}
@media (max-width:990px) {
  .ins_productCon3 .center_box2 {
    width: 100%;
    height: auto;
  }
  .ins_productCon3 .center_box2 .leftBox {
    display: none !important;
  }
  .ins_productCon3 .center_box2 .rightBox {
    width: 100%;
    height: auto;
  }
  .ins_productCon3 .center_box2 .img_w100 img.wap {
    min-height: 500px;
    object-fit: cover;
  }
}
.ins_productCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.36rem;
  padding-bottom: 1.73rem;
  overflow: hidden;
}
.ins_productCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .ins_title .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
}
.ins_productCon5 .center_box .contentinfo {
  width: 5.64rem;
  height: 5.64rem;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  margin-top: 0.05rem;
  border-radius: 50%;
  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 .contentinfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 50%;
  pointer-events: none;
}
.ins_productCon5 .center_box .contentinfo::before {
  content: '';
  position: absolute;
  width: 12.2rem;
  height: 12.2rem;
  border-radius: 50%;
  background: linear-gradient(116deg, #234B79 14.07%, #12253A 86.13%);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.2;
  pointer-events: none;
}
.ins_productCon5 .center_box .contentinfo .word_box {
  width: 1.8rem;
  position: relative;
  z-index: 10;
}
.ins_productCon5 .center_box .contentinfo .word_box .icon {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
.ins_productCon5 .center_box .contentinfo .word_box .icon .imgIc {
  width: 0.46rem;
}
.ins_productCon5 .center_box .contentinfo .word_box .icon .worIc {
  width: 100%;
  height: auto;
  margin-top: 0.08rem;
}
.ins_productCon5 .center_box .contentinfo .icon_box {
  width: 2.04rem;
  height: 2.04rem;
  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: 2;
  background: linear-gradient(116deg, #122B48 14.07%, #0C1D31 86.13%);
  filter: drop-shadow(29px 33px 34px rgba(14, 12, 34, 0.25));
  border-radius: 50%;
  border-left: 1px solid #ffffff75;
  border-top: 1px solid #ffffff75;
}
.ins_productCon5 .center_box .contentinfo .icon_box img {
  width: 1.5rem;
}
.ins_productCon5 .center_box .contentinfo .list_drop {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_productCon5 .center_box .contentinfo .list_drop .list {
  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;
}
.ins_productCon5 .center_box .contentinfo .list_drop .list::after {
  content: '';
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  overflow: hidden;
}
.ins_productCon5 .center_box .contentinfo .list_drop .list .cInfo {
  position: absolute;
  width: max-content;
  right: var(--left);
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  bottom: var(--bottom);
}
.ins_productCon5 .center_box .contentinfo .list_drop .list .cInfo .icImg {
  width: 0.46rem;
}
.ins_productCon5 .center_box .contentinfo .list_drop .list .cInfo .Icro {
  font-size: var(--font14);
  margin-top: 0.08rem;
  font-weight: 220;
}
.ins_productCon5 .center_box .contentinfo .list_drop.towBg .list .cInfo {
  right: unset;
  left: var(--left);
}
.ins_productCon5 .center_box .contentinfo .imgBg {
  width: 121%;
  position: absolute;
  z-index: 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_productCon5 .center_box .contentinfo .imgBg img {
  width: 100%;
  max-width: unset;
  max-height: unset;
  opacity: 0.6;
}
@media (max-width:640px) {
  .ins_productCon5 .center_box .contentinfo {
    transform: scale(0.7);
  }
}
.ins_productCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
}
.ins_productCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
}
.ins_productCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .softItem {
  width: 100%;
  height: auto;
  background: #B7CEFF1A;
  border-radius: 0.16rem;
  padding: 0 0.4rem;
  margin-top: 0.72rem;
}
.ins_productCon7 .center_box .softItem .soft {
  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.24rem;
  padding: 0.32rem 0;
  border-bottom: 1px solid #FFFFFF1A;
}
.ins_productCon7 .center_box .softItem .soft .soImg {
  width: 0.56rem;
  height: 0.56rem;
  flex-shrink: 0;
}
.ins_productCon7 .center_box .softItem .soft .soWro {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .softItem .soft .soWro .t1 {
  font-weight: 220;
}
.ins_productCon7 .center_box .softItem .soft .soWro .t2 {
  margin-top: 0.12rem;
  font-weight: 520;
}
.ins_productCon7 .center_box .softItem .soft:last-child {
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_productCon7 .center_box .softItem {
    width: 100%;
    height: auto;
    overflow: auto;
  }
  .ins_productCon7 .center_box .softItem .soft {
    padding: 0.52rem;
    min-width: 800px;
  }
  .ins_productCon7 .center_box .softItem .soft .soImg {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.ins_productCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
}
.ins_productCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon8 .center_box .softItem {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.34rem 0.24rem;
}
.ins_productCon8 .center_box .softItem .soft {
  width: 100%;
  height: auto;
  min-height: 3.32rem;
  padding: 0.32rem;
  background: #B7CEFF1A;
  padding-bottom: 0.49rem;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_productCon8 .center_box .softItem .soft .soImg {
  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.08rem;
  font-size: var(--font24);
  font-weight: 520;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #FFFFFF1A;
}
.ins_productCon8 .center_box .softItem .soft .soImg img {
  width: 0.34rem;
}
.ins_productCon8 .center_box .softItem .soft .soWro {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  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.12rem;
}
.ins_productCon8 .center_box .softItem .soft .soWro .one {
  font-size: var(--font18);
  font-weight: 220;
  padding-left: 0.16rem;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}
.ins_productCon8 .center_box .softItem .soft .soWro .one::after {
  content: '';
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  background: var(--active_color);
  border-radius: 50%;
  left: 0;
  top: 0.45em;
}
.ins_productCon8 .center_box .softItem .soft .imgBg {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  right: 0.16rem;
  bottom: 0.16rem;
  pointer-events: none;
}
@media (max-width:990px) {
  .ins_productCon8 .center_box .softItem {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_productCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
}
.ins_productCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon9 .center_box .softItem {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  margin-top: 0.72rem;
  background: #B7CEFF1A;
}
.ins_productCon9 .center_box .softItem .soft {
  width: 100%;
  height: auto;
  padding: 0.44rem 0.48rem;
  border-top: 1px solid #FFFFFF1A;
  font-size: var(--font18);
  font-weight: 220;
}
.ins_productCon9 .center_box .softItem .soft:first-child {
  border-top: 0;
}
.ins_productCon9 .center_box .softItem .bgColor {
  background: #B7CEFF05;
}
.ins_productCon9 .center_box .notes {
  width: 100%;
  height: auto;
  font-weight: 220;
  margin-top: 0.24rem;
}
.ins_productCon9 .center_box .notes span {
  font-weight: 520;
}
.ins_productCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
}
.ins_productCon10 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon10 .center_box .contIc {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_productCon10 .center_box .contIc .tableInfo {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_productCon10 .center_box .contIc .tableInfo .notesSBox {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_productCon10 .center_box .contIc .tableInfo .notesSBox {
    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.2rem;
  }
  .ins_productCon10 .center_box .contIc .tableInfo .notesSBox .sob,
  .ins_productCon10 .center_box .contIc .tableInfo .notesSBox .soi {
    display: contents;
  }
}
.ins_productCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
}
.ins_productCon11 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .img_w100 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  overflow: hidden;
  border-radius: 0.16rem;
}
.ins_productCon11 .center_box .img_w100 img {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .softItem {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
  margin-top: 0.24rem;
}
.ins_productCon11 .center_box .softItem .soft {
  width: 100%;
  height: auto;
  padding: 0.52rem;
  background: #B7CEFF1A;
  border-radius: 0.16rem;
  text-align: center;
}
.ins_productCon11 .center_box .softItem .soft .t2 {
  margin-top: 0.08rem;
  font-weight: 520;
}
.ins_productCon11 .center_box .softItem .soft .t2 span {
  font-size: var(--font24);
  font-weight: 300;
}
@media (max-width:990px) {
  .ins_productCon11 .center_box .softItem {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_productCon12 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
}
.ins_productCon12 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon13 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
}
.ins_productCon13 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon13 .center_box .softItem {
  width: 100%;
  height: auto;
  background: #B7CEFF1A;
  border-radius: 0.16rem;
  padding: 0 0.4rem;
  margin-top: 0.72rem;
}
.ins_productCon13 .center_box .softItem .soft {
  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;
  gap: 0.24rem;
  padding: 0.41rem 0;
  border-bottom: 1px solid #FFFFFF1A;
  cursor: pointer;
}
.ins_productCon13 .center_box .softItem .soft .soImg {
  width: fit-content;
  flex-shrink: 0;
  max-width: 60%;
  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;
  font-size: var(--font24);
  font-weight: 220;
}
.ins_productCon13 .center_box .softItem .soft .soImg img {
  width: 0.34rem;
}
.ins_productCon13 .center_box .softItem .soft .soImg span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_productCon13 .center_box .softItem .soft .soWro {
  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.08rem;
  font-size: var(--font18);
}
.ins_productCon13 .center_box .softItem .soft .soWro img {
  filter: brightness(0) invert(1);
  width: 0.24rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon13 .center_box .softItem .soft .soWro span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon13 .center_box .softItem .soft:hover .soWro img {
  filter: unset;
}
.ins_productCon13 .center_box .softItem .soft:hover .soWro span {
  color: var(--active_color);
}
.ins_productCon13 .center_box .softItem .soft:last-child {
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_productCon13 .center_box .softItem .soft {
    -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;
  }
  .ins_productCon13 .center_box .softItem .soft .soImg {
    max-width: unset;
  }
  .ins_productCon13 .center_box .softItem .soft .soWro {
    width: 100%;
    height: auto;
  }
}
.ins_productCon14 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
}
.ins_productCon14 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon14 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_productCon14 .center_box .swiper_box ul li {
  height: auto;
}
.ins_productCon14 .center_box .swiper_box ul li .item {
  width: 100%;
  height: 100%;
  background: #C7D7FF1A;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon14 .center_box .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
}
.ins_productCon14 .center_box .swiper_box ul li .item .img .pb {
  padding-bottom: 76%;
}
.ins_productCon14 .center_box .swiper_box ul li .item .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;
}
.ins_productCon14 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  padding: 0.7rem 0.4rem;
  padding-top: 0.2rem;
}
.ins_productCon14 .center_box .swiper_box ul li .item .word .t1 {
  color: #FFF;
  font-weight: 520;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon14 .center_box .swiper_box ul li .item .word .t2 {
  margin-top: 0.25rem;
  opacity: 0.6;
  color: #FFFFFF;
  font-weight: 220;
}
.ins_productCon14 .center_box .swiper_box ul li .item:hover {
  transform: scale(1.01);
}
.ins_productCon14 .center_box .swiper_box ul li .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_productCon14 .center_box .idxPageShow {
  display: none;
}
.ins_productCon15 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.8rem;
  overflow: hidden;
  padding-bottom: 0.8rem;
  background-image: url(../images/bg5.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.ins_productCon15 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon15 .center_box .ins_title .t2 {
  margin-top: 0.16rem;
}
.ins_productCon15 .center_box .content {
  width: 100%;
  height: auto;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.8rem;
}
.ins_productCon15 .center_box .content .list_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  background: #FFFFFF1A;
  backdrop-filter: blur(17px);
  border-radius: 0.16rem;
}
.ins_productCon15 .center_box .content .list_box .list {
  width: 100%;
  height: auto;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #FFFFFF1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.15rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 0.4rem;
  z-index: 3;
}
.ins_productCon15 .center_box .content .list_box .list .icon {
  width: fit-content;
  min-width: 9.2%;
  padding-right: 0.5rem;
  flex-shrink: 0;
  color: #FFF;
  font-weight: 500;
  font-size: var(--font18);
  padding: 0.24rem 0;
  border-right: 1px solid #FFFFFF1A;
}
.ins_productCon15 .center_box .content .list_box .list .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem 1px;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 0.24rem 0;
}
.ins_productCon15 .center_box .content .list_box .list .word .one {
  width: fit-content;
  height: auto;
  background: none;
  border: none;
  font-size: var(--font18);
  text-transform: capitalize;
  color: #FFFFFFCC;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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.08rem;
  padding: 0 0.2rem;
  border-radius: 100px;
  line-height: 1;
  min-height: 30px;
  position: relative;
  z-index: 1;
  font-weight: 220;
}
.ins_productCon15 .center_box .content .list_box .list .word .one .iconBg {
  width: 0.16rem;
  height: 0.16rem;
  min-width: 10px;
  min-height: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: #FFFFFF66;
  border-radius: 2px;
  overflow: hidden;
}
.ins_productCon15 .center_box .content .list_box .list .word .one .iconBg img {
  opacity: 0;
}
.ins_productCon15 .center_box .content .list_box .list .word .one.active {
  color: var(--active_color);
}
.ins_productCon15 .center_box .content .list_box .list .word .one.active .iconBg {
  background: var(--active_color);
}
.ins_productCon15 .center_box .content .list_box .list .word .one.active .iconBg img {
  opacity: 1;
}
.ins_productCon15 .center_box .content .list_box .list .word .one:hover {
  color: var(--active_color);
}
.ins_productCon15 .center_box .content .list_box .list .word .on {
  cursor: no-drop;
  opacity: 0.4;
  color: #FFFFFFCC !important;
}
.ins_productCon15 .center_box .content .list_box .list:last-child {
  border-bottom: 0;
}
.ins_productCon15 .center_box .content .list_box .list:last-child .icon {
  padding-bottom: 0.54rem;
}
.ins_productCon15 .center_box .content .selectBtn {
  width: 100%;
  height: auto;
}
.ins_productCon15 .center_box .content .selectBtn .btn {
  width: fit-content;
  padding: 0 0.7rem;
  height: 0.7rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 0;
  background: #FFFFFF1A;
  backdrop-filter: blur(17px);
  color: #FFFF;
  gap: 0.2rem;
  font-size: var(--font24);
}
.ins_productCon15 .center_box .content .roundBox {
  width: 0.99rem;
  height: 0.99rem;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  clip-path: circle(50% at 50% 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-top: 0.12rem;
  cursor: pointer;
  background: #FFFFFF1A;
  backdrop-filter: blur(17px);
}
.ins_productCon15 .center_box .content .roundBox.active img {
  transform: rotate(180deg);
}
.ins_productCon15 .center_box .reset_info {
  width: 100%;
  height: auto;
  margin-top: 0.31rem;
  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.8rem;
}
.ins_productCon15 .center_box .reset_info .left {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
}
.ins_productCon15 .center_box .reset_info .left .icon {
  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(--font18);
  cursor: pointer;
}
.ins_productCon15 .center_box .reset_info .left .word {
  font-size: var(--font18);
}
.ins_productCon15 .center_box .reset_info .left .word span {
  color: var(--active_color);
  font-weight: 520;
}
.ins_productCon15 .center_box .reset_info .right {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  font-size: var(--font18);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}
.ins_productCon15 .center_box .reset_info .right img {
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon15 .center_box .reset_info .right span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.ins_productCon15 .center_box .reset_info .right span::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon15 .center_box .reset_info .right:hover img {
  filter: unset;
}
.ins_productCon15 .center_box .reset_info .right:hover span {
  color: var(--active_color);
}
.ins_productCon15 .center_box .reset_info .right:hover span::after {
  width: 100%;
  left: 0;
}
.ins_productCon15 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
  margin-top: 0.72rem;
}
.ins_productCon15 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #C7D7FF1A;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.ins_productCon15 .center_box .item_box .item .iconBg {
  width: 0.16rem;
  height: 0.16rem;
  min-width: 10px;
  min-height: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 0.24rem;
  right: 0.24rem;
  background: #FFFFFF66;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}
.ins_productCon15 .center_box .item_box .item .iconBg img {
  opacity: 0;
}
.ins_productCon15 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_productCon15 .center_box .item_box .item .img .pb {
  padding-bottom: 76%;
}
.ins_productCon15 .center_box .item_box .item .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;
}
.ins_productCon15 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.6rem 0.4rem;
  padding-top: 0.2rem;
}
.ins_productCon15 .center_box .item_box .item .word .t1 {
  color: #FFF;
  font-weight: 520;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon15 .center_box .item_box .item .word .t2 {
  margin-top: 0.24rem;
  opacity: 0.6;
  color: #FFFFFF;
  font-weight: 220;
}
.ins_productCon15 .center_box .item_box .item:hover {
  transform: scale(1.01);
}
.ins_productCon15 .center_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_productCon15 .center_box .item_box .item.active .iconBg {
  background: var(--active_color);
}
.ins_productCon15 .center_box .item_box .item.active .iconBg img {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_productCon15 .center_box .content .roundBox {
    display: none;
  }
  .ins_productCon15 .center_box .content .list_box {
    display: none;
  }
  .ins_productCon15 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_productCon15 .center_box .reset_info {
    margin-top: 0.5rem;
  }
  .ins_productCon15 .center_box .reset_info .left .icon {
    display: none;
  }
  .ins_productCon15 .center_box .reset_info .left i {
    display: none;
  }
}
.ins_productCon16 {
  width: 100%;
  height: 1rem;
  position: sticky;
  z-index: 1;
  bottom: 0;
  padding: 0.4rem 0;
  border-radius: 0.16rem 0.16rem 0px 0px;
  transform: translateY(100%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_productCon16::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFFFFF1A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  backdrop-filter: blur(17px);
  border-radius: 0.16rem 0.16rem 0px 0px;
  overflow: hidden;
}
.ins_productCon16 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon16 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_productCon16 .center_box .content .left_box {
  width: 78.4%;
}
.ins_productCon16 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
}
.ins_productCon16 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.24rem;
  background: #C7D7FF1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_productCon16 .center_box .content .left_box .item_box .item .word {
  width: 76%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font18);
  gap: 0.16rem;
}
.ins_productCon16 .center_box .content .left_box .item_box .item .word img {
  width: 0.62rem;
  flex-shrink: 0;
}
.ins_productCon16 .center_box .content .left_box .item_box .item .icon {
  width: fit-content;
  filter: brightness(0) invert(1);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon16 .center_box .content .left_box .item_box .item .icon:hover {
  filter: unset;
}
.ins_productCon16 .center_box .content .right_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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon16 .center_box .content .right_box .idx_more3 {
  width: fit-content;
}
.ins_productCon16 .center_box .content .right_box .idx_more3 .more {
  padding: 0 0.52rem;
  height: 0.56rem;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon16 .center_box .content .right_box .idx_more3 .more img {
  width: 0.09rem;
  min-width: 7px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon16 .center_box .content .right_box .idx_more3 .more:hover img {
  filter: brightness(0) invert(0);
}
.ins_productCon16 .center_box .content .right_box .icon {
  width: fit-content;
  margin-top: 0.24rem;
  color: var(--active_color);
  font-size: var(--font18);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.ins_productCon16 .center_box .content .right_box .icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon16 .center_box .content .right_box .icon:hover::after {
  width: 100%;
  left: 0;
}
.ins_productCon16 .roundBox {
  width: 0.99rem;
  height: 0.99rem;
  min-width: 48px;
  min-height: 48px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-100%) translateX(-50%);
  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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-bottom: 0.12rem;
  cursor: pointer;
  clip-path: circle(50% at 50% 100%);
  background: #FFFFFF1A;
  backdrop-filter: blur(17px);
}
.ins_productCon16 .roundBox img {
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.24rem;
}
.ins_productCon16 .roundBox.active img {
  transform: rotate(0deg);
}
.ins_productCon16.active {
  height: auto;
  transform: translateY(0);
}
@media (max-width:990px) {
  .ins_productCon16 {
    -webkit-transition: all 0s ease;
    -o-transition: all 0s ease;
    transition: all 0s ease;
  }
  .ins_productCon16::after {
    background: #16191F;
  }
  .ins_productCon16 .roundBox {
    background: #16191F;
  }
  .ins_productCon16 .center_box .content .left_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_productCon16 .center_box .content .right_box {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
  }
  .ins_productCon16 .center_box .content .right_box .icon {
    margin-top: 0;
  }
}
.ins_downloadCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  background: #0D0D0D;
}
.ins_downloadCon1 .center_box {
  width: 100%;
  height: auto;
  padding: 0.72rem;
  border-radius: 0.16rem;
  background: rgba(183, 206, 255, 0.1);
  backdrop-filter: blur(17px);
  padding-bottom: 1.2rem;
}
.ins_downloadCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
  margin-top: 0.52rem;
}
.ins_downloadCon1 .center_box .item_box .item {
  width: 100%;
  min-height: 0.88rem;
  background: #292C30;
  padding: 20px 0.4rem;
  padding-right: 0.23rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 0.08rem;
  gap: 0.2rem;
}
.ins_downloadCon1 .center_box .item_box .item .word {
  max-width: 70%;
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .center_box .item_box .item .icon {
  filter: brightness(0) invert(1);
  cursor: pointer;
  width: 0.3rem;
  height: 0.3rem;
  min-width: 20px;
  min-height: 20px;
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
}
.ins_downloadCon1 .center_box .item_box .item .icon img {
  width: 0.13rem;
}
.ins_downloadCon1 .center_box .item_box .item .icon:hover {
  filter: unset;
}
.ins_downloadCon1 .center_box .item_box .item:hover .word {
  color: var(--active_color);
}
.ins_downloadCon1 .center_box .item_box1 {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .center_box .item_box1 .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  position: relative;
  z-index: 1;
}
.ins_downloadCon1 .center_box .item_box1 .item .img_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .center_box .item_box1 .item .img_box .img {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .center_box .item_box1 .item .img_box .img .pb {
  padding-bottom: 34%;
}
.ins_downloadCon1 .center_box .item_box1 .item .img_box .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;
}
.ins_downloadCon1 .center_box .item_box1 .item .img_box .t1 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  text-align: center;
}
.ins_downloadCon1 .center_box .item_box1 .item .icon {
  position: absolute;
  top: 0.15rem;
  right: 0.24rem;
  margin-top: 0;
}
.ins_downloadCon1 .center_box .item_box1 .item .iconBox {
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
}
.ins_downloadCon1 .center_box .item_box1 .item .iconBox .img {
  width: 0.34rem;
  height: 0.34rem;
}
.ins_downloadCon1 .center_box .item_box1 .item .iconBox .t2 {
  margin-top: 0.08rem;
}
.ins_downloadCon1 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.92rem;
}
.ins_downloadCon1 .center_box .content_info .input_info {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  margin-top: 0.52rem;
  --color1: #FFF;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.52rem 2.32rem;
  color: var(--color1);
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .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;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .icon {
  width: 100%;
  height: auto;
  opacity: 0.8;
  font-size: var(--font18);
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #FFFFFF33;
  font-size: var(--font18);
  --color: #FFFFFF66;
  margin-top: 0.13rem;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input input {
  width: 100%;
  height: auto;
  font-weight: 400;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input input::-webkit-input-placeholder,
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input input:-moz-placeholder,
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input input::-moz-placeholder,
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input input:-ms-input-placeholder,
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input input {
  background: none;
  border: none;
  height: 0.48rem;
  min-height: 30px;
  color: var(--color1);
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input textarea {
  width: 100%;
  height: 1.2rem;
  min-height: 80px;
  background: none;
  border: none;
  color: var(--color1);
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-input:focus,
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-textarea:focus {
  box-shadow: unset !important;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-style: unset;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(-50%);
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-form-select .layui-edge::after {
  content: '\e71a';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "iconfont";
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFF;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-form-selected .layui-edge {
  transform: translateY(0%) rotate(180deg);
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-form-selected dl {
  top: calc(100% + 0.2rem);
  bottom: unset;
  background: #292C30;
  border: 0;
  border-radius: 0.08rem;
  padding: 0.24rem 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.3rem;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-form-select dl dd.layui-this {
  background: none;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-form-select dl dd,
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-form-select dl dt {
  line-height: 1.4;
  padding: 0;
  color: #FFF;
  background: none !important;
  font-size: var(--font18);
  flex-shrink: 0;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-form-select dl dd.layui-this {
  font-weight: 320;
  color: var(--active_color);
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-input,
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .layui-textarea {
  padding-left: 0 !important;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item .input .select {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .center_box .content_info .input_info .inputBox .item.grid2 {
  grid-column: span 2;
}
.ins_downloadCon1 .center_box .content_info .input_info .clickBox {
  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;
  margin-top: 0.24rem;
}
.ins_downloadCon1 .center_box .content_info .input_info .clickBox .layui-form-checkbox[lay-skin=primary] > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
  color: #FFF;
  font-weight: 320;
  opacity: 0.6;
}
.ins_downloadCon1 .center_box .content_info .input_info .clickBox .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: unset;
}
.ins_downloadCon1 .center_box .content_info .input_info .clickBox .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.18rem;
  height: 0.18rem;
  min-width: 15px;
  min-height: 15px;
  border: 1px solid #CCC;
  background: #F7F8FA;
  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;
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  color: #000;
}
.ins_downloadCon1 .center_box .content_info .input_info .clickBox .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
}
.ins_downloadCon1 .center_box .content_info .input_info .clickBox .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color);
  color: #000;
  border: 1px solid var(--active_color) !important;
}
.ins_downloadCon1 .center_box .content_info .input_info .clickBox .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.ins_downloadCon1 .center_box .content_info .input_info .idx_more3 {
  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;
  margin-top: 0.72rem;
}
@media (max-width:990px) {
  .ins_downloadCon1 .center_box {
    width: 100%;
    height: auto;
    padding: 0.4rem;
  }
  .ins_downloadCon1 .center_box .item_box,
  .ins_downloadCon1 .center_box .item_box1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_downloadCon1 .center_box .item_box .item.grid2,
  .ins_downloadCon1 .center_box .item_box1 .item.grid2 {
    grid-column: unset;
  }
  .ins_downloadCon1 .center_box .item_box1 .item .img_box .t1 {
    text-align: center;
  }
  .ins_downloadCon1 .center_box .content_info .input_info .inputBox {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_downloadCon1 .center_box .content_info .input_info .inputBox .item {
    width: 100%;
    height: auto;
  }
  .ins_downloadCon1 .center_box .content_info .input_info .inputBox .item.grid2 {
    grid-column: unset;
  }
}
.ins_contrastCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  padding-top: 1.79rem;
  background-image: url(../images/bg5.png);
  background-repeat: no-repeat;
  background-position: 100% auto;
}
.ins_contrastCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contrastCon1 .center_box .select_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.72rem;
}
.ins_contrastCon1 .center_box .select_info .select_top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: sticky;
  z-index: 5;
  top: var(--header-height);
  background: #B7CEFF1A;
  backdrop-filter: blur(17px);
  border-radius: 0.16rem 0.16rem 0 0;
  overflow: hidden;
}
.ins_contrastCon1 .center_box .select_info .select_top .item {
  width: 21%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-left: 1px solid #FFFFFF1A;
  padding: 0.4rem;
  position: relative;
  z-index: 1;
}
.ins_contrastCon1 .center_box .select_info .select_top .item .name {
  font-size: var(--font18);
}
.ins_contrastCon1 .center_box .select_info .select_top .item .icon {
  width: 100%;
  height: auto;
}
.ins_contrastCon1 .center_box .select_info .select_top .item .icon .pb {
  padding-bottom: 36%;
}
.ins_contrastCon1 .center_box .select_info .select_top .item .icon .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_contrastCon1 .center_box .select_info .select_top .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-size: var(--font18);
  font-weight: 450;
  text-align: center;
}
.ins_contrastCon1 .center_box .select_info .select_top .item .close {
  position: absolute;
  top: 0.24rem;
  right: 0.24rem;
  cursor: pointer;
  filter: brightness(0) invert(1);
}
.ins_contrastCon1 .center_box .select_info .select_top .item .close:hover {
  filter: unset;
}
.ins_contrastCon1 .center_box .select_info .select_top .item .img {
  width: 0.34rem;
  height: 0.34rem;
}
.ins_contrastCon1 .center_box .select_info .select_top .item .wordS {
  text-align: center;
  margin-top: 0.08rem;
  font-size: var(--font18);
  font-weight: 300;
  cursor: pointer;
}
.ins_contrastCon1 .center_box .select_info .select_top .item:first-child {
  width: 16%;
  border-left: 0;
}
.ins_contrastCon1 .center_box .select_info .select_top .item:first-child {
  border-left: 0;
}
.ins_contrastCon1 .center_box .select_info .select_bot {
  width: 100%;
  height: auto;
  background: #B7CEFF1A;
  backdrop-filter: blur(17px);
  position: relative;
  z-index: 1;
  border-radius: 0 0 0.16rem 0.16rem;
  overflow: hidden;
}
.ins_contrastCon1 .center_box .select_info .select_bot .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_contrastCon1 .center_box .select_info .select_bot .item .one {
  width: 21%;
  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;
  text-align: center;
  padding: 0.24rem 0;
  border-top: 1px solid #FFFFFF1A;
  border-left: 1px solid #FFFFFF1A;
  font-weight: 300;
}
.ins_contrastCon1 .center_box .select_info .select_bot .item .one:first-child {
  width: 16%;
  border-left: 0;
}
.ins_contrastCon1 .center_box .notes {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  opacity: 0.6;
  color: var(--color_fff);
  font-weight: 220;
  margin-top: 0.24rem;
}
.ins_contrastCon1 .center_box .btnBox {
  width: 100%;
  height: auto;
  gap: 0.84rem;
  margin-top: 0.62rem;
  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_contrastCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_contrastCon1 .center_box .select_info {
    width: 100%;
    height: auto;
    overflow: auto;
  }
  .ins_contrastCon1 .center_box .select_info .select_top {
    position: relative;
    z-index: 1;
    top: unset;
    min-width: 900px;
  }
  .ins_contrastCon1 .center_box .select_info .select_bot {
    position: relative;
    z-index: 1;
    top: unset;
    min-width: 900px;
  }
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
  padding-top: 1.79rem;
  background: linear-gradient(294deg, #0D0D0D 2.5%, #0B1726 99.2%);
}
.ins_aboutCon1 .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_aboutCon1 .img_bg img {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .ins_title {
  width: 61%;
  margin: 0 auto;
}
.ins_aboutCon1 .center_box .img_w100 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  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;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_aboutCon1 .center_box .img_w100 .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .img_w100 .img img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
}
.ins_aboutCon1 .center_box .img_w100 .icon {
  position: absolute;
  width: 0.68rem;
  height: 0.68rem;
  z-index: 10;
  background: #FFFFFF33;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  border: 1px solid #FFFFFF;
  cursor: pointer;
}
@media (max-width:990px) {
  .ins_aboutCon1 .center_box .ins_title {
    width: 100%;
    height: auto;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.72rem;
}
.ins_aboutCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.72rem 0.68rem;
  padding-bottom: 0.82rem;
  background: #0F1A26;
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ins_aboutCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(116deg, #122B48 14.07%, #0C1D31 86.13%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.ins_aboutCon2 .center_box .item_box .item .icon {
  width: 1.14rem;
}
.ins_aboutCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.32rem;
}
.ins_aboutCon2 .center_box .item_box .item .word .t1 {
  font-weight: 450;
}
.ins_aboutCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  font-weight: 330;
  line-height: 1.6;
  color: #CCC;
}
.ins_aboutCon2 .center_box .item_box .item:hover::after {
  opacity: 1;
  width: 100%;
}
@media (max-width:990px) {
  .ins_aboutCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_aboutCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.4rem;
  }
  .ins_aboutCon2 .center_box .item_box .item .icon {
    flex-shrink: 0;
    width: 1rem;
  }
  .ins_aboutCon2 .center_box .item_box .item .word {
    width: 100%;
    text-align: start;
    margin-top: 0;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-bottom: 1.1rem;
  background-image: url(../images/bg8.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}
.ins_aboutCon3 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.7rem;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .left_box {
  width: 53.9%;
  height: auto;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .left_box .img .pb {
  padding-bottom: 57%;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .left_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .right_box {
  width: 40.6%;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .right_box .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .right_box .word .t1 {
  font-size: 0.92rem;
  font-weight: 630;
  background: linear-gradient(104deg, #77B5FF -1.35%, #2F609A 104.03%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .right_box .word .list {
  width: 100%;
  height: auto;
  margin-top: 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;
  gap: 0.24rem;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .right_box .word .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  color: #CDCDCD;
  line-height: 1.6;
}
.ins_aboutCon3 .center_box .content .swiper_box .centerInfo .right_box .word .list .one span {
  font-weight: 330;
  color: #2F609A;
}
.ins_aboutCon3 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 1.49rem;
  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;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .center_box .swiper_info .btn {
  width: 0.52rem;
  height: 0.52rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--active_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: relative;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_info .btn i {
  font-size: var(--font20);
  font-weight: 450;
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_info .btn:hover {
  background-color: var(--active_color);
}
.ins_aboutCon3 .center_box .swiper_info .btn:hover i {
  color: var(--color_000);
}
.ins_aboutCon3 .center_box .swiper_info .swiper {
  width: calc(100% - 1.04rem);
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .center_box .swiper_info .swiper::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 100vw;
  height: 2rem;
  top: 0;
  transform: translateY(-50%);
  left: 100%;
  background: #0D0D0D;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_info .swiper::before {
  content: '';
  position: absolute;
  z-index: 2;
  width: 100vw;
  height: 2rem;
  top: 0;
  transform: translateY(-50%);
  right: 100%;
  background: #0D0D0D;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: #DEDEDE;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li .centerInfo i {
  width: 0.16rem;
  height: 0.16rem;
  background: #CCCCCC;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  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.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li .centerInfo i::after {
  content: '';
  position: absolute;
  width: 0.32rem;
  height: 0.32rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100%;
  opacity: 0;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li .centerInfo span {
  font-size: var(--font24);
  color: #999999;
  position: absolute;
  bottom: 0.24rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li.active .centerInfo i {
  background: var(--active_color);
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li.active .centerInfo i::after {
  opacity: 0.4;
}
.ins_aboutCon3 .center_box .swiper_info .swiper .swiper_item ul li.active .centerInfo span {
  font-size: var(--font40);
  font-weight: 450;
  color: var(--active_color);
}
.ins_aboutCon3 .img_bg {
  width: 78.2%;
  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;
}
.ins_aboutCon3 .img_bg img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutCon3 .center_box .swiper_info .btn i {
    font-size: var(--font14);
  }
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(294deg, #0D0D0D -0.86%, #0B1726 99.18%);
}
.ins_aboutCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
  margin-top: 0.72rem;
}
.ins_aboutCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_aboutCon4 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon4 .center_box .item_box .item .word {
  font-size: var(--font24);
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.32rem;
  padding-left: 0.4rem;
}
.ins_aboutCon4 .center_box .item_box .item:hover .img img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_aboutCon4 .center_box .item_box {
    display: none;
  }
}
.ins_aboutCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  display: none;
  margin-top: 0.72rem;
}
.ins_aboutCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_aboutCon4 .center_box .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_box ul li .item .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon4 .center_box .swiper_box ul li .item .word {
  font-size: var(--font24);
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.32rem;
  padding-left: 0.4rem;
}
.ins_aboutCon4 .center_box .swiper_box ul li .item:hover .img img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_aboutCon4 .center_box .swiper_box {
    display: block;
  }
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(294deg, #0D0D0D -0.86%, #0B1726 99.18%);
}
.ins_aboutCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .swiper_box {
  width: 92%;
  height: auto;
  margin-top: 0.72rem;
  position: relative;
  z-index: 1;
}
.ins_aboutCon5 .center_box .swiper_box ul li {
  width: 25%;
}
.ins_aboutCon5 .center_box .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.ins_aboutCon5 .center_box .swiper_box .centerInfo .pb {
  padding-bottom: 67%;
}
.ins_aboutCon5 .center_box .swiper_box .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(294deg, #0D0D0D -0.86%, #0B1726 99.18%);
}
.ins_aboutCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  overflow: hidden;
}
.ins_aboutCon6 .center_box .swiper_box ul li {
  width: auto;
}
.ins_aboutCon6 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  padding: 0.42rem;
  padding-bottom: 0.3rem;
  background: #1E2228;
  border-radius: 0.16rem;
}
.ins_aboutCon6 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 89%;
}
.ins_aboutCon6 .center_box .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;
}
.ins_aboutCon6 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
  text-align: center;
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background-image: url(../images/bg10.jpg);
  background-repeat: no-repeat;
  background-position: 100% auto;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.32rem;
}
.ins_contactCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #0F1A26;
  padding: 0.4rem;
  padding-bottom: 0.54rem;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_contactCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(116deg, #122B48 14.07%, #0C1D31 86.13%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.ins_contactCon1 .center_box .item_box .item .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;
}
.ins_contactCon1 .center_box .item_box .item .icon_box .word {
  font-size: var(--font32);
  padding-bottom: 0.24rem;
  position: relative;
  z-index: 1;
}
.ins_contactCon1 .center_box .item_box .item .icon_box .word::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.42rem;
  height: 0.04rem;
  background: var(--active_color);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon1 .center_box .item_box .item .icon_box .icon {
  width: 0.72rem;
  height: 0.72rem;
}
.ins_contactCon1 .center_box .item_box .item .list {
  width: 100%;
  height: auto;
  margin-top: 0.66rem;
}
.ins_contactCon1 .center_box .item_box .item .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  line-height: 1.6;
  font-weight: 330;
  color: #FFFFFF;
}
.ins_contactCon1 .center_box .item_box .item .list .one span {
  color: #999;
  min-width: 5em;
  display: inline-block;
}
.ins_contactCon1 .center_box .item_box .item .imgBg {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  right: 0.16rem;
  bottom: 0.16rem;
  pointer-events: none;
}
.ins_contactCon1 .center_box .item_box .item:hover::after {
  opacity: 1;
  width: 100%;
}
@media (max-width:990px) {
  .ins_contactCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_contactCon1 .center_box .item_box .item .list {
    width: 88%;
  }
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(294deg, #0D0D0D 2.5%, #0B1726 99.2%);
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_contactCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #0F1A26;
  padding: 0.4rem;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_contactCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(116deg, #122B48 14.07%, #0C1D31 86.13%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.ins_contactCon2 .center_box .item_box .item .icon_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .item_box .item .icon_box .word {
  font-size: var(--font32);
  padding-bottom: 0.24rem;
  position: relative;
  z-index: 1;
}
.ins_contactCon2 .center_box .item_box .item .icon_box .word::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.42rem;
  height: 0.04rem;
  background: var(--active_color);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon2 .center_box .item_box .item .list {
  width: 81%;
  height: auto;
  margin-top: 0.66rem;
}
.ins_contactCon2 .center_box .item_box .item .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  line-height: 1.6;
  font-weight: 220;
  color: #FFFFFF;
}
.ins_contactCon2 .center_box .item_box .item .list .one span {
  color: #999;
  min-width: 5em;
  display: inline-block;
}
.ins_contactCon2 .center_box .item_box .item .imgBg {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  right: 0.16rem;
  bottom: 0.16rem;
  pointer-events: none;
}
.ins_contactCon2 .center_box .item_box .item:hover::after {
  opacity: 1;
  width: 100%;
}
@media (max-width:990px) {
  .ins_contactCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_feedbackCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #0D0D0D;
  background-image: url(../images/bg11.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.ins_feedbackCon1 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_feedbackCon1 .center_box .left_box {
  width: 35.5%;
  height: auto;
}
.ins_feedbackCon1 .center_box .left_box .ins_title {
  width: 100%;
  height: auto;
  padding-bottom: 0.62rem;
  border-bottom: 1px solid #FFFFFF33;
}
.ins_feedbackCon1 .center_box .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.62rem;
  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_feedbackCon1 .center_box .left_box .list .one {
  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.11rem;
  font-size: var(--font18);
  font-weight: 220;
  line-height: 1.6;
}
.ins_feedbackCon1 .center_box .left_box .list .one img {
  width: 0.24rem;
  height: 0.24rem;
}
.ins_feedbackCon1 .center_box .right_box {
  width: 59%;
  height: auto;
}
.ins_feedbackCon1 .center_box .right_box .content {
  width: 100%;
  height: auto;
  background: #FFFFFF0F;
  border-radius: 0.12rem;
  overflow: hidden;
  padding: 0.4rem;
  backdrop-filter: blur(44px);
}
.ins_feedbackCon1 .center_box .right_box .content .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.24rem;
}
.ins_feedbackCon1 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  background: #FFFFFF0A;
  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;
  padding-left: 0.22rem;
  font-size: var(--font18);
  gap: 0.2rem;
}
.ins_feedbackCon1 .center_box .right_box .content .item_box .item span {
  color: #999;
  flex-shrink: 0;
}
.ins_feedbackCon1 .center_box .right_box .content .item_box .item input,
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea {
  width: 100%;
  height: 0.7rem;
  min-height: 50px;
  background: none;
  border: 0;
  color: #FFFFFF;
}
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea {
  padding: 0.23rem 0;
  min-height: 2.24rem;
  --color: #999;
}
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea::-webkit-input-placeholder,
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea:-moz-placeholder,
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea::-moz-placeholder,
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea:-ms-input-placeholder,
.ins_feedbackCon1 .center_box .right_box .content .item_box .item textarea textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_feedbackCon1 .center_box .right_box .content .clickBox {
  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;
  margin-top: 0.24rem;
}
.ins_feedbackCon1 .center_box .right_box .content .clickBox .layui-form-checkbox[lay-skin=primary] > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
  color: #999;
  font-weight: 220;
}
.ins_feedbackCon1 .center_box .right_box .content .clickBox .layui-form-checkbox[lay-skin=primary] > div a {
  color: #999;
  text-decoration: unset;
}
.ins_feedbackCon1 .center_box .right_box .content .clickBox .layui-form-checkbox[lay-skin=primary] > i {
  width: 18px;
  height: 18px;
  border: 1px solid #CCC;
  background: #F7F8FA;
  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;
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  color: #000;
}
.ins_feedbackCon1 .center_box .right_box .content .clickBox .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
}
.ins_feedbackCon1 .center_box .right_box .content .clickBox .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color);
  color: #000;
  border: 1px solid var(--active_color) !important;
}
.ins_feedbackCon1 .center_box .right_box .content .clickBox .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.ins_feedbackCon1 .center_box .right_box .content .idx_more3 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 0.4rem;
}
@media (max-width:990px) {
  .ins_feedbackCon1 .center_box .left_box .ins_title .t2 p {
    display: contents;
  }
}
.ins_joinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background-image: url(../images/bg12.jpg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.ins_joinCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_joinCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  min-height: 3.94rem;
  background: #0F1A26;
  padding: 0.4rem 0.45rem;
  padding-bottom: 1.14rem;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_joinCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(116deg, #122B48 14.07%, #0C1D31 86.13%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.ins_joinCon1 .center_box .item_box .item .icon_box {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .item_box .item .icon_box .icon {
  width: 0.84rem;
  height: 0.84rem;
}
.ins_joinCon1 .center_box .item_box .item .icon_box .word {
  font-size: var(--font24);
  padding-bottom: 0.24rem;
  position: relative;
  z-index: 1;
  margin-top: 0.24rem;
}
.ins_joinCon1 .center_box .item_box .item .icon_box .word::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.42rem;
  height: 0.04rem;
  background: #FFFFFF;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon1 .center_box .item_box .item .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_joinCon1 .center_box .item_box .item .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  font-weight: 220;
  color: #CCCCCC;
}
.ins_joinCon1 .center_box .item_box .item .imgBg {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  right: 0.16rem;
  bottom: 0.16rem;
  pointer-events: none;
}
.ins_joinCon1 .center_box .item_box .item:hover::after {
  opacity: 1;
  width: 100%;
}
@media (max-width:990px) {
  .ins_joinCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_joinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  background-image: url(../images/bg13.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.ins_joinCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .left_box {
  width: 17%;
  height: 80vh;
  position: sticky;
  top: calc(var(--header-height) + 0.2rem);
}
.ins_joinCon2 .center_box .left_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .left_box .ins_title .t2 {
  margin-top: 0.16rem;
  font-weight: 220;
}
.ins_joinCon2 .center_box .left_box .ins_title .t2 a {
  display: contents;
  color: #FFF;
  font-weight: 520;
}
.ins_joinCon2 .center_box .right_box {
  width: 66.3%;
  height: auto;
}
.ins_joinCon2 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.24rem;
}
.ins_joinCon2 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF0F;
  border-radius: 0.16rem;
  overflow: hidden;
  padding: 0 0.4rem;
  padding-bottom: 0.4rem;
  backdrop-filter: blur(24.60000038px);
}
.ins_joinCon2 .center_box .right_box .item_box .item .top {
  width: 100%;
  padding-top: 0.4rem;
  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;
  font-size: var(--font24);
  font-weight: 520;
  cursor: pointer;
}
.ins_joinCon2 .center_box .right_box .item_box .item .top img {
  width: 0.18rem;
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon2 .center_box .right_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.16rem;
  display: none;
}
.ins_joinCon2 .center_box .right_box .item_box .item .bot .title {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 0.32rem;
  opacity: 0.8;
  font-weight: 320;
}
.ins_joinCon2 .center_box .right_box .item_box .item .bot .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_joinCon2 .center_box .right_box .item_box .item .bot .list .one {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .right_box .item_box .item .bot .list .one .t1 {
  font-weight: 520;
}
.ins_joinCon2 .center_box .right_box .item_box .item .bot .list .one .t2 {
  color: #FFFFFF;
  margin-top: 0.16rem;
}
.ins_joinCon2 .center_box .right_box .item_box .item .bot .list .one .t2 p {
  opacity: 0.8;
  font-weight: 220;
}
.ins_joinCon2 .center_box .right_box .item_box .item.active .top img {
  transform: rotate(0);
}
.ins_joinCon2.bgF4 {
  background: #F4F6FA;
}
.ins_joinCon2.bgF4 .center_box .right_box .item_box .item {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .ins_joinCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_joinCon2 .center_box .left_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset;
  }
}
.ins_agentCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.8rem;
  padding-bottom: 1.4rem;
  background: linear-gradient(294deg, #0D0D0D 2.5%, #0B1726 99.2%);
}
.ins_agentCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_agentCon1 .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;
  padding-bottom: 0.4rem;
}
.ins_agentCon1 .center_box .content .ins_title {
  width: 60%;
}
.ins_agentCon1 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 1.2rem;
}
.ins_agentCon1 .center_box .content1 .swiper_box {
  width: 92%;
  height: auto;
  margin-top: 0.72rem;
  position: relative;
  z-index: 1;
}
.ins_agentCon1 .center_box .content1 .swiper_box ul li {
  width: 25%;
  height: auto;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo {
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
  background: linear-gradient(155deg, rgba(15, 26, 38, 0.19) 11.09%, #101C29 60.7%);
  background: #0F1A26;
  position: relative;
  z-index: 1;
  padding: 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.85rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo .word {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo .word .t1 {
  font-weight: 450;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo .word .t2 {
  margin-top: 0.16rem;
  font-size: var(--font18);
  color: #CCC;
  font-weight: 220;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo .icon {
  width: 0.82rem;
  height: 0.82rem;
  background: #FF99001A;
  border-radius: 50%;
  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: 3;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo .icon img {
  width: 0.58rem;
  height: 0.58rem;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  z-index: 1;
  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;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo .img_bg img {
  width: 100%;
  height: auto;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  background: linear-gradient(328deg, rgba(19, 43, 73, 0.19) 11.09%, #132B49 60.7%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  background: linear-gradient(328deg, rgba(15, 26, 38, 0.19) 11.09%, #101C29 60.7%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.5;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo:hover::after {
  opacity: 0.6;
}
.ins_agentCon1 .center_box .content1 .swiper_box .centerInfo:hover::before {
  opacity: 0;
}
@media (max-width:990px) {
  .ins_agentCon1 .center_box .content {
    padding: 2rem 0;
  }
  .ins_agentCon1 .center_box .content .ins_title {
    width: 100%;
    height: auto;
  }
  .ins_agentCon1 .center_box .content .ins_title .t2 {
    margin-top: 0.4rem;
  }
}
.ins_agentCon1 .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_agentCon1 .img_bg img {
  width: 100%;
  height: auto;
}
.ins_agentCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(294deg, #0D0D0D 2.5%, #0B1726 99.2%);
}
.ins_agentCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_agentCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_agentCon2 .center_box .content .left_box {
  width: 54.3%;
}
.ins_agentCon2 .center_box .content .left_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_agentCon2 .center_box .content .left_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_agentCon2 .center_box .content .left_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_agentCon2 .center_box .content .left_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 69.5%;
}
.ins_agentCon2 .center_box .content .left_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_agentCon2 .center_box .content .right_box {
  width: 42%;
}
.ins_agentCon2 .center_box .content .right_box .item_box {
  width: 100%;
  height: auto;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #FFFFFF24;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: -1px;
  left: 0;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #FFFFFF24;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: -1px;
  left: 0;
  opacity: 0;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item .top {
  padding: 0.4rem 0;
  cursor: pointer;
  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-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item .top span {
  font-size: var(--font32);
  font-weight: 450;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item .top img {
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  display: none;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item .bot .word {
  width: 100%;
  height: auto;
  color: #989898;
  font-size: var(--font18);
}
.ins_agentCon2 .center_box .content .right_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item .bot .img img {
  width: 100%;
  height: auto;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item:last-child::before {
  opacity: 1;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item.active::after,
.ins_agentCon2 .center_box .content .right_box .item_box .item.active::before {
  opacity: 1;
  background: #FF990033;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item.active .top {
  padding-bottom: 0.24rem;
}
.ins_agentCon2 .center_box .content .right_box .item_box .item.active .top img {
  transform: rotate(0deg);
}
@media (max-width:990px) {
  .ins_agentCon2 .center_box .content .left_box {
    display: none !important;
  }
}
.ins_agentCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  background: linear-gradient(294deg, #0D0D0D 2.5%, #0B1726 99.2%);
}
.ins_agentCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_agentCon3 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.92rem;
  padding: 0.72rem 0.52rem;
  border-radius: 0.16rem;
  background: #FFFFFF0F;
  backdrop-filter: blur(17px);
}
.ins_agentCon3 .center_box .content_info .input_info {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  --color1: #FFF;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.38rem 2.32rem;
  color: var(--color1);
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .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;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .icon {
  width: 100%;
  height: auto;
  opacity: 0.8;
  font-size: var(--font18);
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #FFFFFF33;
  font-size: var(--font18);
  --color: #FFFFFF66;
  margin-top: 0.13rem;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input input {
  width: 100%;
  height: auto;
  font-weight: 400;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input input::-webkit-input-placeholder,
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input input:-moz-placeholder,
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input input::-moz-placeholder,
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input input:-ms-input-placeholder,
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input input {
  background: none;
  border: none;
  height: 0.48rem;
  min-height: 30px;
  color: var(--color1);
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input textarea {
  width: 100%;
  height: 1.2rem;
  min-height: 80px;
  background: none;
  border: none;
  color: var(--color1);
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-input:focus,
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-textarea:focus {
  box-shadow: unset !important;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-style: unset;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(-50%);
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-form-select .layui-edge::after {
  content: '\e71a';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "iconfont";
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFF;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-form-selected .layui-edge {
  transform: translateY(0%) rotate(180deg);
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-form-selected dl {
  top: calc(100% + 0.2rem);
  bottom: unset;
  background: #292C30;
  border: 0;
  border-radius: 0.08rem;
  padding: 0.24rem 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.3rem;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-form-select dl dd.layui-this {
  background: none;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-form-select dl dd,
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-form-select dl dt {
  line-height: 1.4;
  padding: 0;
  color: #FFF;
  background: none !important;
  font-size: var(--font18);
  flex-shrink: 0;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-form-select dl dd.layui-this {
  font-weight: 320;
  color: var(--active_color);
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-input,
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .layui-textarea {
  padding-left: 0 !important;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item .input .select {
  width: 100%;
  height: auto;
}
.ins_agentCon3 .center_box .content_info .input_info .inputBox .item.grid2 {
  grid-column: span 2;
}
.ins_agentCon3 .center_box .content_info .input_info .clickBox {
  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;
  margin-top: 0.24rem;
}
.ins_agentCon3 .center_box .content_info .input_info .clickBox .layui-form-checkbox[lay-skin=primary] > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
  color: #FFF;
  font-weight: 320;
  opacity: 0.6;
}
.ins_agentCon3 .center_box .content_info .input_info .clickBox .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: unset;
}
.ins_agentCon3 .center_box .content_info .input_info .clickBox .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.18rem;
  height: 0.18rem;
  min-width: 15px;
  min-height: 15px;
  border: 1px solid #CCC;
  background: #F7F8FA;
  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;
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  color: #000;
}
.ins_agentCon3 .center_box .content_info .input_info .clickBox .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
}
.ins_agentCon3 .center_box .content_info .input_info .clickBox .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color);
  color: #000;
  border: 1px solid var(--active_color) !important;
}
.ins_agentCon3 .center_box .content_info .input_info .clickBox .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.ins_agentCon3 .center_box .content_info .input_info .idx_more3 {
  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;
  margin-top: 0.72rem;
}
@media (max-width:990px) {
  .ins_agentCon3 .center_box .inputBox {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .ins_agentCon3 .center_box .inputBox .item.grid2 {
    grid-column: unset !important;
  }
}
.ins_agentCon3 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.ins_agentCon3 .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
  background: #0C1116;
}
.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 .centerInfo {
  width: 100%;
  height: auto;
  background: #B7CEFF1A;
  backdrop-filter: blur(17px);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .left_box {
  width: 46.81%;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .left_box .img {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .left_box .img .pb {
  padding-bottom: 56%;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .left_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .right_box {
  width: 53.19%;
  height: auto;
  padding: 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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .right_box .word {
  width: 100%;
  height: auto;
  letter-spacing: -3%;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .right_box .word .t1 {
  color: #FFF;
  opacity: 0.8;
  font-weight: 220;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .right_box .word .t2 {
  font-weight: 520;
  color: #FFFFFF;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .right_box .word .t3 {
  color: #FFF;
  opacity: 0.8;
  margin-top: 0.32rem;
  font-weight: 220;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .right_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  margin-top: 1rem;
}
.ins_newCon1 .center_box .swiper_box .centerInfo .right_box .list .one {
  width: fit-content;
  height: 0.4rem;
  min-height: 35px;
  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: 1px solid var(--active_color);
  color: var(--active_color);
  padding: 0 0.2rem;
  border-radius: 0.04rem;
  font-size: var(--font18);
}
.ins_newCon1 .center_box .swiper_box .centerInfo:hover .left_box .img img {
  transform: scale(1.03);
}
.ins_newCon1 .center_box .swiper_box .centerInfo:hover .right_box .word .t2 {
  color: var(--active_color);
}
.ins_newCon1 .center_box .swiPger {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_newCon1 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_newCon1 .img_bg img {
  width: 100%;
  height: auto;
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  padding-top: 0.4rem;
  overflow: hidden;
  background: linear-gradient(294deg, #0D0D0D -0.86%, #0B1726 99.18%);
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.72rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon2 .center_box .list_box .list {
  font-size: var(--font24);
  color: #FFF;
  opacity: 0.8;
}
.ins_newCon2 .center_box .list_box .list.active {
  font-size: var(--font32);
  color: var(--active_color);
  font-weight: 450;
  opacity: 1;
}
.ins_newCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.65rem;
}
.ins_newCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #B7CEFF1A;
  backdrop-filter: blur(17px);
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 56%;
}
.ins_newCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.4rem;
}
.ins_newCon2 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  letter-spacing: -3%;
}
.ins_newCon2 .center_box .item_box .item .word_box .word .t1 {
  color: #FFF;
  opacity: 0.8;
  font-weight: 220;
}
.ins_newCon2 .center_box .item_box .item .word_box .word .t2 {
  font-weight: 520;
  color: #FFFFFF;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .word_box .word .t3 {
  color: #FFF;
  opacity: 0.8;
  margin-top: 0.2rem;
  font-weight: 220;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon2 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  margin-top: 0.52rem;
}
.ins_newCon2 .center_box .item_box .item .word_box .list .one {
  width: fit-content;
  height: 0.4rem;
  min-height: 35px;
  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: 1px solid var(--active_color);
  color: var(--active_color);
  padding: 0 0.2rem;
  border-radius: 0.04rem;
  font-size: var(--font18);
}
.ins_newCon2 .center_box .item_box .item:hover {
  transform: scale(1.01);
}
.ins_newCon2 .center_box .item_box .item:hover .img img {
  transform: scale(1.03);
}
.ins_newCon2 .center_box .item_box .item:hover .word .t2 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_newdCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
  background: #0C1116;
}
.ins_newdCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newdCon3 .center_box .box_info {
  width: 100%;
  height: auto;
  gap: 0.24rem;
}
.ins_newdCon3 .center_box .box_info .left_box {
  width: 75%;
  height: auto;
  background: #B7CEFF1A;
  backdrop-filter: blur(17px);
  padding: 0.72rem 0.4rem;
  padding-bottom: 0.52rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .t1 {
  font-weight: 450;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.72rem;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .time {
  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;
  color: #999;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .time .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.1rem;
  font-size: var(--font16);
  color: #999999;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .time .one img {
  width: 0.4rem;
  height: 0.4rem;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .list {
  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.16rem;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox {
  width: fit-content;
  height: auto;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic {
  width: auto;
  height: auto;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic i {
  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.28rem;
  min-width: 20px;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic .img {
  width: 1.2rem;
  position: absolute;
  top: calc(100% + 0.1rem);
  opacity: 0;
  visibility: hidden;
  border: 1px solid #0000001A;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic .img img {
  width: 100%;
  height: auto;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic:hover .img {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic:hover i img {
  filter: brightness(0) invert(1);
}
.ins_newdCon3 .center_box .box_info .left_box .newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #FFFFFFCC;
  line-height: 1.6;
  margin-top: 0.4rem;
  font-weight: 220;
  padding-bottom: 1.36rem;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent img {
  /*width: unset !important;*/
  height: unset !important;
  border-radius: 0.08rem;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent p {
  min-height: 0.5em;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .tag_box {
  margin-top: 0.8rem;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox {
  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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-top: 0.4rem;
  border-top: 1px solid #FFFFFF1A;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .next {
  width: 48%;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .next .t1 {
  color: #FFFFFF;
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .next.rigth {
  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;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .next:hover .t1 {
  color: var(--active_color);
}
.ins_newdCon3 .center_box .box_info .right_box {
  width: 24%;
  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;
  gap: 0.24rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content {
  width: 100%;
  height: auto;
  background: #B7CEFF1A;
  backdrop-filter: blur(17px);
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
  padding: 0.4rem 0.32rem;
  border-radius: 0.08rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content .tit {
  color: #FFF;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #FFFFFF1A;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one .img img {
  width: 100%;
  height: auto;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: #CCC;
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one:hover .word {
  color: var(--active_color);
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one:last-child {
  border: 0;
  padding-bottom: 0;
}
.ins_newdCon3 .center_box .box_info .right_box .content1 {
  width: 100%;
  height: auto;
  background: #B7CEFF1A;
  backdrop-filter: blur(17px);
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
  border-radius: 0.08rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content1 .tit {
  color: #FFF;
}
.ins_newdCon3 .center_box .box_info .right_box .content1 .tag_box {
  margin-top: 0.32rem;
  gap: 0.16rem;
}
@media (max-width:990px) {
  .ins_newdCon3 .center_box .box_info .left_box .pagerBox {
    -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.4rem;
    display: none;
  }
  .ins_newdCon3 .center_box .box_info .left_box .pagerBox .next {
    width: 100%;
    height: auto;
  }
  .ins_newdCon3 .center_box .box_info .left_box .pagerBox .next.rigth {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_newdCon3 .center_box .box_info .left_box .pagerBox .next button {
    margin-top: 0.1rem;
  }
  .ins_newdCon3 .center_box .box_info .left_box .ins_new .t1 p {
    display: contents;
  }
  .ins_newdCon3 .center_box .box_info .left_box .ins_new .item_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;
  }
  .ins_newdCon3 .center_box .box_info .right_box {
    display: none;
  }
}
.ins_tagCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.3rem;
  padding-bottom: 1.2rem;
  background: linear-gradient(294deg, #0D0D0D 2.5%, #0B1726 99.2%);
}
.ins_tagCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_tagCon1 .center_box .ins_title {
  width: 42%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_tagCon1 .center_box .ins_title .t2 p {
  opacity: 0.6;
}
.ins_tagCon1 .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_tagCon1 .img_bg img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_tagCon1 .center_box .ins_title {
    width: 100%;
  }
}
.ins_tagCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.72rem;
  padding-bottom: 0.94rem;
}
.ins_tagCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_tagCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_tagCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #B7CEFF1A;
  backdrop-filter: blur(17px);
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_tagCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_tagCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 56%;
}
.ins_tagCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_tagCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.4rem;
}
.ins_tagCon2 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  letter-spacing: -3%;
}
.ins_tagCon2 .center_box .item_box .item .word_box .word .t1 {
  color: #FFF;
  opacity: 0.8;
  font-weight: 220;
}
.ins_tagCon2 .center_box .item_box .item .word_box .word .t2 {
  font-weight: 520;
  color: #FFFFFF;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_tagCon2 .center_box .item_box .item .word_box .word .t3 {
  color: #FFF;
  opacity: 0.8;
  margin-top: 0.2rem;
  font-weight: 220;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_tagCon2 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  margin-top: 0.52rem;
}
.ins_tagCon2 .center_box .item_box .item .word_box .list .one {
  width: fit-content;
  height: 0.4rem;
  min-height: 35px;
  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: 1px solid var(--active_color);
  color: var(--active_color);
  padding: 0 0.2rem;
  border-radius: 0.04rem;
  font-size: var(--font18);
}
.ins_tagCon2 .center_box .item_box .item:hover {
  transform: scale(1.01);
}
.ins_tagCon2 .center_box .item_box .item:hover .img img {
  transform: scale(1.03);
}
.ins_tagCon2 .center_box .item_box .item:hover .word .t2 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_tagCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_technologyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
  background: #0C1116;
}
.ins_technologyCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_technologyCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.42rem;
  position: relative;
  z-index: 1;
}
.ins_technologyCon1 .center_box .content .svgBox {
  width: 100%;
  height: 100%;
  position: absolute;
  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_technologyCon1 .center_box .content .svgBox .word_box {
  width: 40%;
  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_technologyCon1 .center_box .content .svgBox .word_box .wordB {
  width: fit-content;
  height: auto;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transform: translateY(-0.4rem);
}
.ins_technologyCon1 .center_box .content .svgBox .word_box .wordB::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 26, 38, 0) 0%, #0F1A26 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.ins_technologyCon1 .center_box .content .svgBox .word_box .wordB .icon {
  width: 2rem;
  height: 2rem;
  z-index: 1;
}
.ins_technologyCon1 .center_box .content .svgBox .word_box .wordB .word {
  font-size: var(--font32);
  font-weight: 450;
  position: absolute;
  bottom: 0;
  transform: translateY(30%);
  z-index: 5;
}
.ins_technologyCon1 .center_box .content .svgBox .icon_box {
  width: 20%;
  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_technologyCon1 .center_box .content .svgBox .icon_box .wordS {
  font-size: var(--font36);
  font-weight: 520;
}
.ins_technologyCon1 .center_box .content .img_box {
  width: 100%;
  height: auto;
}
.ins_technologyCon1 .center_box .content .img_box img {
  width: 100%;
  height: auto;
}
.ins_technologyCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_technologyCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  min-height: 3.94rem;
  background: #0F1A26;
  padding: 0.4rem 0.45rem;
  padding-bottom: 1.14rem;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_technologyCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(116deg, #122B48 14.07%, #0C1D31 86.13%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.ins_technologyCon1 .center_box .item_box .item .icon_box {
  width: 100%;
  height: auto;
}
.ins_technologyCon1 .center_box .item_box .item .icon_box .icon {
  width: 0.84rem;
  height: 0.84rem;
}
.ins_technologyCon1 .center_box .item_box .item .icon_box .word {
  font-size: var(--font24);
  padding-bottom: 0.24rem;
  position: relative;
  z-index: 1;
  margin-top: 0.24rem;
}
.ins_technologyCon1 .center_box .item_box .item .icon_box .word::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.42rem;
  height: 0.04rem;
  background: #FFFFFF;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_technologyCon1 .center_box .item_box .item .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_technologyCon1 .center_box .item_box .item .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  font-weight: 220;
  color: #CCCCCC;
}
.ins_technologyCon1 .center_box .item_box .item .imgBg {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  right: 0.16rem;
  bottom: 0.16rem;
  pointer-events: none;
}
.ins_technologyCon1 .center_box .item_box .item:hover::after {
  opacity: 1;
  width: 100%;
}
@media (max-width:990px) {
  .ins_technologyCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_technologyCon1 .center_box .content {
    width: 100%;
    height: auto;
    margin-top: 0.6rem;
  }
  .ins_technologyCon1 .center_box .content .svgBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_technologyCon1 .center_box .content .svgBox .icon_box {
    order: 1;
    width: 100%;
    height: auto;
    grid-column: span 2;
  }
  .ins_technologyCon1 .center_box .content .svgBox .word_box {
    order: 2;
    width: 100%;
    height: auto;
    margin-top: 0.72rem;
  }
  .ins_technologyCon1 .center_box .content .svgBox .word_box .wordB {
    width: 100%;
    height: auto;
  }
  .ins_technologyCon1 .center_box .content .svgBox .word_box .wordB .word {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    transform: translateY(0);
    text-align: center;
    margin-top: 0.4rem;
  }
  .ins_technologyCon1 .center_box .content .img_box {
    display: none;
  }
  .ins_technologyCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0.72rem;
  }
}
.ins_technologyCon2 {
  width: 100%;
  height: 300vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(294deg, #0D0D0D 2.5%, #0B1726 99.2%);
}
.ins_technologyCon2 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.2rem;
  --width1: 3.58rem;
  --time: 5s;
}
.ins_technologyCon2 .maskBox .center_box {
  width: 100%;
  height: auto;
}
.ins_technologyCon2 .maskBox .center_box .ins_title {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
}
.ins_technologyCon2 .maskBox .center_box .content {
  width: 100%;
  height: 6.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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ins_technologyCon2 .maskBox .center_box .content .imgBg_box {
  width: var(--width1);
  height: var(--width1);
  border-radius: 50%;
  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;
}
.ins_technologyCon2 .maskBox .center_box .content .imgBg_box::after {
  content: '';
  position: absolute;
  width: 6.66rem;
  height: 6.66rem;
  border-radius: 50%;
  opacity: 0.2;
  background: linear-gradient(116deg, #234B79 14.07%, #12253A 86.13%);
  box-shadow: 29px 33px 34px 15px rgba(14, 12, 34, 0.25);
}
.ins_technologyCon2 .maskBox .center_box .content .imgBg_box::before {
  content: '';
  position: absolute;
  width: 10.46rem;
  height: 10.46rem;
  border-radius: 1046px;
  opacity: 0.2;
  background: linear-gradient(116deg, #234B79 14.07%, #12253A 86.13%);
}
.ins_technologyCon2 .maskBox .center_box .content .imgBg_box .icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(116deg, #122B48 14.07%, #0C1D31 86.13%);
  box-shadow: 29px 33px 34px 15px rgba(14, 12, 34, 0.25);
  z-index: 5;
  border-top: 1px solid #FFFFFF66;
  border-left: 1px solid #FFFFFF66;
  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;
}
.ins_technologyCon2 .maskBox .center_box .content .imgBg_box .icon::after {
  content: '';
  position: absolute;
  width: 13.72rem;
  height: 13.72rem;
  border-radius: 50%;
  border: 1px solid #FFFFFF33;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_technologyCon2 .maskBox .center_box .content .content1 {
  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;
  z-index: 5;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.ins_technologyCon2 .maskBox .center_box .content .content1 .word_box {
  width: var(--width1);
  height: var(--width1);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: var(--font36);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: 450;
}
.ins_technologyCon2 .maskBox .center_box .content .content1 .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.ins_technologyCon2 .maskBox .center_box .content .content1 .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;
  animation: grow4 var(--time) cubic-bezier(0.39, 0.58, 0.57, 1) infinite;
}
.ins_technologyCon2 .maskBox .center_box .content .content1 .item_box .item .icon {
  width: var(--wh);
  height: var(--wh);
  border-radius: 50%;
  background: linear-gradient(116deg, #122B48 14.07%, #0C1D31 86.13%);
  box-shadow: 29px 33px 34px 15px rgba(14, 12, 34, 0.25);
  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;
  bottom: 0;
  border-top: 1px solid #FFFFFF66;
  border-left: 1px solid #FFFFFF66;
}
.ins_technologyCon2 .maskBox .center_box .content .content1 .item_box .item .icon img {
  width: 0.74rem;
  height: 0.74rem;
}
.ins_technologyCon2 .maskBox .center_box .content .content1 .item_box .item .word {
  width: max-content;
  height: auto;
  position: absolute;
  font-size: var(--font14);
  color: #FFFFFF;
  top: 0.12rem;
}
.ins_technologyCon2 .maskBox .center_box .content .content1.tYgsap2 {
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
}
.ins_technologyCon2 .maskBox .center_box .content .content1.tYgsap2.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.ins_technologyCon2 .maskBox .center_box .content .content1.tYgsap1 {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.ins_technologyCon2 .maskBox .center_box .content .content1.tYgsap1.active {
  transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
}
.ins_technologyCon2 .maskBox .imgBg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  opacity: 0.5;
}
@media (max-width:990px) {
  .ins_technologyCon2 {
    width: 100%;
    height: auto;
  }
  .ins_technologyCon2 .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_technologyCon2 .maskBox .center_box {
    width: 100%;
    height: auto;
  }
  .ins_technologyCon2 .maskBox .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;
    margin-top: 0.8rem;
    gap: 1.6rem;
  }
  .ins_technologyCon2 .maskBox .center_box .content .imgBg_box {
    display: none;
  }
  .ins_technologyCon2 .maskBox .center_box .content .content1 {
    width: 100%;
    height: auto;
    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;
  }
  .ins_technologyCon2 .maskBox .center_box .content .content1 .word_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_technologyCon2 .maskBox .center_box .content .content1 .item_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0.4rem;
    gap: 0.5rem 0.2rem;
  }
  .ins_technologyCon2 .maskBox .center_box .content .content1 .item_box .item {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset !important;
    left: unset !important;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    animation: unset;
  }
  .ins_technologyCon2 .maskBox .center_box .content .content1 .item_box .item .icon,
  .ins_technologyCon2 .maskBox .center_box .content .content1 .item_box .item .word {
    position: relative;
    z-index: 1;
    top: unset;
    bottom: unset;
  }
  .ins_technologyCon2 .maskBox .center_box .content .content1 .item_box .item .icon {
    width: 1.58rem !important;
    height: 1.58rem !important;
  }
  .ins_technologyCon2 .maskBox .center_box .content .content1 .item_box .item .word {
    margin-top: 0.2rem;
  }
  .ins_technologyCon2 .maskBox .center_box .content .content1.tYgsap2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .ins_technologyCon2 .maskBox .center_box .content .content1.tYgsap1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.ins_technologyCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
  background: linear-gradient(294deg, #0D0D0D 2.5%, #0B1726 99.2%);
}
.ins_technologyCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_technologyCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
}
.ins_technologyCon3 .center_box .content .left_box {
  width: 37.6%;
}
.ins_technologyCon3 .center_box .content .left_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.32rem;
}
.ins_technologyCon3 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #FFFFFF1A;
}
.ins_technologyCon3 .center_box .content .left_box .item_box .item .icon {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  font-size: var(--font24);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_technologyCon3 .center_box .content .left_box .item_box .item .icon img {
  width: 0.38rem;
}
.ins_technologyCon3 .center_box .content .left_box .item_box .item .word {
  font-size: var(--font16);
  font-weight: 220;
  margin-top: 0.27rem;
  line-height: 1.8;
}
.ins_technologyCon3 .center_box .content .right_box {
  width: 56%;
}
.ins_technologyCon3 .center_box .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_technologyCon3 .center_box .content .right_box .img img {
  width: 100%;
  height: auto;
}
.select_popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #FFFFFF;
  color: #333333;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: translateX(100%);
}
.select_popup .center_box {
  width: 100%;
  height: auto;
}
.select_popup .center_box .input_box {
  width: 100%;
  height: auto;
  background: #e5e5e560;
  padding: 0.3rem 0.4rem;
  padding-bottom: 0;
}
.select_popup .center_box .input_box .seWord {
  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;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.3rem;
}
.select_popup .center_box .input_box .seWord i {
  font-size: var(--font40);
  cursor: pointer;
}
.select_popup .center_box .input_box .input {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  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;
}
.select_popup .center_box .input_box .input input {
  width: 100%;
  height: 0.6rem;
  min-height: 40px;
  background: none;
  border: 0;
  font-size: var(--font20);
}
.select_popup .center_box .input_box .input button {
  width: 0.6rem;
  height: 0.6rem;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  background: none;
  border: 0;
}
.select_popup .center_box .list_box {
  width: 100%;
  height: calc(100vh - 3.8rem);
  position: relative;
  z-index: 3;
  margin-top: 0.4rem;
  padding: 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;
  gap: 0.8rem;
  overflow: auto;
}
.select_popup .center_box .list_box .list {
  width: 100%;
  height: auto;
}
.select_popup .center_box .list_box .list .icon {
  font-size: var(--font32);
}
.select_popup .center_box .list_box .list .word {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
  margin-top: 0.2rem;
}
.select_popup .center_box .list_box .list .word .one {
  width: 100%;
  height: auto;
  background: #e5e5e560;
  border: 0;
  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;
  color: #000000;
  padding: 10px 27px;
}
.select_popup .center_box .list_box .list .word .one i {
  position: absolute;
  right: 0.2rem;
  font-size: var(--font14);
  opacity: 0;
}
.select_popup .center_box .list_box .list .word .one.active {
  border: 1px solid var(--active_color);
  background: #ff99001c;
}
.select_popup .center_box .list_box .list .word .one.active i {
  opacity: 1;
  color: #3a3a3a;
}
.select_popup .center_box .list_box .list .word .one.on {
  border: 1px solid #0000001e;
  color: #999999;
}
.select_popup .center_box .btnRemove {
  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.5rem;
  margin-top: 0.2rem;
}
.select_popup .center_box .btnRemove .one {
  width: fit-content;
  height: 0.6rem;
  min-height: 40px;
  padding: 0 0.7rem;
  border: 0;
  background: var(--active_color);
  color: #0C1116;
  font-size: var(--font20);
  border-radius: 0.08rem;
}
.select_popup .center_box .btnRemove .one.borBg {
  background: none;
  border: 1px solid var(--active_color);
  color: var(--active_color);
}
.select_popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
footer .item_box .item .title {
  color: #070707;
}
footer .item_box .item .list .one:hover {
  color: #070707;
  text-decoration: unset;
  transform: translateX(0);
}
footer .footer_box .footer_bottom {
  justify-content: center;
  gap: 0.15rem;
}
.idx_about .center_box .idx_title .idx_more {
  display: none;
}
.ins_contrastCon1 .center_box .select_info .select_top .item:hover .wordS span {
  color: var(--active_color);
}
.ins_productCon16 .center_box .content .right_box .icon {
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon16 .center_box .content .right_box .icon:hover {
  color: var(--active_color);
}
.ins_contactCon1 .center_box .item_box .item .list .one {
  font-weight: 220 !important;
}
