@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-width: thin;
}
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 {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes grow3 {
  0% {
    transform: rotate(0);
    transform-origin: top left;
  }
  25% {
    transform: rotate(2deg);
    transform-origin: top left;
  }
  50% {
    transform: rotate(0);
    transform-origin: top left;
  }
  75% {
    transform: rotate(-2deg);
    transform-origin: top left;
  }
  100% {
    transform: rotate(0);
    transform-origin: top left;
  }
}
/* 旋转 */
/* 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;
}
/* 媒体查询 缩写 */
/* 布局 */
ul.listStyle {
  list-style: circle;
}
ul.listStyle li {
  list-style: circle;
}
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #42929d;
  --color_fff: #ffffff;
  --color_text: #282828;
  --color_f6f: #f6f6f6;
  --color_f4f: #f4f4f4;
  --color_eee: #eeeeee;
  --color_ddd: #dddddd;
  --color_bbb: #bbbbbb;
  --color_999: #999999;
  --color_666: #666666;
  --color_444: #444444;
  --color_333: #333333;
  --color_222: #222222;
  --color_000: #000000;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font96: 0.96rem;
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font240: 2.4rem;
}
/* 公共字体 */
.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);
  line-height: 1.175;
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font96 {
  font-size: var(--font96);
}
.font240 {
  font-size: var(--font240);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
.tec {
  text-align: center;
}
/* -------------------------------------------------------------------  字体 */
/*@font-face {*/
/*  font-family: "HarmonyOS_Sans";*/
/*  src: url("../fonts/HarmonyOS_Sans_SC_Thin.ttf");*/
/*  font-weight: 200;*/
/*}*/
/*@font-face {*/
/*  font-family: "HarmonyOS_Sans";*/
/*  src: url("../fonts/HarmonyOS_Sans_SC_Light.ttf");*/
/*  font-weight: 300;*/
/*}*/
/*@font-face {*/
/*  font-family: "HarmonyOS_Sans";*/
/*  src: url("../fonts/HarmonyOS_Sans_SC_Regular.ttf");*/
/*  font-weight: normal;*/
/*}*/
/*@font-face {*/
/*  font-family: "HarmonyOS_Sans";*/
/*  src: url("../fonts/HarmonyOS_Sans_SC_Medium.ttf");*/
/*  font-weight: 500;*/
/*}*/
/*@font-face {*/
/*  font-family: "HarmonyOS_Sans";*/
/*  src: url("../fonts/HarmonyOS_Sans_SC_Bold.ttf");*/
/*  font-weight: 600;*/
/*}*/
/*@font-face {*/
/*  font-family: "HarmonyOS_Sans";*/
/*  src: url("../fonts/HarmonyOS_Sans_SC_Black.ttf");*/
/*  font-weight: 700;*/
/*}*/
/*@font-face {*/
/*  font-family: "PillGothic600mg";*/
/*  src: url("../fonts/PillGothic600mg-Regular.ttf");*/
/*  font-weight: normal;*/
/*}*/
/*@font-face {*/
/*  font-family: "PillGothic600mg";*/
/*  src: url("../fonts/PillGothic600mg-Semibd.ttf");*/
/*  font-weight: 500;*/
/*}*/
/* --------------------------------------------------------------- 全站内容区 */
.container {
  width: 100%;
  max-width: 98%;
  margin: 0 auto;
}
.w1350 {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1350 {
    max-width: 70.3125%;
  }
}
@media (max-width:1630px) {
  .w1350 {
    max-width: 84.89583333%;
  }
}
@media (max-width:990px) {
  .w1350 {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1760 {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1760 {
    max-width: 91.66666667%;
  }
}
.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1200 {
    max-width: 62.5%;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 1.27rem;
  font-family: "HarmonyOS_Sans";
}
main.active {
  --header-height: 0.8rem;
}
@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;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img {
  width: 100%;
  height: auto;
}
/* --------------------------------------------------------------- 全站左右结构 */
.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;
  }
}
.wowFgR span {
  display: inline-block;
}
.wowRight {
  opacity: 0;
}
.wowTop {
  opacity: 0;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.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: var(--num_15);
}
.idxPageShow span {
  width: 9px;
  height: 9px;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
.images_bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.images_bg img,
.images_bg video {
  width: 100%;
  height: auto;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  color: #DDDDDD;
  font-weight: 500;
  line-height: 1;
  padding-left: 0.24rem;
  position: relative;
  z-index: 1;
}
.idx_title .t1::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 0.12rem;
  height: 0.12rem;
  flex-shrink: 0;
  background: var(--active_color);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_title .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.idx_title .list .o1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}
.idx_title .list .o2 {
  width: 100%;
  height: auto;
  color: #666666;
  margin-top: 0.1rem;
}
.idx_title .list .o3 {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
  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;
}
.idx_title .list .o3 .one {
  width: 100%;
  height: auto;
  padding-left: 0.22rem;
  position: relative;
  z-index: 1;
}
.idx_title .list .o3 .one::after {
  content: '';
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.06rem;
  height: 0.06rem;
  border: 2px solid var(--active_color);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_title .list .o3 .one span {
  font-weight: 600;
}
.idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.idx_more .more {
  min-width: 2.2rem;
  height: 0.68rem;
  min-height: 40px;
  padding: 0 0.32rem;
  flex-shrink: 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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: 100px;
  border: 1px solid #ffffffb6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_more .more span {
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font20);
}
.idx_more .more .icon {
  width: 0.12rem;
  height: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.idx_more .more .icon::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more .icon i {
  transform: scale(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  font-size: var(--font26);
  color: var(--active_color);
}
.idx_more .more:hover {
  border-color: #FFFFFF;
}
.idx_more .more:hover .icon::after {
  width: 0.52rem;
  height: 0.52rem;
}
.idx_more .more:hover .icon i {
  transform: scale(1);
}
.idx_more.bg000 .more {
  border-color: #0000004d;
}
.idx_more.bg000 .more span {
  color: #000000;
}
.idx_more.bg000 .more .icon::after {
  background: var(--active_color);
}
.idx_more.bg000 .more .icon i {
  color: #FFFFFF;
}
@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%;
  --time: 5s;
}
.idxPager .svgBox {
  width: 32px;
  height: 32px;
  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: 8px;
  height: 8px;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.idxPager .svgBox circle {
  stroke-dasharray: 0 102;
}
.idxPager .svgBox.active {
  opacity: 1;
}
.idxPager .svgBox.active circle {
  stroke-dasharray: 102 102;
  animation: svgine var(--time) linear;
}
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  background: #000;
}
.idx_banner .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_banner .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo {
  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;
}
.idx_banner .swiper_box ul li .centerInfo .text_box {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 3;
}
.idx_banner .swiper_box ul li .centerInfo .text_box .word_box {
  width: 100%;
  height: auto;
  color: var(--color_fff);
}
.idx_banner .swiper_box ul li .centerInfo .text_box .word_box .t1 {
  transform: translateX(50px);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.idx_banner .swiper_box ul li .centerInfo .text_box .word_box .t2 {
  font-weight: 500;
  margin-top: 0.24rem;
  transform: translateX(50px);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.idx_banner .swiper_box ul li .centerInfo .text_box .word_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  transform: translateX(50px);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  opacity: 0;
}
.idx_banner .swiper_box ul li .centerInfo .images_bg {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_banner .swiper_box ul li .centerInfo .images_bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.15;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .text_box .word_box .t1 {
  transform: translateX(0);
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  opacity: 1;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .text_box .word_box .t2 {
  transform: translateX(0);
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
  opacity: 1;
}
.idx_banner .swiper_box ul li.swiper-slide-active .centerInfo .text_box .word_box .idx_more {
  transform: translateX(0);
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
  opacity: 1;
}
.idx_banner .idxNumber {
  position: absolute;
  z-index: 4;
  width: auto;
  height: fit-content;
  left: 4.16666667%;
  top: 33%;
  font-size: var(--font16);
  color: var(--color_fff);
  text-align: end;
}
.idx_banner .idxNumber .swiper-pagination-current {
  display: block;
  font-size: var(--font40);
  font-weight: 500;
}
.idx_banner .idxNumber .swiper-pagination-total {
  display: inline-block;
  padding-left: 0.05rem;
}
.idx_banner .round {
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  bottom: 0;
  right: 0.8rem;
  transform: translateY(50%);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 10;
}
.idx_banner .round .icon {
  width: 2.04rem;
  height: 2.04rem;
  animation: run linear 18s infinite;
}
.idx_banner .round .arrow {
  position: absolute;
}
.idx_banner .round .arrow i {
  font-size: var(--font28);
  color: var(--active_color);
}
@media (max-width:1630px) {
  .idx_banner .idxPager,
  .idx_banner .idxNumber {
    left: 2%;
  }
}
@media (max-width:990px) {
  .idx_banner .idxNumber {
    display: none;
  }
  .idx_banner .swiper_box ul li .centerInfo .images_bg {
    height: auto !important;
  }
}
.idx_product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.81rem;
  padding-bottom: 1.67rem;
  background: url(../images/bg1.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.idx_product .box_info {
  width: 100%;
  height: auto;
}
.idx_product .box_info .left_box {
  width: 49.479%;
}
.idx_product .box_info .left_box .images {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_product .box_info .left_box .images .pb {
  padding-bottom: 80.4%;
}
.idx_product .box_info .left_box .images .pb .ab img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-100%);
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
  opacity: 0;
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_product .box_info .left_box .images .pb .ab img.active {
  z-index: 2;
  transform: translateX(0);
  opacity: 1;
}
.idx_product .box_info .right_box {
  width: 45.625%;
  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.6rem;
}
.idx_product .box_info .right_box .idx_title {
  width: 70%;
}
.idx_product .box_info .right_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;
  position: relative;
  z-index: 1;
}
.idx_product .box_info .right_box .content .word_box {
  width: 70%;
}
.idx_product .box_info .right_box .content .word_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #CCC;
  gap: 0.48rem;
}
.idx_product .box_info .right_box .content .word_box .item_box .item {
  width: auto;
  height: auto;
  padding-bottom: 0.48rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  font-weight: 600;
  color: #999999;
  cursor: pointer;
}
.idx_product .box_info .right_box .content .word_box .item_box .item i {
  font-size: var(--font20);
  opacity: 0;
  transform: translateX(-30px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .box_info .right_box .content .word_box .item_box .item:hover i {
  opacity: 1;
  transform: translateX(0px);
}
.idx_product .box_info .right_box .content .word_box .item_box .item.active {
  color: var(--color_000);
}
.idx_product .box_info .right_box .content .word_box .item_box .item.active i {
  opacity: 1;
  transform: translateX(0px);
}
.idx_product .box_info .right_box .content .word_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  overflow: hidden;
}
.idx_product .box_info .right_box .content .word_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_product .box_info .right_box .content .word_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.idx_product .box_info .right_box .content .word_box .swiper_box ul li .centerInfo .title {
  display: none !important;
}
.idx_product .box_info .right_box .content .word_box .swiper_box ul li .centerInfo .list {
  width: 100%;
  height: auto;
  line-height: 2.222;
}
.idx_product .box_info .right_box .content .word_box .swiper_box ul li .centerInfo .list .one {
  width: 100%;
  height: auto;
  color: var(--color_666);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
}
.idx_product .box_info .right_box .content .word_box .swiper_box ul li .centerInfo .list .one:hover {
  color: var(--color_000);
}
.idx_product .box_info .right_box .content .word_box .swiper_box ul li .centerInfo .images {
  margin-top: 0.6rem;
}
.idx_product .box_info .right_box .content .word_box .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 78%;
}
.idx_product .box_info .right_box .content .word_box .swiper_box ul li .centerInfo .images .pb .ab img {
  width: 100%;
  height: auto;
}
.idx_product .box_info .right_box .content .images_box {
  width: 57.2%;
  right: 0;
  top: 0;
  height: auto;
  position: absolute;
  transform: translateX(63%);
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_product .box_info .right_box .content .images_box .pb {
  padding-bottom: 78.4%;
}
.idx_product .box_info .right_box .content .images_box .pb .ab img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(0);
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
  opacity: 1;
}
.idx_product .box_info .right_box .content .images_box .pb .ab img.active {
  z-index: 1;
  transform: translateX(100%);
  opacity: 0;
}
@media (max-width:990px) {
  .idx_product .box_info {
    padding: 0 20px;
  }
  .idx_product .box_info .left_box {
    display: none;
  }
  .idx_product .box_info .right_box {
    width: 100%;
    height: auto;
  }
  .idx_product .box_info .right_box .idx_title {
    width: 100%;
    height: auto;
  }
  .idx_product .box_info .right_box .content {
    width: 100%;
    height: auto;
  }
  .idx_product .box_info .right_box .content .word_box {
    width: 100%;
    height: auto;
  }
  .idx_product .box_info .right_box .content .images_box {
    display: none;
  }
}
.idx_about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(../images/bg2.jpg) no-repeat;
  background-size: cover;
}
.idx_about .box_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.idx_about .box_info .left_box {
  width: 46.5625%;
  padding: 1rem 0;
  padding-left: 4.16666667%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_about .box_info .left_box .idx_title .t1 {
  color: #00000033;
}
.idx_about .box_info .left_box .content {
  width: 80%;
  height: auto;
  margin-top: 1.9rem;
}
.idx_about .box_info .left_box .content .t1 {
  padding-bottom: 0.64rem;
  position: relative;
  z-index: 1;
  line-height: 1.5;
  font-weight: 500;
}
.idx_about .box_info .left_box .content .t1::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  opacity: 0.2;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_about .box_info .left_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 0.48rem;
}
.idx_about .box_info .left_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.idx_about .box_info .left_box .content .item_box .item .icon {
  font-size: var(--font48);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.05rem;
  font-weight: 600;
}
.idx_about .box_info .left_box .content .item_box .item .icon i {
  font-size: var(--font14);
  padding: 0 0.13rem;
  width: fit-content;
  height: 0.24rem;
  min-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  font-style: unset;
  color: var(--active_color);
  font-weight: normal;
}
.idx_about .box_info .left_box .content .item_box .item .icon i::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--active_color);
  opacity: 0.1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_about .box_info .left_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  margin-top: 0.02rem;
  font-weight: 500;
}
.idx_about .box_info .right_box {
  width: 44.79%;
  padding-top: 0.9rem;
}
.idx_about .box_info .right_box .images {
  width: 100%;
  height: auto;
}
.idx_about .box_info .right_box .images img {
  width: 100%;
  height: auto;
}
.idx_about .iconBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.idx_about .iconBox .imgBox {
  position: absolute;
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_about .iconBox .imgBox .igBox {
  width: 100%;
  height: auto;
  position: absolute;
  width: var(--wh);
  height: var(--wh);
}
.idx_about .iconBox .imgBox .igBox .icon {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.idx_about .iconBox .imgBox .igBox .icon img {
  width: 100%;
  height: auto;
}
.idx_about .iconBox .imgBox .igBox .video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0.3;
}
.idx_about .iconBox .imgBox .igBox .video img {
  width: 100%;
  height: auto;
}
.idx_about .iconBox .line {
  position: absolute;
  left: 36%;
  width: 86.19%;
  top: -20%;
  animation: grow3 10s linear infinite;
}
@media (max-width:990px) {
  .idx_about .box_info {
    padding: 0 20px;
  }
  .idx_about .box_info .left_box {
    padding: 1rem 0;
  }
  .idx_about .box_info .left_box .content {
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }
  .idx_about .box_info .right_box {
    padding-top: 0;
  }
}
.idx_global {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.93rem;
  padding-bottom: 0.96rem;
  background: linear-gradient(185deg, #FFF 2.74%, #E9F4F4 149.48%);
}
.idx_global .box_info {
  width: 100%;
  height: auto;
  padding-left: 4.16666667%;
  padding-right: 7.8125%;
  position: relative;
  z-index: 1;
}
.idx_global .box_info .left_box {
  width: 37%;
  padding-top: 0.25rem;
}
.idx_global .box_info .left_box .idx_title .list {
  padding-right: 0.9rem;
}
.idx_global .box_info .left_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.idx_global .box_info .right_box {
  width: 49.85%;
}
.idx_global .box_info .right_box .video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_global .box_info .right_box .video video {
  width: 100%;
  height: auto;
  border-radius: 999px;
  overflow: hidden;
}
.idx_global .box_info .right_box .video .img_box {
  position: absolute;
  z-index: 2;
  width: 77%;
  top: -9%;
  opacity: 0.7;
  left: 35%;
  height: auto;
}
.idx_global .box_info .right_box .video .img_box img {
  width: 100%;
  height: auto;
}
.idx_global .content {
  width: 100%;
  height: auto;
  margin-top: -2.1rem;
  position: relative;
  z-index: 2;
}
.idx_global .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #FFFFFF;
  margin-top: 0.32rem;
}
.idx_global .content .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_global .content .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  opacity: 0.3;
  background: linear-gradient(90deg, rgba(152, 152, 152, 0.2) 0%, #989898 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_global .content .item_box .item .pb {
  padding-bottom: 40%;
}
.idx_global .content .item_box .item:last-child::after {
  opacity: 0;
}
.idx_global .iconBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.idx_global .iconBox .imgBox {
  position: absolute;
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_global .iconBox .imgBox .icon {
  position: absolute;
  width: var(--wh);
  height: var(--wh);
  z-index: 1;
}
.idx_global .iconBox .imgBox .icon img {
  width: 100%;
  height: auto;
}
.idx_global .iconBox .imgBox .video {
  width: var(--wh);
  height: var(--wh);
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0.3;
}
.idx_global .iconBox .imgBox .video img {
  width: 100%;
  height: auto;
}
.idx_global .iconBox .line {
  position: absolute;
  left: 36%;
  width: 86.19%;
  top: -20%;
  animation: grow3 10s linear infinite;
}
@media (max-width:990px) {
  .idx_global .box_info {
    padding: 0 20px;
  }
  .idx_global .content .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #e5e5e5cc;
    border-left: 1px solid #e5e5e5cc;
  }
  .idx_global .content .item_box .item {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #e5e5e5cc;
    border-right: 1px solid #e5e5e5cc;
  }
  .idx_global .content .item_box .item::after {
    background: #e5e5e5cc;
    display: none;
  }
  .idx_global .box_info .right_box .video {
      width: 80%;
      height: auto;
      position: relative;
      z-index: 1;
      margin-left: 10%;
  }
}
.idx_social {
  width: 100%;
  height: 200vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_social .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_social .maskBox .socialCon1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_social .maskBox .socialCon1 .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
  mask: url(../svg/logo.svg);
  mask-repeat: no-repeat;
  mask-size: 33.59375%;
  mask-position: 24.84375% center;
}
.idx_social .maskBox .socialCon1 .svg {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
}
.idx_social .maskBox .socialCon1 .word {
  width: 100%;
  height: fit-content;
  white-space: nowrap;
  top: 50%;
  position: absolute;
  font-weight: 800;
  transform: translateY(-100%);
  color: var(--active_color);
  opacity: 0.05;
  letter-spacing: -0.02rem;
}
.idx_social .maskBox .socialCon2 {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 5;
  top: 37.2vh;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4.94791667%;
  --color1: #CCCC;
  --color2: #000;
  --color3: #00A8B0;
  --color4: #666;
  --opacity: 1;
}
.idx_social .maskBox .socialCon2 .boxInfo {
  width: 30.5%;
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding: 1.28rem 0;
}
.idx_social .maskBox .socialCon2 .boxInfo .idx_title .t1 {
  line-height: 0.9;
  color: var(--color1);
  opacity: var(--opacity);
}
.idx_social .maskBox .socialCon2 .boxInfo .idx_title .list {
  color: var(--color2);
}
.idx_social .maskBox .socialCon2 .boxInfo .idx_title .list .o1::after {
  background: var(--color3);
}
.idx_social .maskBox .socialCon2 .boxInfo .idx_title .list .o2 {
  color: var(--color4);
}
.idx_social .maskBox .socialCon2 .boxInfo .content {
  width: 100%;
  height: auto;
}
.idx_social .maskBox .socialCon2 .boxInfo .content .word {
  color: #FFFFFF;
  line-height: 1.5;
  font-weight: 300;
}
.idx_social .maskBox .socialCon2 .boxInfo .content .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
@media (max-width:990px) {
  .idx_social {
    width: 100%;
    height: auto;
  }
  .idx_social .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .idx_social .maskBox .socialCon2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    background: #0000002f;
    --color1: #FFFFFF;
    --color2: #FFFFFF;
    --color3: #FFFFFF;
    --color4: #FFFFFF;
    --opacity: 1;
  }
  .idx_social .maskBox .socialCon2 .boxInfo {
    width: 100%;
    height: auto;
    padding: 1.6rem 20px;
  }
  .idx_social .maskBox .socialCon2 .boxInfo .content {
    margin-top: 1rem;
  }
  .idx_social .maskBox .socialCon1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0.3;
  }
  .idx_social .maskBox .socialCon1 .mask {
    mask: unset !important;
  }
  .idx_social .maskBox .socialCon1 .svg {
    display: none;
  }
  .idx_social .maskBox .socialCon1 .word {
    display: none;
  }
}
.idx_news {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  padding-bottom: 1.2rem;
}
.idx_news .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_news .top_box .idx_title {
  width: fit-content;
}
.idx_news .top_box .idx_more {
  width: fit-content;
}
.idx_news .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.idx_news .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_news .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  position: relative;
  z-index: 1;
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_news .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_news .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 67%;
}
.idx_news .swiper_box ul li .centerInfo .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_news .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  position: relative;
  z-index: 1;
}
.idx_news .swiper_box ul li .centerInfo .word .time {
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_news .swiper_box ul li .centerInfo .word .t1 {
  margin-top: 0.2rem;
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: calc(2em * 1.35);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx_news .swiper_box ul li .centerInfo .word .icon {
  margin-top: 0.37rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_news .swiper_box ul li .centerInfo .word .icon span {
  width: 0.52rem;
  height: 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: 1px solid var(--active_color);
  border-radius: 100px;
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_news .swiper_box ul li .centerInfo .word .icon span i {
  font-size: var(--font20);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_news .swiper_box ul li .centerInfo .imgBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_news .swiper_box ul li .centerInfo .imgBg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: unset;
}
.idx_news .swiper_box ul li .centerInfo:hover .imgBg {
  width: 100%;
  opacity: 1;
}
.idx_news .swiper_box ul li .centerInfo:hover .images .pb .ab img {
  transform: scale(1.02);
}
.idx_news .swiper_box ul li .centerInfo:hover .word .time {
  color: #FFFFFF;
}
.idx_news .swiper_box ul li .centerInfo:hover .word .t1 {
  color: #FFFFFF;
}
.idx_news .swiper_box ul li .centerInfo:hover .word .icon span {
  border-color: #FFFFFF;
  background: #FFFFFF;
}
.idx_subsidiaries {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  background: url(../images/bg7.png) no-repeat;
  background-size: cover;
}
.idx_subsidiaries .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_subsidiaries .center_box .wordBox {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem 0.63rem;
}
.idx_subsidiaries .center_box .wordBox .idx_title {
  width: fit-content;
}
.idx_subsidiaries .center_box .wordBox .idx_title .list {
  margin-top: 0.15rem;
}
.idx_subsidiaries .center_box .wordBox .line {
  width: 1px;
  height: auto;
  background: #000000;
  opacity: 0.1;
}
.idx_subsidiaries .center_box .wordBox .item_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.9rem;
}
.idx_subsidiaries .center_box .idx_more {
  width: fit-content;
}
@media (max-width:660px) {
  .idx_subsidiaries .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .idx_subsidiaries .center_box .wordBox {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_subsidiaries .center_box .wordBox .line {
    display: none;
  }
  .idx_subsidiaries .center_box .wordBox .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
  .idx_subsidiaries .center_box .wordBox .item_box .item {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .idx_subsidiaries .center_box .idx_more {
    width: 100%;
    height: auto;
    margin-top: 0.6rem;
  }
}
.ins_title {
  width: 100%;
  height: auto;
}
.ins_title .t1 {
  font-weight: 500;
  letter-spacing: -1.12px;
  line-height: 1.2;
}
.ins_title .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
}
/* --------------------------------------------------------------- 内页banner */
.ins_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_banner .center_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.64rem;
}
.ins_banner .center_box .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: #FFF;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_banner .center_box .word_box .left_box {
  width: fit-content;
}
.ins_banner .center_box .word_box .left_box .t1 {
  position: relative;
  z-index: 1;
  padding-left: 0.24rem;
  font-family: "PillGothic600mg";
}
.ins_banner .center_box .word_box .left_box .t1::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #FFF;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0.25em;
}
.ins_banner .center_box .word_box .left_box .t1 span {
  opacity: 0.6;
}
.ins_banner .center_box .word_box .left_box .t2 {
  margin-top: 0.1rem;
}
.ins_banner .center_box .word_box .right_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 0.08rem;
  font-size: var(--font20);
}
.ins_banner .center_box .word_box .right_box .icon {
  width: 0.48rem;
  height: 0.48rem;
  display: -webkit-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_banner .center_box .word_box .right_box .one {
  color: #FFF;
  opacity: 0.6;
}
.ins_banner .center_box .word_box .right_box .one.active {
  opacity: 1;
}
.ins_banner .center_box .word_box .right_box span {
  opacity: 0.6;
}
.ins_banner .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_banner .img_w100::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(0deg, #124C6B 10%, #00979f00 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_banner .img_w100 .wap {
  min-height: 50vh;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_banner.bgCss .img_w100::after {
  opacity: 0.9;
  background: linear-gradient(180deg, rgba(0, 152, 159, 0) 0%, #00989F 100%) !important;
}
@media (max-width:990px) {
  .ins_banner .center_box .word_box .right_box {
    display: none;
  }
}
.imgBoxBg {
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.imgBoxBg .igBox {
  width: var(--wh);
  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;
}
.imgBoxBg .igBox .icon {
  position: absolute;
  width: 100%;
  height: 100%;
}
.imgBoxBg .igBox .icon img {
  width: 100%;
  height: 100%;
}
.imgBoxBg .igBox .video {
  width: 100%;
  height: auto;
}
.imgBoxBg .igBox .video img {
  width: 100%;
  height: 100%;
}
.imgBoxBg.vion .igBox .video {
  opacity: 0;
}
.iconRotate {
  width: auto;
  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;
  color: #999999;
}
.iconRotate i {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.iconRotate i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #00989F33;
  border-radius: 50%;
  animation: aby 3s linear infinite;
}
.iconRotate i::before {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #00989F33;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: abx 3s linear infinite;
}
/* --------------------------------------------------------------- 关于我们 */
@keyframes abx {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes aby {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.1rem;
  padding-bottom: 0.96rem;
  background: linear-gradient(166deg, #60BDC7 -153.76%, #FFF 43.79%);
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}
.ins_aboutCon1 .center_box .word_box {
  width: 49.203%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 1.25rem;
}
.ins_aboutCon1 .center_box .word_box .icon {
  min-width: 1rem;
  flex-shrink: 0;
  font-weight: 500;
  font-family: "PillGothic600mg";
}
.ins_aboutCon1 .center_box .word_box .icon p {
  opacity: 0.3;
}
.ins_aboutCon1 .center_box .word_box .word {
  width: 74%;
  height: auto;
}
.ins_aboutCon1 .center_box .word_box .word .t1 {
  line-height: 1.15;
  letter-spacing: -0.012rem;
  font-weight: 500;
}
.ins_aboutCon1 .center_box .word_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.3rem;
  line-height: 1.5556;
  max-height: 3.4rem;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--active_color) #d4d6d7;
}
.ins_aboutCon1 .center_box .word_box .word .t2::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background-color: #ffffff;
}
.ins_aboutCon1 .center_box .word_box .word .t2::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
.ins_aboutCon1 .center_box .word_box .word .t2::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0.76);
}
.ins_aboutCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 8px;
  border: 1px solid #00989F4D;
  background: linear-gradient(180deg, #FFF 0%, #FFF 100%);
  box-shadow: 0px 24px 60px 0px rgba(41, 165, 170, 0.12);
  margin-top: 1.2rem;
  background-image: url(../images/bg8.png);
  background-color: #FFF;
  background-position: bottom center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.ins_aboutCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.64rem;
  padding-top: 0.48rem;
  position: relative;
  z-index: 1;
}
.ins_aboutCon1 .center_box .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #00989F4D;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon1 .center_box .item_box .item .iconB {
  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;
  color: #999999;
}
.ins_aboutCon1 .center_box .item_box .item .iconB i {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon1 .center_box .item_box .item .iconB i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #00989F33;
  border-radius: 50%;
  animation: aby 3s linear infinite;
}
.ins_aboutCon1 .center_box .item_box .item .iconB i::before {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #00989F33;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: abx 3s linear infinite;
}
.ins_aboutCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
}
.ins_aboutCon1 .center_box .item_box .item .word .icon {
  width: 1.24rem;
}
.ins_aboutCon1 .center_box .item_box .item .word .t1 {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
  line-height: 125%;
  font-weight: 500;
}
.ins_aboutCon1 .center_box .item_box .item:last-child::after {
  opacity: 0;
}
.ins_aboutCon1 .bg_img {
  width: 39%;
  height: 100%;
  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;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
}
.ins_aboutCon1 .bg_move {
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 2;
}
.ins_aboutCon1 .bg_move .imgBox {
  width: var(--wh);
  position: absolute;
}
.ins_aboutCon1 .bg_move .imgBox:first-child {
  left: 0;
}
.ins_aboutCon1 .bg_move .imgBox:last-child {
  right: 0;
}
@media (max-width:990px) {
  .ins_aboutCon1 .bg_img {
    width: 100%;
    height: 100%;
    padding-bottom: 2rem;
    top: 318px;
  }
  .ins_aboutCon1 .center_box .word_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .center_box .word_box .icon {
    display: none;
  }
  .ins_aboutCon1 .center_box .word_box .word {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .center_box .word_box .word .t1 {
    font-size: 16px;
  }
  .ins_aboutCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 5.5rem;
  }
  .ins_aboutCon1 .center_box .item_box .item {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #00989F4D;
    padding: 0.4rem 0.2rem;
  }
  .ins_aboutCon1 .center_box .item_box .item .iconB i {
    display: none;
  }
  .ins_aboutCon1 .center_box .item_box .item .word {
    margin-top: 0.2rem;
    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.4rem;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.24rem;
  padding-bottom: 0.96rem;
}
.ins_aboutCon2 .contentInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .contentInfo .content1 {
  width: 100%;
  height: auto;
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
}
.ins_aboutCon2 .contentInfo .content1 .maskBox {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.ins_aboutCon2 .contentInfo .content1 .title {
  width: 100%;
  height: auto;
  font-weight: 500;
}
.ins_aboutCon2 .contentInfo .content1 .listBox {
  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;
  position: relative;
  z-index: 1;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox {
  width: fit-content;
  margin-top: 0.29rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle {
  width: 6px;
  height: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle::after {
  content: '';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: var(--active_color);
  z-index: 1;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  border-radius: 50%;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item {
  width: max-content;
  height: auto;
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0.24rem;
  gap: 0.32rem;
  border-radius: 0.08rem;
  max-width: 5.48rem;
  min-width: 4.5rem;
  min-height: 2.3rem;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .img_box {
  width: 3.04rem;
  flex-shrink: 0;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .img_box .pb {
  padding-bottom: 63%;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .word {
  min-width: 1.65rem;
  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.2rem;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .word .wordBox {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .word .wordBox .iconI {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateX(0.12rem);
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .word .wordBox .iconI::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #00989F33;
  border-radius: 50%;
  animation: aby 3s linear infinite;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .word .wordBox .iconI::before {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #00989F33;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: abx 3s linear infinite;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .word .wordBox .t1 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: #333;
  font-weight: 500;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .word .year {
  color: #999999;
  font-weight: 500;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #00989F -24.27%, rgba(0, 152, 159, 0.3) 100%);
  opacity: 0.1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  border-radius: 0.08rem;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle.left100 .item {
  right: 1rem;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle.left100 .item::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.28rem 0.35rem 0 0;
  border-color: #00979f17 transparent transparent transparent;
  position: absolute;
  left: 100%;
  top: 50%;
}
.ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle.right100 .item {
  left: 1rem;
  -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_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle.right100 .item::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 30px 28px 0;
  border-color: transparent #00979f17 transparent transparent;
  position: absolute;
  right: 100%;
  top: 50%;
}
.ins_aboutCon2 .contentInfo .content1.bgImg {
  background-image: url(../images/bg9.jpg);
  background-attachment: fixed;
}
.ins_aboutCon2 .contentInfo .content1:last-child {
  padding-bottom: 0;
}
@media (max-width:990px) {
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle::after,
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle::before {
    display: none;
  }
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle.left100 .item {
    right: 0;
    -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_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle.left100 .item::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 28px 0;
    border-color: transparent #00979f17 transparent transparent;
    position: absolute;
    right: 100%;
    top: 50%;
    left: unset;
  }
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle.right100 .item {
    left: 0;
    -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_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle.right100 .item::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 28px 0;
    border-color: transparent #00979f17 transparent transparent;
    position: absolute;
    right: 100%;
    top: 50%;
  }
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item {
    position: relative;
    z-index: 1;
    width: calc(100%);
    height: auto;
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .word {
    width: 100%;
  }
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item .img_box {
    width: 40%;
    flex-direction: 0;
  }
  .ins_aboutCon2 .contentInfo .content1 .listBox .iconBox .circle .item::before {
    content: "";
    width: 0.05rem !important;
    height: 0.05rem !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    background: none;
    border-style: solid;
    border-width: 5px !important;
    border-color: var(--active_color) !important;
    left: 0;
    left: 0 !important;
    right: unset;
    border-radius: 50%;
    top: 0 !important;
  }
  .ins_aboutCon2 .contentInfo .content1 .listBox .icon {
    display: none;
  }
}
.ins_aboutCon2 .icon_down {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.32rem;
}
.ins_aboutCon2 .icon_down .word {
  font-size: var(--font24);
  color: #00989F;
  font-weight: 500;
  line-height: 1.333;
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(../images/bg17.jpg) no-repeat;
  background-size: cover;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
  color: #FFF;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-top: 1.2rem;
  padding-bottom: 1.04rem;
}
.ins_aboutCon3 .center_box .content {
  width: 50%;
  padding-left: 1rem;
}
.ins_aboutCon3 .center_box .content .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .center_box .content .swiper_info .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.43rem;
  position: relative;
  z-index: 1;
  padding-bottom: 0.24rem;
}
.ins_aboutCon3 .center_box .content .swiper_info .item_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.4;
}
.ins_aboutCon3 .center_box .content .swiper_info .item_box .item {
  width: auto;
  height: auto;
  font-size: var(--font20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 1;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}
.ins_aboutCon3 .center_box .content .swiper_info .item_box .item i {
  font-size: var(--font20);
  position: absolute;
  right: 0;
  opacity: 0;
}
.ins_aboutCon3 .center_box .content .swiper_info .item_box .item.active {
  padding-right: 0.3rem;
  opacity: 1;
}
.ins_aboutCon3 .center_box .content .swiper_info .item_box .item.active i {
  opacity: 1;
}
.ins_aboutCon3 .center_box .content .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .content .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content .swiper_info .swiper_box ul li .t1 {
  font-weight: 500;
}
.ins_aboutCon3 .center_box .content .swiper_info .swiper_box ul li .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  line-height: 1.33;
}
.ins_aboutCon3 .center_box .content .swiper_info .swiper_box ul li .images {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_aboutCon3 .center_box .content .swiper_info .swiper_box ul li .images img {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content .swiper_info .pager_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  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.82rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_aboutCon3 .center_box .content .swiper_info .pager_box .pager {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_aboutCon3 .center_box .content .swiper_info .pager_box .pager .swiperBtn2 {
  width: 0.6rem;
  height: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid #FFF;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .content .swiper_info .pager_box .pager .swiperBtn2 i {
  font-size: var(--font20);
  font-weight: 500;
}
.ins_aboutCon3 .center_box .content .swiper_info .pager_box .pager .swiperBtn2:hover {
  background: #FFFF;
  color: var(--active_color);
}
.ins_aboutCon3 .center_box .content .swiper_info .pager_box .idxNumber {
  width: fit-content;
  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;
  font-family: "PillGothic600mg";
  line-height: 2;
}
.ins_aboutCon3 .center_box .content .swiper_info .pager_box .idxNumber .swiper-pagination-current {
  font-size: var(--font40);
  line-height: 1;
}
.ins_aboutCon3 .center_box .content .swiper_info .pager_box .idxNumber .swiper-pagination-total {
  font-size: var(--font16);
}
.ins_aboutCon3 .img_box {
  width: 50vw;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
}
.ins_aboutCon3 .img_box .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .img_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .img_box .img.active {
  z-index: 2;
  opacity: 1;
}
@media (max-width:990px) {
  .ins_aboutCon3 .img_box {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_aboutCon3 .center_box .content {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
  .ins_aboutCon3 .center_box .content * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .ins_aboutCon3 .center_box .content *::-webkit-scrollbar {
    display: none;
  }
  .ins_aboutCon3 .center_box .content .swiper_info {
    margin-top: 1rem;
  }
  .ins_aboutCon3 .center_box .content .item_box {
    width: 100%;
    height: auto;
    overflow: auto;
    gap: 0.4rem;
  }
  .ins_aboutCon3 .center_box .content .item_box .item {
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
  background: linear-gradient(179deg, #DDF0F1 2.94%, #EEF7F7 99.54%);
}
.ins_aboutCon4 .ins_title {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .swiper_info {
  width: 100%;
  height: 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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 0.45rem;
}
.ins_aboutCon4 .swiper_box {
  width: 80.3%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
}
.ins_aboutCon4 .swiper_box ul li {
  width: 100%;
  height: auto;
  z-index: 1;
}
.ins_aboutCon4 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFF;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.356);
  box-shadow: 0px 8px 32px 0px rgba(0, 152, 159, 0.08);
  backdrop-filter: blur(24px);
}
.ins_aboutCon4 .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon4 .swiper_box ul li .centerInfo .img::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon4 .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 105%;
}
.ins_aboutCon4 .swiper_box ul li .centerInfo .img .pb .ab {
  padding: 0.48rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ins_aboutCon4 .swiper_box ul li .centerInfo .word {
  font-size: var(--font18);
  text-align: center;
  padding: 0.3rem 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.6;
}
.ins_aboutCon4 .swiper_box ul li.swiper-slide-active {
  font-weight: 600;
  z-index: 4;
}
.ins_aboutCon4 .swiper_box ul li.swiper-slide-active .centerInfo {
  opacity: 1;
  background: #FFF;
}
.ins_aboutCon4 .swiper_box ul li.swiper-slide-active .centerInfo .img {
  opacity: 1;
}
.ins_aboutCon4 .swiper_box ul li.swiper-slide-active .centerInfo .word {
  opacity: 1;
}
.ins_aboutCon4 .swiper_box ul li.swiper-slide-prev,
.ins_aboutCon4 .swiper_box ul li.swiper-slide-next {
  z-index: 3;
}
.ins_aboutCon4 .swiper_box ul li.swiper-slide-prev .centerInfo,
.ins_aboutCon4 .swiper_box ul li.swiper-slide-next .centerInfo {
  opacity: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 8px 32px 0px rgba(0, 152, 159, 0.08);
  backdrop-filter: blur(24px);
}
.ins_aboutCon4 .swiper_box ul li.swiper-slide-prev .centerInfo .img,
.ins_aboutCon4 .swiper_box ul li.swiper-slide-next .centerInfo .img {
  opacity: 1;
}
.ins_aboutCon4 .swiper_box ul li.swiper-slide-prev .centerInfo .word,
.ins_aboutCon4 .swiper_box ul li.swiper-slide-next .centerInfo .word {
  opacity: 1;
}
.ins_aboutCon4 .swiperBtn2 {
  width: 0.6rem;
  height: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon4 .swiperBtn2 i {
  font-size: var(--font20);
  font-weight: 500;
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon4 .swiperBtn2:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_aboutCon4 .swiperBtn2:hover i {
  color: #FFF;
}
/* --------------------------------------------------------------- 国际化 */
.ins_interCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.ins_interCon1 .box_info {
  width: 100%;
  height: auto;
}
.ins_interCon1 .box_info .left_box {
  width: 36.5%;
  height: auto;
  padding-bottom: 1.8rem;
}
.ins_interCon1 .box_info .left_box .ins_title .t2 {
  color: #666666;
  margin-top: 0.4rem;
  line-height: 1.55;
  letter-spacing: -0.36px;
}
.ins_interCon1 .box_info .left_box .item_list {
  width: 86%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.96rem;
  overflow: hidden;
}
.ins_interCon1 .box_info .left_box .item_list .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.38rem 0;
}
.ins_interCon1 .box_info .left_box .item_list .item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.16;
}
.ins_interCon1 .box_info .right_box {
  width: 48%;
}
.ins_interCon1 .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0.67rem;
  padding-bottom: 0.7rem;
  margin-top: calc(1.5rem * -1);
  border-radius: 8px;
  border: 1px solid #00989F4D;
  border-left: 0;
  border-right: 0;
  background: #fcfcfc94;
  backdrop-filter: blur(10px);
  box-shadow: 0px 24px 60px 0px rgba(41, 165, 170, 0.12);
}
.ins_interCon1 .swiper_info .img_bg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_interCon1 .swiper_info .swiper_box {
  width: 33%;
  position: relative;
  z-index: 1;
}
.ins_interCon1 .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_interCon1 .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  opacity: 0.4;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_interCon1 .swiper_info .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_interCon1 .swiper_info .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 60%;
}
.ins_interCon1 .swiper_info .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_interCon1 .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  text-align: center;
  font-size: var(--font18);
  opacity: 0;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.ins_interCon1 .swiper_info .swiper_box ul li.swiper-slide-active .centerInfo {
  opacity: 1;
}
.ins_interCon1 .swiper_info .swiper_box ul li.swiper-slide-active .centerInfo .word {
  opacity: 1;
  transform: translateX(0);
}
.ins_interCon1 .swiper_info .pager {
  width: 1.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;
  position: relative;
  z-index: 2;
}
.ins_interCon1 .swiper_info .swiperBtn2 {
  width: 0.6rem;
  height: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_interCon1 .swiper_info .swiperBtn2 i {
  font-size: var(--font20);
  font-weight: 500;
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_interCon1 .swiper_info .swiperBtn2:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_interCon1 .swiper_info .swiperBtn2:hover i {
  color: #FFF;
}
@media (max-width:990px) {
  .ins_interCon1 .box_info .left_box {
    padding-bottom: 0;
  }
  .ins_interCon1 .swiper_info {
    padding-bottom: 0.8rem;
  }
  .ins_interCon1 .swiper_info .swiper_box {
    width: 80%;
  }
  .ins_interCon1 .swiper_info .pager {
    display: none;
  }
  .ins_interCon1 .swiper_info .idxPageHide {
    position: absolute;
    bottom: 10px;
  }
}
@keyframes scla {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.ins_interCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.97rem;
  padding-bottom: 0.96rem;
  background: linear-gradient(341deg, #CDE6E9 -33.93%, #F9FDFF 86.28%);
}
.ins_interCon2 .box_info {
  width: 100%;
  height: auto;
}
.ins_interCon2 .box_info .left_box {
  width: 30.41%;
  padding-top: 0.23rem;
  padding-bottom: 0.9rem;
}
.ins_interCon2 .box_info .left_box .ins_title .t2 {
  margin-top: 0.4rem;
  line-height: 1.56;
}
.ins_interCon2 .box_info .right_box {
  width: 69.59%;
  height: auto;
}
.ins_interCon2 .box_info .right_box .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_interCon2 .box_info .right_box .images_box .img {
  width: 100%;
  height: auto;
}
.ins_interCon2 .box_info .right_box .images_box .img img {
  width: 100%;
  height: auto;
}
.ins_interCon2 .box_info .right_box .images_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_interCon2 .box_info .right_box .images_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_interCon2 .box_info .right_box .images_box .item_box .item i {
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50%;
}
.ins_interCon2 .box_info .right_box .images_box .item_box .item i::after {
  content: '';
  z-index: 3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.05rem;
  height: 0.05rem;
  background: var(--active_color);
  position: absolute;
  border-radius: 50%;
}
.ins_interCon2 .box_info .right_box .images_box .item_box .item i::before {
  content: '';
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.42rem;
  height: 0.42rem;
  background: #FFFFFF;
  position: absolute;
  border-radius: 50%;
  animation: scla 5s linear infinite;
}
.ins_interCon2 .box_info .right_box .images_box .item_box .item span {
  width: max-content;
  position: absolute;
  font-size: var(--font20);
}
.ins_interCon2 .box_info .right_box .images_box .item_box .item.left span {
  left: 0.25rem;
}
.ins_interCon2 .box_info .right_box .images_box .item_box .item.right span {
  right: 0.25rem;
}
.ins_interCon2 .box_info .right_box .images_box .item_box .item.top span {
  top: 0.25rem;
}
.ins_interCon2 .box_info .right_box .images_box .item_box .item.bottom span {
  bottom: 0.25rem;
}
.ins_interCon2 .item_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 8px;
  border: 1px solid #00989F4D;
  margin-top: -0.7rem;
  position: relative;
  z-index: 10;
  background-image: url(../images/bg11.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.ins_interCon2 .item_list .item {
  width: 100%;
  height: auto;
  padding: 0.48rem 0.64rem;
  position: relative;
  z-index: 1;
}
.ins_interCon2 .item_list .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #00989F4D;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_interCon2 .item_list .item .iconB {
  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;
  color: #999999;
}
.ins_interCon2 .item_list .item .iconB i {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_interCon2 .item_list .item .iconB i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #00989F33;
  border-radius: 50%;
  animation: aby 3s linear infinite;
}
.ins_interCon2 .item_list .item .iconB i::before {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.12rem;
  background: #00989F33;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: abx 3s linear infinite;
}
.ins_interCon2 .item_list .item .word {
  width: 100%;
  height: auto;
  margin-top: 1.4rem;
}
.ins_interCon2 .item_list .item .word .t1 {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
  line-height: 1;
  font-weight: 500;
}
.ins_interCon2 .item_list .item .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
.ins_interCon2 .item_list .item:last-child::before {
  opacity: 0;
}
@media (max-width:990px) {
  .ins_interCon2 .box_info .right_box .images_box .item_box .item span {
    font-size: 12px;
    transform: scale(0.8);
  }
  .ins_interCon2 .item_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_interCon2 .item_list .item {
    border-bottom: 1px solid #00989F4D;
  }
  .ins_interCon2 .item_list .item:last-child {
    border: 0;
  }
  .ins_interCon2 .item_list .item .word {
    margin-top: 0.6rem;
  }
  .ins_interCon2 .item_list .item .word .t1 {
    font-size: var(--font36);
  }
  .ins_interCon2 .imgBoxBg {
    --wh: 4rem;
    opacity: 0.5;
    z-index: -1;
  }
}
.ins_ins_interCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  padding-bottom: 0.64rem;
  background-attachment: fixed;
  background-image: url(../images/bg13.jpg);
  background-size: cover;
}
.ins_ins_interCon3 .item_box {
  width: 100%;
  height: auto;
  margin-top: 3.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffffa6;
  backdrop-filter: blur(10px);
  overflow: hidden;
  border: 1px solid rgba(0, 152, 159, 0.3);
  border-radius: 0.08rem;
}
.ins_ins_interCon3 .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.64rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_ins_interCon3 .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background: rgba(0, 152, 159, 0.3);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_ins_interCon3 .item_box .item .iconBox {
  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;
  color: #666666;
  font-size: var(--font40);
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_ins_interCon3 .item_box .item .iconBox img {
  filter: brightness(0) invert(0.5);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.4rem;
}
.ins_ins_interCon3 .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 1.1rem;
  font-size: var(--font18);
}
.ins_ins_interCon3 .item_box .item .word p {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.08rem;
  color: #666;
  line-height: 1.3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_ins_interCon3 .item_box .item .word p::after {
  content: '';
  position: absolute;
  width: 0.03rem;
  height: 0.03rem;
  background: #000;
  opacity: 0.8;
  border-radius: 50%;
  left: 0;
  top: 0.6em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_ins_interCon3 .item_box .item:hover .iconBox {
  color: #000;
}
.ins_ins_interCon3 .item_box .item:hover .iconBox img {
  filter: unset;
}
.ins_ins_interCon3 .item_box .item:hover .word p {
  color: #333;
}
.ins_ins_interCon3 .item_box .bg_img {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_ins_interCon3 .item_box .bg_img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_ins_interCon3 {
    background-attachment: unset;
  }
  .ins_ins_interCon3 .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0.6rem;
    background: #ffffff75;
  }
  .ins_ins_interCon3 .item_box .item {
    border-bottom: 1px solid #00989F4D;
  }
  .ins_ins_interCon3 .item_box .item .word {
    margin-top: 0.6rem;
  }
  .ins_ins_interCon3 .item_box .item:last-child {
    border-bottom: 0;
  }
}
/* --------------------------------------------------------------- 社会责任 */
.ins_responCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1.4rem;
  background-attachment: fixed;
  background-image: url(../images/bg14.jpg);
  background-size: cover;
}
.ins_responCon1 .title {
  color: #000;
  font-size: var(--font32);
  font-weight: 500;
  line-height: 162.5%;
  letter-spacing: -0.64px;
  width: 58.86%;
}
.ins_responCon1 .item_box {
  width: 58.86%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  overflow: hidden;
  gap: 0.48rem 0.96rem;
}
.ins_responCon1 .item_box .item {
  width: calc(26% - 0.64rem);
  height: auto;
  padding: 0.48rem 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.ins_responCon1 .item_box .item .icon {
  font-size: var(--font80);
  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;
  font-weight: 500;
}
.ins_responCon1 .item_box .item .icon i {
  font-size: var(--font16);
  font-style: normal;
  padding: 0.04rem 0.12rem;
  background: #00a7b01f;
  color: var(--active_color);
  border-radius: 100px;
}
.ins_responCon1 .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
  font-size: var(--font18);
  line-height: 1.3;
}
.ins_responCon1 .item_box .item.w37 {
  width: calc(37% - 0.64rem);
}
.ins_responCon1 .item_box .line {
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0.2;
}
@media (max-width:990px) {
  .ins_responCon1 .title {
    width: 100%;
    height: auto;
  }
  .ins_responCon1 .item_box {
    width: 100%;
    height: auto;
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_responCon1 .item_box .item {
    width: 100% !important;
    height: auto;
    padding: 0.3rem 0;
  }
  .ins_responCon1 .item_box .line {
    display: none;
  }
}
.ins_responCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_responCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_responCon2 .center_box .box_info {
  width: 100%;
  height: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #DDDDDD;
}
.ins_responCon2 .center_box .box_info .left_box {
  width: 34.6%;
  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_responCon2 .center_box .box_info .left_box .icon {
  color: #999;
  font-weight: 500;
  line-height: 2;
}
.ins_responCon2 .center_box .box_info .left_box .word {
  color: #000;
  font-weight: 500;
}
.ins_responCon2 .center_box .box_info .right_box {
  width: 44.3%;
}
.ins_responCon2 .center_box .box_info .right_box .word {
  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.35rem;
  color: #666;
}
.ins_responCon2 .center_box .box_info .right_box .word span {
  display: inline-block;
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}
.ins_responCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}
.ins_responCon2 .center_box .swiper_box ul li {
  width: 30%;
  height: auto;
}
.ins_responCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_responCon2 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_responCon2 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 60%;
}
.ins_responCon2 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_responCon2 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.ins_responCon2 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.2rem;
  color: #666666;
  line-height: 1.55;
}
.ins_responCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(166deg, #60BDC7 -153.76%, #F9FDFF 43.79%);
}
.ins_responCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_responCon3 .center_box .ins_tit {
  width: 100%;
  height: auto;
}
.ins_responCon3 .center_box .ins_tit .t1 {
  color: rgba(0, 152, 159, 0.6);
}
.ins_responCon3 .center_box .ins_tit .t2 {
  font-weight: 500;
  margin-top: 0.15rem;
}
.ins_responCon3 .center_box .content1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.8rem;
}
.ins_responCon3 .center_box .content1 .left_box {
  width: 35.68%;
  height: auto;
  padding: 0.4rem 0;
}
.ins_responCon3 .center_box .content1 .left_box .t1 {
  width: 100%;
  height: auto;
  padding-bottom: 0.48rem;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #0000004D;
}
.ins_responCon3 .center_box .content1 .left_box .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
  line-height: 1.67;
  color: #666;
}
.ins_responCon3 .center_box .content1 .right_box {
  width: 50.68%;
  height: auto;
}
.ins_responCon3 .center_box .content1 .right_box .img {
  width: 100%;
  height: auto;
}
.ins_responCon3 .center_box .content1 .right_box .img img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
}
.ins_responCon3 .center_box .content1.f_row {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 0.64rem;
}
@media (max-width:990px) {
  .ins_responCon3 .center_box .content1 {
    flex-direction: column !important;
  }
}
.ins_responCon3 .content2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  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;
  border-radius: 0;
  overflow: hidden;
}
.ins_responCon3 .content2 .img_bg {
  width: 100%;
  height: auto;
}
.ins_responCon3 .content2 .img_bg img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
}
.ins_responCon3 .content2 .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 1.69rem;
  left: 0;
  color: #FFF;
  text-align: center;
}
.ins_responCon3 .content2 .word_box .t1 {
  font-weight: 500;
}
.ins_responCon3 .content2 .word_box .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  line-height: 1.67;
}
.ins_responCon3 .content2 .svgBox {
  position: absolute;
  bottom: 0%;
  width: 100%;
  height: auto;
  display: none;
}
.ins_responCon3 .content2.active {
  width: 91.66666667%;
  left: 0;
  transform: translateX(0);
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  border-radius: 0.1rem;
}
@media (max-width:990px) {
  .ins_responCon3 .content2 .word_box {
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_responCon3 .content2 .svgBox {
    top: 0;
    display: none;
  }
  .ins_responCon3 .content2.active {
    width: calc(100% - 40px);
  }
}
.ins_responCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  background-image: url(../images/Slice\ 2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.ins_responCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_responCon4 .center_box .box_info {
  width: 100%;
  height: auto;
  max-width: 74.77%;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_responCon4 .center_box .box_info .left_box {
  width: 40%;
}
.ins_responCon4 .center_box .box_info .left_box .img_box {
  width: 100%;
  height: auto;
  display: none;
}
.ins_responCon4 .center_box .box_info .left_box .img_box .img {
  width: 100%;
  height: auto;
  display: none;
}
.ins_responCon4 .center_box .box_info .left_box .img_box .img .pb {
  padding-bottom: 154%;
}
.ins_responCon4 .center_box .box_info .left_box .img_box .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_responCon4 .center_box .box_info .left_box .img_box .img.active {
  display: block;
}
.ins_responCon4 .center_box .box_info .left_box .img_box.active {
  display: block;
}
.ins_responCon4 .center_box .box_info .right_box {
  width: 50%;
  padding-bottom: 0.5rem;
}
.ins_responCon4 .center_box .box_info .right_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  border-bottom: 1px solid #CCC;
  padding-bottom: 0.3rem;
}
.ins_responCon4 .center_box .box_info .right_box .list_box .item {
  font-size: var(--font32);
  font-weight: 700;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #999999;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_responCon4 .center_box .box_info .right_box .list_box .item i {
  position: absolute;
  right: 0;
  font-size: var(--font26);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_responCon4 .center_box .box_info .right_box .list_box .item.active {
  color: #000;
  padding-right: 0.4rem;
}
.ins_responCon4 .center_box .box_info .right_box .list_box .item.active i {
  opacity: 1;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.4rem;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .swiper_word {
  width: 100%;
  height: auto;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .swiper_word .word {
  width: 100%;
  height: auto;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .swiper_word .word .t1 {
  font-weight: 500;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .swiper_word .word .t2 {
  color: #666;
  line-height: 1.55556;
  margin-top: 0.3rem;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .swiper_word .idx_more .more {
  gap: 0.4rem;
  border-color: var(--active_color);
  margin-top: 0.8rem;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .swiper_word .idx_more .more span {
  color: var(--active_color);
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .swiper_word .idx_more .more .icon::after {
  width: 0.52rem;
  height: 0.52rem;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .swiper_word .idx_more .more .icon i {
  transform: scale(1);
  font-size: var(--font20);
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .item_box .item {
  padding-right: 0.16rem;
  font-size: var(--font16);
  color: #999;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #DDD;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .item_box .item:last-child::before {
  opacity: 0;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_box .swiper_info .item_box .item.active {
  color: var(--active_color);
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in {
  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.8rem;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in .swiper_item {
  width: 84%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in .swiper_item ul li {
  width: auto;
  font-size: var(--font20);
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in .swiper_item ul li .centerInfo {
  width: auto;
  height: auto;
  padding-bottom: 0.2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  color: #999;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in .swiper_item ul li.active .centerInfo {
  color: var(--active_color);
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in .pager {
  width: auto;
  flex-shrink: 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;
  gap: 0.1rem;
  padding-bottom: 0.15rem;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in .pager .iconi {
  cursor: pointer;
  line-height: 1;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in .pager .iconi i {
  font-size: var(--font20);
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in .pager .iconi:hover i {
  color: var(--active_color);
}
.ins_responCon4 .center_box .box_info .right_box .swiper_in .pager .line {
  width: 1px;
  height: 0.2rem;
  background: #DDDDDD;
}
@media (max-width:990px) {
  .ins_responCon4 .center_box .box_info {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .ins_responCon4 .center_box .box_info .left_box .img_box .img .pb {
    padding-bottom: 80%;
  }
}
.ins_responCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.ins_responCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_responCon5 .center_box .ins_tit {
  width: 100%;
  height: auto;
  max-width: 41.19%;
  margin: 0 auto;
  text-align: center;
}
.ins_responCon5 .center_box .ins_tit .t1 {
  font-weight: 500;
}
.ins_responCon5 .center_box .ins_tit .t2 {
  margin-top: 0.12rem;
  color: #666666;
}
.ins_responCon5 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-bottom: 2.3rem;
}
.ins_responCon5 .center_box .content .contBox {
  width: 75%;
  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_responCon5 .center_box .content .contBox .img_bg {
  width: 31.5%;
  position: relative;
  z-index: 2;
  background: #FFF;
  border-radius: 50%;
  padding: 0.05rem;
}
.ins_responCon5 .center_box .content .contBox .img_bg img {
  width: 100%;
  height: auto;
}
.ins_responCon5 .center_box .content .contBox .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_responCon5 .center_box .content .contBox .item_box .item {
  width: 50%;
  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;
  padding-top: 0.5rem;
  overflow: hidden;
}
.ins_responCon5 .center_box .content .contBox .item_box .item .word {
  width: 50.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_responCon5 .center_box .content .contBox .item_box .item .word .t1 {
  font-weight: 500;
  width: fit-content;
  color: var(--active_color);
  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_responCon5 .center_box .content .contBox .item_box .item .word .t1::after {
  content: '';
  position: absolute;
  right: -0.25rem;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  border: 3px solid var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_responCon5 .center_box .content .contBox .item_box .item .word .t1::before {
  content: '';
  position: absolute;
  left: calc(100% + 0.35rem);
  width: 100vw;
  height: 1px;
  border-bottom: 2px dashed var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_responCon5 .center_box .content .contBox .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
  color: #666666;
  line-height: 1.556;
}
.ins_responCon5 .center_box .content .contBox .item_box .item:nth-child(2n) {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  text-align: end;
}
.ins_responCon5 .center_box .content .contBox .item_box .item:nth-child(2n) .word {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_responCon5 .center_box .content .contBox .item_box .item:nth-child(2n) .word .t1::after {
  left: -0.25rem;
}
.ins_responCon5 .center_box .content .contBox .item_box .item:nth-child(2n) .word .t1::before {
  left: unset;
  right: calc(100% + 0.35rem);
}
.ins_responCon5 .center_box .content .contBox .item_box .item5 {
  position: absolute;
  top: 100%;
  width: 100%;
  height: auto;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_responCon5 .center_box .content .contBox .item_box .item5 .word {
  -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_responCon5 .center_box .content .contBox .item_box .item5 .word .t1::after {
  left: unset;
  right: unset;
  top: -0.25rem;
}
.ins_responCon5 .center_box .content .contBox .item_box .item5 .word .t1::before {
  width: 1px;
  height: 50vh;
  border-left: 2px dashed var(--active_color);
  border-bottom: 0;
  left: unset;
  right: unset;
  bottom: calc(100% + 0.35rem);
}
@media (max-width:990px) {
  .ins_responCon5 {
    padding-bottom: 0.8rem;
  }
  .ins_responCon5 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_responCon5 .center_box .ins_tit {
    max-width: unset;
  }
  .ins_responCon5 .center_box .content {
    width: 100%;
    height: auto;
    padding-bottom: 1rem;
  }
  .ins_responCon5 .center_box .content .contBox {
    width: 100%;
    height: auto;
  }
  .ins_responCon5 .center_box .content .contBox .img_bg {
    width: 100%;
    height: auto;
    display: none;
  }
  .ins_responCon5 .center_box .content .contBox .item_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.2rem;
  }
  .ins_responCon5 .center_box .content .contBox .item_box .item {
    width: 100%;
    height: auto;
    align-items: start;
    border: 1px dashed #00989F4D;
    padding: 0.4rem;
  }
  .ins_responCon5 .center_box .content .contBox .item_box .item .word {
    width: 100%;
    height: auto;
    align-items: start !important;
    text-align: start !important;
  }
  .ins_responCon5 .center_box .content .contBox .item_box .item .word .t1::after,
  .ins_responCon5 .center_box .content .contBox .item_box .item .word .t1::before {
    display: none;
  }
  .ins_responCon5 .center_box .content .contBox .item_box .item5 {
    position: relative;
    z-index: 1;
  }
}
/* --------------------------------------------------------------- 产品中心 */
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
}
.ins_productCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .left_box {
  width: 21.477%;
  height: 100%;
  position: sticky;
  top: calc(var(--header-height) + 0.1rem);
}
.ins_productCon1 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  background: #ECF7F9;
  border-radius: 0.08rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon1 .center_box .left_box .item_box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(211deg, #00A8B0 -18.66%, rgba(0, 168, 176, 0) 60.43%);
  opacity: 0.4;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.ins_productCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.44rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
  position: relative;
  z-index: 1;
  font-size: var(--font24);
  cursor: pointer;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .left_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #00989F;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .left_box .item_box .item img {
  width: 0.32rem;
  filter: brightness(0) invert(0.5);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .left_box .item_box .item:last-child::after {
  display: none;
}
.ins_productCon1 .center_box .left_box .item_box .item.active {
  color: var(--active_color);
  font-weight: 500;
}
.ins_productCon1 .center_box .left_box .item_box .item.active img {
  filter: unset;
}
.ins_productCon1 .center_box .right_box {
  width: 69.71%;
}
.ins_productCon1 .center_box .right_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.itNav {
  width: 100%;
  height: auto;
  transform: translateY(calc((var(--header-height)) * -1));
}
.ins_productCon1 .center_box .right_box .content .infoBox {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  font-weight: 600;
  color: var(--active_color);
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.15rem;
  padding-bottom: 0.5rem; 
  position: relative;
  /*transform: translateY(calc((var(--header-height)) * -1));*/
}

.ins_productCon1 .center_box .right_box .content .infoBox::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ins_productCon1 .center_box .right_box .content .item_box {
    margin-top: 0.6rem;
  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.48rem;
  position: relative;
  z-index: 1;
}
.ins_productCon1 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
  color: #000;
  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;
  position: relative;
  z-index: 1;
  padding-bottom: 0.48rem;
}
.ins_productCon1 .center_box .right_box .content .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .right_box .content .item_box .item .wordBox {
  width: 45.395%;
  height: auto;
}
.ins_productCon1 .center_box .right_box .content .item_box .item .wordBox .word {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .right_box .content .item_box .item .wordBox .word .t1 {
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .right_box .content .item_box .item .wordBox .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: #666666;
}
.ins_productCon1 .center_box .right_box .content .item_box .item .wordBox .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon1 .center_box .right_box .content .item_box .item .imgs {
  width: 45.395%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_productCon1 .center_box .right_box .content .item_box .item .imgs img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .right_box .content .item_box .item:hover .wordBox .t1 {
  color: var(--active_color);
}
.ins_productCon1 .center_box .right_box .content .item_box .item:hover .wordBox .idx_more .more {
  border-color: var(--active_color);
}
.ins_productCon1 .center_box .right_box .content .item_box .item:hover .wordBox .idx_more .icon::after {
  width: 0.52rem;
  height: 0.52rem;
}
.ins_productCon1 .center_box .right_box .content .item_box .item:hover .wordBox .idx_more .icon i {
  transform: scale(1);
}
.ins_productCon1 .center_box .right_box .content .item_box .item:hover .imgs img {
  box-shadow: 0px 5px 20px 0px rgba(41, 165, 170, 0.12);
}
.ins_productCon1 .center_box .right_box .content:first-child {
  margin-top: 0;
}
@media (max-width:990px) {
  .ins_productCon1 .center_box {
    gap: 1rem;
  }
  .ins_productCon1 .center_box .left_box {
    z-index: 10;
  }
  .ins_productCon1 .center_box .left_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_productCon1 .center_box .left_box .item_box .item {
    padding: 0.24rem;
  }
  .ins_productCon1 .center_box .left_box .item_box .item::after {
    display: none;
  }
  .ins_productCon1 .center_box .right_box .content .item_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_productCon1 .center_box .right_box .content .item_box .item .wordBox {
    width: 100%;
    height: auto;
  }
  .ins_productCon1 .center_box .right_box .content .item_box .item .wordBox .idx_more {
    margin-top: 0.4rem;
  }
  .ins_productCon1 .center_box .right_box .content .item_box .item .imgs {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
}
.ins_productdCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  padding-top: 1.04rem;
}
.ins_productdCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon1 .center_box .left_box {
  width: 40%;
}
.ins_productdCon1 .center_box .left_box .word {
  width: 100%;
  height: auto;
}
.ins_productdCon1 .center_box .left_box .word .t1 {
  color: var(--active_color);
  font-weight: 600;
}
.ins_productdCon1 .center_box .left_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  font-weight: 500;
  line-height: 1.2;
}
.ins_productdCon1 .center_box .left_box .idx_more .more {
  gap: 0.4rem;
  margin-top: 0.8rem;
  border-color: var(--active_color);
}
.ins_productdCon1 .center_box .left_box .idx_more .more span {
  color: var(--active_color);
}
.ins_productdCon1 .center_box .left_box .idx_more .more .icon::after {
  width: 0.52rem;
  height: 0.52rem;
}
.ins_productdCon1 .center_box .left_box .idx_more .more .icon i {
  transform: scale(1);
  font-size: var(--font20);
}
.ins_productdCon1 .center_box .right_box {
  width: 50%;
  height: auto;
}
.ins_productdCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  background: linear-gradient(166deg, #9CD9E0 -153.76%, #F7F9FA 43.79%);
}
.ins_productdCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_productdCon2 .center_box .item_box .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 2.2rem;
  position: relative;
  z-index: 1;
  padding-top: 0.32rem;
  padding-bottom: 0.56rem;
  border-bottom: 1px solid #00000033;
}
.ins_productdCon2 .center_box .item_box .one .name {
  width: 18.23%;
  font-size: var(--font28);
}
.ins_productdCon2 .center_box .item_box .one .word {
  width: 27.78%;
  font-size: var(--font18);
  line-height: 1.33;
}
.ins_productdCon2 .center_box .item_box .one .word p {
  min-height: 1em;
}
.ins_productdCon2 .center_box .item_box .one .iconRotate {
  position: absolute;
  right: 10px;
  top: 0.32rem;
}
.ins_productdCon2 .center_box .pagerBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-top: 0.48rem;
}
.ins_productdCon2 .center_box .pagerBox .btnBox {
  width: fit-content;
}
.ins_productdCon2 .center_box .pagerBox .btnBox .word {
  font-size: var(--font18);
  line-height: 1.5;
}
.ins_productdCon2 .center_box .pagerBox .btnBox .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;
  padding: 0.08rem 0.2rem;
  gap: 0.12rem;
  border-radius: 0.04rem;
  border: 1px solid var(--Black, #000);
  margin-top: 0.29rem;
  cursor: pointer;
}
.ins_productdCon2 .center_box .pagerBox .btnBox .icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(1px);
}
.ins_productdCon2 .center_box .pagerBox .btnBox.right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_productdCon2 .imgBoxBg .igBox {
  top: 0;
  transform: translateX(10%);
  opacity: 0.4;
}
@media (max-width:990px) {
  .ins_productdCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_productdCon2 .center_box .item_box {
    width: 100%;
    height: auto;
  }
  .ins_productdCon2 .center_box .item_box .one {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.6rem;
  }
  .ins_productdCon2 .center_box .item_box .one .name {
    width: 100%;
    height: auto;
  }
  .ins_productdCon2 .center_box .item_box .one .word {
    width: 100%;
    height: auto;
  }
  .ins_productdCon2 .center_box .pagerBox {
    display: none;
  }
}
/* --------------------------------------------------------------- 下载中心 */
.ins_downloadCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-top: 0.8rem;
}
.ins_downloadCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .center_box .swiper_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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.4rem;
}
.ins_downloadCon1 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_downloadCon1 .center_box .swiper_info .swiper_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .center_box .swiper_info .swiper_box::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: calc(100% - 2px);
  background: linear-gradient(90deg, #ffffff00 10%, #ffffff 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.ins_downloadCon1 .center_box .swiper_info .swiper_box ul li {
  width: auto;
  font-size: var(--font20);
}
.ins_downloadCon1 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: auto;
  height: auto;
  padding-bottom: 0.2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_downloadCon1 .center_box .swiper_info .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_downloadCon1 .center_box .swiper_info .swiper_box ul li.active .centerInfo {
  color: var(--active_color);
}
.ins_downloadCon1 .center_box .swiper_info .swiper_box ul li.active .centerInfo::after {
  opacity: 1;
}
.ins_downloadCon1 .center_box .swiper_info .pager {
  width: auto;
  flex-shrink: 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;
  gap: 0.1rem;
  padding-bottom: 0.15rem;
}
.ins_downloadCon1 .center_box .swiper_info .pager .iconi {
  cursor: pointer;
  line-height: 1;
}
.ins_downloadCon1 .center_box .swiper_info .pager .iconi i {
  font-size: var(--font20);
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .center_box .swiper_info .pager .iconi:hover i {
  color: var(--active_color);
}
.ins_downloadCon1 .center_box .swiper_info .pager .line {
  width: 1px;
  height: 0.2rem;
  background: #DDDDDD;
}
.ins_downloadCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.83rem 0.24rem;
  margin-top: 0.8rem;
}
.ins_downloadCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.16rem;
  overflow: hidden;
}
.ins_downloadCon1 .center_box .item_box .item .iconBox {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 152, 159, 0.2);
  background: linear-gradient(164deg, #FFF -29.44%, #E3F2F5 82.19%);
  padding: 0.4rem;
  border-radius: 0.08rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
.ins_downloadCon1 .center_box .item_box .item .iconBox .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;
}
.ins_downloadCon1 .center_box .item_box .item .iconBox .word_box {
  width: 100%;
  height: auto;
  margin-top: 2.6rem;
}
.ins_downloadCon1 .center_box .item_box .item .iconBox .word_box .imgs {
  width: 0.67rem;
}
.ins_downloadCon1 .center_box .item_box .item .iconBox .word_box .word {
  font-size: var(--font24);
  line-height: 1.16;
  margin-top: 0.3rem;
}
.ins_downloadCon1 .center_box .item_box .item .iconBox .bg_img {
  position: absolute;
  top: 0;
  left: 0;
}
.ins_downloadCon1 .center_box .item_box .item .iconBox .bg_img img {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .center_box .item_box .item .downBox {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  font-size: var(--font18);
  color: #666;
  display: -webkit-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;
}
@media (max-width:990px) {
  .ins_downloadCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_downloadCon1 .center_box .item_box .item .iconBox .word_box {
    margin-top: 0.8rem;
  }
}
.ins_downloadCon1 .center_box .pagerBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-top: 1.2rem;
}
.ins_downloadCon1 .center_box .pagerBox .btnBox {
  width: fit-content;
}
.ins_downloadCon1 .center_box .pagerBox .btnBox .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;
  padding: 0.08rem 0.2rem;
  gap: 0.12rem;
  border-radius: 0.04rem;
  border: 1px solid var(--Black, #000);
  margin-top: 0.29rem;
  cursor: pointer;
  font-size: var(--font16);
}
.ins_downloadCon1 .center_box .pagerBox .btnBox .icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(1px);
  font-size: var(--font18);
}
/* --------------------------------------------------------------- 研发创新 */
.ins_innovationCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_innovationCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon1 .center_box .ins_tit {
  width: 100%;
  height: auto;
}
.ins_innovationCon1 .center_box .ins_tit .t1 {
  font-weight: 500;
}
.ins_innovationCon1 .center_box .ins_tit .t2 {
  margin-top: 0.12rem;
  color: #666666;
}
.ins_innovationCon1 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-radius: 0.08rem;
  overflow: hidden;
  background: #F4FAFB;
}
.ins_innovationCon1 .center_box .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_innovationCon1 .center_box .top_box .icon {
  width: 28.9%;
  height: auto;
  min-height: 0.96rem;
  background: var(--bg_color);
  padding: 0 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;
  color: var(--active_color);
}
.ins_innovationCon1 .center_box .top_box .word {
  width: 71.1%;
  height: auto;
  min-height: 0.96rem;
  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_innovationCon1 .center_box .top_box .word .one {
  width: 100%;
  height: 0.96rem;
  background: var(--bg_color);
  font-size: var(--font24);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFF;
}
.ins_innovationCon1 .center_box .bot_box {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.ins_innovationCon1 .center_box .bot_box .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;
  position: relative;
  z-index: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.4rem 0;
}
.ins_innovationCon1 .center_box .bot_box .one .icon {
  width: 28.9%;
  height: auto;
  background: var(--bg_color);
  padding: 0 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;
}
.ins_innovationCon1 .center_box .bot_box .one .word {
  width: 71.1%;
  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-right: 0.64rem;
}
.ins_innovationCon1 .center_box .bot_box .one .word .scrollBox {
  width: 100%;
  height: 0.32rem;
  border-radius: 100px;
  background: #CDE1E4;
  position: relative;
  z-index: 1;
}
.ins_innovationCon1 .center_box .bot_box .one .word .scrollBox .scroll {
  width: 10%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(0, 152, 159, 0.2) 0%, #00989F 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.ins_innovationCon1 .center_box .bot_box .one .word .scrollBox .scroll span {
  color: #FFF;
  position: absolute;
  right: 0.24rem;
}
.ins_innovationCon1 .center_box .bot_box .one .word .scrollBox .line {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_innovationCon1 .center_box .bot_box .one .word .scrollBox .line i {
  width: 21.12%;
  height: 70%;
  display: block;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.ins_innovationCon1 .center_box .bot_box .one .word .scrollBox.active .scroll {
  width: var(--bg_w);
}
.ins_innovationCon1 .center_box .bot_box .one::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.64rem;
  width: calc(100% - 0.64rem - 0.64rem);
  height: 1px;
  background: #00989F33;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .ins_innovationCon1 .center_box .top_box {
    display: none;
  }
  .ins_innovationCon1 .center_box .bot_box {
    width: 100%;
    height: auto;
  }
  .ins_innovationCon1 .center_box .bot_box .one {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
  .ins_innovationCon1 .center_box .bot_box .one .icon {
    width: 100%;
    height: auto;
  }
  .ins_innovationCon1 .center_box .bot_box .one .word {
    width: 100%;
    height: auto;
    padding: 0 0.64rem;
  }
  .ins_innovationCon1 .center_box .bot_box .one .word .scrollBox .scroll span {
    font-size: 12px;
    width: max-content;
  }
}
.ins_innovationCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(166deg, #60BDC7 -153.76%, #F9FDFF 43.79%);
}
.ins_innovationCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon2 .center_box .ins_tit {
  width: 100%;
  height: auto;
}
.ins_innovationCon2 .center_box .ins_tit .t1 {
  font-weight: 500;
}
.ins_innovationCon2 .center_box .ins_tit .t2 {
  margin-top: 0.12rem;
  color: #666666;
}
.ins_innovationCon2 .center_box .item_box {
  width: 80.68%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
  margin-top: 0.8rem;
  border-radius: 100px;
  overflow: hidden;
}
.ins_innovationCon2 .center_box .item_box .item {
  width: 100%;
  height: 0.93rem;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: var(--bg_color);
  font-size: var(--font24);
  color: #FFF;
}
.ins_innovationCon2 .center_box .item_box .item:first-child {
  color: var(--active_color);
}
.ins_innovationCon2 .center_box .content {
  width: 80.68%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 0.56rem;
}
.ins_innovationCon2 .center_box .content .word_box {
  width: 27%;
  height: auto;
  border-radius: 200px;
  border: 1px dashed rgba(0, 152, 159, 0.3);
  background: linear-gradient(180deg, rgba(0, 168, 176, 0.01) 0%, rgba(0, 152, 159, 0.06) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0.9rem;
  padding-bottom: 0.78rem;
}
.ins_innovationCon2 .center_box .content .word_box .img {
  width: 1.35rem;
}
.ins_innovationCon2 .center_box .content .word_box .word {
  width: fit-content;
  height: auto;
  margin-top: 0.58rem;
  font-size: var(--font20);
  line-height: 2;
}
.ins_innovationCon2 .center_box .content .word_box .word p {
  position: relative;
  z-index: 1;
  padding-left: 0.25rem;
}
.ins_innovationCon2 .center_box .content .word_box .word p::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  left: 0;
  top: 0.75em;
  border-radius: 50%;
  border: 0.03rem solid var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_innovationCon2 .center_box .content .word_box .word .one::after {
  display: none;
}
.ins_innovationCon2 .center_box .content .imgs {
  width: 30.7%;
}
.ins_innovationCon2 .center_box .content .iocn {
  width: 7.65%;
}
@media (max-width:990px) {
  .ins_innovationCon2 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_innovationCon2 .center_box .content {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.2rem;
  }
  .ins_innovationCon2 .center_box .content .word_box {
    width: 100%;
    height: auto;
    border-radius: 0.08rem;
    padding: 0.5rem 0.2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_innovationCon2 .center_box .content .word_box .word {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_innovationCon2 .center_box .content .imgs {
    width: 80%;
    height: auto;
  }
  .ins_innovationCon2 .center_box .content .icon {
    display: none;
  }
}
/* --------------------------------------------------------------- 加入我们 */
@keyframes grow4 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0);
  }
}
.ins_joinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 0.6rem;
}
.ins_joinCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem;
}
.ins_joinCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon1 .center_box .item_box .item .img_bg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_joinCon1 .center_box .item_box .item .img_bg img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 152, 159, 0.95) 0%, rgba(0, 152, 159, 0) 100%);
  color: #FFF;
  padding: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_joinCon1 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .item_box .item .word_box .word .t1 {
  font-weight: 500;
  line-height: 1;
}
.ins_joinCon1 .center_box .item_box .item .word_box .word .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  font-size: var(--font18);
  margin-top: 0.25rem;
}
.ins_joinCon1 .center_box .item_box .item .word_box .word .more i {
  font-size: var(--font20);
}
.ins_joinCon1 .center_box .item_box .item .word_box .icon {
  line-height: 1.33;
}
.ins_joinCon1 .center_box .item_box .item:hover {
  box-shadow: 0 0 10px 2px #0000003b;
}
.ins_joinCon1 .center_box .item_box .item:hover .img_bg img {
  transform: scale(1.05);
}
@media (max-width:990px) {
  .ins_joinCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_joinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.6rem;
  padding-bottom: 1.2rem;
}
.ins_joinCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .ins_tit {
  width: 100%;
  height: auto;
  line-height: 1;
}
.ins_joinCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.65rem;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
.ins_joinCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding-top: 0.24rem;
  padding-bottom: 0.4rem;
  padding-right: 1.6rem;
}
.ins_joinCon2 .center_box .item_box .item .number {
  color: #999999;
  font-size: var(--font18);
}
.ins_joinCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon2 .center_box .item_box .item .word_box .word {
  width: 72%;
  height: auto;
}
.ins_joinCon2 .center_box .item_box .item .word_box .word .t1 {
  font-weight: 500;
}
.ins_joinCon2 .center_box .item_box .item .word_box .word .t2 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_joinCon2 .center_box .item_box .item .word_box .icon {
  flex-shrink: 0;
  width: 0.87rem;
}
.ins_joinCon2 .center_box .item_box .item:nth-child(2n) {
  padding-right: 0;
  padding-left: 1.6rem;
  border-left: 1px solid #DDDDDD;
}
@media (max-width:990px) {
  .ins_joinCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_joinCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_joinCon2 .center_box .item_box .item {
    padding: 0.6rem 0 !important;
    border-left: 0 !important;
    border-bottom: 1px solid #DDDDDD;
  }
  .ins_joinCon2 .center_box .item_box .item .word_box {
    margin-top: 0.4rem;
  }
  .ins_joinCon2 .center_box .item_box .item:last-child {
    border: 0;
  }
}
.ins_joinBox1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(166deg, #60BDC7 -153.76%, #F7F9FA 43.79%);
}
.ins_joinBox1 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
}
.ins_joinCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .box_info {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .box_info .left_box {
  width: 20.28%;
}
.ins_joinCon3 .center_box .box_info .left_box .ins_tit .t2 {
  margin-top: 0.2rem;
  color: #333333;
}
.ins_joinCon3 .center_box .box_info .right_box {
  width: 70.85%;
}
.ins_joinCon3 .center_box .box_info .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
}
.ins_joinCon3 .center_box .box_info .right_box .item_box .item {
  width: 100%;
  padding: 0.48rem;
  background: #FFF;
  position: relative;
  z-index: 1;
  border-radius: 0.08rem;
  border: 1px solid rgba(41, 165, 170, 0.12);
}
.ins_joinCon3 .center_box .box_info .right_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: url(../images/bg18.png) no-repeat bottom left;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.ins_joinCon3 .center_box .box_info .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(--font32);
  color: var(--active_color);
  line-height: 1.1;
}
.ins_joinCon3 .center_box .box_info .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  color: #333;
  line-height: 1.333;
  margin-top: 1.5rem;
}
.ins_joinCon3 .imgBoxBg .igBox {
  opacity: 0.6;
}
@media (max-width:990px) {
  .ins_joinCon3 .center_box .box_info .right_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_joinCon3 .center_box .box_info .right_box .item_box .item {
    min-height: unset;
    gap: 0.5rem;
  }
  .ins_joinCon3 .center_box .box_info .right_box .item_box .item .word {
    margin-top: 0.3rem;
  }
}
.ins_joinCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.8rem;
  padding-bottom: 0.7rem;
}
.ins_joinCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .ins_tit {
  width: 33.35%;
}
.ins_joinCon4 .center_box .ins_tit .t2 {
  margin-top: 0.2rem;
  color: #333333;
}
.ins_joinCon4 .center_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
  background: #FFF;
  border: 1px solid rgba(41, 165, 170, 0.12);
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_joinCon4 .center_box .list_box::after {
  content: '';
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: url(../images/Group105.png) no-repeat bottom left;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
  pointer-events: none;
}
.ins_joinCon4 .center_box .list_box .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid rgba(41, 165, 170, 0.12);
}
.ins_joinCon4 .center_box .list_box .one .icon {
  width: 16.25%;
  font-size: var(--font32);
  color: 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;
  border-right: 1px solid rgba(41, 165, 170, 0.12);
  font-weight: 500;
}
.ins_joinCon4 .center_box .list_box .one .word {
  width: 83.75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_joinCon4 .center_box .list_box .one .word .list {
  width: 100%;
  height: auto;
  padding: 0.56rem 1rem;
  border-right: 1px solid rgba(41, 165, 170, 0.12);
  line-height: 1.6;
  color: #333;
  position: relative;
  z-index: 1;
}
.ins_joinCon4 .center_box .list_box .one .word .list p {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.21rem;
}
.ins_joinCon4 .center_box .list_box .one .word .list p::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  border: 0.03rem solid var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon4 .center_box .list_box .one .word .list:last-child {
  border: 0;
}
.ins_joinCon4 .center_box .list_box .one .word .t1 {
  width: 100%;
  height: auto;
  padding: 0.72rem 1rem;
}
.ins_joinCon4 .center_box .list_box .one:last-child {
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_joinCon4 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_joinCon4 .center_box .ins_tit {
    width: 100%;
    height: auto;
  }
  .ins_joinCon4 .center_box .list_box {
    width: 100%;
    height: auto;
  }
  .ins_joinCon4 .center_box .list_box .one {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: auto;
    border-right: 0;
    padding: 0.5rem 0;
  }
  .ins_joinCon4 .center_box .list_box .one .icon {
    width: 100%;
    height: auto;
  }
  .ins_joinCon4 .center_box .list_box .one .word {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: auto;
    border: 0;
    margin-top: 0;
  }
  .ins_joinCon4 .center_box .list_box .one .word .list {
    padding: 0.2rem 0.5rem;
  }
}
.ins_joinCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.7rem;
  padding-bottom: 0.05rem;
}
.ins_joinCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon5 .center_box .ins_tit {
  width: 33.35%;
}
.ins_joinCon5 .center_box .ins_tit .t2 {
  margin-top: 0.2rem;
  color: #333333;
}
.ins_joinCon5 .center_box .content {
  width: 100%;
  height: 6.46rem;
  position: relative;
  z-index: 1;
  margin-top: -0.2rem;
}
.ins_joinCon5 .center_box .content .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_joinCon5 .center_box .content .item_box .item {
  width: var(--wh);
  height: var(--wh);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  font-size: var(--font24);
  color: #00989F;
  font-weight: 500;
  animation: grow4 var(--time) cubic-bezier(0.39, 0.58, 0.57, 1) infinite;
}
.ins_joinCon5 .center_box .content .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  opacity: 0.6;
}
.ins_joinCon5 .img {
  position: absolute;
  bottom: 0;
}
@media (max-width:990px) {
  .ins_joinCon5 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_joinCon5 .center_box .ins_tit {
    width: 100%;
    height: auto;
  }
  .ins_joinCon5 .center_box .content {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  .ins_joinCon5 .center_box .content .item_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .ins_joinCon5 .center_box .content .item_box .item {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 0.08rem;
    left: unset !important;
    bottom: unset !important;
    padding: 0.5rem 0 !important;
  }
}
.ins_joinCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.2rem;
}
.ins_joinCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon6 .center_box .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_joinCon6 .center_box .top_box .ins_tit {
  width: 33.35%;
}
.ins_joinCon6 .center_box .top_box .ins_tit .t2 {
  margin-top: 0.2rem;
  color: #333333;
}
.ins_joinCon6 .center_box .top_box .item_box {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #00979f63;
  border-radius: 100px;
  overflow: hidden;
}
.ins_joinCon6 .center_box .top_box .item_box .item {
  width: fit-content;
  padding: 0.2rem 0.5rem;
  font-size: var(--font20);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon6 .center_box .top_box .item_box .item.active {
  background: var(--active_color);
  color: #FFF;
}
.ins_joinCon6 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.64rem;
}
.ins_joinCon6 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo .swiper_img {
  width: 100%;
  height: auto;
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo .swiper_img .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo .swiper_img .img .pb {
  padding-bottom: 63.5%;
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo .swiper_img .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo .pager {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
  margin-top: 0.6rem;
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo .pager .swiperBtn2 {
  width: 0.6rem;
  height: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid #0000004D;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo .pager .swiperBtn2 i {
  font-size: var(--font20);
  font-weight: 500;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo .pager .swiperBtn2:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_joinCon6 .center_box .swiper_box ul li .centerInfo .pager .swiperBtn2:hover i {
  color: #FFF;
}
.ins_joinCon6 .center_box .swiper_box ul li.swiper-slide-active {
  pointer-events: initial;
}
.ins_joinCon6 .center_box .swiper_box ul li.swiper-slide-active .centerInfo {
  opacity: 1;
  visibility: visible;
}
@media (max-width:990px) {
  .ins_joinCon6 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_joinCon6 .center_box .top_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .ins_joinCon6 .center_box .top_box .ins_tit {
    width: 100%;
    height: auto;
  }
  .ins_joinCon6 .center_box .swiper_box ul li .centerInfo .pager {
    display: none;
  }
}
/* --------------------------------------------------------------- 投资者关系 */
.ins_investorCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.72rem;
  padding-bottom: 0.96rem;
  background: linear-gradient(166deg, #60BDC7 -153.76%, #F2F9FC 43.79%);
}
.ins_investorCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_investorCon1 .center_box .top_box {
  width: 74.77%;
  height: auto;
  margin: 0 auto;
  background: #FFF;
  border-radius: 0.08rem;
  overflow: hidden;
  padding-bottom: 0.72rem;
  border-bottom: 1px solid #2222221A;
}
.ins_investorCon1 .center_box .content_box {
  width: 74.77%;
  height: auto;
  margin: 0 auto;
  margin-top: 0.64rem;
}
.ins_investorCon1 .center_box .content_box .item_box {
  width: 29.6%;
  background: #FFF;
  height: 100%;
  border-radius: 0.08rem;
  position: sticky;
  top: calc(var(--header-height) + 0.1rem);
  overflow: hidden;
}
.ins_investorCon1 .center_box .content_box .item_box .item {
  width: 100%;
  min-height: 1.2rem;
  padding: 0.4rem;
  font-size: var(--font24);
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-weight: 500;
}
.ins_investorCon1 .center_box .content_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #00989F;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_investorCon1 .center_box .content_box .item_box .item:last-child::after {
  opacity: 0;
}
.ins_investorCon1 .center_box .content_box .item_box .item.active {
  color: var(--active_color);
}
.ins_investorCon1 .center_box .content_box .item_box .item.active::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: linear-gradient(198deg, #00A8B0 -40.66%, rgba(0, 168, 176, 0) 60.43%);
  opacity: 0.6;
}
.ins_investorCon1 .center_box .content_box .content {
  width: 66%;
  height: auto;
}
.ins_investorCon1 .center_box .content_box .content .image_box {
  width: 100%;
  height: auto;
  display: none;
  background: #FFF;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_investorCon1 .center_box .content_box .content .image_box .img {
  width: 100%;
  height: auto;
}
.ins_investorCon1 .center_box .content_box .content .image_box .img img {
  width: 100%;
  height: auto;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox {
  width: 100%;
  height: auto;
  padding: 0.48rem 0.64rem;
  padding-bottom: 0.63rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .title {
  width: 100%;
  height: auto;
  font-weight: 500;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #00000033;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .word_box {
  width: 100%;
  height: a uto;
  margin-top: 0.48rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .wordBox {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .wordBox .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.32rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .wordBox .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
  border-bottom: 1px dashed #00000029;
  color: #333;
  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;
  cursor: pointer;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .wordBox .list .one span {
  display: block;
  width: 82%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .wordBox .list .one i {
  font-style: unset;
  color: #999;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .wordBox .list .one:hover span {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox table {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
  border-color: #00989F33;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox table tbody tr th {
  height: 0.96rem;
  background: #00989F1A;
  font-size: var(--font24);
  font-weight: 500;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox table tr td {
  padding: 0.2rem 0;
  font-size: var(--font20);
  font-weight: 500;
  text-align: center;
  color: #00989F;
  background: #F1F9FB;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox table tr td:first-child {
  color: #666;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .btnBox {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .textBox {
  width: 100%;
  height: auto;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .textBox.active {
  display: none;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .exoBox {
  width: 100%;
  height: auto;
  display: none;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .exoBox .exoCon1 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox .exoBox.active {
  display: block;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox.active {
  display: block;
}
.ins_investorCon1 .center_box .content_box .content .image_box .conBox.tow .title {
  width: 100%;
  height: auto;
  border-bottom: 0 !important;
}
.ins_investorCon1 .center_box .content_box .content .image_box .list_Box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem 0;
  margin-top: 0.4rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .list_Box .list {
  width: 100%;
  height: auto;
  border: 1px solid rgba(0, 152, 159, 0.2);
  background: #F0F9FC;
  padding: 0.4rem;
  border-right: 0;
  border-top-left-radius: 0.04rem;
  border-bottom-left-radius: 0.04rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .list_Box .list .topBox {
  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_investorCon1 .center_box .content_box .content .image_box .list_Box .list .topBox .t1 {
  width: 100%;
  height: auto;
  line-height: 1;
  font-weight: 500;
}
.ins_investorCon1 .center_box .content_box .content .image_box .list_Box .list .topBox .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.08rem;
  color: #666;
}
.ins_investorCon1 .center_box .content_box .content .image_box .list_Box .list .botBox {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  color: var(--active_color);
  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.04rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .list_Box .list:nth-child(2n) {
  border-right: 1px solid rgba(0, 152, 159, 0.2);
  border-top-right-radius: 0.04rem;
  border-bottom-right-radius: 0.04rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .swiper_box {
  width: 84%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .swiper_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .swiper_box::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff00 10%, #ffffff 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .swiper_box ul li {
  width: auto;
  font-size: var(--font20);
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .swiper_box ul li .centerInfo {
  width: auto;
  height: auto;
  padding-bottom: 0.2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .swiper_box ul li.active .centerInfo {
  color: var(--active_color);
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .swiper_box ul li.active .centerInfo::after {
  opacity: 1;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .pager {
  width: auto;
  flex-shrink: 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;
  gap: 0.1rem;
  padding-bottom: 0.15rem;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .pager .iconi {
  cursor: pointer;
  line-height: 1;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .pager .iconi i {
  font-size: var(--font20);
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .pager .iconi:hover i {
  color: var(--active_color);
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_info .pager .line {
  width: 1px;
  height: 0.2rem;
  background: #DDDDDD;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  overflow: hidden;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li {
  width: 100%;
  height: auto;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo {
  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_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .conBox {
  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.08rem;
  border-radius: 0.04rem;
  overflow: hidden;
  background: #F0F9FC;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .imgs {
  width: 27.5%;
  height: auto;
  background: #FFF;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .imgs .pb {
  padding-bottom: 131%;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .imgs .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_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .word_box1 {
  width: 72.5%;
  height: auto;
  padding: 0.32rem;
  padding-left: 0.58rem;
  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;
  margin-top: 0;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .word_box1 .topBox {
  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_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .word_box1 .topBox .word {
  width: 71%;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .word_box1 .topBox .word .t1 {
  width: 100%;
  height: auto;
  line-height: 1;
  font-weight: 500;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .word_box1 .topBox .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.08rem;
  color: #666;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .word_box1 .more {
  width: 100%;
  height: auto;
  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;
}
.ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .word_box1 .more i {
  color: var(--active_color);
  font-size: var(--font26);
  line-height: 1;
}
.ins_investorCon1 .center_box .content_box .content .image_box.active {
  display: block;
}
.ins_investorCon1 .images_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
.ins_investorCon1 .imgBoxBg {
  opacity: 0.6;
}
@media (max-width:990px) {
  .ins_investorCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_investorCon1 .center_box .top_box {
    width: 100%;
    height: auto;
  }
  .ins_investorCon1 .center_box .content_box {
    width: 100%;
    height: auto;
  }
  .ins_investorCon1 .center_box .content_box * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .ins_investorCon1 .center_box .content_box *::-webkit-scrollbar {
    display: none;
  }
  .ins_investorCon1 .center_box .content_box .item_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: auto;
    position: relative;
    z-index: 1;
    top: unset;
  }
  .ins_investorCon1 .center_box .content_box .item_box .item {
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: unset;
    padding: 0.3rem 0.6rem;
  }
  .ins_investorCon1 .center_box .content_box .item_box .item::after {
    width: 1px;
    height: 100%;
  }
  .ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .conBox {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .conBox .imgs {
    width: 100%;
    height: auto;
  }
  .ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .conBox .imgs .pb {
    padding-bottom: 50%;
  }
  .ins_investorCon1 .center_box .content_box .content .image_box .swiper_word ul li .centerInfo .conBox .word_box1 {
    width: 100%;
    height: auto;
    padding: 0.2rem;
  }
  .ins_investorCon1 .center_box .content_box .content .image_box .conBox {
    padding: 0.6rem 0.4rem;
  }
  .ins_investorCon1 .center_box .content_box .content .image_box .conBox .wordBox .list .one {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.2rem;
  }
  .ins_investorCon1 .center_box .content_box .content .image_box .conBox .wordBox .list .one span {
    width: 100%;
    height: auto;
  }
  .ins_investorCon1 .center_box .content_box .content .image_box .list_Box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_investorCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  background-image: url(../images/Slice\ 2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.ins_investorCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_investorCon2 .center_box .box_info {
  width: 100%;
  height: auto;
  max-width: 74.77%;
  margin: 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_investorCon2 .center_box .box_info .left_box {
  width: 40%;
}
.ins_investorCon2 .center_box .box_info .left_box img {
  width: 100%;
  height: auto;
}
.ins_investorCon2 .center_box .box_info .left_box img img {
  width: 100%;
  height: auto;
}
.ins_investorCon2 .center_box .box_info .right_box {
  width: 50%;
}
.ins_investorCon2 .center_box .box_info .right_box .word {
  width: 100%;
  height: auto;
}
.ins_investorCon2 .center_box .box_info .right_box .word .t1 {
  font-weight: 500;
}
.ins_investorCon2 .center_box .box_info .right_box .word .t2 {
  color: #666;
  line-height: 1.55556;
  margin-top: 0.3rem;
}
.ins_investorCon2 .center_box .box_info .right_box .idx_more .more {
  gap: 0.4rem;
  border-color: var(--active_color);
  margin-top: 0.8rem;
}
.ins_investorCon2 .center_box .box_info .right_box .idx_more .more span {
  color: var(--active_color);
}
.ins_investorCon2 .center_box .box_info .right_box .idx_more .more .icon::after {
  width: 0.52rem;
  height: 0.52rem;
}
.ins_investorCon2 .center_box .box_info .right_box .idx_more .more .icon i {
  transform: scale(1);
  font-size: var(--font20);
}
@media (max-width:990px) {
  .ins_investorCon2 .center_box .box_info {
    max-width: 100%;
  }
}
.ins_investorCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_investorCon3 .center_box {
  width: 100%;
  height: auto;
  max-width: 74.77%;
  margin: 0 auto;
}
.ins_investorCon3 .center_box .ins_tit {
  width: 100%;
  height: auto;
}
.ins_investorCon3 .center_box .ins_tit .t1 {
  font-weight: 500;
  line-height: 1.3;
}
.ins_investorCon3 .center_box table {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  border-color: #00989F33;
}
.ins_investorCon3 .center_box table tbody tr th {
  height: 0.96rem;
  background: #00989F1A;
  font-size: var(--font24);
  font-weight: 500;
}
.ins_investorCon3 .center_box table tr td {
  padding: 0.2rem 0;
  font-size: var(--font20);
  font-weight: 500;
  text-align: center;
  color: #00989F;
  background: #F1F9FB;
}
.ins_investorCon3 .center_box table tr td:first-child {
  color: #666;
}
@media (max-width:990px) {
  .ins_investorCon3 .center_box {
    max-width: 100%;
  }
}
/* --------------------------------------------------------------- 公示信息 */
.ins_informationCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  background: linear-gradient(166deg, #60BDC7 -153.76%, #F2F9FC 43.79%);
}
.ins_informationCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_informationCon1 .center_box .box_info {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.ins_informationCon1 .center_box .box_info .item_box {
  width: 22.15%;
  background: #FFF;
  height: 100%;
  border-radius: 0.08rem;
  position: sticky;
  top: calc(var(--header-height) + 0.1rem);
  overflow: hidden;
}
.ins_informationCon1 .center_box .box_info .item_box .item {
  width: 100%;
  height: auto;
}
.ins_informationCon1 .center_box .box_info .item_box .item .top {
  padding: 0.25rem 0.48rem;
  font-size: var(--font24);
  background: #00989F;
  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;
  color: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_informationCon1 .center_box .box_info .item_box .item .top i {
  font-size: var(--font30);
  transform: rotate(-90deg);
}
.ins_informationCon1 .center_box .box_info .item_box .item .bot {
  width: 100%;
  height: auto;
}
.ins_informationCon1 .center_box .box_info .item_box .item .bot .one {
  width: 100%;
  min-height: 0.8rem;
  padding: 0.3rem 0.48rem;
  padding-right: 0.38rem;
  font-size: var(--font20);
  color: #666;
  display: -webkit-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;
  cursor: pointer;
  line-height: 1;
}
.ins_informationCon1 .center_box .box_info .item_box .item .bot .one::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #00989F;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_informationCon1 .center_box .box_info .item_box .item .bot .one:last-child::after {
  opacity: 0;
}
.ins_informationCon1 .center_box .box_info .item_box .item .bot .one.active::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: linear-gradient(200deg, #00A8B0 -18.66%, rgba(0, 168, 176, 0) 60.43%);
  opacity: 0.4;
}
.ins_informationCon1 .center_box .box_info .item_box .item .bot .one.active {
  color: var(--active_color);
}
.ins_informationCon1 .center_box .box_info .item_box .item.active .top {
  background: linear-gradient(269deg, #00989F -45.29%, #60BDC7 89.55%);
}
.ins_informationCon1 .center_box .box_info .item_box .item.active .top i {
  transform: rotate(0);
  opacity: 0;
}
.ins_informationCon1 .center_box .box_info .content {
  width: 74.8%;
  height: auto;
  padding: 0.64rem;
  background: #FFF;
  padding-bottom: 1.15rem;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_informationCon1 .center_box .box_info .content .conBox {
  width: 100%;
  height: auto;
  display: none;
}
.ins_informationCon1 .center_box .box_info .content .conBox .title {
  width: 100%;
  height: auto;
  font-weight: 500;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #00000033;
}
.ins_informationCon1 .center_box .box_info .content .conBox .word_box {
  width: 100%;
  height: a uto;
  margin-top: 0.48rem;
}
.ins_informationCon1 .center_box .box_info .content .conBox .wordBox {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_informationCon1 .center_box .box_info .content .conBox .wordBox .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.32rem;
}
.ins_informationCon1 .center_box .box_info .content .conBox .wordBox .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
  border-bottom: 1px dashed #00000029;
  font-size: var(--font20);
  color: #333;
  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;
  cursor: pointer;
}
.ins_informationCon1 .center_box .box_info .content .conBox .wordBox .list .one span {
  display: block;
  width: 58.3%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_informationCon1 .center_box .box_info .content .conBox .wordBox .list .one i {
  font-style: unset;
  color: #999;
}
.ins_informationCon1 .center_box .box_info .content .conBox .wordBox .list .one:hover span {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_informationCon1 .center_box .box_info .content .conBox .btnBox {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_informationCon1 .center_box .box_info .content .conBox.active {
  display: block;
}
.ins_informationCon1 .center_box .box_info .content .conBox .textBox {
  width: 100%;
  height: auto;
}
.ins_informationCon1 .center_box .box_info .content .conBox .textBox.active {
  display: none;
}
.ins_informationCon1 .center_box .box_info .content .conBox .exoBox {
  width: 100%;
  height: auto;
  display: none;
}
.ins_informationCon1 .center_box .box_info .content .conBox .exoBox .exoCon1 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_informationCon1 .center_box .box_info .content .conBox .exoBox.active {
  display: block;
}
.ins_informationCon1 .imgBoxBg {
  opacity: 0.6;
}
@media (max-width:990px) {
  .ins_informationCon1 .center_box .box_info .content .conBox .wordBox .list .one {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.2rem;
  }
  .ins_informationCon1 .center_box .box_info .content .conBox .wordBox .list .one span {
    width: 100%;
    height: auto;
  }
  .ins_informationCon1 .center_box .box_info .item_box {
    position: relative;
    top: unset;
  }
}
/* --------------------------------------------------------------- 联系我们 */
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}
.ins_contactCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: linear-gradient(0, rgba(0, 152, 159, 0.08) 0%, rgba(0, 152, 159, 0.02) 100%);
  padding: 0.48rem;
  background-color: #FFF;
  border: 1px solid #00989F33;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_contactCon1 .center_box .item_box .item .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font40);
  font-weight: 500;
}
.ins_contactCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 1.74rem;
}
.ins_contactCon1 .center_box .item_box .item .word_box .word {
  font-size: var(--font24);
  line-height: 1.333;
  color: #666;
}
.ins_contactCon1 .center_box .item_box .item .word_box .word .one {
  color: var(--active_color);
  font-weight: 500;
}
.ins_contactCon1 .center_box .item_box .item .word_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_contactCon1 .center_box .list_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #00989F33;
  border-radius: 0.08rem;
  margin-top: 0.8rem;
  background-image: url(../images/Vector\ 5.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #FFF;
  background-repeat: bottom left;
}
.ins_contactCon1 .center_box .list_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.48rem;
  border-right: 1px solid #00989F33;
  overflow: hidden;
}
.ins_contactCon1 .center_box .list_box .item .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font40);
  font-weight: 500;
  line-height: 1.05;
}
.ins_contactCon1 .center_box .list_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_contactCon1 .center_box .list_box .item .word_box .one {
  color: #666;
  line-height: 1.333;
  font-weight: 300;
}
.ins_contactCon1 .center_box .list_box .item .word_box .one span {
  color: #000;
  font-weight: 500;
}
.ins_contactCon1 .center_box .list_box .item .word_box .tow {
  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.3rem;
}
.ins_contactCon1 .center_box .list_box .item .word_box .tow .icon {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .list_box .item .word_box .tow .icon .name {
  color: #000;
  font-weight: 500;
}
.ins_contactCon1 .center_box .list_box .item .word_box .tow .icon .word {
  color: #666;
}
.ins_contactCon1 .center_box .list_box .item:last-child {
  border: 0;
}
@media (max-width:990px) {
  .ins_contactCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_contactCon1 .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_contactCon1 .center_box .item_box .item .word_box {
    margin-top: 0.4rem;
  }
  .ins_contactCon1 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_contactCon1 .center_box .list_box .item {
    width: 100%;
    height: auto;
    border-right: unset;
    border-bottom: 1px solid #00989F33;
    padding-top: 0.4rem;
  }
  .ins_contactCon1 .center_box .list_box .item .word_box {
    margin-top: 0.4rem;
  }
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_contactCon2 .img_w100 {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .img_w100 img {
  width: 100%;
  height: auto;
}
/* --------------------------------------------------------------- 媒体中心 */
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.96rem 0;
  background: linear-gradient(166deg, #60BDC7 -153.76%, #F2F9FC 43.79%);
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_newCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 38.6%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box .t1 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box .line {
  width: 100%;
  height: 1px;
  margin-top: 0.4rem;
  background: #DDD;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  color: #666;
  line-height: 1.333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .left_box .tY {
  opacity: 0;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 49%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box .img {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box .img .pb {
  padding-bottom: 64.5%;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon1 .center_box .swiper_box ul li.swiper-slide-active .tY {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.ins_newCon1 .center_box .idxPager {
  width: 49%;
  right: 0;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  bottom: 0.4rem;
  left: unset;
}
.ins_newCon1 .center_box .idxPager .svgBox {
  opacity: 0.5;
}
.ins_newCon1 .center_box .idxPager .svgBox.active {
  opacity: 1;
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-top: 0.64rem;
}
.ins_newCon2 .center_box .item_box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  color: #000;
  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;
  position: relative;
  z-index: 1;
  padding-top: 0.24rem;
  padding-bottom: 0.4rem;
}
.ins_newCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #DDDDDD;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .wordBox {
  width: 37.395%;
  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.4rem;
}
.ins_newCon2 .center_box .item_box .item .wordBox .number {
  font-size: var(--font18);
  color: #999;
}
.ins_newCon2 .center_box .item_box .item .wordBox .word {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box .item .wordBox .word .t1 {
  font-weight: 600;
  -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_newCon2 .center_box .item_box .item .wordBox .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon2 .center_box .item_box .item .wordBox .word .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  font-size: var(--font18);
  margin-top: 0.48rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .wordBox .word .more i {
  font-size: var(--font20);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .imgs {
  width: 27.395%;
  height: auto;
  overflow: hidden;
  border-radius: 0.08rem;
}
.ins_newCon2 .center_box .item_box .item .imgs img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item:hover .wordBox .word .t1 {
  color: var(--active_color);
}
.ins_newCon2 .center_box .item_box .item:hover .wordBox .word .more {
  color: var(--active_color);
}
.ins_newCon2 .center_box .item_box .item:hover .wordBox .word .more i {
  color: var(--active_color);
}
.ins_newCon2 .center_box .item_box .item:hover .imgs img {
  box-shadow: 0px 5px 20px 0px rgba(41, 165, 170, 0.12);
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .item_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.6rem;
  }
  .ins_newCon2 .center_box .item_box .item .wordBox {
    width: 100%;
    height: auto;
  }
  .ins_newCon2 .center_box .item_box .item .imgs {
    width: 100%;
    height: auto;
  }
  .ins_newCon2 .center_box .pagerBoxCon1 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.pagerBoxCon1 {
  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;
  margin-top: 0.8rem;
}
.pagerBoxCon1 .btnBox {
  width: fit-content;
}
.pagerBoxCon1 .btnBox .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;
  padding: 0.08rem 0.2rem;
  gap: 0.12rem;
  border-radius: 0.04rem;
  border: 1px solid var(--Black, #000);
  cursor: pointer;
  font-size: var(--font16);
}
.pagerBoxCon1 .btnBox .icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(1px);
  font-size: var(--font18);
}
.pagerBoxCon1 .layui-laypage {
  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;
  position: relative;
  z-index: 1;
}
.pagerBoxCon1 .layui-laypage .layui-laypage-prev {
  position: absolute;
  left: 0;
  width: fit-content;
  height: auto;
}
.pagerBoxCon1 .layui-laypage .layui-laypage-prev span {
  width: auto;
  height: auto;
}
.pagerBoxCon1 .layui-laypage .layui-laypage-next {
  position: absolute;
  right: 0;
  width: fit-content;
  height: auto;
}
.pagerBoxCon1 .layui-laypage .layui-laypage-next span {
  width: auto;
  height: auto;
}
@media (max-width:990px) {
  .pagerBoxCon1 .layui-laypage-prev,
  .pagerBoxCon1 .layui-laypage-next {
    display: none !important;
  }
}
/* --------------------------------------------------------------- 新闻详情 */
.ins_newdCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.92rem;
  padding-bottom: 1.2rem;
  background: linear-gradient(166deg, #60BDC7 -153.76%, #F2F9FC 43.79%);
}
.ins_newdCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newdCon1 .center_box .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_newdCon1 .center_box .top_box .title_box {
  max-width: 78%;
}
.ins_newdCon1 .center_box .top_box .navBox {
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 0.08rem;
  font-size: var(--font20);
  flex-shrink: 0;
}
.ins_newdCon1 .center_box .top_box .navBox .icon {
  width: 0.26rem;
  height: 0.26rem;
  display: -webkit-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_newdCon1 .center_box .top_box .navBox .one {
  color: #000000;
  opacity: 0.3;
}
.ins_newdCon1 .center_box .top_box .navBox .one.active {
  color: var(--active_color);
  opacity: 1;
}
.ins_newdCon1 .center_box .top_box .navBox span {
  opacity: 0.3;
}
.ins_newdCon1 .center_box .content_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFF;
  padding: 0.8rem 1.1rem;
  border-radius: 0.08rem;
  margin-top: 0.6rem;
}
.ins_newdCon1 .center_box .content_box .iconBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 0.4rem;
}
.ins_newdCon1 .center_box .content_box .iconBox .icon {
  width: fit-content;
  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(--font18);
  color: #999;
  font-weight: 300;
}
.ins_newdCon1 .center_box .content_box .iconBox .icon img {
  width: 0.4rem;
}
.ins_newdCon1 .center_box .content_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  font-size: var(--font18);
  color: #666;
  padding-bottom: 0.96rem;
  border-bottom: 1px solid #DDDDDD;
  line-height: 1.3;
}
.ins_newdCon1 .center_box .content_box .content p {
  min-height: 0.5em;
}
.ins_newdCon1 .center_box .content_box .pagerBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-top: 0.48rem;
}
.ins_newdCon1 .center_box .content_box .pagerBox .btnBox {
  color: #000;
  width: 30%;
}
.ins_newdCon1 .center_box .content_box .pagerBox .btnBox .word {
  font-size: var(--font18);
  line-height: 1.5;
  -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_newdCon1 .center_box .content_box .pagerBox .btnBox .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;
  padding: 0.08rem 0.2rem;
  gap: 0.12rem;
  border-radius: 0.04rem;
  border: 1px solid var(--Black, #000);
  margin-top: 0.29rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newdCon1 .center_box .content_box .pagerBox .btnBox .icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transform: translateY(1px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newdCon1 .center_box .content_box .pagerBox .btnBox .icon:hover {
  border-color: var(--active_color);
  color: var(--active_color);
}
.ins_newdCon1 .center_box .content_box .pagerBox .btnBox .icon:hover i {
  color: var(--active_color);
}
.ins_newdCon1 .center_box .content_box .pagerBox .btnBox.right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  text-align: end;
}
.ins_newdCon1 .center_box .content_box .pagerBox .btnBox:hover .word {
  color: var(--active_color);
}
.ins_newdCon1 .center_box .content_box .pagerBox .btnBox:nth-child(2n) {
  max-width: unset;
  width: fit-content;
}
@media (max-width:990px) {
  .ins_newdCon1 .center_box .top_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.6rem;
  }
  .ins_newdCon1 .center_box .top_box .title_box {
    max-width: 100%;
  }
  .ins_newdCon1 .center_box .content_box {
    padding: 0.8rem 0.2rem;
  }
  .ins_newdCon1 .center_box .content_box .pagerBox {
    display: none;
  }
}
.ins_joinCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: linear-gradient(166deg, #60BDC7 -153.76%, #F7F9FA 43.79%);
}
.ins_joinCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon7 .center_box .ins_top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_joinCon7 .center_box .ins_top .ins_title {
  width: fit-content;
}
.ins_joinCon7 .center_box .ins_top .ins_title .t1 {
  font-weight: normal;
}
.ins_joinCon7 .center_box .ins_top .item_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #00989F1A;
  border-radius: 100px;
  overflow: hidden;
}
.ins_joinCon7 .center_box .ins_top .item_box .item {
  width: fit-content;
  min-width: 1.98rem;
  height: 0.68rem;
  min-height: 40px;
  padding: 0 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font20);
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon7 .center_box .ins_top .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #00989F1A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon7 .center_box .ins_top .item_box .item:last-child::after {
  opacity: 0;
}
.ins_joinCon7 .center_box .ins_top .item_box .item:hover {
  color: var(--active_color);
}
.ins_joinCon7 .center_box .ins_top .item_box .item.active {
  background: var(--active_color);
  color: #FFF;
}
.ins_joinCon7 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.64rem;
}
.ins_joinCon7 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_joinCon7 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box {
  width: 25.6%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.16rem;
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one {
  width: 100%;
  height: auto;
  padding: 0.48rem;
  border: 1px solid #00989F33;
  background: linear-gradient(180deg, #FFF 0%, #FFF 100%);
  background: url(../images/z41.png) no-repeat;
  background-position: bottom right;
  border-radius: 0.08rem;
  background-color: #FFF;
  cursor: pointer;
  box-shadow: 0px 24px 60px 0px rgba(41, 165, 170, 0.12);
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one .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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one .word .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #888;
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one .icon {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  color: #999999;
  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_joinCon7 .center_box .swiper_box ul li .left_box .one .icon .ic {
  width: 100%;
  height: auto;
  font-size: var(--font18);
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one .icon .ic span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one .icon .hx {
  display: -webkit-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.2rem;
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one .icon .hx p {
  display: contents;
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one.active .word .t1 {
  color: var(--active_color);
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one.active .icon .ic span {
  color: var(--active_color);
}
.ins_joinCon7 .center_box .swiper_box ul li .left_box .one:hover .word .t1 {
  color: var(--active_color);
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box {
  width: 72.3%;
  height: auto;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content {
  background: #FFF;
  height: auto;
  border-radius: 8px;
  padding: 0.64rem;
  display: none;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box {
  width: 100%;
  height: auto;
  padding-bottom: 0.22rem;
  border-bottom: 1px solid #DDD;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box .top .word {
  color: var(--active_color);
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box .top .icon {
  font-size: var(--font20);
  color: 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;
  gap: 0.18rem;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box .top .icon i {
  font-size: var(--font26);
  color: #CCCCCC;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box .list {
  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.6rem;
  margin-top: 0.64rem;
  font-size: var(--font18);
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box .list .one {
  color: #999;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box .list .one span {
  color: #000;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  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.6rem;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .word_box .one {
  width: 100%;
  height: auto;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .word_box .one .title {
  font-weight: 500;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content .word_box .one .subtitle {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  line-height: 1.42;
  color: #333;
}
.ins_joinCon7 .center_box .swiper_box ul li .right_box .content.active {
  display: block;
}
@media (max-width:990px) {
  .ins_joinCon7 .center_box .swiper_box ul li .right_box .content {
    padding: 0.4rem;
  }
  .ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box .top {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .ins_joinCon7 .center_box .swiper_box ul li .right_box .content .top_box .list {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.1rem;
    margin-top: 0.2rem;
  }
  .ins_joinCon7 .center_box .swiper_box ul li .left_box .one .icon {
    margin-top: 0.4rem;
  }
}

@media (max-width:480px) {
  .ins_aboutCon1 .bg_img {
    top: 0;
  }
}

    .ins_responCon2 .center_box .swiper_info { width: 100%; height: auto; 
    display: flex;
    align-items: center;
    gap: 50px;}
    
 .ins_responCon2 .center_box .swiper_info .swiperBtn2 {
  width: 0.6rem;
  height: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
 .ins_responCon2 .center_box .swiper_info .swiperBtn2 i {
  font-size: var(--font20);
  font-weight: 500;
}
 .ins_responCon2 .center_box .swiper_info .swiperBtn2:hover {
  background: #FFFF;
  color: var(--active_color);
}

 .ins_responCon2 .center_box .swiper_info .swiper_box { overflow: hidden; }