@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes run2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes grow3 {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes line2 {
  0% {
    transform: translateY(-100%);
    top: 0;
  }
  100% {
    top: 100%;
    transform: translateY(100%);
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.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: #2549B1;
  --color_fff: #ffffff;
  --color_text: #282828;
  --active_color1: #12c54f;
  --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;
  --color_003: #F7F7F7;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(12px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "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: 700;
}
@font-face {
  font-family: "HarmonyOS_Sans";
  src: url("../fonts/HarmonyOS_Sans_SC_Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "BEBA";
  src: url("../fonts/BEBASNEUE-REGULAR.TTF");
  font-weight: 700;
}
@font-face {
  font-family: "Alimama";
  src: url("../fonts/AlimamashuHeiTi.TTF");
  font-weight: 700;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1820,
.container,
.wrap {
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1820,
  .container,
  .wrap {
    max-width: 94.79166667%;
  }
}
@media (max-width:990px) {
  .w1820,
  .container,
  .wrap {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1840 {
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1840 {
    max-width: 95.83333333%;
  }
}
@media (max-width:990px) {
  .w1840 {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1560 {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1560 {
    max-width: 81.25%;
  }
}
@media (max-width:990px) {
  .w1560 {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1440 {
    max-width: 75%;
  }
}
@media (max-width:990px) {
  .w1440 {
    max-width: 100%;
    padding: 0 20px;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 0.9rem;
  font-size: var(--font16);
  color: #333333;
  font-family: "HarmonyOS_Sans";
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
  transform: translateY(-1.2rem);
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background-image: linear-gradient(180deg, #e3e3e375, #ffffff00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 0.1rem;
    height: 0.1rem;
    background: var(--active_color);
    opacity: 0.4;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    opacity: 1;
  }
  .idxPageHide.bgFFF span {
    background: #FFFFFF;
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.16rem;
}
.idxPageShow span {
  width: 0.1rem;
  height: 0.1rem;
  background: var(--active_color);
  opacity: 0.4;
}
.idxPageShow .swiper-pagination-bullet-active {
  opacity: 1;
}
.idxPageShow.bgFFF span {
  background: #FFFFFF;
}
/* --------------------------------------------------------------- 吸顶 */
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
/* --------------------------------------------------------------- 圖片放大 */
.imgScale img {
  transform: scale(1.5);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
/* --------------------------------------------------------------- 轮播图依次出现 */
.wowUpS {
  opacity: 0;
}
/* --------------------------------------------------------------- 代替class */
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img {
  width: 100%;
  height: auto;
}
/* --------------------------------------------------------------- 视频播放图标 */
.vIcon {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.vIcon::after {
  content: '\e61d';
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "iconfont";
  font-size: var(--font50);
  color: #FFFFFF;
  cursor: pointer;
}
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.5;
}
.newContent p {
  min-height: 0.5em;
}
.newContent img {
  width: unset !important;
  height: unset !important;
}
.wowFg span {
  opacity: 0.2;
  display: inline-block;
}
.wowFg.toUp span {
  animation: opacity 0.5s forwards;
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
}
.bgImg_adap {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img {
  width: 100%;
  height: auto;
  font-size: 0;
}
.bgImg_adap.bot {
  top: unset;
  bottom: 0;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
  z-index: 50;
}
ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.idx_more {
  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.15rem;
}
.idx_more .more {
  width: fit-content;
  height: 0.56rem;
  min-height: 35px;
  padding: 0 0.5rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
  background: var(--active_color1);
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_more .more span {
  font-size: var(--font16);
}
.idx_more .more i {
  font-size: 10px;
}
.idx_more .more:hover {
  background: #0fb849;
}
.idx_more .more:hover i {
  animation: more 0.5s linear;
}
.idx_more.bgColor .more {
  background: -moz-linear-gradient(0deg, #2549b1 0%, rgba(37, 73, 177, 0.6) 100%);
  background: -webkit-linear-gradient(0deg, #2549b1 0%, rgba(37, 73, 177, 0.6) 100%);
  background: -ms-linear-gradient(0deg, #2549b1 0%, rgba(37, 73, 177, 0.6) 100%);
}
.idx_more.bgColor .more:hover {
  background: -moz-linear-gradient(0deg, #143186 0%, rgba(33, 67, 168, 0.6) 100%);
  background: -webkit-linear-gradient(0deg, #143186 0%, rgba(33, 67, 168, 0.6) 100%);
  background: -ms-linear-gradient(0deg, #143186 0%, rgba(33, 67, 168, 0.6) 100%);
}
.idx_more.bgCo2 .more {
  background: linear-gradient(90deg, #14B9FF 0%, rgba(37, 73, 177, 0.7) 100%);
}
.idx_more.bgFFF .more {
  background: var(--color_fff);
  color: #000000;
}
.idx_more.bgFFF .more:hover {
  background: var(--active_color1);
  color: #FFFFFF;
}
.idx_more.bgGra .more {
  background: linear-gradient(90deg, #14B9FF 0%, rgba(20, 185, 255, 0.1) 100%);
}
.idx_more.bgGra .more:hover {
  opacity: 0.8;
}
.idx_more.bgAuto .more {
  background: var(--bgColorAc);
}
.idx_more.bgAuto .more:hover {
  opacity: 0.8;
}
.idx_more.bg000 .more {
  border: 1px solid #00000033;
  color: #333333;
  background: none;
}
.idx_title {
  width: fit-content;
  height: auto;
  --color: #FFFFFF;
}
.idx_title .icon {
  color: var(--color);
  font-size: var(--font24);
  padding-left: 0.18rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.idx_title .icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.04rem;
  height: 100%;
  background: var(--active_color1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_title .t1 {
  color: var(--color);
  margin-top: 0.25rem;
  line-height: 1.23;
  font-weight: 600;
}
.idx_title .t1 .teBox {
  width: fit-content;
  position: relative;
  z-index: 1;
}
.idx_title .t1 .teBox .af {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  color: #aaaaaa;
}
.idx_title .t1 .teBox .be {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: var(--color);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.idx_title .t1.active .teBox .be {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.idx_title .t2 {
  color: var(--color);
  margin-top: 0.3rem;
  font-weight: 300;
}
.idx_title .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.56rem;
}
.idx_title.colorBg {
  --color: #000000;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.top_info .idx_title {
  width: fit-content;
}
.top_info .idx_more {
  width: fit-content;
}
@media (max-width:990px) {
  .top_info .idx_more {
    display: none;
  }
}
.ins_title {
  width: 100%;
  height: auto;
  color: #333333;
}
.ins_title .icon {
  font-size: var(--font20);
  padding-left: 0.15rem;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.ins_title .icon::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background: var(--active_color1);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_title .t1 {
  font-weight: 700;
}
.ins_title .t2 {
  margin-top: 0.48rem;
  line-height: 1.444;
  font-weight: 300;
}
.ins_title .t3 {
  margin-top: 0.44rem;
  line-height: 1.44;
  font-weight: 300;
  color: #666666;
}
.ins_title.coFFF {
  color: #FFFFFF;
}
.ins_title.coFFF .icon {
  color: var(--active_color1);
}
.ins_title.coFFF .t2 p {
  opacity: 0.6;
}
.idx_swiperBtn {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
  flex-shrink: 0;
}
@media (max-width:990px) {
  .idx_swiperBtn {
    display: none;
  }
}
.swiperBtn {
  width: 0.66rem;
  height: 0.66rem;
  border-radius: 50%;
  border: 1px solid #FFFFFF1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiperBtn i {
  font-size: var(--font32);
  color: #FFFFFF99;
}
.swiperBtn:hover {
  border-color: #ffffff65;
}
.swiperBtn.bg000 {
  border: 1px solid #0000001A;
}
.swiperBtn.bg000 i {
  color: #00000099;
}
.swiperBtn.bg000:hover {
  background: var(--active_color);
}
.swiperBtn.bg000:hover i {
  color: #FFFFFF;
}
.idx_more2 {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.15rem;
}
.idx_more2 .more {
  width: fit-content;
  height: 0.56rem;
  padding: 0 0.3rem;
  background-image: url(../images/bg10.png);
  background-size: 100% 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #A1E3FF;
  display: -webkit-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.15rem;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 .more:hover {
  opacity: 0.8;
}
.idx_more2 .more i {
  font-size: var(--font18);
}
.idx_more3 {
  width: fit-content;
}
.idx_more3 .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.11rem;
  font-size: var(--font18);
  color: #333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more3 .more:hover {
  opacity: 0.8;
}
.idx_more4 {
  width: fit-content;
}
.idx_more4 .more {
  flex-shrink: 0;
  color: #999;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_more4 .more i {
  font-size: var(--font18);
}
.idx_more4 .more:hover {
  color: var(--active_color);
}
.idx_laypage {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.idxPageLine {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #0000001A;
}
.idxPageLine span {
  background: var(--active_color) !important;
}
.zindex {
  z-index: 50 !important;
}
.tagBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.tagBox .tag {
  width: fit-content;
  height: auto;
  padding: 0.08rem 0.14rem;
  padding-bottom: 0.09rem;
  background: #2549B114;
  display: -webkit-box;
  display: -ms-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: #2549B1;
  border-radius: 0.05rem;
  line-height: 1;
}
.tagBox .tag:hover {
  background: var(--active_color) !important;
  color: #FFFFFF !important;
}
.nav_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.05rem 0.2rem;
  flex-shrink: 0;
}
.nav_box .one {
  font-size: var(--font16);
  color: #33333380;
}
.nav_box .one.active {
  color: #333;
}
@media (max-width:990px) {
  .nav_box {
    display: none;
  }
}
.swiperPagLine {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.swiperPagLine .idxPageLine {
  width: 100%;
  height: 1px;
}
.swiperPagLine .idx_swiperBtn {
  flex-shrink: 0;
}
.tableInfo {
  width: 100%;
  font-size: var(--font16);
  position: relative;
  z-index: 1;
}
.tableInfo .name {
  font-size: 12px;
  color: #999999;
  padding-bottom: 0.2rem;
}
.tableInfo .info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  max-height: 8.3rem;
  overflow: auto;
}
.tableInfo table {
  width: 100%;
  height: auto;
  table-layout: fixed;
}
.tableInfo table tr {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
  color: #333333;
}
.tableInfo table tr td {
  height: 0.55rem;
  padding: 0.15rem 0;
}
.tableInfo table tr td i {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: var(--font18);
}
.tableInfo table tr td i:hover {
  color: var(--active_color);
}
.tableInfo table tr td img {
  transform: translateY(-2.5px);
}
.tableInfo table tr td:first-child {
  width: 20%;
  border: 0;
}
.tableInfo table thead {
  background: #11111108;
  color: #333;
  font-weight: 500;
  position: sticky;
  top: 0px;
  z-index: 3;
}
.tableInfo table thead tr td {
  color: #333;
}
.tableInfo table thead::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #111;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.18rem;
  padding: 0;
  margin: 0;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div {
  color: #00000099;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: #000;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.05rem;
  position: relative;
  z-index: 1;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #0000001A;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
}
.layui_item .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color);
}
.layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.slideRight {
  font-size: 12px;
  margin-top: 0.2rem;
}
#particles-js {
  width: 100%;
  height: 100%;
}
* {
  scrollbar-color: var(--active_color) #ffffff00;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d7;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0.76);
}
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .imgBox {
  width: 100%;
  height: auto;
}
.idx_banner .imgBox img,
.idx_banner .imgBox video {
  width: 100%;
  height: auto;
}
.idx_banner .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.idx_banner .item_box .item {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}
.idx_banner .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.16rem;
  height: 0.16rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  border-radius: 50%;
}
.idx_banner .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.32rem;
  height: 0.32rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  border-radius: 50%;
  opacity: 0.3;
  animation: grow3 linear infinite var(--time);
}
.idx_banner .item_box .item i {
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  display: block;
  position: absolute;
  border-radius: 50%;
  z-index: 3;
}
.idx_banner .item_box .item .iconBox {
  width: max-content;
  position: absolute;
  left: 0.36rem;
  display: -webkit-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.15rem;
  background: #ffffffa4;
  backdrop-filter: blur(10px);
  padding: 0.17rem;
  padding-right: 0.3rem;
  border-radius: 0.1rem;
  border: 1px solid #FFFFFF;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(10%);
}
.idx_banner .item_box .item .iconBox::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff9c;
  border: 1px solid #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  transform: rotate(-45deg) translateX(-35%) translateY(-50%);
  z-index: -5;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
.idx_banner .item_box .item .iconBox .img {
  background: #1932f41f;
  border-radius: 0.03rem;
  overflow: hidden;
  width: 0.46rem;
}
.idx_banner .item_box .item .iconBox .word {
  font-size: var(--font16);
}
.idx_banner .item_box .item .iconBox .icon {
  width: 0.15rem;
  height: 0.15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: var(--active_color);
  border-radius: 100px;
}
.idx_banner .item_box .item .iconBox .icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.5px 0 2.5px 3px;
  border-color: transparent transparent transparent #FFFFFF;
}
.idx_banner .item_box .item.right .iconBox {
  left: unset;
  right: 0.36rem;
}
.idx_banner .item_box .item.right .iconBox::after {
  left: unset;
  right: 0;
  transform: rotate(135deg) translateX(-40%) translateY(-40%);
}
.idx_banner .item_box .item:hover {
  z-index: 15;
}
.idx_banner .item_box .item:hover .iconBox {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
@media (max-width:990px) {
  .idx_banner .item_box {
    display: none !important;
  }
}
.idx_product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.idx_product .content {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.idx_product .content .wordBox {
  width: 100%;
  height: auto;
  padding-top: 0.8rem;
  position: relative;
  z-index: 4;
}
.idx_product .content .wordBox .center_box {
  width: 100%;
  height: auto;
}
.idx_product .content .wordBox .center_box .left_box {
  width: 41%;
  height: auto;
}
.idx_product .content .wordBox .center_box .left_box .t2 p {
  opacity: 0.6;
}
.idx_product .content .wordBox .center_box .item_box {
  width: 24.7%;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.4rem;
}
.idx_product .content .wordBox .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #FFFFFF33;
}
.idx_product .content .wordBox .center_box .item_box .item .icon {
  width: fit-content;
}
.idx_product .content .wordBox .center_box .item_box .item .icon span {
  font-family: "BEBA";
  font-size: var(--font80);
  line-height: 1;
  padding-right: 0.05rem;
}
.idx_product .content .wordBox .center_box .item_box .item .icon i {
  font-style: unset;
  color: var(--active_color1);
  font-weight: 600;
}
.idx_product .content .wordBox .center_box .item_box .item .word {
  font-size: var(--font18);
  line-height: 2.5;
}
.idx_product .content .maskBox {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_product .content .maskBox .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.idx_product .content .maskBox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_technological {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
}
.idx_technological .center_box {
  width: 100%;
  height: auto;
}
.idx_technological .center_box .content {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_technological .center_box .content .left_box {
  width: 33%;
}
.idx_technological .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 1rem;
  gap: 1.4rem;
}
.idx_technological .center_box .item_box .item {
  width: fit-content;
  padding-left: 0.34rem;
  position: relative;
  z-index: 1;
  transform: var(--tY);
  overflow: hidden;
}
.idx_technological .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
}
.idx_technological .center_box .item_box .item::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0.17rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  animation: line2 var(--time) linear infinite;
}
.idx_technological .center_box .item_box .item .wordBox {
  width: 100%;
  height: auto;
}
.idx_technological .center_box .item_box .item .wordBox .icon {
  font-size: var(--font80);
  font-family: "BEBA";
  line-height: 1;
}
.idx_technological .center_box .item_box .item .wordBox .icon i {
  font-size: var(--font50);
  font-style: unset;
  font-weight: 600;
}
.idx_technological .center_box .item_box .item .wordBox .word {
  font-size: var(--font18);
  margin-top: 0.1rem;
}
.idx_technological .center_box .item_box .item .img {
  width: 0.88rem;
  height: auto;
  margin-top: 1.1rem;
}
.idx_technological .center_box .item_box .item:nth-child(2) {
  padding-right: 0.6rem;
  margin-top: 0.6rem;
}
.idx_technological .center_box .item_box .item:nth-child(3) {
  margin-top: 1.2rem;
}
@media (max-width:990px) {
  .idx_technological .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
  }
  .idx_technological .center_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .idx_technological .center_box .item_box .item .img {
    margin-top: 0 !important;
    width: 1.3rem;
  }
  .idx_technological .center_box .item_box .item:nth-child(2n) {
    padding-right: 0;
  }
}
.idx_industry {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.idx_industry .swiper_box {
  width: 100%;
  height: auto;
}
.idx_industry .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_industry .swiper_box ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.idx_industry .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.idx_industry .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
}
.idx_industry .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
  padding-top: 1.1rem;
}
.idx_industry .swiper_box ul li .centerInfo .content .center_box .idx_title {
  width: 43%;
}
.idx_industry .listOne {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.4rem;
  z-index: 10;
}
.idx_industry .listOne .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
}
.idx_industry .listOne .item_box .item {
  flex: 1;
  color: #ffffff99;
  font-size: var(--font20);
  padding-bottom: 0.12rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.idx_industry .listOne .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #FFF;
  opacity: 0.3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_industry .listOne .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--active_color1);
  z-index: 2;
}
.idx_industry .listOne .item_box .item.active {
  color: var(--active_color1);
}
.idx_industry .listOne .item_box .item.active::before {
  width: 100%;
  transition: all 5s linear;
}
@media (max-width:990px) {
  .idx_industry .swiper_box ul li .centerInfo .content .center_box .idx_title {
    width: 100%;
    height: auto;
  }
  .idx_industry .listOne .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .idx_industry .listOne .item_box .item {
    padding: 0.2rem;
    background: #FFFFFF1A;
    backdrop-filter: blur(10px);
  }
  .idx_industry .listOne .item_box .item::after {
    opacity: 0;
  }
}
.idx_logo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  padding-bottom: 1.1rem;
}
.idx_logo .center_box {
  width: 100%;
  height: auto;
}
.idx_logo .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.idx_logo .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_logo .swiper_info .swiper_box ul {
  transition-timing-function: linear !important;
}
.idx_logo .swiper_info .swiper_box ul li {
  width: 0%;
  height: auto;
}
.idx_logo .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  border: 1px solid #e5e5e5;
  cursor: pointer;
}
.idx_logo .swiper_info .swiper_box ul li .centerInfo .pb {
  padding-bottom: 52%;
}
.idx_logo .swiper_info .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0) invert(0.75);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_logo .swiper_info .swiper_box ul li .centerInfo:hover {
  background: #f6f6f9;
  border-color: #96acec;
}
.idx_logo .swiper_info .swiper_box ul li .centerInfo:hover .pb .ab img {
  opacity: 1;
  filter: unset;
}
.idx_new {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fafafa;
  padding: 1.1rem 0;
}
.idx_new .center_box {
  width: 100%;
  height: auto;
}
.idx_new .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.idx_new .center_box .swiper_box ul::after {
  content: '';
  position: absolute;
  top: 0.56rem;
  right: 100%;
  width: 100%;
  height: 0.12rem;
  background: url(../images/i5.png);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .center_box .swiper_box ul li {
  width: 33.333%;
  height: auto;
}
.idx_new .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.idx_new .center_box .swiper_box ul li .centerInfo .time {
  width: fit-content;
  font-size: var(--font16);
  background: #ececec;
  height: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0.16rem;
  border-radius: 50px;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.24rem;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content .icon {
  width: 100%;
  height: auto;
  font-size: 0;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content .icon img {
  width: 100%;
  height: auto;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content .word {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
  padding: 0 0.3rem;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content .word .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content .word .t2 {
  margin-top: 0.2rem;
  color: #666666;
  font-weight: 300;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content .img {
  padding: 0 0.3rem;
  width: 67%;
  height: auto;
  margin-top: 0.8rem;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content .img .pb {
  padding-bottom: 66%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.idx_new .center_box .swiper_box ul li .centerInfo .content .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .center_box .swiper_box ul li .centerInfo:hover .content .word .t1 {
  color: var(--active_color);
}
.idx_new .center_box .swiper_box ul li .centerInfo:hover .content .img .pb .ab img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .idx_new .center_box .swiper_box ul::after {
    opacity: 0;
  }
  .idx_new .center_box .swiper_box ul li .centerInfo .time {
    padding: 0.08rem 0.16rem;
  }
}
.ins_laboratoryCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.15rem;
  background: #101E3A;
  padding-bottom: 1.4rem;
}
.ins_laboratoryCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon1 .center_box .content1 {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_laboratoryCon1 .center_box .content1 .left_box {
  width: 48%;
}
.ins_laboratoryCon1 .center_box .content1 .right_box {
  width: 50%;
}
.ins_laboratoryCon1 .center_box .content1 .right_box .video_info {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon1 .center_box .content1 .right_box .video_info .pb {
  padding-bottom: 90.2%;
}
.ins_laboratoryCon1 .center_box .content1 .right_box .video_info .pb .ab {
  background: #101E3A;
}
.ins_laboratoryCon1 .center_box .content1 .right_box .video_info .pb .ab video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  transform: translateX(10%);
}
.ins_laboratoryCon1 .center_box .content2 {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon1 .center_box .content2 .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-right: 0.68rem;
}
.ins_laboratoryCon1 .center_box .content2 .item_box .item {
  width: fit-content;
  color: #C7E5FF;
  padding-left: 0.35rem;
  position: relative;
  z-index: 1;
  border-left: 1px solid #FFFFFF1A;
  transform: var(--tY);
}
.ins_laboratoryCon1 .center_box .content2 .item_box .item .icon {
  width: 100%;
  height: auto;
  font-size: 0.8rem;
  font-family: "BEBA";
}
.ins_laboratoryCon1 .center_box .content2 .item_box .item .icon i {
  font-size: var(--font46);
  font-style: normal;
}
.ins_laboratoryCon1 .center_box .content2 .item_box .item .icon i.font26 {
  font-size: var(--font26);
}
.ins_laboratoryCon1 .center_box .content2 .item_box .item .word {
  width: 100%;
  height: auto;
  color: #FFFFFF99;
  margin-top: 0.09rem;
}
.ins_laboratoryCon1 .center_box .content3 {
  width: 100%;
  height: auto;
  margin-top: 1.4rem;
  border-top: 1px solid #FFFFFF1A;
  border-bottom: 1px solid #FFFFFF1A;
}
.ins_laboratoryCon1 .center_box .content3 .logo_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;
  padding: 0.32rem 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_laboratoryCon1 .center_box .content3 .logo_box .item {
  width: fit-content;
  height: 0.74rem;
}
.ins_laboratoryCon1 .center_box .content4 {
  width: 100%;
  height: auto;
  margin-top: 1.34rem;
  padding-bottom: 0.685rem;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF0D;
  backdrop-filter: blur(4px);
  border-radius: 0.1rem;
  overflow: hidden;
  opacity: 0.4;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .left_box {
  width: 49.6%;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  height: 100%;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .left_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box {
  width: 50.4%;
  padding: 0.6rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .tit_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;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #FFFFFF1A;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .tit_box .t1 {
  font-weight: 700;
  line-height: 1;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .tit_box .icon {
  font-weight: 400;
  line-height: 1;
  font-size: var(--font20);
  font-family: "BEBA";
  display: -webkit-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.04rem;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .tit_box .icon i {
  opacity: 0.3;
  font-style: unset;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .listCon1 {
  width: 100%;
  height: auto;
  margin-top: 0.36rem;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .listCon1 .t1 {
  width: 100%;
  height: auto;
  color: #C7E5FF;
  font-weight: 500;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .listCon1 .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1rem 0.2rem;
  margin-top: 0.16rem;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .listCon1 .list .one {
  font-weight: 300;
  color: #FFFFFF99;
  font-size: var(--font16);
  padding-left: 0.14rem;
  position: relative;
  z-index: 1;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .listCon1 .list .one::after {
  content: '';
  position: absolute;
  width: 0.02rem;
  height: 0.02rem;
  border-radius: 50%;
  border: 2px solid #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0.5em;
  opacity: 0.2;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .word_two {
  width: 100%;
  height: auto;
  margin-top: 0.51rem;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .word_two .t1 {
  color: #FFFFFF99;
  font-size: var(--font16);
  line-height: 1.5;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .sub_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .sub_box .t1 {
  font-size: var(--font16);
  line-height: 1.5;
  font-weight: 300;
  color: #FFFFFF99;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li.swiper-slide-active .centerInfo {
  opacity: 1;
}
.ins_laboratoryCon1 .center_box .content5 {
  width: 100%;
  height: auto;
  padding-top: 0.685rem;
}
.ins_laboratoryCon1 .center_box .content5 .ins_title .t2 {
  margin-top: 0.25rem;
}
.ins_laboratoryCon1 .center_box .content5 .content {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_laboratoryCon1 .center_box .content5 .content .left_box {
  width: 68.5%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_laboratoryCon1 .center_box .content5 .content .left_box .img_box {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon1 .center_box .content5 .content .left_box .img_box img {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon1 .center_box .content5 .content .right_box {
  width: 30.4%;
  height: auto;
  background: #FFFFFF0D;
  backdrop-filter: blur(4px);
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.4rem;
}
.ins_laboratoryCon1 .center_box .content5 .content .right_box .word {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon1 .center_box .content5 .content .right_box .word .icon {
  width: 0.64rem;
}
.ins_laboratoryCon1 .center_box .content5 .content .right_box .word .t1 {
  margin-top: 0.42rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
  font-size: var(--font16);
  line-height: 1.5;
  font-weight: 300;
  color: #FFFFFF99;
  max-height: calc(11em * 1.5);
  overflow: auto;
}
.ins_laboratoryCon1 .center_box .content5 .content .right_box .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.77rem;
}
.ins_laboratoryCon1 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
}
@media (max-width:990px) {
  .ins_laboratoryCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_laboratoryCon1 .center_box .content2 .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0;
  }
  .ins_laboratoryCon1 .center_box .content2 .item_box .item {
    width: 100%;
    height: auto;
    transform: translateY(0) !important;
  }
  .ins_laboratoryCon1 .center_box .content3 .logo_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }
  .ins_laboratoryCon1 .center_box .content3 .logo_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .ins_laboratoryCon1 .center_box .content3 .logo_box .item img {
    height: 0.74rem;
  }
  .ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .listCon1 .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_laboratoryCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.15rem 0;
  background: #FFFFFF;
}
.ins_laboratoryCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon2 .center_box .top_info {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon2 .center_box .top_info .ins_title .t2 {
  margin-top: 0.23rem;
}
.ins_laboratoryCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.51rem;
  overflow: hidden;
}
.ins_laboratoryCon2 .center_box .swiper_box ul li {
  width: 24.5%;
  height: auto;
}
.ins_laboratoryCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon2 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  background: #00000008;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_laboratoryCon2 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 81%;
}
.ins_laboratoryCon2 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_laboratoryCon2 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.21rem;
  text-align: center;
  font-size: var(--font18);
  line-height: 1.444;
}
.ins_laboratoryCon2 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_laboratoryCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2.07rem;
  padding-bottom: 1.2rem;
  background: #00000008;
}
.ins_laboratoryCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon3 .center_box .top_info {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon3 .center_box .top_info .ins_title {
  width: 55%;
}
.ins_laboratoryCon3 .center_box .top_info .ins_title .t2 {
  margin-top: 0.22rem;
}
.ins_laboratoryCon3 .center_box .top_info .idx_more3 {
  padding-top: 0.11rem;
  flex-shrink: 0;
}
.ins_laboratoryCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.47rem;
  position: relative;
  z-index: 1;
  border-left: 1px solid #DFDFDF;
}
.ins_laboratoryCon3 .center_box .item_box::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #DFDFDF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ins_laboratoryCon3 .center_box .item_box::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #DFDFDF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ins_laboratoryCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding-top: 0.69rem;
  padding-bottom: 0.67rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_laboratoryCon3 .center_box .item_box .item .icon {
  width: 1.6rem;
  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_laboratoryCon3 .center_box .item_box .item .icon::after {
  content: '';
  position: absolute;
  width: 1.9rem;
  height: 1.9rem;
  background: url(../images/bg12.png);
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: run 50s linear infinite;
  opacity: 0;
}
.ins_laboratoryCon3 .center_box .item_box .item .icon .pb {
  border-radius: 50%;
}
.ins_laboratoryCon3 .center_box .item_box .item .word {
  text-align: center;
  margin-top: 0.42rem;
  font-size: var(--font20);
}
.ins_laboratoryCon3 .center_box .item_box .item:hover {
  background: #FFFFFF;
}
.ins_laboratoryCon3 .center_box .item_box .item:hover .icon::after {
  opacity: 1;
}
.ins_laboratoryCon3 .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.ins_laboratoryCon3 .img_bg img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_laboratoryCon3 {
    padding-top: 1.2rem;
  }
  .ins_laboratoryCon3 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_laboratoryCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_laboratoryCon3 .center_box .top_info {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0.5rem;
  }
  .ins_laboratoryCon3 .center_box .top_info .ins_title {
    width: 100%;
    height: auto;
  }
}
.ins_laboratoryCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.71rem;
  padding-bottom: 0.8rem;
  background: #F7F7F7;
}
.ins_laboratoryCon4 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_laboratoryCon4 .center_box .left_box {
  width: 66.66666667%;
}
.ins_laboratoryCon4 .center_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_laboratoryCon4 .center_box .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon4 .center_box .right_box {
  width: 30.55555556%;
  padding: 0.2rem 0;
}
.ins_laboratoryCon4 .center_box .right_box .word {
  width: 100%;
  height: auto;
  padding-bottom: 0.29rem;
  border-bottom: 1px solid #0000001A;
}
.ins_laboratoryCon4 .center_box .right_box .word .t1 {
  font-weight: 700;
}
.ins_laboratoryCon4 .center_box .right_box .word .t2 {
  color: #666;
  margin-top: 0.26rem;
}
.ins_laboratoryCon4 .center_box .right_box .icon {
  width: 100%;
  height: auto;
  margin-top: 0.38rem;
}
.ins_laboratoryCon4 .center_box .right_box .icon .t1 {
  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.15rem;
  line-height: 1.5;
  color: #666;
  font-weight: 300;
}
.ins_laboratoryCon4 .center_box .right_box .icon .idx_more {
  margin-top: 0.79rem;
}
.ins_laboratoryCon4 .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
.ins_laboratoryCon4 .img_bg img {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.18rem 0;
  background: #FFFFFF;
}
.ins_laboratoryCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon5 .center_box .content_box {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  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_laboratoryCon5 .center_box .content_box .content {
  width: 100%;
  height: auto;
  background: #00000008;
  padding: 0.2rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box {
  width: 31%;
  height: auto;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 {
  width: 100%;
  height: auto;
  padding-top: 0.4rem;
  padding-left: 0.2rem;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .word {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .word .t1 {
  font-weight: 700;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .word .t2 {
  margin-top: 0.25rem;
  line-height: 1.5;
  color: #666;
  font-weight: 300;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 0;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box .item .icon {
  width: 0.6rem;
  height: 0.6rem;
  background: #FFFFFF;
  border-radius: 100px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box .item .icon .be {
  position: absolute;
  opacity: 0;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box .item .word {
  width: fit-content;
  font-size: var(--font20);
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box .item:hover .icon {
  background: linear-gradient(180deg, #5E7FDD 0%, #2549B1 100%);
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box .item:hover .icon img {
  filter: brightness(0) invert(1);
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box .item:hover .icon .af {
  opacity: 0;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box .item:hover .icon .be {
  opacity: 1;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .item_box .item:hover .word {
  color: #2549B1;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.87rem;
  gap: 0.32rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .list_box .list {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  padding-left: 0.2rem;
  position: relative;
  z-index: 1;
  line-height: 1.444;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content1 .list_box .list::after {
  content: '';
  position: absolute;
  width: 0.03rem;
  height: 0.03rem;
  border: 0.03rem solid #00000033;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.35em;
  border-radius: 50%;
  left: 0;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info {
  width: auto;
  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;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .word_box {
  width: 2.4rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .word_box .word {
  width: 80%;
  height: auto;
  position: absolute;
  font-size: var(--font28);
  text-align: center;
  font-weight: 700;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .word_box .img {
  width: 100%;
  height: auto;
  animation: run2 20s linear infinite;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .word_box .img img {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box {
  width: 2.94rem;
  height: 2.94rem;
  position: absolute;
  border-radius: 50%;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .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_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box .item::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 0.1rem;
  height: 0.1rem;
  background: var(--active_color);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  background: #FFF;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box .item span {
  position: absolute;
  width: max-content;
  font-size: var(--font18);
  color: #333;
  max-width: 1.6rem;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box .item.top span {
  bottom: 0.13rem;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box .item.left span {
  top: 0.13rem;
  right: -0.5rem;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box .item.right span {
  top: 0.13rem;
  left: -0.5rem;
  max-width: 1.6rem;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box .img img {
  width: 100%;
  height: 100%;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .icon {
  width: 4rem;
  height: 4rem;
  position: absolute;
}
.ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .icon img {
  width: 100%;
  height: auto;
  animation: run 20s linear infinite;
}
.ins_laboratoryCon5 .center_box .content_box .content .right_box {
  width: 65.38%;
  height: auto;
}
.ins_laboratoryCon5 .center_box .content_box .content .right_box .img {
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_laboratoryCon5 .center_box .content_box .content .right_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_laboratoryCon5 .center_box .content_info1 {
  width: 100%;
  height: auto;
  margin-top: 1.17rem;
}
.ins_laboratoryCon5 .center_box .content_info1 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.18rem;
  margin-top: 0.43rem;
}
.ins_laboratoryCon5 .center_box .content_info1 .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.1rem;
  border: 1px solid #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_laboratoryCon5 .center_box .content_info1 .item_box .item .pb {
  padding-bottom: 50%;
}
.ins_laboratoryCon5 .center_box .content_info1 .item_box .item .pb .ab img {
  filter: brightness(0) invert(0.7);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_laboratoryCon5 .center_box .content_info1 .item_box .item:hover {
  border: 1px solid #00000033;
}
.ins_laboratoryCon5 .center_box .content_info1 .item_box .item:hover .pb .ab img {
  filter: unset;
}
@media (max-width:990px) {
  .ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 {
    padding: 2rem 0;
    padding-bottom: 1rem;
  }
  .ins_laboratoryCon5 .center_box .content_box .content .left_box .content2 .con_info .item_box .item.right span {
    max-width: 2rem;
    text-align: center;
  }
  .ins_laboratoryCon5 .center_box .content_info1 {
    width: 100%;
    height: auto;
  }
  .ins_laboratoryCon5 .center_box .content_info1 .item_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.ins_laboratoryCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1.1rem;
  background: #00000008;
}
.ins_laboratoryCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon6 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.42rem;
  position: relative;
  z-index: 1;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  padding: 0.2rem;
  padding-right: 0.5rem;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box {
  width: 23.8%;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box {
  width: 72%;
  padding-top: 0.26rem;
  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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding-bottom: 0.28rem;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .t1 {
  font-weight: 700;
  line-height: 1.8;
  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.18rem;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .t1 i {
  font-weight: 400;
  line-height: 2;
  font-size: var(--font18);
  color: #2549B1;
  font-style: unset;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  color: #666;
  line-height: 1.5;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .list {
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.1rem;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .list .one {
  font-weight: 300;
  padding-left: 0.13rem;
  position: relative;
  z-index: 1;
  color: #666666;
  line-height: 1.5;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .list .one::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00000033;
  border-radius: 50%;
  left: 0;
  top: 0.5em;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .number_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .number_box .number {
  width: fit-content;
  height: 0.66rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.06rem;
  font-size: var(--font20);
  font-family: "BEBA";
}
.ins_laboratoryCon6 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .number_box .number i {
  font-style: unset;
  color: #999;
}
.ins_laboratoryCon6 .center_box .swiper_info .idx_swiperBtn {
  width: 72%;
  right: 0;
  position: absolute;
  z-index: 10;
  bottom: 0.5rem;
}
.ins_laboratoryCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  margin-top: 0.2rem;
}
.ins_laboratoryCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon6 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_laboratoryCon6 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon6 .center_box .item_box .item .word {
  text-align: center;
  margin-top: 0.2rem;
}
.ins_laboratoryCon6 .center_box .item_box .item .word .t1 {
  line-height: 1.5;
}
.ins_laboratoryCon6 .center_box .item_box .item .word .t2 {
  line-height: 2;
}
@media (max-width:990px) {
  .ins_laboratoryCon6 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_laboratoryCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.12rem;
  padding-bottom: 1.2rem;
  background: #FFFFFF;
}
.ins_laboratoryCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon7 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.42rem;
  position: relative;
  z-index: 1;
}
.ins_laboratoryCon7 .center_box .swiper_box::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vw;
  background: #FFF;
  top: -1px;
  right: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.ins_laboratoryCon7 .center_box .swiper_box ul li {
  width: 33.3%;
}
.ins_laboratoryCon7 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_laboratoryCon7 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 61%;
}
.ins_laboratoryCon7 .center_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_laboratoryCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.94rem;
  padding-bottom: 1rem;
  background: var(--active_color);
}
.ins_laboratoryCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon8 .center_box .left_box {
  width: 31%;
  height: auto;
}
.ins_laboratoryCon8 .center_box .left_box .ins_title {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_laboratoryCon8 .center_box .left_box .ins_title .t2 {
  margin-top: 0.29rem;
  font-weight: 300;
}
.ins_laboratoryCon8 .center_box .left_box .ins_title .t2 p {
  opacity: 0.6;
}
.ins_laboratoryCon8 .center_box .right_box {
  width: 55.8%;
  height: auto;
}
.ins_laboratoryCon8 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 0.4rem;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item {
  width: 100%;
  min-height: 50px;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF1A;
  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: relative;
  z-index: 1;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item input,
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea {
  --color: #FFFFFF80;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item input::-webkit-input-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea::-webkit-input-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item input textarea::-webkit-input-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item input:-moz-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea:-moz-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item input textarea:-moz-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item input::-moz-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea::-moz-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item input textarea::-moz-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item input:-ms-input-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea:-ms-input-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item input textarea:-ms-input-placeholder,
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item input {
  width: 100%;
  height: 50px;
  background: none;
  border: 0;
  color: #FFFFFF;
  font-size: var(--font20);
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item span {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  font-size: var(--font16);
  color: #FFFFFF80;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item span i {
  color: #FF0000D1;
  font-style: normal;
  font-size: var(--font20);
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item.active span {
  top: 0;
  transform: scale(0.8);
  transform-origin: left top;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item.active input {
  height: 30px;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item.grid2 {
  display: -webkit-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.52rem;
  z-index: 0;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item textarea {
  width: 100%;
  height: 0.8rem;
  background: none;
  border: 0;
  color: #FFFFFF;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item .icon {
  width: fit-content;
  font-size: var(--font16);
  color: #FFFFFF80;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item .icon i {
  color: #FF0000D1;
  font-style: normal;
  font-size: var(--font20);
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item .layui-input:focus,
.ins_laboratoryCon8 .center_box .right_box .item_box .item .layui-textarea:focus {
  box-shadow: unset;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item .select {
  width: 100%;
  height: auto;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item .select input {
  font-size: var(--font16);
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item .select .layui-form-select dl {
  top: 100%;
  bottom: unset;
  z-index: 10;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item .select .layui-form-select .layui-edge {
  width: 0.3rem;
  height: 0.3rem;
  top: 25%;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: unset;
}
.ins_laboratoryCon8 .center_box .right_box .item_box .item .select .layui-form-select .layui-edge::after {
  content: '\e685';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: var(--color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 12px;
  color: #FFFFFF;
}
.ins_laboratoryCon8 .center_box .right_box .bot_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.3rem;
}
.ins_laboratoryCon8 .center_box .right_box .bot_box .layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_laboratoryCon8 .center_box .right_box .bot_box .layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.18rem;
}
.ins_laboratoryCon8 .center_box .right_box .bot_box .layui_item .layui-form-checkbox[lay-skin=primary] > div {
  color: #FFFFFF99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
}
.ins_laboratoryCon8 .center_box .right_box .bot_box .layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: #FFFFFF;
}
.ins_laboratoryCon8 .center_box .right_box .bot_box .layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.05rem;
  position: relative;
  z-index: 1;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #FFFFFF1A;
}
.ins_laboratoryCon8 .center_box .right_box .bot_box .layui_item .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
}
.ins_laboratoryCon8 .center_box .right_box .bot_box .layui_item .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color);
}
.ins_laboratoryCon8 .center_box .right_box .bot_box .layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.ins_laboratoryCon8 .center_box .right_box .bot_box .idx_more {
  flex-shrink: 0;
}
@media (max-width:990px) {
  .ins_laboratoryCon8 .center_box .right_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_laboratoryCon8 .center_box .right_box .bot_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.ins_laboratoryCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.77rem;
  padding-bottom: 0.8rem;
  background: var(--active_color);
}
.ins_laboratoryCon9 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.ins_laboratoryCon9 .center_box .t1 {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.23;
}
.ins_laboratoryCon9 .center_box .idx_more {
  margin-top: 0.43rem;
}
.ins_solveCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_solveCon1 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 2.18rem;
}
.ins_solveCon1 .content .center_box {
  width: 48%;
  height: auto;
  color: #FFFFFF;
}
.ins_solveCon1 .content .center_box .t1 {
  font-weight: 700;
}
.ins_solveCon1 .content .center_box .t2 {
  font-weight: 300;
  margin-top: 0.25rem;
  line-height: 1.4;
}
@media (max-width:990px) {
  .ins_solveCon1 .content .center_box {
    width: 100%;
    height: auto;
  }
}
.ins_solveCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.16rem;
  padding-bottom: 1.2rem;
  background: #FFFFFF;
}
.ins_solveCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon2 .center_box .ins_title .t2 {
  margin-top: 0.25rem;
}
.ins_solveCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.43rem;
}
.ins_solveCon2 .center_box .content .img {
  width: 100%;
  height: auto;
}
.ins_solveCon2 .center_box .content .img img {
  width: 100%;
  height: auto;
}
.ins_solveCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.26rem;
  padding-bottom: 1.13rem;
  background: var(--active_color);
}
.ins_solveCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.53rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 0.8rem;
}
.ins_solveCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-top: 1px solid #FFFFFF1A;
  padding-top: 0.61rem;
  padding-bottom: 0.55rem;
  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_solveCon3 .center_box .item_box .item .word {
  color: #FFFFFF;
  width: 67%;
}
.ins_solveCon3 .center_box .item_box .item .word .t1 {
  font-weight: 500;
}
.ins_solveCon3 .center_box .item_box .item .word .t2 {
  margin-top: 0.32rem;
  color: #FFFFFF99;
  line-height: 1.444;
  font-weight: 300;
}
.ins_solveCon3 .center_box .item_box .item .icon {
  width: 0.56rem;
}
@media (max-width:990px) {
  .ins_solveCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_solveCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1.2rem;
  background: #FFFFFF;
}
.ins_solveCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon4 .center_box .ins_title .t2 {
  margin-top: 0.24rem;
}
.ins_solveCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.33rem;
}
.ins_solveCon4 .center_box .swiper_box ul li {
  width: auto;
  height: auto;
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #00000008;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 60%;
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.3rem;
  padding-top: 0.33rem;
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo .word .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: calc(2em * 1.41);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.41;
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo .word .icon {
  margin-top: 0.68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.3rem;
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo .word .icon .one {
  flex-shrink: 0;
  color: #999;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo .word .icon .one:hover {
  color: var(--active_color);
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_solveCon4 .center_box .swiper_box ul li .centerInfo:hover .word .t1 {
  color: var(--active_color);
}
.ins_solveCon4.bg000 {
  background: var(--color_003);
  padding-top: 1.1rem;
}
.ins_solveCon4.bg000 .center_box .swiper_box ul li .centerInfo {
  background: #FFFFFF;
}
.ins_solveCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.67rem;
  padding-bottom: 1.2rem;
  background: #0000000D;
}
.ins_solveCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .top_info {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .contentBox {
  width: 100%;
  height: auto;
  margin-top: 0.46rem;
  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_solveCon5 .center_box .contentBox .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_solveCon5 .center_box .contentBox .content .box {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
  filter: brightness(1);
  position: relative;
  z-index: 1;
}
.ins_solveCon5 .center_box .contentBox .content .box .left_box {
  width: 41%;
  padding: 0.96rem 0.5rem 0.67rem 0.46rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_solveCon5 .center_box .contentBox .content .box .left_box .word {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .contentBox .content .box .left_box .word .icon {
  width: 100%;
  height: auto;
  padding-bottom: 0.27rem;
  border-bottom: 1px solid #0000001A;
}
.ins_solveCon5 .center_box .contentBox .content .box .left_box .word .t1 {
  font-weight: 700;
}
.ins_solveCon5 .center_box .contentBox .content .box .left_box .word .t2 {
  margin-top: 0.16rem;
  color: var(--active_color);
}
.ins_solveCon5 .center_box .contentBox .content .box .left_box .word .t3 {
  font-size: var(--font16);
  line-height: 1.6;
  font-weight: 300;
  color: #666;
  margin-top: 0.3rem;
}
.ins_solveCon5 .center_box .contentBox .content .box .left_box .number {
  width: fit-content;
  height: 0.66rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.06rem;
  font-size: var(--font20);
  font-family: "BEBA";
}
.ins_solveCon5 .center_box .contentBox .content .box .left_box .number i {
  font-style: unset;
  color: #999;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box {
  width: 59%;
  padding: 0.5rem;
  padding-left: 0;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box ul li {
  width: auto;
  height: auto;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F7F7F7;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box ul li .centerInfo .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #F7F7F7;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box ul li .centerInfo .img .pb .ab img {
  mix-blend-mode: multiply;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.08rem;
  padding: 0 0.3rem;
  padding-bottom: 0.45rem;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 500;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box ul li .centerInfo .word .t2 {
  font-weight: 300;
  margin-top: 0.1rem;
  color: #666666;
  line-height: 1.5;
  height: calc(2em * 1.5);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiperPagLine {
  gap: 0.16rem;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiperPagLine .idx_swiperBtn {
  gap: 0.16rem;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiperPagLine .idx_swiperBtn .swiperBtn {
  width: 0.55rem;
  height: 0.55rem;
}
.ins_solveCon5 .center_box .contentBox .content .box .right_box .swiperPagLine .idx_swiperBtn .swiperBtn i {
  font-size: var(--font24);
}
.ins_solveCon5 .sortBox {
  width: auto;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 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;
}
.ins_solveCon5 .sortBox .item_box {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.3rem;
  position: relative;
  z-index: 1;
}
.ins_solveCon5 .sortBox .item_box::after {
  content: '';
  position: absolute;
  width: 0.02rem;
  height: 100%;
  background: #0000000D;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0.08rem;
  z-index: 0;
}
.ins_solveCon5 .sortBox .item_box .item {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.ins_solveCon5 .sortBox .item_box .item i {
  width: 0.18rem;
  height: 0.18rem;
  border: 0.05rem solid #D9D9D9;
  background: #FFFFFF;
  display: block;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solveCon5 .sortBox .item_box .item span {
  color: #333333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solveCon5 .sortBox .item_box .item.active i {
  border-color: var(--active_color);
}
.ins_solveCon5 .sortBox .item_box .item.active span {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_solveCon5 .center_box .contentBox .content .box {
    gap: 0;
  }
  .ins_solveCon5 .center_box .contentBox .content .box .right_box {
    padding: 0.4rem;
  }
  .ins_solveCon5 .center_box .contentBox .content .box .right_box .swiper_box ul li .centerInfo .img .pb {
    padding-bottom: 50%;
  }
  .ins_solveCon5 .center_box .contentBox .content .box .left_box {
    padding: 0.4rem;
  }
  .ins_solveCon5 .center_box .contentBox .content .box .left_box .number {
    display: none;
  }
  .ins_solveCon5 .sortBox {
    display: none;
  }
}
.ins_solveCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.18rem;
  background: #00000008;
}
.ins_solveCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon6 .center_box .left_box {
  width: 40%;
  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-top: 1.25rem;
  padding-bottom: 0.49rem;
}
.ins_solveCon6 .center_box .left_box .word {
  width: 100%;
  height: auto;
}
.ins_solveCon6 .center_box .left_box .word .icon {
  width: 100%;
  height: auto;
  padding-bottom: 0.27rem;
  border-bottom: 1px solid #0000001A;
}
.ins_solveCon6 .center_box .left_box .word .t1 {
  font-weight: 700;
}
.ins_solveCon6 .center_box .left_box .word .t2 {
  margin-top: 0.16rem;
  color: var(--active_color);
}
.ins_solveCon6 .center_box .left_box .word .t3 {
  font-size: var(--font16);
  line-height: 1.6;
  font-weight: 300;
  color: #666;
  margin-top: 0.36rem;
}
.ins_solveCon6 .center_box .left_box .nav_box {
  margin-top: 1.63rem;
}
.ins_solveCon6 .center_box .right_box {
  width: 50%;
  height: auto;
}
.ins_solveCon6 .center_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_solveCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1rem;
  background: #FFFFFF;
}
.ins_solveCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon7 .center_box .content1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #00000024;
}
.ins_solveCon7 .center_box .content1 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.43rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.28rem;
}
.ins_solveCon7 .center_box .content1 .item_box .item {
  width: 100%;
  height: auto;
  background: #00000008;
  padding: 0.4rem 0.3rem;
  border-radius: 0.1rem;
  border: 1px solid #00000000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solveCon7 .center_box .content1 .item_box .item .icon {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-right: 0.08rem;
}
.ins_solveCon7 .center_box .content1 .item_box .item .icon img {
  width: 0.36rem;
}
.ins_solveCon7 .center_box .content1 .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.39rem;
}
.ins_solveCon7 .center_box .content1 .item_box .item .word .t1 {
  color: var(--active_color);
}
.ins_solveCon7 .center_box .content1 .item_box .item .word .t2 {
  margin-top: 0.17rem;
  color: #666666;
  font-weight: 300;
}
.ins_solveCon7 .center_box .content1 .item_box .item:hover {
  border: 1px solid #00000009;
  transform: translateY(-5px);
}
@media (max-width:990px) {
  .ins_solveCon7 .center_box .content1 .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_solveCon7 .center_box .content2 {
  width: 100%;
  height: auto;
  padding-top: 0.95rem;
  padding-bottom: 1rem;
  background: #FFFFFF;
  border-bottom: 1px dashed #00000024;
}
.ins_solveCon7 .center_box .content2 .left_box {
  width: 31%;
}
.ins_solveCon7 .center_box .content2 .right_box {
  width: 62.8%;
}
.ins_solveCon7 .center_box .content3 {
  width: 100%;
  height: auto;
  padding-top: 0.97rem;
  padding-bottom: 1rem;
}
.ins_solveCon7 .center_box .content3 .left_box {
  width: 31%;
}
.ins_solveCon7 .center_box .content3 .left_box .ins_title .t2 {
  margin-top: 0.25rem;
}
.ins_solveCon7 .center_box .content3 .left_box .ins_title .t2 a {
  display: contents;
  color: var(--active_color);
  font-weight: 500;
}
.ins_solveCon7 .center_box .content3 .left_box .ins_title .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
.ins_solveCon7 .center_box .content3 .right_box {
  width: 62.8%;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.3rem;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item::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;
  z-index: 1;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 2;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  cursor: pointer;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item .top .word {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  font-size: var(--font20);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 500;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item .top .word i {
  font-style: unset;
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #2549B11A;
  font-size: var(--font16);
  border-radius: 2px;
  color: var(--active_color);
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item .top .icon {
  width: 0.16rem;
  height: 0.16rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item .top .icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item .top .icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.02rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(90deg);
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item .bot {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
  display: none;
  padding-left: 0.6rem;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item .bot .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item .bot .list .one {
  width: 100%;
  height: auto;
  color: #666666;
  font-weight: 300;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item.active::before {
  width: 100%;
  left: 0;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item.active .top {
  width: 100%;
  height: auto;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item.active .top .word i {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item.active .top .icon::before {
  transform: rotate(0);
  background: var(--active_color);
}
.ins_solveCon7 .center_box .content3 .right_box .item_box .item.active .top .icon::after {
  transform: rotate(0);
  background: var(--active_color);
}
.ins_solveCon7 .center_box .content4 {
  width: 100%;
  height: auto;
}
.ins_solveCon7 .center_box .content4 .swiper_box {
  width: 100%;
  height: auto;
  padding-top: 0.33rem;
  overflow: hidden;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #F7F7F7;
  padding: 0.3rem;
  border-radius: 0.1rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #F7F7F7;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 56%;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li .centerInfo .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #F7F7F7;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li .centerInfo .img .pb .ab img {
  mix-blend-mode: multiply;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.29rem;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li .centerInfo .word .t1 {
  color: #000000;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.12rem;
  font-weight: 300;
  color: #666666;
}
.ins_solveCon7 .center_box .content4 .swiper_box ul li .centerInfo:hover {
  border: 1px solid #ececec;
  transform: translateY(-5px);
}
.ins_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.45rem;
  background: var(--color_003);
}
.ins_caseCon1::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0.53rem;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .left_box {
  width: 34%;
  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-top: 0.94rem;
  padding-bottom: 1.02rem;
}
.ins_caseCon1 .center_box .left_box .nav_box {
  margin-top: 1rem;
}
@media (max-width:990px) {
  .ins_caseCon1 .center_box .left_box {
    padding-top: 0;
  }
}
.ins_caseCon1 .center_box .right_box {
  width: 62%;
  height: auto;
}
.ins_caseCon1 .center_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .right_box .img .pb {
  padding-bottom: 68%;
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #FFFFFF;
  padding-top: 1.04rem;
  padding-bottom: 2.07rem;
}
.ins_caseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ins_caseCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  transform: var(--tY);
}
.ins_caseCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #000;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(0.625rem);
}
.ins_caseCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .item_box .item .word_box .icon {
  font-size: var(--font60);
}
.ins_caseCon2 .center_box .item_box .item .word_box .icon span {
  font-family: "BEBA";
  line-height: 1.33;
}
.ins_caseCon2 .center_box .item_box .item .word_box .icon i {
  font-size: var(--font22);
  font-style: unset;
  font-weight: 700;
}
.ins_caseCon2 .center_box .item_box .item .word_box .word {
  font-size: var(--font18);
}
@media (max-width:990px) {
  .ins_caseCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem 1rem;
  }
  .ins_caseCon2 .center_box .item_box .item {
    transform: translateY(0) !important;
    border-bottom: 1px solid #0000001A;
    padding-bottom: 0.4rem;
  }
}
.ins_caseCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--color_003);
  padding-top: 1.17rem;
  padding-bottom: 1.2rem;
}
.ins_caseCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.33rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_caseCon3 .center_box .list_box .one {
  width: fit-content;
  height: auto;
  padding: 0 0.39rem;
  height: 0.56rem;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  font-size: var(--font16);
  color: #666666;
}
.ins_caseCon3 .center_box .list_box .one.active {
  background: linear-gradient(90deg, #2549B1 0%, rgba(37, 73, 177, 0.6) 100%);
  color: #FFFFFF !important;
}
.ins_caseCon3 .center_box .list_box .one:hover {
  color: var(--active_color);
}
.ins_caseCon3 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.ins_caseCon3 .center_box .content1 .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .left_box {
  width: 47%;
  height: auto;
  padding: 0.5rem;
  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_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .left_box .word_box {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .left_box .word_box .time {
  font-size: var(--font18);
  color: #999999;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .left_box .word_box .t1 {
  font-weight: 700;
  margin-top: 0.26rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.37);
  line-height: 1.37;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .left_box .word_box .t2 {
  font-weight: 300;
  margin-top: 0.31rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: calc(3em * 1.5);
  color: #666666;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box {
  width: 50.2%;
  position: relative;
  z-index: 1;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .icon_box {
  height: auto;
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  z-index: 6;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  padding: 0.04rem;
  padding-right: 0.17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.11rem;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .icon_box .icon {
  width: 0.28rem;
  height: 0.28rem;
  min-width: 20px;
  min-height: 20px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .icon_box .word {
  font-size: var(--font16);
  color: #FFFFFF;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .img .pb {
  padding-bottom: 68%;
}
.ins_caseCon3 .center_box .content1 .swiper_box ul li .centerInfo .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon3 .center_box .content1 .idxPageShow {
  width: 50.2%;
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  z-index: 10;
}
.ins_caseCon3 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 1.2rem;
}
.ins_caseCon3 .center_box .content2 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.ins_caseCon3 .center_box .content2 .item_box .item {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box .content2 .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .content2 .item_box .item .img .pb {
  padding-bottom: 60%;
}
.ins_caseCon3 .center_box .content2 .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .content2 .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.3rem;
  padding-top: 0.33rem;
}
.ins_caseCon3 .center_box .content2 .item_box .item .word .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: calc(2em * 1.41);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.41;
}
.ins_caseCon3 .center_box .content2 .item_box .item .word .icon {
  margin-top: 0.68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.3rem;
}
.ins_caseCon3 .center_box .content2 .item_box .item .word .icon .one {
  flex-shrink: 0;
  color: #999;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .content2 .item_box .item .word .icon .one:hover {
  color: var(--active_color);
}
.ins_caseCon3 .center_box .content2 .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_caseCon3 .center_box .content2 .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_caseCon3 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_caseCon3 .center_box .list_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_caseCon3 .center_box .list_box .one {
    width: 100%;
    height: auto;
    padding: 0.15rem 0.2rem;
  }
  .ins_caseCon3 .center_box .content2 {
    width: 100%;
    height: auto;
  }
  .ins_caseCon3 .center_box .content2 .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_caseCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_caseCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .contentBox {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .contentBox .left_box {
  width: 74.5%;
  height: auto;
  padding-top: 2.07rem;
  padding-right: 0.7rem;
  padding-bottom: 1.2rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .t1 {
  font-weight: 700;
}
.ins_caseCon4 .center_box .contentBox .left_box .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.24rem;
  color: #999;
  margin-top: 0.29rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon4 .center_box .contentBox .left_box .time .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
  font-size: var(--font16);
  color: #999999;
}
.ins_caseCon4 .center_box .contentBox .left_box .time .one img {
  width: 0.4rem;
  height: 0.4rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_box ul li .centerInfo .pb {
  padding-bottom: 51%;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_Btn {
  width: fit-content;
  height: 0.46rem;
  position: absolute;
  z-index: 10;
  bottom: 0.2rem;
  background: #0000004D;
  padding: 0 0.25rem;
  display: -webkit-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;
  border-radius: 100px;
  color: #FFFFFF;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_Btn .idxBtnLine {
  width: fit-content;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.06rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_Btn .idxBtnLine span {
  width: 0.22rem;
  height: 2px;
  border-radius: 10px;
  opacity: 1;
  background: #FFFFFF66;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_Btn .idxBtnLine span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: #FFFFFF;
  right: 0;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_Btn .idxBtnLine span.swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 5s linear;
  left: 0;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .swiper_info .swiper_Btn .btn {
  cursor: pointer;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content1 .title {
  font-weight: 700;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content1 table {
  margin-top: 0.23rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content1 table tr td {
  text-align: center;
  height: 0.56rem;
  background: var(--color_003);
  border: 1px solid #FFFFFF;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content1 table tr td.bgColor {
  background: #0000000F;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content1 table tr td.pad {
  padding: 0.27rem;
  text-align: start;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.62rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content2 .title {
  font-weight: 700;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content2 .conBox {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content2 .conBox .one {
  font-weight: 300;
  line-height: 1.5;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content2 .conBox .one span {
  text-decoration: underline;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content3 {
  width: 100%;
  height: auto;
  margin-top: 0.57rem;
  background: #00000008;
  padding: 0.4rem 0.3rem;
  padding-left: 0.72rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content3 .title {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.18rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 700;
  padding-bottom: 0.23rem;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content3 .title img {
  position: absolute;
  transform: translateX(calc(-100% - 0.15rem));
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content3 .conBox {
  width: 100%;
  height: auto;
  margin-top: 0.27rem;
  color: #666666;
  line-height: 1.5;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content3 .imgBox {
  margin-top: 0.22rem;
  display: -webkit-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.13rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content3 .imgBox .icon {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content3 .imgBox .word {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content3 .imgBox .word .t1 {
  font-weight: 500;
  line-height: 1.5;
}
.ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content3 .imgBox .word .t2 {
  color: #999999;
  line-height: 1.5;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.57rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 .idx_more .more {
  width: 100%;
  height: 0.42rem;
  font-size: var(--font16);
  min-width: 1.36rem;
  padding: 0 0.3rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 .idx_more .more:hover {
  background: linear-gradient(0deg, #2549b1 0%, rgba(37, 73, 177, 0.6) 100%);
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 .idx_more .more:hover i {
  color: #FFFFFF;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 .left {
  width: 40%;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 .left .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #333333;
  line-height: 1.5;
  font-weight: 400 !important;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 .left .idx_more {
  margin-top: 0.2rem;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 .center {
  width: 20%;
  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_caseCon4 .center_box .contentBox .left_box .content4 .right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  text-align: end;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 .right .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 400 !important;
}
.ins_caseCon4 .center_box .contentBox .left_box .content4 .right .idx_more {
  margin-top: 0.2rem;
}
.ins_caseCon4 .center_box .contentBox .right_box {
  width: 25.5%;
  height: auto;
  padding-left: 0.65rem;
  border-left: 1px solid #0000001A;
  padding-top: 2.11rem;
  padding-bottom: 1.2rem;
}
.ins_caseCon4 .center_box .contentBox .right_box .title {
  font-weight: 700;
  letter-spacing: -0.48px;
}
.ins_caseCon4 .center_box .contentBox .right_box .content1 {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
  background-image: url(../images/bg15.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0.4rem 0.3rem;
  padding-bottom: 0.57rem;
}
.ins_caseCon4 .center_box .contentBox .right_box .content1 .list {
  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.16rem;
}
.ins_caseCon4 .center_box .contentBox .right_box .content1 .list .one {
  width: 100%;
  height: auto;
  padding-left: 0.17rem;
  position: relative;
  z-index: 1;
  color: #666666;
  line-height: 1.37;
}
.ins_caseCon4 .center_box .contentBox .right_box .content1 .list .one::after {
  content: '';
  position: absolute;
  width: 0.02rem;
  height: 0.02rem;
  border-radius: 50%;
  border: 2px solid var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0.5em;
}
.ins_caseCon4 .center_box .contentBox .right_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  background-image: url(../images/bg16.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0.4rem 0.3rem;
  padding-bottom: 0.51rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_caseCon4 .center_box .contentBox .right_box .content2 .icon {
  font-size: var(--font16);
  padding-left: 0.15rem;
  position: relative;
  z-index: 1;
  line-height: 1;
  margin-bottom: 0.11rem;
}
.ins_caseCon4 .center_box .contentBox .right_box .content2 .icon::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background: var(--active_color1);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon4 .center_box .contentBox .right_box .content2 .idx_more4 {
  margin-top: 0.3rem;
}
.ins_caseCon4 .center_box .contentBox .right_box .content3 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_caseCon4 .center_box .contentBox .right_box .content3 .title {
  width: 100%;
  height: auto;
  padding-bottom: 0.19rem;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon4 .center_box .contentBox .right_box .content3 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
  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_caseCon4 .center_box .contentBox .right_box .content3 .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.36rem 0;
  border-bottom: 1px dashed #0000001A;
}
.ins_caseCon4 .center_box .contentBox .right_box .content3 .item_box .item .t1 {
  color: #333;
  line-height: 1.4;
}
.ins_caseCon4 .center_box .contentBox .right_box .content3 .item_box .item .t2 {
  margin-top: 0.14rem;
  color: #666;
  line-height: 1.5;
}
.ins_caseCon4 .center_box .contentBox .right_box .content3 .item_box .item .idx_more4 {
  margin-top: 0.21rem;
}
.ins_caseCon4 .center_box .contentBox .right_box .content3 .item_box .item:hover .t1 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_caseCon4 .center_box .contentBox .left_box {
    padding-right: 0;
  }
  .ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content1 {
    overflow: auto;
  }
  .ins_caseCon4 .center_box .contentBox .left_box .contentInfo .content1 table {
    min-width: 800px;
  }
  .ins_caseCon4 .center_box .contentBox .left_box .content4 {
    display: none;
  }
  .ins_caseCon4 .center_box .contentBox .right_box {
    display: none;
  }
}
.ins_strengthCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_strengthCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_strengthCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_strengthCon1 .content .center_box .ins_title .icon {
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}
.ins_strengthCon1 .content .center_box .ins_title .t2 {
  margin-top: 0.22rem;
  color: #FFFFFF;
  font-weight: 300;
}
.ins_strengthCon1 .content .center_box .ins_title .t2 p {
  opacity: 1;
}
.ins_strengthCon1 .img_w100 {
  width: 100%;
  height: auto;
}
.ins_strengthCon1 .img_w100 img {
  width: 100%;
  height: auto;
}
.ins_strengthCon1 .img_w100 img.wap {
  min-height: 500px;
  object-fit: cover;
}
.ins_strengthCon1 .content1 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.49rem;
  z-index: 10;
}
.ins_strengthCon1 .content1 .nav_box {
  width: 100%;
  height: auto;
}
.ins_strengthCon1 .content1 .nav_box .one {
  color: #FFF;
  opacity: 0.5;
}
.ins_strengthCon1 .content1 .nav_box .one.active {
  color: #FFFFFF !important;
  opacity: 1;
}
.ins_strengthCon1 .content1 .nav_box img {
  filter: brightness(0) invert(1);
}
.ins_strengthCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1.51rem;
  background: #101E3A;
}
.ins_strengthCon2 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
}
.ins_strengthCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_strengthCon2 .center_box .content1 {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 1;
}
.ins_strengthCon2 .center_box .content1 .left_box {
  width: 50.5%;
  padding: 0.76rem 0.7rem 0.7rem 0.5rem;
}
.ins_strengthCon2 .center_box .content1 .left_box .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_strengthCon2 .center_box .content1 .left_box .word .t1 {
  line-height: 1.23;
  font-weight: 700;
}
.ins_strengthCon2 .center_box .content1 .left_box .word .t2 {
  margin-top: 0.4rem;
  line-height: 1.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;
  gap: 0.15rem;
  font-weight: 300;
}
.ins_strengthCon2 .center_box .content1 .left_box .word .t2 p {
  opacity: 0.6;
}
.ins_strengthCon2 .center_box .content1 .right_box {
  width: 49.5%;
}
.ins_strengthCon2 .center_box .content1 .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_strengthCon2 .center_box .content1 .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_strengthCon2 .center_box .content1 .imgBg {
  width: 56%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_strengthCon2 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 1.16rem;
}
.ins_strengthCon2 .center_box .content2 .ins_title .t1 {
  color: #FFFFFF;
}
.ins_strengthCon2 .center_box .content2 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.42rem;
  border-bottom: 1px solid #FFFFFF1A;
}
.ins_strengthCon2 .center_box .content2 .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-top: 1px solid #FFFFFF1A;
}
.ins_strengthCon2 .center_box .content2 .item_box .item .imgBox {
  width: 46%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_strengthCon2 .center_box .content2 .item_box .item .imgBox .pb {
  padding-bottom: 53%;
}
.ins_strengthCon2 .center_box .content2 .item_box .item .imgBox .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_strengthCon2 .center_box .content2 .item_box .item .word_box {
  width: 54%;
  height: auto;
  padding: 0.2rem 0;
  padding-left: 0.7rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_strengthCon2 .center_box .content2 .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_strengthCon2 .center_box .content2 .item_box .item .word_box .word .t1 {
  font-weight: 700;
}
.ins_strengthCon2 .center_box .content2 .item_box .item .word_box .word .t2 {
  margin-top: 0.15rem;
  line-height: 1.5;
  color: #FFF;
  font-weight: 300;
}
.ins_strengthCon2 .center_box .content2 .item_box .item .word_box .word .t2 p {
  opacity: 0.6;
}
.ins_strengthCon2 .center_box .content2 .item_box .item .word_box .idx_more {
  margin-top: 0.5rem;
}
@media (max-width:990px) {
  .ins_strengthCon2 .center_box .content2 .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .ins_strengthCon2 .center_box .content2 .item_box .item .imgBox {
    width: 100%;
    height: auto;
  }
  .ins_strengthCon2 .center_box .content2 .item_box .item .word_box {
    width: 100%;
    height: auto;
    padding-left: 0rem;
  }
}
.ins_faqCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2.28rem;
  padding-bottom: 1.2rem;
}
.ins_faqCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_faqCon1 .center_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.33rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_faqCon1 .center_box .list_box .one {
  width: fit-content;
  height: auto;
  padding: 0 0.39rem;
  height: 0.56rem;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  font-size: var(--font16);
  color: #666666;
}
.ins_faqCon1 .center_box .list_box .one.active {
  background: linear-gradient(90deg, #2549B1 0%, rgba(37, 73, 177, 0.6) 100%);
  color: #FFFFFF !important;
}
.ins_faqCon1 .center_box .list_box .one:hover {
  color: var(--active_color);
}
.ins_faqCon1 .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;
  gap: 0.3rem;
  margin-top: 0.85rem;
}
.ins_faqCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}
.ins_faqCon1 .center_box .item_box .item::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;
  z-index: 1;
}
.ins_faqCon1 .center_box .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  z-index: 2;
}
.ins_faqCon1 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  cursor: pointer;
}
.ins_faqCon1 .center_box .item_box .item .top .word {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  font-size: var(--font20);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 500;
}
.ins_faqCon1 .center_box .item_box .item .top .word i {
  font-style: unset;
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #2549B11A;
  font-size: var(--font16);
  border-radius: 2px;
  color: var(--active_color);
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_faqCon1 .center_box .item_box .item .top .icon {
  width: 0.16rem;
  height: 0.16rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_faqCon1 .center_box .item_box .item .top .icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_faqCon1 .center_box .item_box .item .top .icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(90deg);
}
.ins_faqCon1 .center_box .item_box .item .bot {
  width: 100%;
  height: auto;
  margin-top: 0.15rem;
  display: none;
  padding-left: 0.6rem;
}
.ins_faqCon1 .center_box .item_box .item .bot .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
}
.ins_faqCon1 .center_box .item_box .item .bot .list .one {
  width: 100%;
  height: auto;
  color: #666666;
  font-weight: 300;
}
.ins_faqCon1 .center_box .item_box .item.active::before {
  width: 100%;
  left: 0;
}
.ins_faqCon1 .center_box .item_box .item.active .top {
  width: 100%;
  height: auto;
}
.ins_faqCon1 .center_box .item_box .item.active .top .word i {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_faqCon1 .center_box .item_box .item.active .top .icon::before {
  transform: rotate(0);
  background: var(--active_color);
}
.ins_faqCon1 .center_box .item_box .item.active .top .icon::after {
  transform: rotate(0);
  background: var(--active_color);
}
.ins_faqCon1 .imgBg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #EDEDED 0%, rgba(237, 237, 237, 0) 100%);
  opacity: 0.4;
}
.ins_faqCon1 .imgBg img {
  width: 100%;
  height: auto;
  mix-blend-mode: soft-light;
  filter: blur(5px);
  background-blend-mode: overlay;
}
@media (max-width:990px) {
  .ins_faqCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_faqCon1 .center_box .list_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_faqCon1 .center_box .list_box .one {
    width: 100%;
    height: auto;
    padding: 0.15rem 0.2rem;
    background: #f5f5f5be;
  }
}
.ins_libraryCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.43rem;
  padding-bottom: 1.15rem;
  background: #F9F9F9;
}
.ins_libraryCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_libraryCon1 .center_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.54rem;
}
.ins_libraryCon1 .center_box .word .t1 {
  font-weight: 500;
}
.ins_libraryCon1 .center_box .word .t2 {
  margin-top: 0.19rem;
  color: #666666;
}
.ins_libraryCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #FFFFFF;
}
.ins_libraryCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_libraryCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem 0.3rem;
}
.ins_libraryCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_libraryCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_libraryCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 66%;
}
.ins_libraryCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_libraryCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.36rem;
  padding-right: 0.31rem;
}
.ins_libraryCon2 .center_box .item_box .item .word .time {
  color: #999999;
}
.ins_libraryCon2 .center_box .item_box .item .word .t1 {
  margin-top: 0.28rem;
  color: #000000;
  line-height: 1.41;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.41);
}
.ins_libraryCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.18rem;
  color: #666666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.5);
}
.ins_libraryCon2 .center_box .item_box .item .word .idx_more4 {
  margin-top: 0.28rem;
}
.ins_libraryCon2 .center_box .idx_laypage {
  margin-top: 0.94rem;
}
@media (max-width:990px) {
  .ins_libraryCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_libraryCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.97rem;
  padding-bottom: 1.2rem;
  background: #FFFFFF;
}
.ins_libraryCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_libraryCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.33rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.ins_libraryCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_003);
  padding: 0.37rem 0.3rem;
  padding-bottom: 0.27rem;
  border-radius: 0.1rem;
  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;
  cursor: pointer;
}
.ins_libraryCon3 .center_box .item_box .item .wordbox {
  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;
  padding-bottom: 0.2rem;
}
.ins_libraryCon3 .center_box .item_box .item .wordbox .t1 {
  font-weight: 500;
  height: calc(4em * 1.4);
  line-height: 1.4;
}
.ins_libraryCon3 .center_box .item_box .item .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 0.29rem;
  position: relative;
  z-index: 1;
}
.ins_libraryCon3 .center_box .item_box .item .one::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}
.ins_libraryCon3 .center_box .item_box .item .one::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
}
.ins_libraryCon3 .center_box .item_box .item .one .word {
  color: #999999;
}
.ins_libraryCon3 .center_box .item_box .item .one .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  color: #999999;
  cursor: pointer;
}
.ins_libraryCon3 .center_box .item_box .item .one .icon img {
  filter: brightness(0) invert(0.5);
}
.ins_libraryCon3 .center_box .item_box .item:hover .one {
  width: 100%;
  height: auto;
}
.ins_libraryCon3 .center_box .item_box .item:hover .one::before {
  width: 100%;
  left: 0;
}
.ins_libraryCon3 .center_box .item_box .item:hover .one .icon {
  color: var(--active_color);
}
.ins_libraryCon3 .center_box .item_box .item:hover .one .icon img {
  filter: unset;
}
.ins_libraryCon3 .center_box .idx_laypage {
  margin-top: 0.87rem;
}
@media (max-width:990px) {
  .ins_libraryCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_libraryCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1.2rem;
  background: #00000008;
}
.ins_libraryCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_libraryCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.33rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.ins_libraryCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_libraryCon4 .center_box .item_box .item .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_libraryCon4 .center_box .item_box .item .images .img {
  width: 100%;
  height: auto;
}
.ins_libraryCon4 .center_box .item_box .item .images .img .pb {
  padding-bottom: 57%;
}
.ins_libraryCon4 .center_box .item_box .item .images .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_libraryCon4 .center_box .item_box .item .images .icon {
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  z-index: 5;
  background: #FFFFFF4D;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.ins_libraryCon4 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.24rem 0.3rem;
  font-size: var(--font20);
  padding-bottom: 0.53rem;
}
.ins_libraryCon4 .center_box .item_box .item:hover .images .img .pb .ab img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_libraryCon4 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
  background: #00000008;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_newCon1 .center_box .list_box .one {
  width: fit-content;
  height: auto;
  padding: 0 0.39rem;
  height: 0.56rem;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  font-size: var(--font16);
  color: #666666;
}
.ins_newCon1 .center_box .list_box .one.active {
  background: linear-gradient(90deg, #2549B1 0%, rgba(37, 73, 177, 0.6) 100%);
  color: #FFFFFF !important;
}
.ins_newCon1 .center_box .list_box .one:hover {
  color: var(--active_color);
}
.ins_newCon1 .center_box .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}
.ins_newCon1 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box {
  width: 47%;
  height: auto;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .word_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .word_box .time {
  font-size: var(--font18);
  color: #999999;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .word_box .t1 {
  font-weight: 700;
  margin-top: 0.26rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.37);
  line-height: 1.37;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .word_box .t2 {
  font-weight: 300;
  margin-top: 0.31rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: calc(3em * 1.5);
  color: #666666;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .idx_more {
  margin-top: 0.5rem;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box {
  width: 50.2%;
  position: relative;
  z-index: 1;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .img .pb {
  padding-bottom: 66.8%;
}
.ins_newCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon1 .center_box .swiper_info .idxPageShow {
  width: 50.2%;
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  z-index: 10;
}
.ins_newCon1 .imgBg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_newCon1 .imgBg img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_newCon1 .center_box .list_box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #FFFFFF;
}
.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;
  gap: 0.3rem;
}
.ins_newCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}
.ins_newCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0000001A;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.ins_newCon2 .center_box .item_box .item::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  z-index: 2;
  bottom: 0;
  right: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_newCon2 .center_box .item_box .item .left_box {
  width: 51%;
}
.ins_newCon2 .center_box .item_box .item .left_box .time {
  font-size: var(--font18);
  color: #999999;
}
.ins_newCon2 .center_box .item_box .item .left_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.63rem;
}
.ins_newCon2 .center_box .item_box .item .left_box .word .t1 {
  margin-top: 0.26rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1.37;
}
.ins_newCon2 .center_box .item_box .item .left_box .word .t2 {
  font-weight: 300;
  margin-top: 0.31rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.5);
  color: #666666;
}
.ins_newCon2 .center_box .item_box .item .left_box .idx_more4 {
  width: 100%;
  height: auto;
  margin-top: 0.74rem;
}
.ins_newCon2 .center_box .item_box .item .right_box {
  width: 40.7%;
}
.ins_newCon2 .center_box .item_box .item .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_newCon2 .center_box .item_box .item .right_box .img .pb {
  padding-bottom: 66%;
}
.ins_newCon2 .center_box .item_box .item .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_newCon2 .center_box .item_box .item:hover::before {
  width: 100%;
  left: 0;
}
.ins_newCon2 .center_box .item_box .item:hover .right_box .img .pb .ab img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_newCon2 .center_box .item_box .item .left_box {
    width: 65%;
  }
  .ins_newCon2 .center_box .item_box .item .left_box .idx_more4 {
    display: none;
  }
  .ins_newCon2 .center_box .item_box .item .right_box {
    width: 30%;
  }
  .ins_newCon2 .center_box .item_box .item .right_box .img .pb {
    padding-bottom: 38%;
  }
}
.ins_newCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_newCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .contentBox {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .contentBox .left_box {
  width: 74.5%;
  height: auto;
  padding-top: 1.43rem;
  padding-right: 0.7rem;
  padding-bottom: 1.2rem;
}
.ins_newCon3 .center_box .contentBox .left_box .t1 {
  font-weight: 700;
  margin-top: 0.48rem;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.28rem;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #0000001A;
  position: relative;
  z-index: 2;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.5rem;
  color: #999;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .time .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
  font-size: var(--font16);
  color: #999999;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .time .one img {
  width: 0.4rem;
  height: 0.4rem;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .list {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.24rem;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .list .icBox {
  width: fit-content;
  height: auto;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .list .icBox .ic {
  display: -webkit-box;
  display: -ms-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: #CCCCCC;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .list .icBox .ic i {
  font-size: var(--font28);
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .list .icBox .ic .img {
  width: 1.2rem;
  position: absolute;
  top: calc(100% + 0.1rem);
  opacity: 0;
  visibility: hidden;
  border: 1px solid #0000001A;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .list .icBox .ic .img img {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .list .icBox .ic:hover {
  color: var(--active_color);
}
.ins_newCon3 .center_box .contentBox .left_box .item_box .list .icBox .ic:hover .img {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon3 .center_box .contentBox .left_box .contentInfo {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon3 .center_box .contentBox .left_box .contentInfo p {
  font-size: var(--font16);
  color: #666;
  line-height: 1.5;
  font-weight: 300;
  min-height: 0.5em;
}
.ins_newCon3 .center_box .contentBox .left_box .contentInfo .tagBox {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
.ins_newCon3 .center_box .contentBox .left_box .contentInfo .tagBox .tag {
  background: var(--color_003);
  color: #999999;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.57rem;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 .idx_more .more {
  width: 100%;
  height: 0.42rem;
  font-size: var(--font16);
  min-width: 1.36rem;
  padding: 0 0.3rem;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 .idx_more .more:hover {
  background: linear-gradient(0deg, #2549b1 0%, rgba(37, 73, 177, 0.6) 100%);
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 .idx_more .more:hover i {
  color: #FFFFFF;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 .left {
  width: 40%;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 .left .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #333333;
  line-height: 1.5;
  font-weight: 400 !important;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 .left .idx_more {
  margin-top: 0.2rem;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 .center {
  width: 20%;
  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_newCon3 .center_box .contentBox .left_box .content4 .right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  text-align: end;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 .right .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 400 !important;
}
.ins_newCon3 .center_box .contentBox .left_box .content4 .right .idx_more {
  margin-top: 0.2rem;
}
.ins_newCon3 .center_box .contentBox .right_box {
  width: 25.5%;
  height: auto;
  padding-left: 0.65rem;
  border-left: 1px solid #0000001A;
  padding-top: 2.11rem;
  padding-bottom: 1.2rem;
}
.ins_newCon3 .center_box .contentBox .right_box .title {
  font-weight: 700;
  letter-spacing: -0.48px;
}
.ins_newCon3 .center_box .contentBox .right_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
  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.44rem;
}
.ins_newCon3 .center_box .contentBox .right_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .contentBox .right_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_newCon3 .center_box .contentBox .right_box .item_box .item .img .pb {
  padding-bottom: 55%;
}
.ins_newCon3 .center_box .contentBox .right_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon3 .center_box .contentBox .right_box .item_box .item .time {
  color: #666666;
  margin-top: 0.27rem;
}
.ins_newCon3 .center_box .contentBox .right_box .item_box .item .t1 {
  color: #333;
  line-height: 1.4;
  margin-top: 0.11rem;
}
.ins_newCon3 .center_box .contentBox .right_box .item_box .item:hover .t1 {
  color: var(--active_color);
}
.ins_newCon3 .center_box .contentBox .right_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon3 .center_box .contentBox .right_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.73rem;
}
.ins_newCon3 .center_box .contentBox .right_box .content1 .tagBox {
  margin-top: 0.17rem;
}
.ins_newCon3 .center_box .contentBox .right_box .content1 .tagBox .tag {
  padding: 0.12rem 0.24rem;
  font-size: var(--font16);
}
@media (max-width:990px) {
  .ins_newCon3 .center_box .contentBox .left_box {
    width: 100%;
    height: auto;
    padding-right: 0;
  }
  .ins_newCon3 .center_box .contentBox .left_box .item_box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .ins_newCon3 .center_box .contentBox .left_box .item_box .time {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 0.2rem 0.4rem;
  }
  .ins_newCon3 .center_box .contentBox .left_box .item_box .list {
    display: none;
  }
  .ins_newCon3 .center_box .contentBox .left_box .content4 {
    display: none;
  }
  .ins_newCon3 .center_box .contentBox .right_box {
    display: none;
  }
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.7rem;
  padding-bottom: 0.96rem;
  background: #F7F7F7;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box {
  width: 39.1%;
}
.ins_contactCon1 .center_box .left_box .t1 {
  font-weight: 700;
}
.ins_contactCon1 .center_box .left_box .t2 {
  margin-top: 0.18rem;
  font-weight: 300;
}
.ins_contactCon1 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.41rem;
  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;
}
.ins_contactCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #0000001A;
  font-size: var(--font16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding-bottom: 0.11rem;
}
.ins_contactCon1 .center_box .left_box .item_box .item span {
  flex-shrink: 0;
  width: 1.2rem;
  color: #666666;
}
.ins_contactCon1 .center_box .left_box .item_box .item span i {
  color: #FF0000;
}
.ins_contactCon1 .center_box .left_box .item_box .item input {
  width: 100%;
  height: 30px;
  background: none;
  border: 0;
  font-size: var(--font16);
  color: #333333;
  --color: #afafaf;
}
.ins_contactCon1 .center_box .left_box .item_box .item input::-webkit-input-placeholder,
.ins_contactCon1 .center_box .left_box .item_box .item input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contactCon1 .center_box .left_box .item_box .item input:-moz-placeholder,
.ins_contactCon1 .center_box .left_box .item_box .item input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contactCon1 .center_box .left_box .item_box .item input::-moz-placeholder,
.ins_contactCon1 .center_box .left_box .item_box .item input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contactCon1 .center_box .left_box .item_box .item input:-ms-input-placeholder,
.ins_contactCon1 .center_box .left_box .item_box .item input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_contactCon1 .center_box .left_box .item_box .item textarea {
  width: 100%;
  height: 0.88rem;
  background: none;
  border: 0;
}
.ins_contactCon1 .center_box .left_box .layui_item {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.ins_contactCon1 .center_box .left_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.ins_contactCon1 .center_box .right_box {
  width: 54.5%;
  height: auto;
}
.ins_contactCon1 .center_box .right_box .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_contactCon1 .center_box .right_box .images .img {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .right_box .images .img img {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .right_box .images .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  color: #FFFFFF;
  padding: 0.34rem 0.4rem;
}
.ins_contactCon1 .center_box .right_box .images .word .t1 {
  width: 100%;
  height: auto;
  padding-bottom: 0.2rem;
  position: relative;
  z-index: 1;
}
.ins_contactCon1 .center_box .right_box .images .word .t1::after {
  content: '';
  position: absolute;
  width: 0.32rem;
  height: 0.04rem;
  background: var(--active_color1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  bottom: 0;
}
.ins_contactCon1 .center_box .right_box .images .word .t2 {
  margin-top: 0.16rem;
  line-height: 1.55;
  opacity: 0.8;
}
@media (max-width:990px) {
  .ins_contactCon1 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.18rem;
  padding-bottom: 1.16rem;
  background: #FFFFFF;
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}
.ins_contactCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_003);
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.38rem 0.3rem;
  border: 1px solid var(--color_003);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon2 .center_box .item_box .item .t1 {
  padding-bottom: 0.27rem;
  border-bottom: 1px solid #0000001A;
  padding-left: 0.23rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.ins_contactCon2 .center_box .item_box .item .t1::after {
  content: '';
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  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;
  top: 0.5em;
  left: 0;
}
.ins_contactCon2 .center_box .item_box .item .t2 {
  margin-top: 0.29rem;
  line-height: 1.7;
  color: #666;
}
.ins_contactCon2 .center_box .item_box .item .t2 p:last-child { font-family: "HarmonyOS_Sans"; }
.ins_contactCon2 .center_box .item_box .item:hover {
  border-color: #0000001A;
  transform: translateY(-5px);
}
@media (max-width:990px) {
  .ins_contactCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_contactCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.33rem;
  background: #FFFFFF;
}
.ins_contactCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  position: relative;
  z-index: 1;
}
.ins_contactCon3 .center_box .content .map_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_contactCon3 .center_box .content .map_info .img {
  width: 100%;
  height: auto;
}
.ins_contactCon3 .center_box .content .map_info .img img {
  width: 100%;
  height: auto;
}
.ins_contactCon3 .center_box .content .map_info .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_contactCon3 .center_box .content .map_info .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;
  cursor: pointer;
}
.ins_contactCon3 .center_box .content .map_info .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #FFF;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon3 .center_box .content .map_info .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.16rem;
  height: 0.16rem;
  background: var(--active_color);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon3 .center_box .content .map_info .item_box .item span {
  position: absolute;
  width: max-content;
  top: 0.2rem;
  font-size: var(--font20);
}
.ins_contactCon3 .center_box .content .map_info .item_box .item 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_contactCon3 .center_box .content .map_info .item_box .item i::after {
  content: '';
  position: absolute;
  width: 0.26rem;
  height: 0.26rem;
  background: var(--active_color);
  opacity: 0.2;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: grow3 linear infinite var(--time);
}
.ins_contactCon3 .center_box .content .map_info .item_box .item i::before {
  content: '';
  position: absolute;
  width: 0.36rem;
  height: 0.36rem;
  background: var(--active_color);
  opacity: 0.1;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: grow3 linear infinite 4s;
}
.ins_contactCon3 .center_box .content .map_info .item_box .item.left span {
  top: unset;
  right: 0.2rem;
}
.ins_contactCon3 .center_box .content .map_info .item_box .item.right span {
  top: unset;
  left: 0.2rem;
}
.ins_contactCon3 .center_box .content .map_info .item_box .item.active span {
  color: var(--active_color);
}
.ins_contactCon3 .center_box .content .swiper_box {
  width: 3.82rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 50px 0px rgba(2, 8, 45, 0.1);
  backdrop-filter: blur(10px);
}
.ins_contactCon3 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_contactCon3 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_contactCon3 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.3rem;
  padding-bottom: 0.34rem;
}
.ins_contactCon3 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  padding-bottom: 0.19rem;
  border-bottom: 1px solid #0000001A;
  padding-left: 0.23rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
  line-height: 1.8;
}
.ins_contactCon3 .center_box .content .swiper_box ul li .centerInfo .word .t1::after {
  content: '';
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  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;
  top: 0.5em;
  left: 0;
}
.ins_contactCon3 .center_box .content .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.25rem;
  line-height: 1.77;
  color: #666;
}
.ins_contactCon3 .center_box .content .swiper_box ul li .centerInfo .img {
  padding: 0.1rem;
  padding-top: 0;
}
.ins_contactCon3 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 62%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_contactCon3 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_contactCon3 .center_box .content .swiper_box {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }
  .ins_contactCon3 .center_box .content .swiper_box ul li .centerInfo .word .t1::after {
    top: 0.8em;
  }
}
.ins_contactCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.2rem;
}
.ins_contactCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.ins_contactCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_003);
  padding: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_contactCon4 .center_box .item_box .item .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.19rem;
}
.ins_contactCon4 .center_box .item_box .item .icon i {
  width: 0.5rem;
  height: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50%;
  background: #D2D2D2;
}
.ins_contactCon4 .center_box .item_box .item .icon i img {
  filter: brightness(0) invert(1);
}
.ins_contactCon4 .center_box .item_box .item .icon span {
  font-size: var(--font24);
}
.ins_contactCon4 .center_box .item_box .item .imgs {
  width: 2rem;
  height: 2rem;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_contactCon4 .center_box .item_box .item:hover .icon i img {
  filter: unset;
}
@media (max-width:990px) {
  .ins_contactCon4 .center_box .item_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.2rem;
  }
}
.ins_joinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.16rem;
  padding-bottom: 1.2rem;
  background: #FFFFFF;
}
.ins_joinCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  margin-top: 0.32rem;
}
.ins_joinCon1 .center_box .item_box .item {
  width: 15.27%;
  height: 4.7rem;
  position: relative;
  z-index: 1;
  border-radius: 0.1rem;
  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 {
  width: 100%;
  height: 100%;
}
.ins_joinCon1 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon1 .center_box .item_box .item .font {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 0.33rem 0.39rem;
  color: #FFFFFF;
  text-align: center;
}
.ins_joinCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 0.33rem 0.39rem;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(100%);
}
.ins_joinCon1 .center_box .item_box .item .word .t1 {
  text-align: center;
}
.ins_joinCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.09rem;
  opacity: 0.6;
  font-weight: 300;
}
.ins_joinCon1 .center_box .item_box .item.active {
  width: 36.1%;
}
.ins_joinCon1 .center_box .item_box .item.active .font {
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_joinCon1 .center_box .item_box .item.active .word {
  transform: translateY(0%);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 1;
}
.ins_joinCon1 .center_box .item_box .item.active .word .t1 {
  text-align: start;
}
.ins_joinCon1 .center_box .item_box .item.active .word .t2 {
  display: block;
  transform: translateY(0%);
}
@media (max-width:990px) {
  .ins_joinCon1 .center_box .item_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_joinCon1 .center_box .item_box .item {
    width: 100% !important;
    height: 3rem;
    position: relative;
    z-index: 1;
  }
  .ins_joinCon1 .center_box .item_box .item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000023;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
  }
  .ins_joinCon1 .center_box .item_box .item .font {
    transform: translateX(-100%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
  }
  .ins_joinCon1 .center_box .item_box .item .word {
    transform: translateY(0%);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    opacity: 1;
  }
  .ins_joinCon1 .center_box .item_box .item .word .t1 {
    text-align: start;
  }
  .ins_joinCon1 .center_box .item_box .item .word .t2 {
    display: block;
    transform: translateY(0%);
    opacity: 1;
  }
}
.ins_joinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1.2rem;
  background: var(--color_003);
}
.ins_joinCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.33rem;
  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: 20px;
}
.ins_joinCon2 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .swiper_info .swiper_box ul {
  transition-timing-function: linear !important;
}
.ins_joinCon2 .center_box .swiper_info .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_joinCon2 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .pb {
  padding-bottom: 65%;
}
.ins_joinCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1.2rem;
  background: #FFFFFF;
}
.ins_joinCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .ins_title .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.17rem;
}
.ins_joinCon3 .center_box .ins_title .t2 a {
  display: contents;
  color: var(--active_color);
  font-weight: 400;
}
.ins_joinCon3 .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;
  gap: 0.06rem;
  margin-top: 0.35rem;
}
.ins_joinCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: var(--color_003);
  border-radius: 0.05rem;
  padding: 0 0.3rem;
  border: 1px solid var(--color_003);
}
.ins_joinCon3 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.3rem 0;
}
.ins_joinCon3 .center_box .item_box .item .top .word {
  width: 40%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  font-size: var(--font20);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 500;
}
.ins_joinCon3 .center_box .item_box .item .top .dree {
  width: 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;
  font-size: var(--font16);
  gap: 0.09rem;
}
.ins_joinCon3 .center_box .item_box .item .top .dree img {
  width: 0.16rem;
  min-width: 0.1rem;
}
.ins_joinCon3 .center_box .item_box .item .top .icon {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_joinCon3 .center_box .item_box .item .top .icon i {
  width: 0.16rem;
  height: 0.16rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_joinCon3 .center_box .item_box .item .top .icon i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon3 .center_box .item_box .item .top .icon i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(90deg);
}
.ins_joinCon3 .center_box .item_box .item .bot {
  width: 100%;
  height: auto;
  display: none;
  padding: 0.44rem 0;
  padding-bottom: 0.51rem;
  border-top: 1px solid #0000001A;
}
.ins_joinCon3 .center_box .item_box .item .bot .content {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .item_box .item .bot .content .t2 {
  width: 100%;
  height: auto;
  color: #666666;
  line-height: 1.5;
  font-weight: 300;
  margin-top: 0.2rem;
}
.ins_joinCon3 .center_box .item_box .item .bot .content:nth-child(n+2) {
  margin-top: 0.44rem;
}
.ins_joinCon3 .center_box .item_box .item.active {
  border-color: #0000001A;
}
.ins_joinCon3 .center_box .item_box .item.active::before {
  width: 100%;
  left: 0;
}
.ins_joinCon3 .center_box .item_box .item.active .top {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .item_box .item.active .top .word i {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_joinCon3 .center_box .item_box .item.active .top .icon i::before {
  transform: rotate(0);
  background: var(--active_color);
}
.ins_joinCon3 .center_box .item_box .item.active .top .icon i::after {
  transform: rotate(0);
  background: var(--active_color);
}
.ins_joinCon3 .center_box .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.6rem;
}
.ins_joinCon3 .center_box .idx_more .more i {
  transform: rotate(90deg) !important;
  opacity: 1 !important;
}
@media (max-width:990px) {
  .ins_joinCon3 .center_box .item_box {
    width: 100%;
    height: auto;
  }
  .ins_joinCon3 .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_joinCon3 .center_box .item_box .item .top {
    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;
  }
  .ins_joinCon3 .center_box .item_box .item .top .icon {
    width: fit-content;
    position: absolute;
    right: 0;
  }
  .ins_joinCon3 .center_box .item_box .item .top .dree {
    width: 100%;
    height: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-top: 0.1rem;
  }
  .ins_joinCon3 .center_box .item_box .item .top .word {
    width: 100%;
    height: auto;
  }
}
.ins_developmentCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
  background: var(--color_003);
}
.ins_developmentCon1 .center_box {
  width: 95.83333333%;
  height: auto;
  margin: 0 auto;
}
.ins_developmentCon1 .center_box .maskBox {
  width: 100%;
  height: auto;
  position: absolute;
  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;
  gap: 0.2rem;
  top: 0;
  left: 0;
}
.ins_developmentCon1 .center_box .maskBox .item_box {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_developmentCon1 .center_box .maskBox .item_box .item {
  width: 100%;
  height: 7.8rem;
  position: absolute;
  border-radius: 0.1rem;
  overflow: hidden;
  --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: var(--clip);
}
.ins_developmentCon1 .center_box .maskBox .item_box .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiNuber {
  width: fit-content;
  height: min-content;
  border-radius: 60px;
  position: absolute;
  top: 0.77rem;
  right: 0.5rem;
  padding: 0.13rem 0.25rem;
  border: 1px solid #0000001A;
  left: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.06rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font20);
  font-family: "BEBA";
  color: #999;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiNuber .swiper-pagination-current {
  color: #000000;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo {
  width: 100%;
  min-height: 7.8rem;
  padding: 0.5rem;
  padding-top: 1.9rem;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .imgs {
  width: 0.56rem;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .imgs img {
  width: 100%;
  height: auto;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .t1 {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
  padding-bottom: 0.43rem;
  border-bottom: 1px solid #0000001A;
  font-weight: 700;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.43rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
  color: #666;
  font-weight: 300;
  line-height: 1.5;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .list {
  width: 100%;
  height: auto;
  margin-top: 0.36rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .list .one {
  width: fit-content;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .list .one .word {
  width: fit-content;
  color: #000000;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .list .one .word span {
  font-family: "BEBA";
  font-size: var(--font60);
  line-height: 1.333;
  padding-right: 0.05rem;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .list .one .word i {
  font-style: unset;
  font-size: var(--font22);
  font-weight: 600;
}
.ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box .centerInfo .list .one .icon {
  font-size: var(--font18);
  color: #333333;
}
.ins_developmentCon1 .center_box .imagesBox {
  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_developmentCon1 .center_box .imagesBox .img {
  width: 100%;
  height: 7rem;
}
.ins_developmentCon1 .center_box .imagesBox .img img {
  opacity: 0;
}
@media (max-width:990px) {
  .ins_developmentCon1 {
    padding-bottom: 0.4rem;
  }
  .ins_developmentCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_developmentCon1 .center_box .imagesBox {
    display: none;
  }
  .ins_developmentCon1 .center_box .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_developmentCon1 .center_box .maskBox .item_box {
    display: none;
  }
  .ins_developmentCon1 .center_box .maskBox .swiper_info {
    width: 100%;
    height: auto;
  }
  .ins_developmentCon1 .center_box .maskBox .swiper_info .swiper_box ul li .centerInfo {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: 0.5rem;
  }
}
.ins_developmentCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}
.ins_developmentCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon2 .center_box .ins_title {
  width: 51%;
}
.ins_developmentCon2 .center_box .ins_title .t2 {
  margin-top: 0.38rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
}
.ins_developmentCon2 .center_box .ins_title .t2 p {
  opacity: 1;
  line-height: 1.5;
}
@media (max-width:990px) {
  .ins_developmentCon2 .center_box .ins_title {
    width: 100%;
    height: auto;
  }
}
.ins_developmentCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1.16rem;
}
.ins_developmentCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon3 .center_box .top_info {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_developmentCon3 .center_box .ins_title .t2 {
  margin-top: 0.23rem;
}
.ins_developmentCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.ins_developmentCon3 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_developmentCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  opacity: 0.3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon3 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_developmentCon3 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 61%;
}
.ins_developmentCon3 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_developmentCon3 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--font20);
  margin-top: 0.2rem;
}
.ins_developmentCon3 .center_box .swiper_box ul li.swiper-slide-active .centerInfo,
.ins_developmentCon3 .center_box .swiper_box ul li.swiper-slide-next .centerInfo,
.ins_developmentCon3 .center_box .swiper_box ul li.swiper-slide-prev .centerInfo {
  opacity: 1;
}
.ins_developmentCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/bg20.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.ins_developmentCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon4 .center_box .content1 {
  width: 50.2%;
  position: relative;
  z-index: 1;
  padding-top: 1.71rem;
  padding-bottom: 1.82rem;
  padding-right: 0.5rem;
}
.ins_developmentCon4 .center_box .content1::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vw;
  background: var(--color_003);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
  z-index: -1;
}
.ins_developmentCon4 .center_box .content1 .ins_title .t2 {
  margin-top: 0.23rem;
}
.ins_developmentCon4 .center_box .content1 .idx_more {
  margin-top: 0.56rem;
}
.ins_developmentCon4 .center_box .content1 .idx_more .more img {
  filter: brightness(0) invert(1);
  width: 0.16rem;
  min-width: 12px;
}
.ins_developmentCon4 .center_box .content2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin-top: 0.5rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
@media (max-width:990px) {
  .ins_developmentCon4 {
    width: 100%;
    height: auto;
    background: var(--color_003);
    padding: 1.2rem 0;
  }
  .ins_developmentCon4 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_developmentCon4 .center_box .content1 {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
.ins_developmentCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.83rem;
  padding-bottom: 0.63rem;
  background: #FFFFFF;
}
.ins_developmentCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.ins_developmentCon5 .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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ins_developmentCon5 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 1rem;
  background: #D9D9D9;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  right: 100%;
}
.ins_developmentCon5 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_developmentCon5 .center_box .item_box .item .word_box .icon {
  width: 0.59rem;
}
.ins_developmentCon5 .center_box .item_box .item .word_box .word {
  text-align: center;
  margin-top: 0.13rem;
  font-size: var(--font20);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}
.ins_developmentCon5 .center_box .item_box .item .more {
  margin-top: 0.3rem;
  transform: translateX(-0.5rem);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon5 .center_box .item_box .item:hover .more {
  transform: translateX(0);
  opacity: 1;
}
@media (max-width:990px) {
  .ins_developmentCon5 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.ins_cultureCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #FFFFFF;
}
.ins_cultureCon1 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_cultureCon1 .center_box .left_box {
  width: 51%;
  height: auto;
}
.ins_cultureCon1 .center_box .left_box .icon {
  color: #666666;
}
.ins_cultureCon1 .center_box .left_box .t1 {
  width: 100%;
  height: auto;
}
.ins_cultureCon1 .center_box .left_box .t2 {
  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.15rem;
  margin-top: 0.35rem;
  color: #666666;
}
.ins_cultureCon1 .center_box .right_box {
  width: 44.6%;
  height: auto;
}
.ins_cultureCon1 .center_box .right_box .img_w100 {
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_cultureCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1.13rem;
  --clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  background-image: url(../images/z107.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.ins_cultureCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_cultureCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.43rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.ins_cultureCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFFCC;
  backdrop-filter: blur(10px);
  border-radius: 0.1rem;
  padding: 0.59rem 0.38rem;
  padding-bottom: 0.64rem;
  position: relative;
  z-index: 1;
  transform: var(--tY);
}
.ins_cultureCon2 .center_box .item_box .item .icon {
  width: 0.46rem;
}
.ins_cultureCon2 .center_box .item_box .item .number {
  text-align: right;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  z-index: 1;
  color: #FFFFFF00;
  top: 0.34rem;
  right: 0.5rem;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #d8d8d84b;
  font-family: "BEBA";
  font-size: 1.2rem;
  font-style: normal;
}
.ins_cultureCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.43rem;
}
.ins_cultureCon2 .center_box .item_box .item .word .t1 {
  line-height: 1.85;
  font-weight: 500;
}
.ins_cultureCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.09rem;
  line-height: 1.44;
}
.ins_cultureCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.71rem;
  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_cultureCon2 .center_box .content .word {
  width: fit-content;
  height: auto;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: var(--font20);
  line-height: 1.8;
  font-weight: 500;
}
.ins_cultureCon2 .center_box .content .word .af {
  width: 100%;
  height: auto;
  color: #000;
  opacity: 0.3;
}
.ins_cultureCon2 .center_box .content .word .be {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: var(--clip-path);
}
@media (max-width:990px) {
  .ins_cultureCon2 .center_box .content .word {
    text-align: start;
  }
}
.ins_cultureCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background-image: url(../images/bg22.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top right;
}
.ins_cultureCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_cultureCon3 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_cultureCon3 .center_box .ins_title .icon {
  color: #666666;
}
.ins_cultureCon3 .center_box .ins_title .word {
  margin-top: 0.17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_cultureCon3 .center_box .ins_title .word .t2 {
  margin-top: 0;
  max-width: 56%;
}
.ins_cultureCon3 .center_box .contentInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.52rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_cultureCon3 .center_box .contentInfo .images {
  width: 100%;
  height: auto;
}
.ins_cultureCon3 .center_box .contentInfo .images img {
  width: 100%;
  height: auto;
}
.ins_cultureCon3 .center_box .contentInfo .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_cultureCon3 .center_box .contentInfo .item_box .item {
  width: 11.7%;
  display: -webkit-box;
  display: -ms-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;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  text-align: center;
  border-left: 1px solid #FFFFFF33;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_cultureCon3 .center_box .contentInfo .item_box .item .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.15rem;
}
.ins_cultureCon3 .center_box .contentInfo .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  padding: 0.2rem;
  transform: translateY(1rem);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.ins_cultureCon3 .center_box .contentInfo .item_box .item .word .t1 {
  font-weight: 500;
}
.ins_cultureCon3 .center_box .contentInfo .item_box .item .word .t2 {
  margin-top: 0.26rem;
  opacity: 0.8;
  font-weight: 300;
}
.ins_cultureCon3 .center_box .contentInfo .item_box .item.active {
  width: 41.5%;
}
.ins_cultureCon3 .center_box .contentInfo .item_box .item.active .icon {
  opacity: 0;
}
.ins_cultureCon3 .center_box .contentInfo .item_box .item.active .word {
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
@media (max-width:990px) {
  .ins_cultureCon3 {
    padding-bottom: 1.2rem;
  }
  .ins_cultureCon3 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_cultureCon3 .center_box .ins_title .word .t2 {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .ins_cultureCon3 .center_box .contentInfo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.8rem 0;
  }
  .ins_cultureCon3 .center_box .contentInfo .item_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    text-align: start;
  }
  .ins_cultureCon3 .center_box .contentInfo .item_box .item {
    width: 100% !important;
    height: auto;
    border: 0;
    text-align: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_cultureCon3 .center_box .contentInfo .item_box .item .icon {
    opacity: 0;
    display: none;
  }
  .ins_cultureCon3 .center_box .contentInfo .item_box .item .word {
    transform: translateY(0);
    opacity: 1;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    position: relative;
    z-index: 1;
  }
  .ins_cultureCon3 .center_box .contentInfo .item_box .item .word .t1 {
    font-size: var(--font20);
  }
  .ins_cultureCon3 .center_box .contentInfo .item_box .item .word .t2 {
    font-size: 12px;
  }
  .ins_cultureCon3 .center_box .contentInfo .images {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  .ins_cultureCon3 .center_box .contentInfo .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_cultureCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.19rem;
  padding-bottom: 1.43rem;
  background: #000000;
}
.ins_cultureCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_cultureCon4 .center_box .ins_title {
  width: 44.5%;
  height: auto;
}
.ins_cultureCon4 .center_box .ins_title .icon {
  color: #FFFFFF;
}
.ins_cultureCon4 .center_box .ins_title .icon::after {
  background: #FFFFFF;
}
.ins_cultureCon4 .center_box .ins_title .t1 {
  width: 100%;
  height: auto;
}
.ins_cultureCon4 .center_box .ins_title .t2 {
  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.15rem;
  margin-top: 0.35rem;
  color: #FFFFFF;
  line-height: 1.5;
}
.ins_cultureCon4 .center_box .ins_title .t2 p {
  opacity: 0.8;
}
.ins_cultureCon4 .center_box .idx_more {
  margin-top: 0.65rem;
}
@media (max-width:990px) {
  .ins_cultureCon4 {
    padding-bottom: 2.5rem;
  }
  .ins_cultureCon4 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_cultureCon4 .center_box .ins_title {
    width: 100%;
  }
}
.ins_cultureCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1.14rem;
  background: #FFFFFF;
}
.ins_cultureCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_cultureCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_cultureCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_cultureCon5 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
}
.ins_cultureCon5 .center_box .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_cultureCon5 .center_box .swiper_box ul li .item .img .pb {
  padding-bottom: 66%;
}
.ins_cultureCon5 .center_box .swiper_box ul li .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_cultureCon5 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.36rem;
  padding-right: 0.31rem;
}
.ins_cultureCon5 .center_box .swiper_box ul li .item .word .time {
  color: #999999;
}
.ins_cultureCon5 .center_box .swiper_box ul li .item .word .t1 {
  margin-top: 0.28rem;
  color: #000000;
  line-height: 1.41;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.41);
}
.ins_cultureCon5 .center_box .swiper_box ul li .item .word .t2 {
  margin-top: 0.18rem;
  color: #666666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.5);
}
.ins_cultureCon5 .center_box .swiper_box ul li .item .word .idx_more4 {
  margin-top: 0.28rem;
}
.ins_aboutCon1 {
  width: 100%;
  height: 200vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon1 .contBask {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_aboutCon1 .contentInfo1 {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 2;
  overflow: hidden;
}
.ins_aboutCon1 .contentInfo1 .content {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  padding-top: 2.36rem;
}
.ins_aboutCon1 .contentInfo1 .content .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_aboutCon1 .contentInfo1 .content .center_box .ins_title {
  width: 36%;
  height: auto;
}
.ins_aboutCon1 .contentInfo1 .content .center_box .ins_title .t2 {
  margin-top: 0.36rem;
  color: #666666;
  font-weight: 300;
}
.ins_aboutCon1 .contentInfo1 .content .center_box .ins_title .t2 p {
  opacity: 1;
}
.ins_aboutCon1 .contentInfo1 .content .center_box .item_box {
  width: 51.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;
  gap: 0.5rem;
}
.ins_aboutCon1 .contentInfo1 .content .center_box .item_box .item {
  width: fit-content;
  height: auto;
}
.ins_aboutCon1 .contentInfo1 .content .center_box .item_box .item .word {
  font-size: 0.8rem;
  font-family: "BEBA";
}
.ins_aboutCon1 .contentInfo1 .content .center_box .item_box .item .word i {
  font-style: unset;
  font-weight: 700;
}
.ins_aboutCon1 .contentInfo1 .content .center_box .item_box .item .icon {
  margin-top: 0.09rem;
}
.ins_aboutCon1 .contentInfo1 .content1 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.49rem;
  z-index: 10;
}
.ins_aboutCon1 .contentInfo2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10%);
}
.ins_aboutCon1 .contentInfo2 .center_box {
  width: 100%;
  height: 100vh;
  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_aboutCon1 .contentInfo2 .center_box .content4 {
  width: 55.5%;
  height: 5.8rem;
  position: relative;
  z-index: 2;
}
.ins_aboutCon1 .contentInfo2 .center_box .content3 {
  width: 38.19%;
  position: relative;
  z-index: 3;
}
.ins_aboutCon1 .contentInfo2 .center_box .content3 .ins_title .t2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.15rem;
}
.ins_aboutCon1 .contentInfo3 {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 0;
}
.ins_aboutCon1 .contentInfo3 .center_box {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon1 .contentInfo3 .center_box .maskBox {
  width: 100vw;
  height: 100vh;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  overflow: hidden;
  background-image: url(../images/ins_banner7.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 50% 50%;
}
.ins_aboutCon1 .contentInfo3 .center_box .maskBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  transform-origin: right;
  opacity: 0;
}
@media (max-width:990px) {
  .ins_aboutCon1 {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .contBask,
  .ins_aboutCon1 .contentInfo1,
  .ins_aboutCon1 .contentInfo2,
  .ins_aboutCon1 .contentInfo3 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
  }
  .ins_aboutCon1 .contBask .center_box,
  .ins_aboutCon1 .contentInfo1 .center_box,
  .ins_aboutCon1 .contentInfo2 .center_box,
  .ins_aboutCon1 .contentInfo3 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .contBask .center_box .maskBox,
  .ins_aboutCon1 .contentInfo1 .center_box .maskBox,
  .ins_aboutCon1 .contentInfo2 .center_box .maskBox,
  .ins_aboutCon1 .contentInfo3 .center_box .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    transform: translateX(0);
    left: unset;
  }
  .ins_aboutCon1 .contBask .center_box .maskBox img,
  .ins_aboutCon1 .contentInfo1 .center_box .maskBox img,
  .ins_aboutCon1 .contentInfo2 .center_box .maskBox img,
  .ins_aboutCon1 .contentInfo3 .center_box .maskBox img {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .contentInfo3 {
    display: none;
  }
  .ins_aboutCon1 .contentInfo1 {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .contentInfo1 .content1 {
    display: none;
  }
  .ins_aboutCon1 .contentInfo1 .content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding-top: 60px;
  }
  .ins_aboutCon1 .contentInfo1 .imgBg {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon1 .contentInfo1 .imgBg img {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .contentInfo2 {
    margin-top: 0.8rem;
  }
  .ins_aboutCon1 .contentInfo2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .contentInfo2 .center_box .content4 {
    width: 100%;
    height: auto;
    display: none;
  }
  .ins_aboutCon1 .contentInfo2 .center_box .content3 {
    width: 100%;
    height: auto;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
  padding-bottom: 2.16rem;
  position: relative;
  z-index: 1;
}
.ins_aboutCon2 .center_box .ins_title {
  width: 42%;
}
.ins_aboutCon2 .center_box .ins_title .t2 {
  margin-top: 0.31rem;
}
.ins_aboutCon2 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 1.97rem;
}
.ins_aboutCon2 .center_box .content2 .item_box {
  width: 22%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_aboutCon2 .center_box .content2 .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.06rem;
  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;
  border-bottom: 1px solid #D1D6DF;
}
.ins_aboutCon2 .center_box .content2 .item_box .item .word {
  font-size: var(--font60);
  font-family: "BEBA";
}
.ins_aboutCon2 .center_box .content2 .item_box .item .word i {
  font-style: unset;
  padding-left: 0.05rem;
  font-weight: 700;
  color: var(--active_color1);
}
.ins_aboutCon2 .center_box .content2 .item_box .item .icon {
  line-height: 1;
  padding-bottom: 0.2rem;
}
.ins_aboutCon2 .center_box .content1 {
  width: 92.2%;
  height: auto;
  position: absolute;
  bottom: 1.88rem;
  right: 0;
  transform: translateX(0.5rem);
}
.ins_aboutCon2 .center_box .content1 .img1 {
  width: 100%;
  height: auto;
  position: absolute;
}
.ins_aboutCon2 .center_box .content1 .img1 img {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .content1 .img2 {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .content1 .img2 img {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .content1 .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_aboutCon2 .center_box .content1 .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font20);
  cursor: pointer;
}
.ins_aboutCon2 .center_box .content1 .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.ins_aboutCon2 .center_box .content1 .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.16rem;
  height: 0.16rem;
  background: #2549B1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.ins_aboutCon2 .center_box .content1 .item_box .item span {
  position: absolute;
  width: max-content;
  right: 0.2rem;
}
.ins_aboutCon2 .center_box .content1 .item_box .item img {
  position: absolute;
  width: 1.4rem;
  max-width: unset;
  max-height: unset;
  right: 0.2rem;
}
.ins_aboutCon2 .center_box .content1 .item_box .item 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_aboutCon2 .center_box .content1 .item_box .item i::before {
  content: '';
  position: absolute;
  width: 0.26rem;
  height: 0.26rem;
  background: #2549B1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  opacity: 0.2;
  animation: grow3 linear infinite var(--time);
}
.ins_aboutCon2 .center_box .content1 .item_box .item i::after {
  content: '';
  position: absolute;
  width: 0.36rem;
  height: 0.36rem;
  background: #2549B1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  opacity: 0.1;
  animation: grow3 linear infinite 4s;
}
.ins_aboutCon2 .center_box .content1 .item_box .item.right span {
  right: unset;
  left: 0.2rem;
}
.ins_aboutCon2 .center_box .content1 .item_box .item:hover span {
  color: var(--active_color);
}
.ins_aboutCon2 .bgImg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_aboutCon2 .bgImg img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutCon2 {
    padding: 1.2rem 0;
    padding-bottom: 0;
  }
  .ins_aboutCon2 .center_box {
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }
  .ins_aboutCon2 .center_box .ins_title {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .center_box .content2 {
    width: 100%;
    height: auto;
    margin-top: 0.8rem;
  }
  .ins_aboutCon2 .center_box .content2 .item_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .center_box .content1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    bottom: unset;
    transform: translateX(0);
    margin-top: 0.8rem;
  }
  .ins_aboutCon2 .center_box .content1 .item_box .item {
    font-size: 12px;
  }
  .ins_aboutCon2 .center_box .content1 .item_box .item span {
    transform: scale(0.8);
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 3.28rem;
  padding-top: 1.17rem;
  background: #101E3A;
}
.ins_aboutCon3 .maskBox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .swiper_box {
  width: 78.2%;
  height: auto;
  position: relative;
  z-index: 11;
  margin-top: 0.7rem;
}
.ins_aboutCon3 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  transform: translateY(0.76rem);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 38.4%;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .left_box .img .pb {
  padding-bottom: 116%;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .left_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 52.4%;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .right_box .number {
  font-size: 1rem;
  font-family: "BEBA";
  color: var(--active_color1);
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .right_box .word {
  color: #FFFFFF;
  margin-top: 0.16rem;
  line-height: 2;
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .right_box .word .one {
  width: 100%;
  height: auto;
  position: relative;
  color: #FFFFFF99;
  padding-left: 0.23rem;
  font-size: var(--font18);
}
.ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .right_box .word .one::after {
  content: '';
  position: absolute;
  width: 0.02rem;
  height: 0.02rem;
  border: 0.02rem solid var(--active_color1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0.9em;
  border-radius: 50%;
}
.ins_aboutCon3 .center_box .swiper_box ul li.swiper-slide-active .centerInfo {
  transform: translateY(0);
}
.ins_aboutCon3 .center_box .content1 {
  width: 81.5%;
  height: auto;
  position: absolute;
  z-index: 10;
  top: 100%;
  transform: translateY(0.91rem) translateX(-50%);
  left: 50%;
}
.ins_aboutCon3 .center_box .content1 .img_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_aboutCon3 .center_box .content1 .img_box .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content1 .img_box .imgBg {
  position: absolute;
  width: 19.56rem;
  height: 19.56rem;
}
.ins_aboutCon3 .center_box .content1 .img_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
}
.ins_aboutCon3 .center_box .content1 .img_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;
  cursor: pointer;
}
.ins_aboutCon3 .center_box .content1 .img_box .item_box .item span {
  position: absolute;
  color: #FFFFFF;
  bottom: 0.1rem;
  font-size: var(--font30);
  font-family: "BEBA";
  transform: var(--rotate);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon3 .center_box .content1 .img_box .item_box .item.active span {
  color: var(--active_color1);
}
@media (max-width:990px) {
  .ins_aboutCon3 {
    padding-bottom: 1.2rem;
  }
  .ins_aboutCon3 .center_box .swiper_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box .swiper_box ul li .centerInfo {
    transform: translateY(0);
  }
  .ins_aboutCon3 .center_box .swiper_box ul li .centerInfo .left_box .img .pb {
    padding-bottom: 70%;
  }
  .ins_aboutCon3 .center_box .content1 {
    display: none;
  }
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1rem;
}
.ins_aboutCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.ins_aboutCon4 .center_box .swiper_info .swiper_box {
  width: 14.86%;
  height: auto;
  margin-top: 0.56rem;
}
.ins_aboutCon4 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_info .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 140%;
}
.ins_aboutCon4 .center_box .swiper_info .swiper_box ul li .centerInfo .img .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon4 .center_box .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.25rem;
  font-size: var(--font18);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon4 .center_box .swiper_info .swiper_box ul li.swiper-slide-active .centerInfo {
  opacity: 1;
}
.ins_aboutCon4 .center_box .swiper_info .swiper_box ul li.swiper-slide-active .word {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_aboutCon4 .center_box .swiper_info .swiper_box {
    width: 60%;
    height: auto;
  }
}
.ins_aboutCon4 .center_box .swiper_info .idx_swiperBtn {
  width: 100%;
  height: auto;
  margin-top: 0.58rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:990px) {
  .ins_aboutCon4 .center_box .swiper_info .idx_swiperBtn {
    display: none;
  }
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.17rem;
  padding-bottom: 1.2rem;
  background: #00000008;
}
.ins_aboutCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .ins_title .t1 span {
  color: var(--active_color1);
}
.ins_aboutCon5 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_aboutCon5 .center_box .swiper_info::after {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #FFFFFF, #FFFFFF00 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.ins_aboutCon5 .center_box .swiper_info::before {
  content: '';
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #FFFFFF00, #FFFFFF 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.ins_aboutCon5 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon5 .center_box .swiper_info .swiper_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  bottom: -1px;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.08;
}
.ins_aboutCon5 .center_box .swiper_info .swiper_box ul {
  transition-timing-function: linear !important;
}
.ins_aboutCon5 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  cursor: pointer;
}
.ins_aboutCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .pb {
  padding-bottom: 66.5%;
}
.ins_aboutCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .pb .ab img {
  filter: brightness(0) invert(0.7);
}
.ins_aboutCon5 .center_box .swiper_info .swiper_box ul li .centerInfo:hover .pb .ab img {
  filter: unset;
}
.ins_aboutCon5 .imgBg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_aboutCon5 .imgBg img {
  width: 100%;
  height: auto;
}
@media (max-width:1280px) {
  .ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .listCon1 .list {
    gap: 0.1rem;
  }
}

.ins_laboratoryCon3 .input_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
      font-family: "HarmonyOS_Sans";
      
  margin-top: 0.3rem;
}

.ins_laboratoryCon3 .input_box .select {
  width: 2.64rem;
  min-width: 180px;
}
.ins_laboratoryCon3 .input_box .select input {
  width: 100%;
  height: 0.5rem;
  min-height: 40px;
  background: #f3f3f3;
  border-radius: 100px;
  border: 0;
  padding-left: 0.31rem;
}
.ins_laboratoryCon3 .input_box .select input:focus {
  border: 1px solid var(--active_color);
}
.ins_laboratoryCon3 .input_box .select .layui-form-select .layui-edge {
  right: 0.2rem;
  border-top-color: #000;
}
.ins_laboratoryCon3 .input_box .select .layui-form-select dl {
  top: 100% !important;
  bottom: unset !important;
}
.ins_laboratoryCon3 .input_box .select .layui-form-select dl dd.layui-this {
  color: var(--active_color);
}
.ins_laboratoryCon3 .input_box .input {
  width: 4.14rem;
  height: 0.5rem;
  min-height: 40px;
  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_laboratoryCon3 .input_box .input input {
  width: 100%;
  height: 100%;
  padding-left: 0.56rem;
  background: #f3f3f3;
  border-radius: 100px;
  border: 0;
}
.ins_laboratoryCon3 .input_box .input input:focus {
  border: 1px solid var(--active_color);
}
.ins_laboratoryCon3 .input_box .input img {
  position: absolute;
  left: 0.27rem;
  z-index: 5;
  width: 0.14rem;
}
.ins_laboratoryCon3 .input_box .icon {
  width: fit-content;
  padding: 0 0.32rem;
  display: -webkit-box;
  display: -ms-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;
  height: 0.5rem;
  min-height: 40px;
  background: var(--active_color);
  color: #FFFFFF;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_laboratoryCon3 .input_box .icon:hover {
  background: var(--active_color1);
}
.ins_laboratoryCon1 .center_box .content4 .swiper_box ul li .centerInfo .right_box .word .tit_box .icon {     flex-shrink: 0; }
