@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 产品：小黄 QQ: 1452595308 */
/* 项目：小余：18816793621 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul.swiper-wrapper,
ol.swiper-slide,
li.swiper-slide {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.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;
}
.ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: grow3 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes grow3 {
  to {
    transform: scale(1.2);
    opacity: 0;
  }
  from {
    transform: scale(0);
    opacity: 1;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.imgVideo {
  width: 100%;
  height: auto;
}
.imgVideo img,
.imgVideo video {
  width: 100%;
  height: auto;
}
.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;
}
main * {
  scrollbar-color: #999999 #d4d6d700;
  scrollbar-width: thin;
}
main *::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
main *::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
main *::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
:root {
  /* COLOR */
  --active_color: #09428E;
  --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;
  --bg_color: #ECEFF4;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  --font68: clamp(32px, 0.68rem, 68px);
  /* --- 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);
}
.font68 {
  font-size: var(--font68);
}
/* 间距 */
.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;
}
.bgAc {
  background: var(--bg_color) !important;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
.CoFF {
  color: var(--color_fff);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Regular.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Medium.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Bold.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Black.ttf");
  font-weight: 700;
  line-height: 1.1;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans_SemiCondensed-Black.ttf");
  font-weight: 900;
  line-height: 1.1;
}
@font-face {
  font-family: "Bebas";
  src: url("../fonts/BEBASNEUE-REGULAR.TTF");
  font-weight: 900;
  line-height: 1.1;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1760,
.container,
.wrap {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1760,
  .container,
  .wrap {
    max-width: 91.66666667%;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 1.04rem;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.25;
  font-family: "NotoSans";
}
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;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img,
.banner_img video {
  width: 100%;
  height: auto;
}
.banner_img img.wap,
.banner_img video.wap {
  min-height: 400px;
  object-fit: cover;
}
/* --------------------------------------------------------------- 颜色渐变 */
.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;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.12rem;
}
.idxPageShow span {
  width: 0.4rem;
  height: 0.08rem;
  border-radius: 100px;
  opacity: 1;
  background: #FFFFFF33;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idxPageShow span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--active_color);
  left: 0;
  right: 0;
}
.idxPageShow .swiper-pagination-bullet-active {
  opacity: 1;
  width: 0.96rem;
}
.idxPageShow .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 5s linear;
}
/* --------------------------------------------------------------- 吸顶 */
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
.grid_Y2 {
  grid-row: span 2;
}
.grid_X2 {
  grid-column: span 2;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.grid_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid_6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid_7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid_8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid_1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.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);
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.top_info .idx_title {
  width: fit-content;
}
@media (max-width:990px) {
  .top_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.32rem;
    align-items: start !important;
    justify-content: start !important;
  }
  .top_info .idx_title {
    width: 100% !important;
    height: auto;
    max-width: 100% !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);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 500;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
  z-index: 50;
}
ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 1s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.layui-input:focus,
.layui-textarea:focus {
  box-shadow: unset;
  border-color: var(--active_color) !important;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-weight: normal;
}
* {
  scrollbar-color: #c2c2c2 #000;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.1rem;
  padding: 0;
  padding-left: 0;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div {
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
  line-height: 1;
  margin-top: 0;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: underline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.14rem;
  height: 0.14rem;
  min-width: 10px;
  min-height: 10px;
  position: absolute;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #999999;
  left: 0;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 0;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
  content: "";
  width: 60%;
  height: 60%;
  background: var(--active_color);
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
}
.layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.layui_item .layui-form-checkbox > div {
  white-space: unset;
  text-overflow: unset;
}
.layui_item .layui-form-checkbox > div a {
  display: contents;
}
.img_tX {
  overflow: hidden;
}
.img_tX img {
  transform: translateX(-100%);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.img_tX.active img {
  transform: translateX(0);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.img_tY {
  overflow: hidden;
}
.img_tY img {
  transform: translateY(-100%);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.img_tY.active img {
  transform: translateY(0);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.img_FFF {
  position: relative;
  z-index: 1;
}
.img_FFF::after {
  content: '';
  position: absolute;
  z-index: 8;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
  top: 0;
  left: 0;
}
.img_FFF::before {
  content: '';
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
  top: 0;
  left: 0;
}
.img_FFF.active::after {
  width: 0;
  opacity: 0.3;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.img_FFF.active::before {
  width: 0;
  opacity: 0.2;
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}
.swiper_select {
  width: 100%;
  margin: 0 auto;
  margin-top: 0.64rem;
  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;
  overflow: hidden;
}
.swiper_select ul {
  width: fit-content;
  margin: 0 auto;
  max-width: 100%;
  padding: 0.04rem;
  border: 1px dashed #0000001A;
  border-radius: 100px;
}
.swiper_select ul li {
  width: fit-content;
}
.swiper_select ul li .centerInfo {
  padding: 0.2rem 0.52rem;
  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.08rem;
  font-size: var(--font20);
  cursor: pointer;
  border-radius: 100px;
  color: #7D8999;
  line-height: 1.2;
}
.swiper_select ul li:last-child {
  margin-right: 0 !important;
}
.swiper_select ul li.active .centerInfo {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
.select_item {
  width: fit-content;
  padding: 0.04rem;
  border: 1px dashed #0000001A;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.select_item .item {
  width: fit-content;
  height: auto;
  padding: 0.2rem 0.52rem;
  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.08rem;
  font-size: var(--font20);
  cursor: pointer;
  border-radius: 100px;
  color: #7D8999;
  line-height: 1.2;
}
.select_item .item.active {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
@media (max-width:990px) {
  .select_item .item {
    padding: 0.2rem 0.3rem;
    font-size: var(--font16);
  }
}
/* --------------------------------------------------------------- wow */
.wowUp,
.wowRight,
.wowLeft {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
.gasp_cover {
  --opacity: 0;
}
.gasp_cover::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: var(--opacity);
  pointer-events: none;
}
/* --------------------------------------------------------------- 新增公共组件 */
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  color: #7D8999;
  line-height: 1.25;
  padding-bottom: 0.94rem;
  border-bottom: 1px solid #0000001A;
}
.newContent p {
  min-height: 0.5em;
}
.newContent img {
  border-radius: 0.4rem;
  overflow: hidden;
  height: unset !important;
}
.newContent a {
  display: contents;
  color: var(--active_color);
}
.newContent h2 {
  font-size: var(--font40);
  color: #050E19;
  line-height: 1.07;
  font-weight: 500;
}
.newContent .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem 0.32rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.newContent .list .one {
  padding: 0.12rem 0.24rem;
  background: #09428E1A;
  color: var(--active_color);
  border-radius: 100px;
  font-size: var(--font16);
  -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;
}
.newContent .list .one:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_more .more {
  width: fit-content;
  padding: 0.08rem;
  padding-left: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 100px;
  font-size: var(--font20);
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 0.32rem;
  color: var(--active_color);
}
.idx_more .more::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  background: var(--active_color);
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  bottom: 0;
}
.idx_more .more i {
  background: var(--active_color);
  width: 0.41rem;
  height: 0.41rem;
  border-radius: 100px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more i img {
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more:hover {
  border-color: var(--active_color) !important;
  color: #FFFFFF !important;
}
.idx_more .more:hover::after {
  height: 100% !important;
}
.idx_more .more:hover i {
  background: #FFFFFF;
}
.idx_more .more:hover i img {
  filter: unset;
}
.idx_more .more.acBg {
  background: var(--active_color);
  color: #FFFFFF;
  border: 1px solid var(--active_color);
}
.idx_more .more.acBg::after {
  background: #FFFFFF;
}
.idx_more .more.acBg i {
  background: #FFFFFF;
}
.idx_more .more.acBg i img {
  filter: unset;
}
.idx_more .more.acBg:hover {
  color: var(--active_color) !important;
}
.idx_more .more.acBg:hover i {
  background: var(--active_color);
}
.idx_more .more.acBg:hover i img {
  filter: brightness(0) invert(1);
}
.idx_more .more2 {
  font-size: var(--font20);
  color: #FFFFFF;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 {
  width: 100%;
  height: auto;
}
.idx_more2 .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.16rem;
  font-size: var(--font20);
  color: #050E19;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 .more span {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 .more img {
  width: 0.1rem;
}
.idx_more2 .more:hover {
  color: var(--active_color);
}
.idx_more2 .more.bg_fff {
  color: #FFFFFF;
}
.idx_more2 .more.bg_fff img {
  filter: brightness(0) invert(1);
}
.layui_btn {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.layui_btn .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.1rem;
  padding: 0;
  padding-left: 0;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.layui_btn .layui-form-checkbox[lay-skin=primary] > div {
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
  line-height: 1;
  margin-top: 0;
}
.layui_btn .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: underline;
}
.layui_btn .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.14rem;
  height: 0.14rem;
  min-width: 10px;
  min-height: 10px;
  position: absolute;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #999999;
  left: 0;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 0;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.layui_btn .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
  content: "";
  width: 60%;
  height: 60%;
  background: var(--active_color);
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
}
.layui_btn .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.layui_btn .layui-form-checkbox > div {
  white-space: unset;
  text-overflow: unset;
}
.layui_btn .layui-form-checkbox > div a {
  display: contents;
}
@keyframes svgine {
  0% {
    stroke-dasharray: 0 102;
  }
  100% {
    stroke-dasharray: 102 102;
  }
}
.svgine {
  -webkit-animation-name: svgine;
  animation-name: svgine;
}
.idxPager {
  width: fit-content;
  height: auto;
  position: absolute;
  bottom: 0.92rem;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  left: 4.16666667%;
}
.idxPager .svgBox {
  width: 0.32rem;
  height: 0.32rem;
  transform: rotate(-120deg);
  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;
  cursor: pointer;
}
.idxPager .svgBox::after {
  content: '';
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  opacity: 0.8;
}
.idxPager .svgBox circle {
  stroke-dasharray: 0 102;
}
.idxPager .svgBox.active {
  opacity: 1;
}
.idxPager .svgBox.active circle {
  stroke-dasharray: 102 102;
  animation: svgine 5s linear;
}
.idxPager .svgBox.active::after {
  opacity: 1;
}
.swiper_switch {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
@media (max-width:990px) {
  .swiper_switch {
    display: none;
  }
}
.swiper_icon {
  width: 0.58rem;
  height: 0.58rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--active_color);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.swiper_icon i {
  color: #FFFFFF66;
  font-size: var(--font14);
}
.swiper_icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_icon:hover {
  background: var(--active_color);
  border-color: #FFFFFF;
}
.swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
.swiper_icon:hover i {
  color: var(--active_color);
}
.idx_title {
  width: 100%;
}
.idx_title .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
  padding-bottom: 0.26rem;
}
.idx_title .icon i {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 2px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_title .icon span {
  font-size: var(--font20);
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_title .icon.bgFFF i {
  background: #FFFFFF;
}
.idx_title .icon.bgFFF span {
  color: #FFFFFF;
}
.idx_title .t1 {
  font-weight: 500;
  color: #09428E66;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.06;
}
.idx_title .t1 p {
  display: contents;
}
.idx_title .t1.coFFF {
  color: #FFFFFF66;
}
.idx_title .t1.coFFF.colorAct.active span {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .idx_title .t1 {
    color: var(--active_color);
    font-size: var(--font50);
  }
  .idx_title .t1.coFFF {
    color: #FFFFFF;
  }
}
.idx_title .t2 {
  margin-top: 0.32rem;
  color: #7D8999;
}
.idx_title .t2.coFFF {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .idx_title {
    text-align: start !important;
    width: 100% !important;
    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;
  }
  .idx_title .t1,
  .idx_title .t2 {
    width: 100% !important;
  }
}
.colorAct.active span {
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.colorAct span {
  transition: none;
}
.colorAct br:last-child {
  display: none;
}
.textShade {
  background-image: url(../images/new2.jpg);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-position: 50% 50%;
  font-size: 150px;
  text-transform: uppercase;
  animation: textShade linear 20s infinite;
}
.swiper_line {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 1;
  background: #00000022;
  display: flex;
  margin-top: 0.64rem;
}
.swiper_line span {
  height: 3px !important;
  background: linear-gradient(90deg, #09428E00 10%, #09428E 100%) !important;
  top: -1px !important;
  border-radius: 100px;
  overflow: hidden;
}
.banner_nav {
  width: 100%;
  height: auto;
  position: absolute;
  top: 1.36rem;
  left: 0;
  z-index: 5;
}
.ins_navbox {
  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.14rem;
  font-weight: 300;
}
.ins_navbox .icon {
  font-size: var(--font14);
  color: #7D8999;
}
.ins_navbox .one {
  font-size: var(--font14);
  color: #7D8999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_navbox .one.active {
  color: var(--active_color);
}
.ins_navbox .one:hover {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_navbox {
    display: none;
  }
}
.ins_navbox.coFFF .icon {
  color: #FFFFFF99;
}
.ins_navbox.coFFF .one {
  color: #FFFFFF99;
}
.ins_navbox.coFFF .one.active {
  color: #FFFFFF;
}
.share_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
}
.share_box .one {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.share_box .one .icon {
  width: 0.4rem;
  height: 0.4rem;
  background: #09428E33;
  border-radius: 100px;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.share_box .one .icon img {
  filter: brightness(0) invert(1);
}
.share_box .one .imgs {
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  bottom: calc(100% + 0.1rem);
  background: #FFFFFF;
  border-radius: 0.12rem;
  overflow: hidden;
  padding: 0.05rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px 1px #8a8a8a1a;
}
.share_box .one:hover .imgs {
  opacity: 1;
  visibility: visible;
}
.share_box .one:hover .icon {
  background: var(--active_color);
}
.idx_contentInfo1 {
  width: 100%;
  height: 300vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_contentInfo1 .mask_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width:990px) {
  .idx_contentInfo1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .idx_contentInfo1 .mask_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
}
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #000000;
  background: #FFFFFF;
}
.idx_homeCon1 .content1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  mask-image: url(../images/c3.png);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 160%;
}
.idx_homeCon1 .content1 .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .centerInfo .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 2.5rem;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .centerInfo .content .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .centerInfo .content .center_box .t1 {
  width: 100%;
  height: auto;
  line-height: 1.05;
  font-weight: 500;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .centerInfo .content .center_box .t2 {
  margin-top: 0.32rem;
  font-weight: 300;
  color: #FFFFFF99;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .centerInfo .content .center_box .t2 span {
  font-weight: 500;
  color: #FFFFFF;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .centerInfo .content .center_box .idx_more {
  margin-top: 0.68rem;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .banner_img {
  width: 100%;
  height: 100vh;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .banner_img img,
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide .banner_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide.swiper-slide-active .wowUpS {
  animation: fadeInUp 1s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.idx_homeCon1 .content1 .idxPager {
  opacity: 0;
  transition: none;
  transform: translateY(0.3rem);
}
.idx_homeCon1 .content2 {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: 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;
  padding-bottom: 2rem;
  background: #FFFFFF;
}
.idx_homeCon1 .content2 .word {
  width: 70%;
  height: auto;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  --path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
.idx_homeCon1 .content2 .word p {
  transform: translateY(0.2rem);
}
.idx_homeCon1 .content2 .word .t1 {
  width: fit-content;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.idx_homeCon1 .content2 .word .t1 .be {
  opacity: 0.5;
  color: var(--active_color);
}
.idx_homeCon1 .content2 .word .t1 .af {
  color: var(--active_color);
  position: absolute;
  clip-path: var(--path);
}
.idx_homeCon1 .content2 .images {
  position: absolute;
  width: 6%;
  top: 55%;
}
.idx_homeCon1 .maskimg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon1 .maskimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .idx_homeCon1 {
    width: 100%;
    height: auto;
  }
  .idx_homeCon1 .content1 {
    mask-image: unset !important;
  }
  .idx_homeCon1 .content1 .swiper_box .swiper-wrapper .swiper-slide.swiper-slide-active .wowUpS {
    animation: fadeInUp 1s forwards;
    -webkit-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
  }
  .idx_homeCon1 .content1 .idxPager {
    opacity: 1;
    transform: translateY(0);
  }
  .idx_homeCon1 .maskimg {
    display: none;
  }
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  overflow: hidden;
  top: 0;
  left: 0;
  background: #FFFFFF;
  mask-image: url(../images/c3.png);
  mask-repeat: no-repeat;
  mask-position: center 60.5%;
  mask-size: 0%;
}
.idx_homeCon2 .content_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .content_box .content1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-radius: 0.52rem;
  overflow: hidden;
}
.idx_homeCon2 .content_box .content1 .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .content_box .content1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #FFFFFF;
  padding: 0.8rem 0;
  padding-top: 1.2rem;
}
.idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .content .center_box {
  width: 33%;
  height: auto;
}
.idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .content .center_box .t1 {
  width: 100%;
  height: auto;
  line-height: 1.05;
  font-weight: 500;
}
.idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .content .center_box .t2 {
  margin-top: 0.2rem;
  line-height: 1.25;
  color: #FFFFFF;
}
.idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  margin-top: 0.64rem;
}
.idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .img {
  width: calc(100% - 0.32rem);
  margin: 0 auto;
  height: 100vh;
  border-radius: 0.52rem;
  overflow: hidden;
}
.idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    background: var(--bg_color);
    border-radius: 0.52rem;
    overflow: hidden;
  }
  .idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    color: #050E19;
    padding: 0.4rem 0;
  }
  .idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .content .center_box .t2 {
    color: #050E19;
  }
  .idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .content .center_box .idx_more .more {
    border: 1px solid var(--active_color);
  }
  .idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .img {
    padding: 0;
    width: 100%;
    height: auto;
  }
}
.idx_homeCon2 .content_box .content1 .swiper_item {
  position: absolute;
  bottom: 0.8rem;
  z-index: 5;
  margin: 0 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;
}
.idx_homeCon2 .content_box .content1 .swiper_item ul {
  width: fit-content;
  max-width: 100%;
}
.idx_homeCon2 .content_box .content1 .swiper_item ul li {
  width: fit-content;
  margin-right: 1.8rem;
}
.idx_homeCon2 .content_box .content1 .swiper_item ul li:last-child {
  margin-right: 0;
}
.idx_homeCon2 .content_box .content1 .swiper_item ul li .centerInfo {
  width: fit-content;
  position: relative;
  z-index: 1;
  text-align: center;
}
.idx_homeCon2 .content_box .content1 .swiper_item ul li .centerInfo .svg_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .content_box .content1 .swiper_item ul li .centerInfo .svg_box .svg {
  position: absolute;
  width: 0.86rem;
  height: 0.86rem;
}
@keyframes show {
  to {
    opacity: 1;
  }
}
.idx_homeCon2 .content_box .content1 .swiper_item ul li .centerInfo .svg_box .svg .dot {
  opacity: 0.2;
}
.idx_homeCon2 .content_box .content1 .swiper_item ul li .centerInfo .svg_box .img {
  width: 0.8rem;
  height: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .content_box .content1 .swiper_item ul li .centerInfo .word {
  margin-top: 0.19rem;
  font-size: var(--font20);
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #FFFFFF;
}
.idx_homeCon2 .content_box .content1 .swiper_item ul li.active .centerInfo .svg_box .svg .dot {
  animation: show 0.3s forwards;
}
@media (max-width:990px) {
  .idx_homeCon2 .content_box .content1 .swiper_item ul li {
    margin-right: 0.6rem;
  }
}
@media (max-width:990px) {
  .idx_homeCon2 .content_box .content1 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .idx_homeCon2 .content_box .content1 .swiper_item {
    position: relative;
    z-index: 1;
    bottom: unset;
    padding: 0.1rem 0;
  }
  .idx_homeCon2 .content_box .content1 .swiper_item ul li .centerInfo .svg_box {
    filter: brightness(0) invert(0);
  }
  .idx_homeCon2 .content_box .content1 .swiper_item ul li .centerInfo .word {
    color: #666666;
  }
  .idx_homeCon2 .content_box .content1 .swiper_item ul li.active .centerInfo .word {
    color: var(--active_color);
  }
  .idx_homeCon2 .content_box .content1 .swiper_box {
    width: 100%;
    height: auto;
    margin-top: 0.8rem;
  }
}
@media (max-width:990px) {
  .idx_homeCon2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    mask-image: unset !important;
    padding: 1.4rem 0;
    padding-bottom: 0;
  }
  .idx_homeCon2 .content_box {
    width: 91.66666667%;
    margin: 0 auto;
  }
  .idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .content .center_box {
    width: 100%;
  }
  .idx_homeCon2 .content_box .content1 .swiper_box ul li .centerInfo .img {
    height: auto;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.48rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.idx_homeCon3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.76rem;
}
.idx_homeCon3 .center_box .swiper_box ul li {
  width: 30%;
  height: auto;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.4rem;
  background: #ECEFF4;
  border-radius: 0.24rem;
  overflow: hidden;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(210deg, #145BB9 0%, #041020 125.2%);
  -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;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .icon i {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 2px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .icon span {
  font-size: var(--font20);
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  margin-top: 0.74rem;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 82.6%;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.59rem;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 500;
  line-height: 1.1;
  -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: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.12rem;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .word .t1 img {
  transform: translateY(0.05rem);
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.16rem;
  color: #7D8999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.25;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo:hover::after {
  opacity: 1;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo:hover .icon i {
  background: #FFF;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo:hover .icon span {
  color: #FFFFFF;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo:hover .word .t1 {
  color: #FFF;
  text-decoration: underline;
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo:hover .word .t1 img {
  filter: brightness(0) invert(1);
}
.idx_homeCon3 .center_box .swiper_box ul li .centerInfo:hover .word .t2 {
  color: #FFF;
}
.idx_homeCon3 .img_bg {
  width: 20%;
  position: absolute;
  top: 0;
  right: 0;
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ECEFF4;
}
.idx_homeCon4 .mask_box {
  width: 100%;
  height: 150vh;
}
.idx_homeCon4 .mask_box .content1 {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_homeCon4 .mask_box .content1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 0.94rem;
  padding-top: 1.6rem;
}
.idx_homeCon4 .mask_box .content1 .content .center_box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 1.8rem;
}
.idx_homeCon4 .mask_box .content1 .img {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.idx_homeCon4 .mask_box .content1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon4 .content2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding: 0.16rem;
}
.idx_homeCon4 .content2 .item_box {
  width: 49.2%;
  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;
}
.idx_homeCon4 .content2 .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.53rem 0.64rem;
  background: #FFFFFF;
  border-radius: 0.4rem;
  overflow: hidden;
}
.idx_homeCon4 .content2 .item_box .item .word {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .content2 .item_box .item .word .t1 {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
  font-weight: 500;
}
.idx_homeCon4 .content2 .item_box .item .word .t2 {
  margin-top: 0.32rem;
  color: #7D8999;
}
.idx_homeCon4 .content2 .item_box .item .icon {
  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: 1.15rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_homeCon4 .content2 .item_box .item .icon .num {
  font-size: var(--font20);
  color: #7D8999;
}
.idx_homeCon4 .content2 .item_box .item .icon .img {
  width: 22.5%;
}
.idx_homeCon4 .content2 .item_box .item .icon .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon4 .content2 .swiper_box {
  width: 100%;
  height: auto;
  display: none;
}
.idx_homeCon4 .content2 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .content2 .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  padding: 0.53rem 0.64rem;
  background: #FFFFFF;
  border-radius: 0.4rem;
  overflow: hidden;
}
.idx_homeCon4 .content2 .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .content2 .swiper_box ul li .centerInfo .word .t1 {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
  font-weight: 500;
}
.idx_homeCon4 .content2 .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.32rem;
  color: #7D8999;
}
.idx_homeCon4 .content2 .swiper_box ul li .centerInfo .icon {
  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: 1.15rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_homeCon4 .content2 .swiper_box ul li .centerInfo .icon .num {
  font-size: var(--font20);
  color: #7D8999;
}
.idx_homeCon4 .content2 .swiper_box ul li .centerInfo .icon .img {
  width: 22.5%;
}
.idx_homeCon4 .content2 .swiper_box ul li .centerInfo .icon .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon4 .content2 .idxPageHide span {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .idx_homeCon4 {
    padding-bottom: 1rem;
  }
  .idx_homeCon4 .mask_box {
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .mask_box .content1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .idx_homeCon4 .mask_box .content1 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .idx_homeCon4 .mask_box .content1 .content .center_box {
    gap: 0.48rem;
  }
  .idx_homeCon4 .content2 {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_homeCon4 .content2 .item_box {
    width: 100%;
    height: auto;
    display: none;
  }
  .idx_homeCon4 .content2 .swiper_box {
    display: block !important;
  }
  .idx_homeCon4 .img_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .idx_homeCon4 .img_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon5 .center_box .swiper_box {
  width: 87.6%;
  height: auto;
  margin-top: 0.76rem;
}
.idx_homeCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
  overflow: hidden;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.52rem 0.8rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .icon i {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 2px;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .icon span {
  font-size: var(--font20);
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .word .t1 {
  width: 40%;
  color: #FFFFFF;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .word .idx_more {
  width: fit-content;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 70%;
  background: linear-gradient(0deg, #09428E 0%, rgba(9, 66, 142, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0.48rem;
    border-radius: 0;
  }
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0;
  }
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .icon {
    color: #050E19;
  }
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .icon i {
    background: #050E19;
  }
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .icon span {
    color: #050E19;
  }
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .word {
    color: #000;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.24rem;
    margin-top: 0.24rem;
  }
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .word .t1 {
    color: #000;
    width: 100%;
    height: auto;
  }
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .word_box .word .idx_more .more {
    border: 1px solid var(--active_color);
  }
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .img {
    width: 100%;
    height: auto;
    border-radius: 0.4rem;
    overflow: hidden;
  }
}
.idx_homeCon5 .center_box .swiper_box ul li.swiper-slide-active .centerInfo .img {
  opacity: 1;
}
.idx_homeCon5 .center_box .swiper_box ul li.swiper-slide-active .centerInfo .img::after {
  opacity: 0.7;
}
@media (max-width:990px) {
  .idx_homeCon5 .center_box .swiper_box {
    width: 100%;
    height: auto;
  }
}
.idx_homeCon5 .img_bg {
  width: 20%;
  position: absolute;
  top: 0;
  right: 0;
}
.idx_homeCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #ECEFF4;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.idx_homeCon6 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.idx_homeCon6 .center_box .top_info .idx_more {
  width: fit-content;
}
.idx_homeCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
}
.idx_homeCon6 .center_box .item_box .item {
  width: 25.56%;
  height: 5.73rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  overflow: hidden;
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.idx_homeCon6 .center_box .item_box .item .img {
  width: 1.27rem;
  height: 1.27rem;
  position: absolute;
  z-index: -1;
  top: 0.4rem;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  left: 0.4rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_homeCon6 .center_box .item_box .item .img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 70%;
  background: linear-gradient(0deg, #09428E 0%, rgba(9, 66, 142, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.idx_homeCon6 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon6 .center_box .item_box .item .icon {
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 2px;
  background: var(--active_color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
}
.idx_homeCon6 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.idx_homeCon6 .center_box .item_box .item .word_box .time {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  font-size: var(--font16);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #7D8999;
}
.idx_homeCon6 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.idx_homeCon6 .center_box .item_box .item .word_box .word .t1 {
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.2);
  line-height: 1.2;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.idx_homeCon6 .center_box .item_box .item .word_box .word .t2 {
  margin-top: 0.16rem;
  color: #7D8999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.2);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 1.2;
}
.idx_homeCon6 .center_box .item_box .item.active {
  width: 46.19%;
}
.idx_homeCon6 .center_box .item_box .item.active .img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.idx_homeCon6 .center_box .item_box .item.active .word_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .item_box .item.active .word_box .time {
  color: #FFFFFF;
}
.idx_homeCon6 .center_box .item_box .item.active .word_box .word .t1 {
  color: #FFFFFF;
  text-decoration: underline;
}
.idx_homeCon6 .center_box .item_box .item.active .word_box .word .t2 {
  color: #FFFFFF;
}
.idx_homeCon6 .center_box .item_box .item.active .icon {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .idx_homeCon6 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon6 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
    padding: 0;
  }
  .idx_homeCon6 .center_box .item_box .item .img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: 0;
    left: unset;
  }
  .idx_homeCon6 .center_box .item_box .item .word_box {
    width: 100%;
    height: auto;
    margin-top: 0.3rem;
    padding: 0.4rem;
    padding-top: 0;
  }
  .idx_homeCon6 .center_box .item_box .item.active {
    width: 46.19%;
  }
  .idx_homeCon6 .center_box .item_box .item.active .img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .idx_homeCon6 .center_box .item_box .item.active .word_box {
    width: 100%;
    height: auto;
  }
  .idx_homeCon6 .center_box .item_box .item.active .word_box .time {
    color: #7D8999;
  }
  .idx_homeCon6 .center_box .item_box .item.active .word_box .word .t1 {
    color: #050E19;
    text-decoration: underline;
  }
  .idx_homeCon6 .center_box .item_box .item.active .word_box .word .t2 {
    color: #7D8999;
  }
  .idx_homeCon6 .center_box .item_box .item.active .icon {
    background: #FFFFFF;
  }
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ECEFF4;
}
.ins_bannerCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_bannerCon1 .content .center_box .t1 {
  font-weight: 500;
  line-height: 1.05;
}
@media (max-width:990px) {
  .ins_bannerCon1 .content .center_box .t1 p {
    display: contents;
  }
}
.ins_bannerCon1 .content .center_box .t2 {
  color: #FFFFFF99;
  margin-top: 0.24rem;
}
.ins_bannerCon1 .content .center_box .t4 {
  width: 100%;
  height: auto;
  padding-bottom: 0.12rem;
  font-weight: 300;
}
.ins_bannerCon1 .content .center_box .btn_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
}
.ins_bannerCon1 .content .center_box .btn_box .more {
  padding: 0.12rem 0.4rem;
  border-radius: 100px;
  border-top: 1px solid #ffffff94;
  border-left: 1px solid #ffffff94;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-weight: 300;
  cursor: pointer;
}
.ins_bannerCon1 .content .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_solutionCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
  background: #ECEFF4;
}
.ins_solutionCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon1 .center_box .idx_title {
  width: 36%;
}
.ins_solutionCon1 .center_box .item_box {
  width: 48%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem;
}
.ins_solutionCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  padding-top: 0.2rem;
  transform: translateY(0.2rem);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_solutionCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg4.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -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_solutionCon1 .center_box .item_box .item .icon {
  width: 0.94rem;
  height: 0.94rem;
  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_solutionCon1 .center_box .item_box .item .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solutionCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.91rem;
}
.ins_solutionCon1 .center_box .item_box .item .word .t1 {
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solutionCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.52rem;
  font-family: "Bebas";
  color: #CCCCCC;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solutionCon1 .center_box .item_box .item.even {
  transform: translateY(2rem);
}
.ins_solutionCon1 .center_box .item_box .item:hover::after {
  opacity: 1;
}
.ins_solutionCon1 .center_box .item_box .item:hover .icon img {
  filter: brightness(0) invert(1);
}
.ins_solutionCon1 .center_box .item_box .item:hover .word .t1 {
  color: #FFFFFF;
}
.ins_solutionCon1 .center_box .item_box .item:hover .word .t2 {
  color: #FFFFFF;
  opacity: 0.6;
}
@media (max-width:990px) {
  .ins_solutionCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_solutionCon1 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_solutionCon1 .center_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0.4rem;
    transform: translateY(0) !important;
  }
  .ins_solutionCon1 .center_box .item_box .item .icon {
    flex-shrink: 0;
  }
  .ins_solutionCon1 .center_box .item_box .item .word {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0.52rem;
  }
  .ins_solutionCon1 .center_box .item_box .item .word .t2 {
    margin-top: 0;
  }
}
.ins_solutionCon1 .img_bg {
  width: 48%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(30%);
  pointer-events: none;
}
.ins_solutionCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
  background: #ECEFF4;
}
.ins_solutionCon2 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_solutionCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_solutionCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_solutionCon2 .center_box .item_box .item .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_solutionCon2 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_solutionCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  z-index: 2;
  padding: 0.42rem;
}
.ins_solutionCon2 .center_box .item_box .item .word .t1 {
  font-weight: 500;
}
.ins_solutionCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
}
.ins_solutionCon2 .center_box .item_box .item.grid3 .word {
  padding: 0.52rem 0.72rem;
}
@media (max-width:990px) {
  .ins_solutionCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_solutionCon2 .center_box .item_box .item .img {
    height: 5rem;
  }
  .ins_solutionCon2 .center_box .item_box .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ins_solutionCon2 .center_box .item_box .item .word {
    padding: 0.32rem !important;
  }
}
.ins_solutionCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.9rem;
  background: var(--bg_color);
}
.ins_solutionCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon4 .center_box .idx_title {
  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;
}
.ins_solutionCon4 .center_box .idx_title .t1 {
  width: 60%;
}
.ins_solutionCon4 .center_box .idx_title .t2 {
  width: 36%;
}
.ins_solutionCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_solutionCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  border-radius: 0.32rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_solutionCon4 .center_box .item_box .item .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: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_solutionCon4 .center_box .item_box .item .top .icon {
  width: 0.62rem;
  height: 0.62rem;
}
.ins_solutionCon4 .center_box .item_box .item .top .numb {
  font-size: var(--font16);
  color: #7D8999;
}
.ins_solutionCon4 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_solutionCon4 .center_box .item_box .item .word .t1 {
  font-weight: 500;
  line-height: 1.37;
}
.ins_solutionCon4 .center_box .item_box .item .word .t2 {
  margin-top: 0.24rem;
  color: #7D8999;
}
@media (max-width:990px) {
  .ins_solutionCon4 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_solutionCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.9rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_solutionCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  overflow: hidden;
}
.ins_solutionCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_solutionCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background: #ECEFF4;
  overflow: hidden;
}
.ins_solutionCon5 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_solutionCon5 .center_box .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_solutionCon5 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  z-index: 2;
  padding: 0.52rem 0.72rem;
}
.ins_solutionCon5 .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 500;
}
.ins_solutionCon5 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.16rem;
  font-weight: 300;
}
@media (max-width:990px) {
  .ins_solutionCon5 .center_box .swiper_box ul li .centerInfo {
    background: #FFFFFF;
  }
  .ins_solutionCon5 .center_box .swiper_box ul li .centerInfo .word {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    color: #000000;
    padding: 0.4rem;
  }
}
.ins_solutionCon5 .center_box .swiper_box ul li .centerInfo:hover .idx_more2 .more span {
  color: var(--active_color);
}
.ins_solutionCon5 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_solutionCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_solutionCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_solutionCon6 .center_box .swiper_box ul li .centerInfo {
  background: #FFFFFF;
}
.ins_productCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.37rem;
  padding-bottom: 1.4rem;
  background: #ECEFF4;
}
.ins_productCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon3 .center_box .content {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.9rem;
}
.ins_productCon3 .center_box .content .left_box {
  width: 50%;
  border-radius: 0.52rem;
  overflow: hidden;
  background: #FFFFFF;
  padding: 0.4rem;
}
.ins_productCon3 .center_box .content .left_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon3 .center_box .content .left_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon3 .center_box .content .left_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_productCon3 .center_box .content .left_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 81.2%;
}
.ins_productCon3 .center_box .content .left_box .swiper_box ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon3 .center_box .content .left_box .swiper_box ul li video,
.ins_productCon3 .center_box .content .left_box .swiper_box ul li iframe {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.ins_productCon3 .center_box .content .left_box .swiper_item {
  width: 100%;
  height: auto;
  margin-top: 8px;
  overflow: hidden;
}
.ins_productCon3 .center_box .content .left_box .swiper_item ul li {
  width: 20%;
  height: auto;
}
.ins_productCon3 .center_box .content .left_box .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #ECEFF4;
  border-radius: 0.16rem;
  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: 1px solid #00000000;
  cursor: pointer;
  overflow: hidden;
}
.ins_productCon3 .center_box .content .left_box .swiper_item ul li .centerInfo .pb {
  padding-bottom: 100%;
}
.ins_productCon3 .center_box .content .left_box .swiper_item ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon3 .center_box .content .left_box .swiper_item ul li .centerInfo .icon {
  position: absolute;
  z-index: 5;
  border-radius: 0.16rem;
  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: 100%;
  height: 100%;
  background: #00000033;
  backdrop-filter: blur(10px);
}
.ins_productCon3 .center_box .content .left_box .swiper_item ul li .centerInfo .icon img {
  width: 0.38rem;
  height: 0.38rem;
}
.ins_productCon3 .center_box .content .left_box .swiper_item ul li.active .centerInfo {
  border-color: var(--active_color);
}
.ins_productCon3 .center_box .content .right_box {
  width: 45%;
}
.ins_productCon3 .center_box .content .right_box .word {
  width: 100%;
  height: auto;
}
.ins_productCon3 .center_box .content .right_box .word .t1 {
  font-weight: 500;
}
.ins_productCon3 .center_box .content .right_box .word .t2 {
  color: var(--active_color);
  margin-top: 0.24rem;
}
.ins_productCon3 .center_box .content .right_box .word .t3 {
  margin-top: 0.32rem;
  color: #7D8999;
}
.ins_productCon3 .center_box .content .right_box .item_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.32rem;
  padding: 0.4rem;
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
.ins_productCon3 .center_box .content .right_box .item_box .item {
  width: fit-content;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon3 .center_box .content .right_box .item_box .item .word {
  font-size: var(--font40);
  font-family: "Bebas";
  color: var(--active_color);
}
.ins_productCon3 .center_box .content .right_box .item_box .item .word i {
  font-style: unset;
  font-size: var(--font16);
}
.ins_productCon3 .center_box .content .right_box .item_box .item .icon {
  margin-top: 0.01rem;
  color: #7D8999;
}
.ins_productCon3 .center_box .content .right_box .item_box .line {
  width: 1px;
  height: 0.68rem;
  background: #0000001A;
}
@media (max-width:990px) {
  .ins_productCon3 .center_box .content .right_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_productCon3 .center_box .content .right_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_productCon3 .center_box .content .right_box .item_box .item .icon p {
    display: contents;
  }
  .ins_productCon3 .center_box .content .right_box .item_box .line {
    display: none !important;
  }
}
.ins_productCon3 .center_box .content .right_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 1.4rem;
}
@media (max-width:990px) {
  .ins_productCon3 .center_box .content .right_box .idx_more {
    margin-top: 0.4rem;
  }
}
.ins_productCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.9rem;
  background: #FFFFFF;
}
.ins_productCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon4 .center_box .content .img {
  width: 100%;
  height: auto;
  border-radius: 0.52rem;
  overflow: hidden;
}
.ins_productCon4 .center_box .content .img img,
.ins_productCon4 .center_box .content .img video {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .content .img iframe {
  width: 100%;
  height: 9rem;
}
.ins_productCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.9rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_productCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_productCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon5 .center_box .swiper_box ul li {
  width: 60%;
  height: auto;
}
.ins_productCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_productCon5 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_productCon5 .center_box .swiper_box ul li .centerInfo .img 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_productCon5 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  z-index: 2;
  padding: 0.42rem;
}
.ins_productCon5 .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 500;
}
.ins_productCon5 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.16rem;
  font-weight: 300;
}
@media (max-width:990px) {
  .ins_productCon5 .center_box .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: start;
  }
  .ins_productCon5 .center_box .swiper_box ul li .centerInfo .img {
    width: 100%;
    height: auto;
    border-radius: 0.32rem;
    overflow: hidden;
  }
  .ins_productCon5 .center_box .swiper_box ul li .centerInfo .word {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    color: #050E19;
    padding: 0;
    margin-top: 0.48rem;
  }
}
.ins_productCon5 .center_box .swiper_box ul li .centerInfo:hover .img img {
  transform: scale(1.04);
}
.ins_productCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #ECEFF4;
}
.ins_productCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .content {
  width: 100%;
  height: auto;
  padding: 0.7rem 0;
  border-bottom: 1px solid #0000001A;
}
.ins_productCon6 .center_box .content .left_box {
  width: 43%;
  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.48rem;
}
.ins_productCon6 .center_box .content .left_box .word .t1 {
  color: #7D8999;
}
.ins_productCon6 .center_box .content .right_box {
  width: 50%;
}
.ins_productCon6 .center_box .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_productCon6 .center_box .content .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .content:first-child {
  padding-top: 0;
}
.ins_productCon6 .center_box .content:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_productCon6 .center_box .content.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;
}
@media (max-width:990px) {
  .ins_productCon6 .center_box .content {
    flex-direction: column !important;
  }
}
.tableInfo {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.tableInfo .name {
  padding-bottom: 0.2rem;
}
.tableInfo .info {
  width: 100%;
  height: auto;
  overflow: auto;
}
.tableInfo .info table {
  width: 100%;
  height: auto;
  min-width: 800px;
  table-layout: fixed;
  text-align: center;
}
.tableInfo .info table thead {
  width: 100%;
  height: auto;
}
.tableInfo .info table thead tr {
  background: #ECEFF4;
  font-size: var(--font20);
  font-weight: 500;
}
.tableInfo .info table thead tr td {
  color: #050E19;
  padding: 0.24rem;
  border: 1px solid #0000001A;
}
.tableInfo .info table tbody tr {
  font-size: var(--font18);
  color: #050E19;
  line-height: 1.6;
}
.tableInfo .info table tbody tr td {
  padding: 0.24rem;
  border: 1px solid #0000001A;
  font-weight: 300;
}
.tableInfo .info table tbody tr td:first-child {
  font-weight: 500;
  background: #ECEFF4;
}
@media (max-width:990px) {
  .tableInfo .info table tbody tr td {
    padding: 0.16rem;
  }
}
.tableInfo .tip {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: #666;
  font-size: var(--font18);
}
.ins_productCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_productCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}
.ins_productCon8 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.94rem 0;
  z-index: 5;
  padding-top: 1.1rem;
}
.ins_productCon8 .content .center_box {
  width: 100%;
  height: 100%;
}
.ins_productCon8 .content .center_box .left_box {
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.24rem;
}
.ins_productCon8 .content .center_box .left_box .img {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
}
.ins_productCon8 .content .center_box .left_box .img_list {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.47rem;
  position: relative;
  z-index: 1;
}
.ins_productCon8 .content .center_box .left_box .img_list::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
}
.ins_productCon8 .content .center_box .left_box .img_list::before {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  bottom: 0;
  left: 0;
  transform: translateX(-50%) translateY(50%);
}
.ins_productCon8 .content .center_box .left_box .img_list .one {
  width: 0.82rem;
  height: auto;
  border: 1px solid #FFFFFF66;
  border-left: 0;
  position: relative;
  z-index: 1;
}
.ins_productCon8 .content .center_box .left_box .img_list .one::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  top: 0;
  right: 0;
  transform: translateX(50%) translateY(-50%);
}
.ins_productCon8 .content .center_box .left_box .img_list .one::before {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  bottom: 0;
  right: 0;
  transform: translateX(50%) translateY(50%);
}
.ins_productCon8 .content .center_box .left_box .img_list .one:first-child {
  border-left: 1px solid #FFFFFF66;
}
.ins_productCon8 .content .center_box .right_box {
  width: 36.6%;
  position: relative;
  z-index: 1;
  border-radius: 0.32rem;
  border: 1px solid #ffffff25;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(100px);
}
.ins_productCon8 .content .center_box .right_box .swiper_box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ins_productCon8 .content .center_box .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon8 .content .center_box .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  padding: 0.52rem 0.4rem;
  padding-bottom: 1.6rem;
}
.ins_productCon8 .content .center_box .right_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_productCon8 .content .center_box .right_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 500;
}
.ins_productCon8 .content .center_box .right_box .swiper_box ul li .centerInfo .word .t2 {
  font-weight: 300;
  margin-top: 0.24rem;
  line-height: 1.25;
}
.ins_productCon8 .content .center_box .right_box .swiper_plug {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  padding: 0.52rem 0.3rem;
  left: 0;
  z-index: 2;
  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_productCon8 .content .center_box .right_box .swiper_plug .swiper_icon {
  background: none;
  border-color: #FFFFFF;
}
.ins_productCon8 .content .center_box .right_box .swiper_plug .swiper_icon img {
  filter: brightness(0) invert(1);
}
.ins_productCon8 .content .center_box .right_box .swiper_plug .swiper_icon:hover {
  background: #FFFFFF;
}
.ins_productCon8 .content .center_box .right_box .swiper_plug .swiper_icon:hover img {
  filter: unset;
}
.ins_productCon8 .content .center_box .right_box .idxNumber {
  font-size: var(--font24);
  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;
  gap: 0.05rem;
  color: #FFFFFF;
  margin-top: 0.16rem;
  font-family: "Bebas";
  line-height: 1;
}
.ins_productCon8 .content .center_box .right_box .idxNumber .swiper-pagination-total {
  font-size: var(--font24);
}
.ins_productCon8 .content .center_box .right_box .idxNumber .swiper-pagination-current {
  font-size: var(--font64);
  transform: translateY(0.1rem);
}
.ins_productCon8 .swiper_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon8 .swiper_img ul li {
  width: 100%;
  height: auto;
}
.ins_productCon8 .swiper_img ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon8 .swiper_img ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_productCon8 .swiper_img ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_productCon8 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_productCon8 .content .center_box {
    gap: 0.84rem;
  }
  .ins_productCon8 .swiper_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .ins_productCon8 .swiper_img ul li {
    width: 100%;
    height: auto;
  }
  .ins_productCon8 .swiper_img ul li .centerInfo {
    width: 100%;
    height: 100%;
  }
  .ins_productCon8 .swiper_img ul li .centerInfo .img {
    width: 100%;
    height: 100%;
  }
  .ins_productCon8 .swiper_img ul li .centerInfo .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_productCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_productCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon9 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  overflow: hidden;
}
.ins_productCon9 .center_box .swiper_box ul li {
  width: 30%;
  height: auto;
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background: #ECEFF4;
  overflow: hidden;
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 56%;
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo .word .t1 {
  color: var(--active_color);
  font-weight: 300;
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.24rem;
  height: var(2.4em);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 500;
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo .word .idx_more2 {
  margin-top: 0.52rem;
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo:hover .idx_more2 .more span {
  color: var(--active_color);
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_productCon9 .center_box .swiper_box ul li .centerInfo:hover .word .t2 {
  text-decoration: underline;
}
.ins_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #ECEFF4;
}
.ins_caseCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.8rem;
}
.ins_caseCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_caseCon1 .center_box .item_box .item .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_caseCon1 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  z-index: 2;
  padding: 0.42rem;
}
.ins_caseCon1 .center_box .item_box .item .word .t1 {
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_caseCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_caseCon1 .center_box .item_box .item.grid3 .word {
  padding: 0.52rem 0.72rem;
}
@media (max-width:990px) {
  .ins_caseCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_caseCon1 .center_box .item_box .item .img img {
    min-height: 5rem;
    object-fit: cover;
  }
  .ins_caseCon1 .center_box .item_box .item.grid3 .word {
    padding: 0.42rem;
  }
  .ins_caseCon1 .center_box .item_box .item.grid3 .word .t2 {
    display: none;
  }
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
  border-radius: 0.4rem;
  overflow: hidden;
}
.ins_caseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .content1 {
  width: 100%;
  height: auto;
  background: #F5F6FA;
  border-radius: 0.32rem;
  margin-top: 0.8rem;
}
.ins_caseCon2 .center_box .content1 .select_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon2 .center_box .content1 .select_info .icon {
  width: 2.42rem;
  min-width: 200px;
  padding: 0.4rem 0.65rem;
  font-size: var(--font18);
  border-right: 1px solid #0000001A;
  color: #1A1A1A;
}
.ins_caseCon2 .center_box .content1 .select_info .layui-form-checkbox[lay-skin=primary] > i {
  background-color: unset;
  border-radius: 0.04rem;
}
.ins_caseCon2 .center_box .content1 .select_info .layui-form-checkbox > div {
  font-size: var(--font18);
  color: #666666;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .content1 .select_info .layui-form-checkbox[lay-skin=primary] > i::before {
  line-height: 1;
  opacity: 0;
}
.ins_caseCon2 .center_box .content1 .select_info .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color);
}
.ins_caseCon2 .center_box .content1 .select_info .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
  transform: scale(0.6);
  display: inline-block;
}
.ins_caseCon2 .center_box .content1 .select_info:last-child {
  border-bottom: 0;
}
.ins_caseCon2 .center_box .content1 .select_info .layui-form-checked > div {
  color: #1A1A1A;
}
.ins_caseCon2 .center_box .content1 .select_info .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem 0.64rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
@media (max-width:990px) {
  .ins_caseCon2 .center_box .content1 .select_info {
    -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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0.2rem;
    padding: 0.4rem;
  }
  .ins_caseCon2 .center_box .content1 .select_info .icon {
    width: fit-content;
    min-width: unset;
    border: 0;
    padding: 0;
  }
  .ins_caseCon2 .center_box .content1 .select_info .word {
    gap: 0.2rem;
  }
}
.ins_caseCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.64rem;
}
.ins_caseCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background: #ECEFF4;
  overflow: hidden;
}
.ins_caseCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 56%;
}
.ins_caseCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_caseCon2 .center_box .item_box .item .word .t1 {
  color: var(--active_color);
  font-weight: 300;
}
.ins_caseCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.24rem;
  height: var(2.4em);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 500;
}
.ins_caseCon2 .center_box .item_box .item .word .idx_more2 {
  margin-top: 0.52rem;
}
.ins_caseCon2 .center_box .item_box .item:hover .idx_more2 .more span {
  color: var(--active_color);
}
.ins_caseCon2 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_caseCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg_color);
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .content {
  width: 100%;
  height: auto;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_newCon1 .center_box .content .left_box {
  width: 59%;
  height: auto;
}
.ins_newCon1 .center_box .content .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
  overflow: hidden;
}
.ins_newCon1 .center_box .content .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .content .right_box {
  width: 36.8%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.48rem;
}
.ins_newCon1 .center_box .content .right_box .word {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .content .right_box .word .t1 {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  font-size: var(--font16);
  color: #7D8999;
}
.ins_newCon1 .center_box .content .right_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  font-weight: 500;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_newCon1 .center_box .content .right_box .word .t3 {
  margin-top: 0.32rem;
  color: #7D8999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_newCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.48rem;
  padding: 0.32rem 0;
  position: relative;
  z-index: 1;
}
.ins_newCon1 .center_box .item_box::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ins_newCon1 .center_box .item_box .item {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  color: #7D8999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .item_box .item i {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: 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;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_newCon1 .center_box .item_box .item.active i {
  opacity: 1;
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}
.ins_newCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background: #ECEFF4;
  overflow: hidden;
}
.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;
}
.ins_newCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_newCon2 .center_box .item_box .item .word .t1 {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  font-size: var(--font16);
  color: #7D8999;
}
.ins_newCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.24rem;
  height: var(2.4em);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 500;
  -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 .idx_more2 {
  margin-top: 0.52rem;
}
.ins_newCon2 .center_box .item_box .item:hover .word .idx_more2 .more span {
  color: var(--active_color);
}
.ins_newCon2 .center_box .item_box .item:hover .word .t2 {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_newCon2 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_newCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.32rem;
  padding-bottom: 1.4rem;
}
.ins_newCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.91rem;
}
.ins_newCon3 .center_box .content_info .left_box {
  width: 68%;
}
.ins_newCon3 .center_box .content_info .left_box .title {
  font-weight: 500;
  line-height: 1.07;
}
.ins_newCon3 .center_box .content_info .left_box .cont0 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.6rem;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon3 .center_box .content_info .left_box .cont0 .subtitle {
  width: 100%;
  height: auto;
  color: #878E99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
}
.ins_newCon3 .center_box .content_info .left_box .cont0 .subtitle img {
  width: 0.18rem;
  height: 0.18rem;
  min-width: 15px;
  min-height: 15px;
}
.ins_newCon3 .center_box .content_info .left_box .newContent {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_newCon3 .center_box .content_info .left_box .btn_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;
  margin-top: 0.4rem;
  gap: 0.8rem;
}
.ins_newCon3 .center_box .content_info .left_box .btn_info .left_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_newCon3 .center_box .content_info .left_box .btn_info .left_box .one {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: var(--font16);
  color: #7D8999;
  width: fit-content;
}
.ins_newCon3 .center_box .content_info .left_box .btn_info .left_box .one:hover {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_newCon3 .center_box .content_info .left_box .btn_info .right_box {
  width: fit-content;
  flex-shrink: 0;
}
.ins_newCon3 .center_box .content_info .left_box .btn_info .right_box .btn {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  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;
  border: 1px solid #999999;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon3 .center_box .content_info .left_box .btn_info .right_box .btn img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.24rem;
}
.ins_newCon3 .center_box .content_info .left_box .btn_info .right_box .btn:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
.ins_newCon3 .center_box .content_info .left_box .btn_info .right_box .btn:hover img {
  filter: brightness(0) invert(1);
}
.ins_newCon3 .center_box .content_info .right_box {
  width: 23.6%;
  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_newCon3 .center_box .content_info .right_box .content {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  background: var(--bg_color);
  padding: 0.4rem;
}
.ins_newCon3 .center_box .content_info .right_box .content.bgimg {
  background-image: url(../images/bg5.jpg);
  background-size: cover;
}
.ins_newCon3 .center_box .content_info .right_box .content.bgimg .title {
  color: #FFFFFF;
  border-color: #FFFFFF1A;
}
.ins_newCon3 .center_box .content_info .right_box .content .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_newCon3 .center_box .content_info .right_box .content .idx_more2 .more {
  color: #FFFFFF;
}
.ins_newCon3 .center_box .content_info .right_box .content .idx_more2 .more img {
  filter: brightness(0) invert(1);
}
.ins_newCon3 .center_box .content_info .right_box .content .list_address {
  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.16rem;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_address .one {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  font-size: var(--font16);
}
.ins_newCon3 .center_box .content_info .right_box .content .title {
  width: 100%;
  height: auto;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #0000001A;
  font-weight: 500;
  font-size: var(--font24);
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box .list_b {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.24rem 0;
  border-bottom: 1px solid #0000001A;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box .list_b .img {
  width: 28.2%;
  border-radius: 0.08rem;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box .list_b .img .pb {
  padding-bottom: 100%;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box .list_b .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_newCon3 .center_box .content_info .right_box .content .list_box .list_b .word {
  width: 64%;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box .list_b .word .t1 {
  color: #050E19;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box .list_b .word .t2 {
  margin-top: 0.16rem;
  margin-top: 0.12rem;
  color: #7D8999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box .list_b:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box .list_b:hover .word .t1 {
  text-decoration: underline;
  color: var(--active_color);
}
.ins_newCon3 .center_box .content_info .right_box .content .list_box .list_b:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.24rem 0;
  border-bottom: 1px solid #0000001A;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one .img {
  width: 38.2%;
  border-radius: 0.08rem;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one .img .pb {
  padding-bottom: 58%;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one .word {
  width: 57%;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one .word .t1 {
  color: #050E19;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one .word .t2 {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  color: #7D8999;
  margin-top: 0.16rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one .word .t2 img {
  width: 12px;
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one:hover .word .t1 {
  text-decoration: underline;
  color: var(--active_color);
}
.ins_newCon3 .center_box .content_info .right_box .content .list_articles .one:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_newCon3 .center_box .content_info .left_box .btn_info {
    display: none;
  }
  .ins_newCon3 .center_box .content_info .right_box {
    display: none;
  }
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg_color);
}
.ins_productCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.48rem;
  padding: 0.32rem 0;
  position: relative;
  z-index: 1;
}
.ins_productCon1 .center_box .item_box .item {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  color: #7D8999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item i {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: 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;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_productCon1 .center_box .item_box .item.active i {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_productCon1 .center_box .item_box {
    gap: 0.2rem;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
@media (max-width:990px) {
  .ins_productCon1 {
    display: none;
  }
}
.ins_productCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_productCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_productCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.4rem;
  background: #ECEFF4;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_productCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(210deg, #145BB9 0%, #041020 125.2%);
  -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_productCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.74rem;
}
.ins_productCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 84%;
}
.ins_productCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.59rem;
}
.ins_productCon2 .center_box .item_box .item .word .t1 {
  font-weight: 500;
  line-height: 1.1;
  -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: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.12rem;
}
.ins_productCon2 .center_box .item_box .item .word .t1 img {
  transform: translateY(0.05rem);
  display: inline-block;
}
.ins_productCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #7D8999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.25;
}
.ins_productCon2 .center_box .item_box .item:hover::after {
  opacity: 1;
}
.ins_productCon2 .center_box .item_box .item:hover .icon i {
  background: #FFF;
}
.ins_productCon2 .center_box .item_box .item:hover .icon span {
  color: #FFFFFF;
}
.ins_productCon2 .center_box .item_box .item:hover .word .t1 {
  color: #FFF;
  text-decoration: underline;
}
.ins_productCon2 .center_box .item_box .item:hover .word .t2 {
  color: #FFF;
}
@media (max-width:990px) {
  .ins_productCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_productCon2 .center_box .add_btn {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.64rem;
}
.ins_productCon2 .center_box .add_btn .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
  font-size: var(--font16);
  color: #7D8999;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon2 .center_box .add_btn .more:hover span {
  text-decoration: underline;
}
.ins_productCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_productCon10 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon10 .center_box .content {
  width: 100%;
  height: auto;
  padding: 0.92rem 0.74rem;
  background: var(--bg_color);
  border-radius: 0.24rem;
}
.ins_productCon10 .center_box .content .left_box {
  width: 38%;
  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_productCon10 .center_box .content .left_box .word {
  width: 100%;
  height: auto;
}
.ins_productCon10 .center_box .content .left_box .word .t1 {
  font-weight: 500;
}
.ins_productCon10 .center_box .content .left_box .word .t2 {
  margin-top: 0.16rem;
  color: #7D8999;
  font-weight: 300;
}
.ins_productCon10 .center_box .content .right_box {
  width: 48%;
}
.ins_caseCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_caseCon3 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_caseCon3 .center_box .left_box {
  width: 32%;
}
.ins_caseCon3 .center_box .left_box .t1 {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
  color: var(--active_color);
  font-weight: 500;
}
.ins_caseCon3 .center_box .left_box .t2 {
  margin-top: 0.32rem;
  color: #7D8999;
}
.ins_caseCon3 .center_box .right_box {
  width: 59%;
  height: auto;
}
.ins_caseCon3 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_caseCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_caseCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .idx_title {
  width: 54%;
  margin: 0 auto;
}
.ins_caseCon4 .center_box .img {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_caseCon4 .center_box .img img,
.ins_caseCon4 .center_box .img video {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .img iframe {
  width: 100%;
  height: 8rem;
}
.ins_caseCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_caseCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon5 .center_box .idx_title {
  width: 48%;
  margin: 0 auto;
}
.ins_caseCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  margin-top: 0.8rem;
}
.ins_caseCon5 .center_box .item_box .item {
  width: 21.7%;
  height: 5.96rem;
  position: relative;
  z-index: 1;
  border-radius: 0.32rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon5 .center_box .item_box .item .img {
  width: 100%;
  height: 100%;
}
.ins_caseCon5 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon5 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  color: #FFFFFF;
}
.ins_caseCon5 .center_box .item_box .item .word_box .word1 {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon5 .center_box .item_box .item .word_box .word2 {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon5 .center_box .item_box .item .word_box .t1 {
  font-weight: 500;
}
.ins_caseCon5 .center_box .item_box .item .word_box .t2 {
  margin-top: 0.16rem;
  font-weight: 300;
}
.ins_caseCon5 .center_box .item_box .item.active {
  width: 53.69%;
}
.ins_caseCon5 .center_box .item_box .item.active .word_box {
  width: 100%;
  height: auto;
}
.ins_caseCon5 .center_box .item_box .item.active .word_box .word1 {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.ins_caseCon5 .center_box .item_box .item.active .word_box .word2 {
  opacity: 0;
  visibility: hidden;
}
@media (max-width:990px) {
  .ins_caseCon5 .center_box .item_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_caseCon5 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
  }
  .ins_caseCon5 .center_box .item_box .item .word_box {
    width: 100%;
    height: auto;
  }
  .ins_caseCon5 .center_box .item_box .item .word_box .word1 {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .ins_caseCon5 .center_box .item_box .item .word_box .word2 {
    opacity: 0;
    visibility: hidden;
  }
}
.ins_caseCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_caseCon6 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.94rem 0;
  padding-top: 1.1rem;
  z-index: 5;
}
.ins_caseCon6 .content .center_box {
  width: 100%;
  height: 100%;
}
.ins_caseCon6 .content .center_box .left_box {
  width: 45%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 1rem;
}
.ins_caseCon6 .content .center_box .right_box {
  width: 36.6%;
  position: relative;
  z-index: 1;
  border-radius: 0.32rem;
  border: 1px solid #ffffff25;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(100px);
}
.ins_caseCon6 .content .center_box .right_box .centerInfo {
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  padding-top: 0.59rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
}
.ins_caseCon6 .content .center_box .right_box .centerInfo .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_caseCon6 .content .center_box .right_box .centerInfo .word .t1 {
  font-weight: 300;
  margin-top: 0.24rem;
  line-height: 1.25;
}
.ins_caseCon6 .content .center_box .right_box .centerInfo .name {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  text-align: end;
}
.ins_caseCon6 .content .center_box .right_box .centerInfo .name .t1 {
  font-weight: 500;
}
.ins_caseCon6 .content .center_box .right_box .centerInfo .name .t2 {
  margin-top: 0.12rem;
  font-weight: 300;
}
.ins_caseCon6 .img {
  width: 100%;
  height: auto;
}
.ins_caseCon6 .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_caseCon6 {
    width: 100%;
    height: auto;
  }
  .ins_caseCon6 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_caseCon6 .img {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .ins_caseCon6 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_servicesCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 2.23rem;
  background: var(--bg_color);
}
.ins_servicesCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_servicesCon1 .center_box .map_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}
.ins_servicesCon1 .center_box .map_box .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.ins_servicesCon1 .center_box .map_box .img img {
  width: 100%;
  height: auto;
}
.ins_servicesCon1 .center_box .map_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.ins_servicesCon1 .center_box .map_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_servicesCon1 .center_box .map_box .item_box .item .name {
  width: max-content;
  position: absolute;
  font-size: var(--font24);
}
@media (max-width:990px) {
  .ins_servicesCon1 .center_box .map_box .item_box .item .name {
    font-size: var(--font12);
  }
}
.ins_servicesCon1 .center_box .map_box .item_box .item i {
  width: 0.1rem;
  height: 0.1rem;
  background: var(--active_color);
  border-radius: 100px;
  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;
  z-index: -1;
}
.ins_servicesCon1 .center_box .map_box .item_box .item i::before {
  content: '';
  position: absolute;
  width: 0.53rem;
  height: 0.53rem;
  background: #0047BB1A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_servicesCon1 .center_box .map_box .item_box .item i.center::after {
  content: '';
  position: absolute;
  width: 0.93rem;
  height: 0.93rem;
  background: #0048bb3d;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  animation: grow3 5s linear infinite;
}
.ins_servicesCon1 .center_box .map_box .item_box .item i.center::before {
  animation: grow3 5s linear infinite;
  background: #0048bb3d;
}
.ins_servicesCon1 .center_box .map_box .item_box .item .word_box {
  width: 4.17rem;
  height: auto;
  position: absolute;
  top: 0;
  background: #FFFFFF;
  padding: 0.12rem;
  border-radius: 0.24rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  background: #FFFFFFB2;
  backdrop-filter: blur(32px);
  padding-bottom: 0.32rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
}
.ins_servicesCon1 .center_box .map_box .item_box .item .word_box::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 0 15px;
  border-color: transparent transparent transparent #FFFFFF;
  position: absolute;
  bottom: 100%;
  left: 0;
}
.ins_servicesCon1 .center_box .map_box .item_box .item .word_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_servicesCon1 .center_box .map_box .item_box .item .word_box .img .pb {
  padding-bottom: 62%;
}
.ins_servicesCon1 .center_box .map_box .item_box .item .word_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_servicesCon1 .center_box .map_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  padding: 0 0.12rem;
}
.ins_servicesCon1 .center_box .map_box .item_box .item .word_box .word .t1 {
  font-weight: 500;
}
.ins_servicesCon1 .center_box .map_box .item_box .item .word_box .word .t2 {
  margin-top: 0.16rem;
  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;
  color: #7D8999;
}
@media (max-width:990px) {
  .ins_servicesCon1 .center_box .map_box .item_box .item .word_box {
    display: none !important;
  }
}
.ins_servicesCon1 .center_box .map_box .item_box .item.left .name {
  right: 0.38rem;
}
.ins_servicesCon1 .center_box .map_box .item_box .item.left .word_box {
  left: -0.1rem;
  border-top-left-radius: 0;
}
.ins_servicesCon1 .center_box .map_box .item_box .item.right .name {
  left: 0.38rem;
}
.ins_servicesCon1 .center_box .map_box .item_box .item.right .word_box {
  right: -0.1rem;
  border-top-right-radius: 0;
}
.ins_servicesCon1 .center_box .map_box .item_box .item.right .word_box::after {
  left: unset;
  right: 0;
  transform: scaleX(-1);
}
.ins_servicesCon1 .center_box .map_box .item_box .item:hover {
  z-index: 5;
}
.ins_servicesCon1 .center_box .map_box .item_box .item:hover .word_box {
  opacity: 1;
  visibility: visible;
}
.ins_servicesCon1 .center_box .con_info {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0;
  border-radius: 0.04rem;
  border-radius: 0.24rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  bottom: 0;
  transform: translateY(50%);
}
.ins_servicesCon1 .center_box .con_info .item {
  width: 100%;
  height: auto;
  padding: 0.53rem 0.8rem;
  position: relative;
  border-right: 1px dashed #00000033;
}
.ins_servicesCon1 .center_box .con_info .item:last-child {
  border-right: 0;
}
.ins_servicesCon1 .center_box .con_info .item .t1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.08rem;
}
.ins_servicesCon1 .center_box .con_info .item .t1 .num {
  color: #050E19;
  font-family: "Bebas";
  font-weight: 400;
  line-height: 1.2;
}
.ins_servicesCon1 .center_box .con_info .item .t1 .unit {
  color: var(--active_color);
  line-height: normal;
}
.ins_servicesCon1 .center_box .con_info .item .t2 {
  color: #7D8999;
  margin-top: -0.12rem;
}
.ins_servicesCon1 .center_box .con_info.wap {
  display: none;
}
@media (max-width:990px) {
  .ins_servicesCon1 .center_box .con_info.pc {
    display: none !important;
  }
  .ins_servicesCon1 .center_box .con_info.wap {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 1;
    transform: translateY(0);
    gap: 0.24rem;
    padding: 0.4rem;
    margin-top: 0.48rem;
  }
  .ins_servicesCon1 .center_box .con_info.wap .item {
    width: 100%;
    height: auto;
    padding: 0;
    padding-bottom: 0.24rem;
    border: 0;
    border-bottom: 1px solid #0000001A;
  }
  .ins_servicesCon1 .center_box .con_info.wap .item .t2 {
    font-size: 12px;
    margin-top: 0.06rem;
  }
  .ins_servicesCon1 .center_box .con_info.wap .item .t1 .num {
    font-size: var(--font48);
  }
}
.ins_servicesCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  display: none;
}
.ins_servicesCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_servicesCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.12rem;
  border-radius: 0.24rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  background: #FFFFFFB2;
  backdrop-filter: blur(32px);
  padding-bottom: 0.32rem;
}
.ins_servicesCon1 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_servicesCon1 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 62%;
}
.ins_servicesCon1 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_servicesCon1 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  padding: 0 0.12rem;
}
.ins_servicesCon1 .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 500;
}
.ins_servicesCon1 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.16rem;
  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;
  color: #7D8999;
}
@media (max-width:990px) {
  .ins_servicesCon1 .center_box .swiper_box {
    display: block !important;
  }
}
@media (max-width:990px) {
  .ins_servicesCon1 {
    padding-bottom: 1.4rem;
  }
}
.ins_servicesCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg_color);
  border-radius: 0.52rem 0.52rem 0 0;
}
.ins_servicesCon2 .center_box {
  width: 100%;
  height: 100vh;
  padding-top: 0.94rem;
  padding-bottom: 0.94rem;
}
.ins_servicesCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 4.46rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}
.ins_servicesCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  border-top: 1px solid #ffffff94;
  border-left: 1px solid #ffffff94;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.4rem;
}
.ins_servicesCon2 .center_box .item_box .item .t1 {
  font-weight: 700;
  color: #FFFFFF;
}
.ins_servicesCon2 .center_box .item_box .item .t2 {
  margin-top: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
  color: #FFFFFFCC;
}
.ins_servicesCon2 .center_box .item_box .item .t2 p {
  padding-left: 0.24rem;
  position: relative;
  z-index: 1;
}
.ins_servicesCon2 .center_box .item_box .item .t2 p::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #FFF;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.4em;
  left: 0;
}
@media (max-width:990px) {
  .ins_servicesCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.2rem;
  }
}
.ins_servicesCon2 .img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: 0;
  left: 0;
}
.ins_servicesCon2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_servicesCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_servicesCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_servicesCon3 .center_box .left_box {
  width: 36%;
}
.ins_servicesCon3 .center_box .right_box {
  width: 45%;
}
.ins_servicesCon3 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1rem;
}
.ins_servicesCon3 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_servicesCon3 .center_box .right_box .item_box .item .icon {
  width: 0.72rem;
  height: 0.72rem;
}
.ins_servicesCon3 .center_box .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_servicesCon3 .center_box .right_box .item_box .item .word .t1 {
  font-weight: 500;
}
.ins_servicesCon3 .center_box .right_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #7D8999;
}
@media (max-width:990px) {
  .ins_servicesCon3 .center_box .right_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_servicesCon3 .center_box .right_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0.48rem;
  }
  .ins_servicesCon3 .center_box .right_box .item_box .item .icon {
    flex-shrink: 0;
  }
  .ins_servicesCon3 .center_box .right_box .item_box .item .word {
    margin-top: 0;
  }
}
.ins_servicesCon3 .img_bg {
  width: 37%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
.ins_servicesCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_servicesCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_servicesCon4 .center_box .top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_servicesCon4 .center_box .top_info .idx_title {
  width: 50%;
}
.ins_servicesCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_servicesCon4 .center_box .swiper_box .swiper_info {
  width: 100%;
  height: auto;
}
.ins_servicesCon4 .center_box .swiper_box .swiper_info .swiper_word {
  width: 100%;
  height: auto;
}
.ins_servicesCon4 .center_box .swiper_box .swiper_info .swiper_word .swiper-slide {
  width: 32%;
}
.ins_servicesCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_servicesCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo .icon {
  position: absolute;
  width: 0.54rem;
  height: 0.54rem;
  z-index: 3;
  cursor: pointer;
  min-width: 30px;
  min-height: 30px;
}
.ins_servicesCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo .word {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.32rem;
  z-index: 2;
  color: #FFFFFF;
  font-size: var(--font24);
  font-weight: 300;
}
.ins_servicesCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_servicesCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo .img .pb {
  padding-bottom: 132%;
}
.ins_servicesCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_servicesCon4 .center_box .swiper_box ul li.swiper-slide-active {
  z-index: 5;
}
.ins_servicesCon4 .center_box .swiper_box ul li.swiper-slide-active .swiper-slide {
  pointer-events: initial;
}
.ins_resourceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_resourceCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_resourceCon1 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li {
  width: 50%;
  height: auto;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #ECEFF4;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .left_box {
  width: 45.5%;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .left_box .img .pb {
  padding-bottom: 142%;
}
@media (max-width:990px) {
  .ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .left_box .img {
    padding-top: 0.2rem;
  }
  .ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .left_box .img .pb {
    padding-bottom: 50%;
  }
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box {
  width: 54.5%;
  padding: 0.32rem;
  padding-left: 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_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .word {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .word .t1 {
  width: 100%;
  height: auto;
  color: #878E99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .word .t1 img {
  width: 0.18rem;
  height: 0.18rem;
  min-width: 15px;
  min-height: 15px;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  font-weight: 500;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .word .t3 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  font-weight: 300;
  color: #7D8999;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .list {
  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_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
  color: #7D8999;
  padding-bottom: 0.19rem;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .list .one::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0.1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .list .one::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  bottom: 0;
  left: 0;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .list .one img {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
  opacity: 0.4;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .list .one:hover {
  color: var(--active_color);
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .list .one:hover img {
  opacity: 1;
}
.ins_resourceCon1 .center_box .content .swiper_box ul li .centerInfo .right_box .list .one:hover::before {
  width: 100%;
}
.ins_resourceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_resourceCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_resourceCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
  margin-top: 0.52rem;
}
.ins_resourceCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_resourceCon2 .center_box .item_box .item .left_box {
  width: 45.5%;
}
.ins_resourceCon2 .center_box .item_box .item .left_box .img {
  width: 100%;
  height: auto;
}
.ins_resourceCon2 .center_box .item_box .item .left_box .img .pb {
  padding-bottom: 142%;
}
@media (max-width:990px) {
  .ins_resourceCon2 .center_box .item_box .item .left_box .img {
    padding-top: 0.2rem;
  }
  .ins_resourceCon2 .center_box .item_box .item .left_box .img .pb {
    padding-bottom: 50%;
  }
}
.ins_resourceCon2 .center_box .item_box .item .right_box {
  width: 54.5%;
  padding: 0.32rem;
  padding-left: 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_resourceCon2 .center_box .item_box .item .right_box .word {
  width: 100%;
  height: auto;
}
.ins_resourceCon2 .center_box .item_box .item .right_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 500;
}
.ins_resourceCon2 .center_box .item_box .item .right_box .list {
  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_resourceCon2 .center_box .item_box .item .right_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
  color: #7D8999;
  padding-bottom: 0.19rem;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon2 .center_box .item_box .item .right_box .list .one::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0.1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
}
.ins_resourceCon2 .center_box .item_box .item .right_box .list .one::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  bottom: 0;
  left: 0;
}
.ins_resourceCon2 .center_box .item_box .item .right_box .list .one img {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
  opacity: 0.4;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon2 .center_box .item_box .item .right_box .list .one:hover {
  color: var(--active_color);
}
.ins_resourceCon2 .center_box .item_box .item .right_box .list .one:hover img {
  opacity: 1;
}
.ins_resourceCon2 .center_box .item_box .item .right_box .list .one:hover::before {
  width: 100%;
}
@media (max-width:990px) {
  .ins_resourceCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_resourceCon2 .center_box .item_box .item .left_box {
    padding-top: 0.4rem;
  }
  .ins_resourceCon2 .center_box .item_box .item .right_box {
    gap: 0.4rem;
  }
}
.ins_resourceCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_resourceCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_resourceCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  overflow: hidden;
}
.ins_resourceCon3 .center_box .swiper_box ul li {
  width: 30%;
  height: auto;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info {
  width: 100%;
  height: auto;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word {
  width: 100%;
  height: auto;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  background: #ECEFF4;
  overflow: hidden;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .img .pb {
  padding-bottom: 56%;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word .t1 {
  color: var(--active_color);
  font-weight: 300;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word .t2 {
  margin-top: 0.24rem;
  height: var(2.4em);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 500;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo .word .idx_more2 {
  margin-top: 0.52rem;
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo:hover .idx_more2 .more span {
  color: var(--active_color);
}
.ins_resourceCon3 .center_box .swiper_box ul li .swiper_info .swiper_word .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_resourceCon3 .center_box .swiper_box ul li.swiper-slide-active {
  z-index: 5;
}
.ins_resourceCon3 .center_box .swiper_box ul li.swiper-slide-active .swiper-slide {
  pointer-events: initial;
}
.ins_fqaCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_fqaCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_fqaCon1 .center_box .left_box {
  width: 20.6%;
  height: 100%;
  position: sticky;
  top: 1.2rem;
  max-height: 85vh;
  overflow: auto;
}
.ins_fqaCon1 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
}
.ins_fqaCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  border-top: 1px solid #0000001A;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .top {
  padding: 0.24rem 0;
  font-size: var(--font20);
  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-weight: 500;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .top img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-bottom: 0.24rem;
  display: none;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .list {
  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_fqaCon1 .center_box .left_box .item_box .item .bot .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .list .one i {
  width: 0.12rem;
  height: 0.12rem;
  background: var(--active_color);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.4em;
  border-radius: 2px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .list .one span {
  font-size: var(--font20);
  color: #7D8999;
  font-weight: 300;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .list .one.active {
  padding-left: 0.24rem;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .list .one.active i {
  opacity: 1;
}
.ins_fqaCon1 .center_box .left_box .item_box .item.active .top img {
  transform: rotate(180deg);
}
.ins_fqaCon1 .center_box .left_box .item_box .item.active .bot {
  display: block;
}
.ins_fqaCon1 .center_box .right_box {
  width: 75.2%;
  padding-left: 0.8rem;
  border-left: 1px solid #0000001A;
}
.ins_fqaCon1 .center_box .right_box .title {
  font-size: var(--font52);
  color: #050E19;
  font-weight: 500;
}
.ins_fqaCon1 .center_box .right_box .content_info {
  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.94rem;
  margin-top: 0.64rem;
}
.ins_fqaCon1 .center_box .right_box .content_info .content {
  width: 100%;
  height: auto;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .subtitle {
  font-weight: 500;
  font-size: var(--font40);
}
.ins_fqaCon1 .center_box .right_box .content_info .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;
  margin-top: 0.32rem;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item {
  width: 100%;
  height: auto;
  padding: 0 0.4rem;
  background: var(--bg_color);
  border-radius: 0.32rem;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top {
  padding: 0.4rem 0;
  font-size: var(--font24);
  font-weight: 500;
  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: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top span {
  max-width: 65%;
  display: inline-block;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top i {
  width: 0.4rem;
  height: 0.4rem;
  background: var(--active_color);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top i img {
  filter: brightness(0) invert(1);
  width: 0.12rem;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .bot {
  padding-top: 0.4rem;
  padding-bottom: 0.32rem;
  color: #7D8999;
  border-top: 1px dashed #0000001A;
  display: none;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .bot a {
  display: contents;
  color: #3B3B3B;
  font-weight: 500;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item.active .top i {
  transform: rotate(180deg);
}
@media (max-width:990px) {
  .ins_fqaCon1 .center_box .left_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: auto;
  }
  .ins_fqaCon1 .center_box .right_box {
    padding-left: 0;
    border: 0;
  }
  .ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top {
    gap: 0.24rem;
  }
  .ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top span {
    max-width: 100%;
    height: auto;
    font-size: var(--font18);
  }
}
.ins_aboutCon1 {
  width: 100%;
  height: 180vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #ECEFF4;
}
.ins_aboutCon1 .content1 {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
}
.ins_aboutCon1 .content1 .content {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .content1 .content .center_box {
  width: 100%;
  height: 100vh;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon1 .content1 .content .center_box .t1 {
  font-weight: 500;
  line-height: 1.05;
}
@media (max-width:990px) {
  .ins_aboutCon1 .content1 .content .center_box .t1 p {
    display: contents;
  }
}
.ins_aboutCon1 .content1 .content .center_box .t4 {
  width: 100%;
  height: auto;
  padding-bottom: 0.12rem;
  font-weight: 300;
}
.ins_aboutCon1 .content2 {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.ins_aboutCon1 .content2 .center_box {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ins_aboutCon1 .content2 .center_box .left_box {
  width: 34.3%;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(0.5rem);
}
.ins_aboutCon1 .content2 .center_box .left_box .t1 {
  font-weight: 500;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_aboutCon1 .content2 .center_box .left_box .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.16rem;
}
.ins_aboutCon1 .content2 .center_box .left_box .list .one {
  width: 100%;
  height: auto;
  padding-left: 0.24rem;
  position: relative;
  z-index: 1;
  color: #7D8999;
}
.ins_aboutCon1 .content2 .center_box .left_box .list .one::after {
  content: '';
  width: 0.12rem;
  height: 0.12rem;
  background: var(--active_color);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.3em;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon1 .content2 .center_box .right_box {
  width: 100vw;
  height: 100vh;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon1 .content2 .center_box .right_box .img {
  width: 100%;
  height: 100%;
}
.ins_aboutCon1 .content2 .center_box .right_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_aboutCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon1 .content1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .ins_aboutCon1 .content1 .content {
    width: 100%;
    height: auto;
    position: absolute;
  }
  .ins_aboutCon1 .content1 .content .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .content2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 1.4rem 0;
  }
  .ins_aboutCon1 .content2 .center_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
  }
  .ins_aboutCon1 .content2 .center_box .left_box {
    width: 100%;
    height: auto;
    opacity: 1;
    transform: translateY(0);
  }
  .ins_aboutCon1 .content2 .center_box .right_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    right: unset;
    transform: translateX(0);
    border-radius: 0.32rem;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 20%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #ECEFF4 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.4rem 0;
  z-index: 3;
}
.ins_aboutCon2 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .content .center_box .left_box {
  width: 29%;
}
.ins_aboutCon2 .content .center_box .right_box {
  width: 59.7%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.16rem;
}
.ins_aboutCon2 .content .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_aboutCon2 .content .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.32rem 0.4rem;
  background: #ECEFF4;
  border-radius: 0.32rem;
}
.ins_aboutCon2 .content .center_box .right_box .item_box .item .icon {
  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;
  font-size: var(--font16);
  color: #7D8999;
}
.ins_aboutCon2 .content .center_box .right_box .item_box .item .icon img {
  width: 0.52rem;
  height: 0.52rem;
}
.ins_aboutCon2 .content .center_box .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.98rem;
}
.ins_aboutCon2 .content .center_box .right_box .item_box .item .word .t1 {
  font-weight: 500;
  line-height: 1.05;
}
.ins_aboutCon2 .content .center_box .right_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #7D8999;
}
.ins_aboutCon2 .content .center_box .right_box .item_box .item:nth-child(2n) .word {
  margin-top: 0.38rem;
}
.ins_aboutCon2 .content .center_box .right_box .item_box:nth-child(2n) .item .word {
  margin-top: 0.38rem;
}
.ins_aboutCon2 .content .center_box .right_box .item_box:nth-child(2n) .item:nth-child(2n) .word {
  margin-top: 0.98rem;
}
.ins_aboutCon2 .content .center_box .right_box .item_box.wap {
  display: none;
}
.ins_aboutCon2 .banner_img {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .banner_img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutCon2 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon2 .content .center_box .right_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_aboutCon2 .content .center_box .right_box .item_box {
    display: none;
  }
  .ins_aboutCon2 .content .center_box .right_box .item_box .item .word {
    margin-top: 0.38rem !important;
  }
  .ins_aboutCon2 .content .center_box .right_box .item_box.wap {
    display: flex !important;
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .banner_img {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .ins_aboutCon2 .banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_aboutCon3 .center_box .content1 .swiper_item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .content1 .swiper_item ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content1 .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  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-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  gap: 0.12rem;
}
.ins_aboutCon3 .center_box .content1 .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.12rem;
  background-image: url(../images/e62.png);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-position: center;
  bottom: 0.06rem;
}
.ins_aboutCon3 .center_box .content1 .swiper_item ul li .centerInfo i {
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 0.04rem;
  border: 1px solid #09428E00;
  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 .content1 .swiper_item ul li .centerInfo i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #00000033;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .content1 .swiper_item ul li .centerInfo span {
  font-size: var(--font20);
  color: #7D8999;
}
.ins_aboutCon3 .center_box .content1 .swiper_item ul li.active i {
  border-color: #09428E66;
}
.ins_aboutCon3 .center_box .content1 .swiper_item ul li.active i::after {
  background: var(--active_color);
}
.ins_aboutCon3 .center_box .content1 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.7rem;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li .centerInfo .left_box {
  width: 59.7%;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li .centerInfo .left_box .img img {
  width: 100%;
  height: auto;
  transform: scale(1.2);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li .centerInfo .right_box {
  width: 34.513%;
  padding-bottom: 0.9rem;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li .centerInfo .right_box .name {
  width: fit-content;
  font-weight: 900;
  font-size: 1.4rem;
  background: linear-gradient(132deg, #74A0DB 5.87%, #09428E 53.07%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Bebas";
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li .centerInfo .right_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  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_aboutCon3 .center_box .content1 .content .swiper_box ul li .centerInfo .right_box .list .one {
  width: 100%;
  height: auto;
  padding-left: 0.24rem;
  position: relative;
  z-index: 1;
  color: #7D8999;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li .centerInfo .right_box .list .one::after {
  content: '';
  width: 0.12rem;
  height: 0.12rem;
  background: var(--active_color);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.3em;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .content1 .content .swiper_box ul li.swiper-slide-active .centerInfo .left_box .img img {
  transform: scale(1);
}
.ins_aboutCon3 .center_box .content1 .content .swiper_switch {
  width: 34.513%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_aboutCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_aboutCon4 .center_box .top_info .idx_title {
  width: 43%;
}
.ins_aboutCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_aboutCon4 .center_box .swiper_box .swiper_info {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_box .swiper_info .swiper_word {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_aboutCon4 .center_box .swiper_box .swiper_info .swiper_word .swiper-slide {
  width: 25%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 0.32rem;
  overflow: hidden;
  background: #FFFFFF;
  padding: 0.32rem;
}
.ins_aboutCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_aboutCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo .img .pb {
  padding-bottom: 148%;
}
.ins_aboutCon4 .center_box .swiper_box .swiper_info .swiper_word .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_aboutCon4 .center_box .swiper_box .swiper_info .swiper_word .centerInfo .word {
  width: 100%;
  height: auto;
  color: #050E19;
  font-size: var(--font24);
  font-weight: 500;
  margin-top: 0.24rem;
  padding-top: 0.16rem;
  border-top: 1px dashed #0000001A;
  text-align: center;
}
.ins_aboutCon4 .center_box .swiper_box ul li.swiper-slide-active {
  z-index: 5;
}
.ins_aboutCon4 .center_box .swiper_box ul li.swiper-slide-active .swiper-slide {
  pointer-events: initial;
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_aboutCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  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_aboutCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .swiper_box ul {
  transition-timing-function: linear !important;
}
.ins_aboutCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: #F0F2F5;
  cursor: pointer;
}
.ins_aboutCon5 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 45.5%;
}
.ins_aboutCon5 .center_box .swiper_box ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_rdCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_rdCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_rdCon1 .center_box .content {
  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.8rem;
}
.ins_rdCon1 .center_box .content .item_box {
  width: 20.45%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.52rem;
}
.ins_rdCon1 .center_box .content .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.54rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_rdCon1 .center_box .content .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px dashed #0000001A;
}
.ins_rdCon1 .center_box .content .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: var(--active_color);
  border-radius: 2px;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_rdCon1 .center_box .content .item_box .item .icon {
  font-size: var(--font68);
  font-family: "Bebas";
  line-height: 1;
}
.ins_rdCon1 .center_box .content .item_box .item .word {
  color: #7D8999;
  font-size: var(--font16);
  line-height: 1;
}
.ins_rdCon1 .center_box .content .img {
  width: 50%;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_rdCon1 .center_box .content .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_rdCon1 .center_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.48rem;
  }
  .ins_rdCon1 .center_box .content .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_rdCon1 .center_box .content .img {
    width: 100%;
    height: auto;
  }
}
.ins_developmentCcon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_developmentCcon1 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_developmentCcon1 .center_box .left_box {
  width: 33%;
}
.ins_developmentCcon1 .center_box .left_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_developmentCcon1 .center_box .left_box .idx_title .t1 {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_developmentCcon1 .center_box .left_box .idx_title .t2 {
  margin-top: 0.32rem;
}
.ins_developmentCcon1 .center_box .right_box {
  width: 59%;
}
.ins_developmentCcon1 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_developmentCcon1 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_developmentCcon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_developmentCcon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCcon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_developmentCcon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  border-radius: 0.32rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_developmentCcon2 .center_box .item_box .item .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: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -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_developmentCcon2 .center_box .item_box .item .top .icon {
  width: 0.62rem;
  height: 0.62rem;
}
.ins_developmentCcon2 .center_box .item_box .item .top .numb {
  font-size: var(--font16);
  color: #7D8999;
}
.ins_developmentCcon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.98rem;
  padding-right: 0.2rem;
}
.ins_developmentCcon2 .center_box .item_box .item .word .t1 {
  font-weight: 500;
  line-height: 1.37;
}
.ins_developmentCcon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #7D8999;
}
@media (max-width:990px) {
  .ins_developmentCcon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_developmentCcon2 .center_box .item_box .word {
    margin-top: 0.4rem !important;
  }
}
.ins_developmentCcon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_developmentCcon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCcon3 .center_box .content {
  width: 100%;
  height: auto;
  background: #F5F6FA;
  border-radius: 0.32rem;
  overflow: hidden;
  margin-top: 0.8rem;
}
.ins_developmentCcon3 .center_box .content .img {
  width: 100%;
  height: auto;
}
.ins_developmentCcon3 .center_box .content .img img {
  width: 100%;
  height: auto;
}
.ins_developmentCcon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_developmentCcon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCcon4 .center_box .idx_title {
  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;
}
.ins_developmentCcon4 .center_box .idx_title .t1 {
  width: 60%;
}
.ins_developmentCcon4 .center_box .idx_title .t2 {
  width: 36%;
}
.ins_developmentCcon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.ins_developmentCcon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.23rem;
  overflow: hidden;
}
.ins_developmentCcon4 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  z-index: 3;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(9, 66, 142, 0) 0%, #09428E 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCcon4 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_developmentCcon4 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
}
.ins_developmentCcon4 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  color: #FFFFFF;
}
.ins_developmentCcon4 .center_box .item_box .item .word_box .word2 {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCcon4 .center_box .item_box .item .word_box .word1 {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCcon4 .center_box .item_box .item .word_box .t1 {
  font-weight: 500;
}
.ins_developmentCcon4 .center_box .item_box .item .word_box .t2 {
  margin-top: 0.16rem;
  font-weight: 300;
}
.ins_developmentCcon4 .center_box .item_box .item:hover::after {
  height: 50%;
}
.ins_developmentCcon4 .center_box .item_box .item:hover .word_box {
  width: 100%;
  height: auto;
}
.ins_developmentCcon4 .center_box .item_box .item:hover .word_box .word2 {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.ins_developmentCcon4 .center_box .item_box .item:hover .word_box .word1 {
  opacity: 0;
  visibility: hidden;
}
.ins_developmentCcon4 .center_box .item_box .item.grid_Y2 .img {
  width: 100%;
  height: 100%;
}
.ins_developmentCcon4 .center_box .item_box .item.grid_Y2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_developmentCcon4 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_developmentCcon4 .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_developmentCcon4 .center_box .item_box .item.grid_Y2 {
    grid-row: unset;
  }
  .ins_developmentCcon4 .center_box .item_box .item.grid_X2 {
    grid-column: unset;
  }
  .ins_developmentCcon4 .center_box .item_box .item::after {
    height: 50%;
  }
  .ins_developmentCcon4 .center_box .item_box .item .word_box {
    width: 100%;
    height: auto;
  }
  .ins_developmentCcon4 .center_box .item_box .item .word_box .word2 {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .ins_developmentCcon4 .center_box .item_box .item .word_box .word1 {
    opacity: 0;
    visibility: hidden;
  }
  .ins_developmentCcon4 .center_box .item_box .item .img {
    width: 100%;
    height: 5rem !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  .ins_developmentCcon4 .center_box .item_box .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_partnersCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_partnersCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .t2 {
  color: #FFFFFF99;
}
.ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .t2 a,
.ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .t2 span {
  color: #FFFFFF;
  display: contents;
}
.ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .idx_more2 {
  margin-top: 0.32rem;
}
.ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .idx_more2 .more span {
  font-weight: 300;
}
@media (max-width:990px) {
  .ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .t2 {
    color: #00000099;
  }
  .ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .t2 a,
  .ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .t2 span {
    color: #000000;
    display: contents;
  }
  .ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .idx_more2 .more.bg_fff {
    color: #000000;
  }
  .ins_partnersCon1 .center_box .swiper_box ul li .centerInfo .word .idx_more2 .more.bg_fff img {
    filter: unset;
    width: 0.12rem;
  }
}
.ins_partnersCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--bg_color);
}
.ins_partnersCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_partnersCon2 .center_box .item_box .item .word {
  margin-top: 1.38rem;
}
.ins_partnersCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_partnersCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_partnersCon3 .center_box .left_box {
  width: 33%;
}
.ins_partnersCon3 .center_box .left_box .idx_title {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_partnersCon3 .center_box .left_box .title {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_partnersCon3 .center_box .left_box .title .t1 {
  font-weight: 500;
}
.ins_partnersCon3 .center_box .left_box .title .list {
  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.08rem;
}
.ins_partnersCon3 .center_box .left_box .title .list .one {
  width: 100%;
  height: auto;
  padding-left: 0.24rem;
  position: relative;
  z-index: 1;
  color: #7D8999;
  line-height: 1.2;
}
.ins_partnersCon3 .center_box .left_box .title .list .one::after {
  content: '';
  width: 0.12rem;
  height: 0.12rem;
  background: var(--active_color);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.3em;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_partnersCon3 .center_box .right_box {
  width: 59.6%;
}
.ins_partnersCon3 .center_box .right_box .content_info {
  width: 100%;
  height: auto;
  background: var(--bg_color);
  padding: 0.52rem;
  border-radius: 0.32rem;
}
.ins_partnersCon3 .center_box .right_box .content_info .title {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_partnersCon3 .center_box .right_box .content_info .title .t1 {
  font-weight: 500;
}
.ins_partnersCon3 .center_box .right_box .content_info .title .t2 {
  color: #7D8999;
  margin-top: 0.16rem;
}
.ins_partnersCon3 .center_box .right_box .content_info .item_input {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem;
  margin-top: 0.32rem;
}
.ins_partnersCon3 .center_box .right_box .content_info .item_input .item {
  width: 100%;
  height: auto;
  color: #000;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0.32rem;
  border-radius: 0.12rem;
  gap: 0.12rem;
}
.ins_partnersCon3 .center_box .right_box .content_info .item_input .item .icon {
  flex-shrink: 0;
  font-size: var(--font20);
  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.04rem;
}
.ins_partnersCon3 .center_box .right_box .content_info .item_input .item .icon i {
  color: #FC533C;
  font-style: unset;
}
.ins_partnersCon3 .center_box .right_box .content_info .item_input .item .input {
  width: 100%;
  height: auto;
}
.ins_partnersCon3 .center_box .right_box .content_info .item_input .item .input input {
  width: 100%;
  height: 0.56rem;
  min-height: 40px;
  background: none;
  border: 0;
  color: #000;
}
.ins_partnersCon3 .center_box .right_box .content_info .item_input .item.grid2 {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-top: 0.16rem;
}
.ins_partnersCon3 .center_box .right_box .content_info .item_input .item.grid2 textarea {
  width: 100%;
  height: 1.3rem;
  background: none;
  border: none;
  color: #000;
}
.ins_partnersCon3 .center_box .right_box .content_info .item_input .item input:-webkit-autofill,
.ins_partnersCon3 .center_box .right_box .content_info .item_input .item input:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  color: #000;
}
.ins_partnersCon3 .center_box .right_box .content_info .layui_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;
  margin-top: 0.24rem;
}
.ins_partnersCon3 .center_box .right_box .content_info .layui_info .idx_more {
  width: fit-content;
}
.ins_partnersCon3 .center_box .right_box .content_info .layui_info .layui_btn {
  width: fit-content;
}
.ins_partnersCon3 .center_box .right_box .content_info .layui_info .layui_btn .layui-form-checkbox[lay-skin=primary] > div {
  color: #000;
}
.ins_partnersCon3 .center_box .right_box .content_info .layui_info .layui_btn .layui-form-checkbox[lay-skin=primary] > div a {
  padding-left: 0.07rem;
  color: #000;
  text-decoration: underline;
  display: inline;
}
.ins_partnersCon3 .center_box .right_box .content_info .layui_info .layui_btn .layui-form-checked[lay-skin=primary] > i {
  border-color: #000 !important;
}
.ins_partnersCon3 .center_box .right_box .content_info .layui_info .layui_btn .layui-form-checked[lay-skin=primary] > i::before {
  width: 60%;
  height: 60%;
  background: #000;
}
.ins_partnersCon3 .center_box .right_box .content_info .layui_info .layui_btn .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.19rem;
  height: 0.19rem;
}
@media (max-width:990px) {
  .ins_partnersCon3 .center_box .right_box .content_info {
    padding: 0.48rem 0.24rem;
  }
  .ins_partnersCon3 .center_box .right_box .content_info .item_input {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_partnersCon3 .center_box .right_box .content_info .layui_info {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.24rem;
  }
}
.ins_partnersCon3 .img_bg {
  width: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #FFFFFF;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.4rem;
}
.ins_contactCon1 .center_box .content {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_contactCon1 .center_box .content .left_box {
  width: 42%;
}
.ins_contactCon1 .center_box .content .left_box .word {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_contactCon1 .center_box .content .left_box .word .t1 {
  font-weight: 500;
}
.ins_contactCon1 .center_box .content .left_box .word .t2 {
  margin-top: 0.16rem;
  color: #7D8999;
}
.ins_contactCon1 .center_box .content .left_box .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.16rem;
}
.ins_contactCon1 .center_box .content .left_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.08rem;
  color: #050E19;
}
.ins_contactCon1 .center_box .content .left_box .list .one img {
  transform: translateY(2px);
}
.ins_contactCon1 .center_box .content .right_box {
  width: 50.6%;
}
.ins_contactCon1 .center_box .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.32rem;
  overflow: hidden;
}
.ins_contactCon1 .center_box .content .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .content.left {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width:990px) {
  .ins_contactCon1 .center_box .content.left {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
