@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul.swiper-wrapper,
ol.swiper-slide,
li.swiper-slide {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
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;
}
.ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: more 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes bigcri {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #FF6900;
  --color_fff: #ffffff;
  --color_text: #282828;
  --active_color2: #006FBC;
  --active_color3: #00A0E9;
  --color_f6f: #f6f6f6;
  --color_f4f: #f4f4f4;
  --color_eee: #eeeeee;
  --color_ddd: #dddddd;
  --color_bbb: #bbbbbb;
  --color_999: #999999;
  --color_666: #666666;
  --color_444: #444444;
  --color_333: #333333;
  --color_222: #222222;
  --color_000: #000000;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
  --font19: clamp(14px, 0.19rem, 19px);
}
@media (max-width:1200px) {
  :root {
    --font12: 0.16rem;
    --font14: 0.18rem;
    --font16: 0.2rem;
    --font17: 0.22rem;
    --font18: 0.22rem;
    --font20: 0.24rem;
    --font22: 0.26rem;
    --font24: 0.3rem;
    --font26: 0.3rem;
    --font28: 0.28rem;
    --font30: 0.3rem;
    --font32: 0.32rem;
    --font19: 0.19rem;
    --font34: 0.34rem;
    --font36: 0.36rem;
    --font38: 0.38rem;
    --font15: 0.15rem;
    --font40: 0.4rem;
    --font42: 0.42rem;
    --font46: 0.46rem;
    --font48: 0.48rem;
    --font50: 0.5rem;
    --font52: 0.52rem;
    --font54: 0.54rem;
    --font56: 0.56rem;
    --font58: 0.58rem;
    --font44: 0.44rem;
    --font60: 0.6rem;
    --font64: 0.64rem;
    --font70: 0.7rem;
    --font72: 0.72rem;
    --font80: 0.8rem;
    --font66: 0.66rem;
  }
}
/* 公共字体 */
.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);
}
.font19 {
  font-size: var(--font19);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem !important;
}
.mar_t13 {
  margin-top: 0.13rem !important;
}
.mar_t15 {
  margin-top: 0.15rem !important;
}
.mar_t17 {
  margin-top: 0.17rem !important;
}
.mar_t20 {
  margin-top: 0.2rem !important;
}
.mar_t23 {
  margin-top: 0.23rem !important;
}
.mar_t25 {
  margin-top: 0.25rem !important;
}
.mar_t27 {
  margin-top: 0.27rem !important;
}
.mar_t30 {
  margin-top: 0.3rem !important;
}
.mar_t33 {
  margin-top: 0.33rem !important;
}
.mar_t35 {
  margin-top: 0.35rem !important;
}
.mar_t37 {
  margin-top: 0.37rem !important;
}
.mar_t40 {
  margin-top: 0.4rem !important;
}
.mar_t43 {
  margin-top: 0.43rem !important;
}
.mar_t45 {
  margin-top: 0.45rem !important;
}
.mar_t47 {
  margin-top: 0.47rem !important;
}
.mar_t50 {
  margin-top: 0.5rem !important;
}
.mar_t53 {
  margin-top: 0.53rem !important;
}
.mar_t55 {
  margin-top: 0.55rem !important;
}
.mar_t57 {
  margin-top: 0.57rem !important;
}
.mar_t60 {
  margin-top: 0.6rem !important;
}
.mar_t63 {
  margin-top: 0.63rem !important;
}
.mar_t65 {
  margin-top: 0.65rem !important;
}
.mar_t67 {
  margin-top: 0.67rem !important;
}
.mar_t70 {
  margin-top: 0.7rem !important;
}
.mar_t73 {
  margin-top: 0.73rem !important;
}
.mar_t75 {
  margin-top: 0.75rem !important;
}
.mar_t77 {
  margin-top: 0.77rem !important;
}
.mar_t80 {
  margin-top: 0.8rem !important;
}
.mar_t83 {
  margin-top: 0.83rem !important;
}
.mar_t85 {
  margin-top: 0.85rem !important;
}
.mar_t87 {
  margin-top: 0.87rem !important;
}
.mar_t90 {
  margin-top: 0.9rem !important;
}
.mar_t93 {
  margin-top: 0.93rem !important;
}
.mar_t95 {
  margin-top: 0.95rem !important;
}
.mar_t97 {
  margin-top: 0.97rem !important;
}
.mar_t100 {
  margin-top: 1rem !important;
}
.mar_t105 {
  margin-top: 1.05rem !important;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.ttf");
  font-weight: normal;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1760,
.container,
.wrap {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1760,
  .container,
  .wrap {
    max-width: 91.66666667%;
  }
}
@media (max-width:990px) {
  .w1760,
  .container,
  .wrap {
    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.94rem;
  font-family: "Rubik";
  color: #000;
  font-size: var(--font16);
}
main.active {
  --header-height: 0.72rem;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img {
  width: 100%;
  height: auto;
}
.banner_img img.wap {
  min-height: 400px;
  object-fit: cover;
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background-image: linear-gradient(180deg, #e3e3e375, #ffffff00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 5px;
    height: 5px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.15rem;
}
.idxPageShow span {
  width: 9px;
  height: 9px;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
/* --------------------------------------------------------------- 吸顶 */
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.grid_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid_6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid_7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid_8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid_1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .top_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0.3rem;
  }
}
.imgScale img {
  transform: scale(1.5);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
}
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
/*  适用于轮播图中的依次间隔时间  data-atime="100" &.swiper-slide-active { .wowUpS { animation: fadeInUp 0.7s forwards; .dh(.1); } } .wowUpS { opacity: 0; }  */
.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;
}
/* --------------------------------------------------------------- 新增公共组件 */
.idxPageNumber {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.idxPageNumber span {
  width: 100%;
  height: auto;
  border-radius: 0;
  opacity: 1;
  background: none;
  font-size: var(--font16);
  padding-bottom: 0.18rem;
  position: relative;
  z-index: 1;
  color: #FFFFFF80;
}
.idxPageNumber span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.03rem;
  background: #FFFFFF33;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  bottom: 0;
  border-radius: 100px;
  z-index: 1;
}
.idxPageNumber span::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 0.03rem;
  background: var(--active_color);
  left: 0;
  bottom: 0;
  border-radius: 100px;
  z-index: 2;
}
.idxPageNumber span.swiper-pagination-bullet-active::before {
  width: 100%;
  transition: all 5s linear;
}
section * {
  scrollbar-color: #c5c5c5 #d4d6d700;
  scrollbar-width: thin;
}
section *::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d7;
}
section *::-webkit-scrollbar-thumb {
  background-color: var(--active_color2);
  border-radius: 10px;
}
section *::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0.76);
}
.idx_more {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.3rem;
}
.idx_more .more {
  width: fit-content;
  padding: 0.04rem;
  padding-left: 0.28rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.31rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: 100px;
  background: #F2F2F2;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more .word {
  font-size: var(--font16);
  line-height: 1.14;
  color: #333;
  -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;
  gap: 0.09rem;
}
.idx_more .more .word img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more .icon {
  width: 0.4rem;
  height: 0.4rem;
  min-width: 26px;
  min-height: 26px;
  background: var(--active_color);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_more .more .icon i {
  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;
  color: #FFFFFF;
  font-weight: 900;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more .icon i.be {
  position: absolute;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  color: var(--active_color3);
}
.idx_more .more:hover {
  background: var(--active_color3);
}
.idx_more .more:hover .word {
  color: #FFFFFF;
}
.idx_more .more:hover .word img {
  filter: brightness(0) invert(1);
}
.idx_more .more:hover .icon {
  background: #FFFFFF;
}
.idx_more .more:hover .icon .be {
  transform: translateY(0%) translateX(0%);
  opacity: 1;
}
.idx_more .more:hover .icon .af {
  transform: translateY(-50%) translateX(50%);
  opacity: 0;
}
.idx_more.acBg .more {
  background: var(--active_color3);
}
.idx_more.acBg .more .word {
  color: #FFFFFF;
}
.idx_more.acBg .more .icon {
  background: #FFFFFF;
}
.idx_more.acBg .more .icon i.af {
  color: var(--active_color3);
}
.idx_more.acBg .more .icon i.be {
  color: var(--active_color);
}
.idx_more.acBg .more:hover {
  background: var(--active_color);
}
.idx_more.acBg2 .more {
  background: var(--active_color2);
}
.idx_more.acBg2 .more .word {
  color: #FFFFFF;
}
.idx_more.acBg2 .more .icon {
  background: #FFFFFF;
}
.idx_more.acBg2 .more .icon i.af {
  color: var(--active_color2);
}
.idx_more.acBg2 .more .icon i.be {
  color: var(--active_color);
}
.idx_more.acBg2 .more:hover {
  background: var(--active_color);
}
.idx_more.small .more {
  width: auto;
  padding-left: 0.24rem;
  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_more.small .more .word {
  font-size: var(--font14);
}
.idx_more.small .more .icon {
  width: 0.32rem;
  height: 0.32rem;
}
.idx_more.small .more .icon i {
  font-size: var(--font14);
}
.idx_more.small .more .icon i.be {
  transform: translateY(-50%);
}
.idx_more.small .more .icon i.af {
  transform: translateY(0%);
  color: #000;
}
.idx_more.small .more:hover .icon i.be {
  transform: translateY(0%);
}
.idx_more.small .more:hover .icon i.af {
  transform: translateY(50%);
}
.idx_more.co00 .more .icon i.af {
  color: #000;
}
.coAc1 {
  color: var(--active_color2);
}
.coAc2 {
  color: var(--active_color);
}
.coAc3 {
  color: #999999;
}
.idx_title {
  width: fit-content;
  height: auto;
}
.idx_title .t1 {
  color: #999999;
}
.idx_title .t1 span {
  color: var(--active_color2);
}
.idx_title .t2 {
  color: #000;
}
.idx_title .t3 {
  color: #000;
  margin-top: 0.32rem;
}
.idx_title .t3 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  color: #000;
}
.idx_title .t4 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: #000;
}
.idx_title .t5 {
  margin-top: 0.32rem;
  color: #999999;
}
.idx_title .t6 {
  width: 100%;
  height: auto;
  color: #000;
}
@media (max-width:990px) {
  .idx_title {
    width: 100% !important;
    height: auto;
    max-width: 100% !important;
  }
  .idx_title * {
    text-align: start !important;
  }
}
.pointItem {
  transform: translateY(-1rem);
}
.ins_navbox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.14rem;
}
.ins_navbox .icon {
  font-size: var(--font14);
  color: #666666;
}
.ins_navbox .one {
  font-size: var(--font14);
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_navbox .one.active {
  color: #666666;
}
.ins_navbox .one:hover {
  color: #000000;
}
@media (max-width:990px) {
  .ins_navbox {
    display: none !important;
  }
}
.tag_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.08rem;
}
.tag_box .one {
  width: fit-content;
  height: auto;
  min-height: 30px;
  padding: 0.12rem 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.08rem;
  font-size: var(--font18);
  color: #999999;
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #EBEBEB;
}
.tag_box .one:hover {
  border-color: var(--active_color);
  color: var(--active_color);
}
.idxPageLine {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  background: #0000001A;
}
.idxPageLine .swiper-pagination-progressbar-fill {
  height: 0.03rem;
  background: var(--active_color);
  top: -0.02rem;
}
.swiper_btnBox {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
}
.swiper_btnBox .icon {
  width: 0.45rem;
  height: 0.45rem;
  min-width: 30px;
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.swiper_btnBox .icon:hover {
  background: var(--active_color2);
}
@media (max-width:990px) {
  .swiper_btnBox {
    display: none;
  }
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.18rem;
  padding: 0;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div {
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: underline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.19rem;
  height: 0.19rem;
  border-radius: 0.04rem;
  position: relative;
  z-index: 1;
  top: 0;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #999999;
}
.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);
  border-color: var(--active_color) !important;
}
.layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.layui_item .layui-form-checkbox > div {
  white-space: unset;
  text-overflow: unset;
}
.layui_item .layui-form-checkbox > div a {
  display: contents;
}
.swiper_pro {
  width: 0.45rem;
  height: 0.45rem;
  background: #F2F0F0;
  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;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_pro img {
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_pro.prev {
  right: calc(100% + 0.2rem);
}
.swiper_pro.next {
  left: calc(100% + 0.2rem);
}
.swiper_pro:hover {
  background: var(--active_color);
}
.swiper_pro:hover img {
  filter: brightness(0) invert(1);
}
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}
.idx_homeCon1 .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 2.94rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .icon {
  width: fit-content;
  height: 0.56rem;
  border-radius: 100px;
  color: var(--active_color);
  background: #FFFFFF;
  padding: 0 0.41rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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(--font18);
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 {
  width: 100%;
  height: auto;
  margin-top: 0.37rem;
  color: #FFFFFF;
  line-height: 1.125;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .img_w100::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #E6EBF1 2.99%, rgba(4, 114, 255, 0.1) 64.3%);
  z-index: 1;
  opacity: 0;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .img_w100 img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
}
.idx_homeCon1 .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_homeCon1 .cont_info {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.64rem;
  left: 0;
  z-index: 10;
}
.idx_homeCon1 .cont_info .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.01rem;
}
.idx_homeCon1 .cont_info .center_box .scrollIcon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon1 .cont_info .center_box .scrollIcon .icon {
  width: 0.48rem;
  height: 0.48rem;
  background: #FFFFFF1A;
  border-radius: 50%;
  overflow: hidden;
}
.idx_homeCon1 .cont_info .center_box .scrollIcon .word {
  color: #FFFFFF99;
  font-size: var(--font14);
}
.idx_homeCon1 .cont_info .center_box .idxPageNumber {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 p {
    display: contents;
  }
  .idx_homeCon1 .cont_info .center_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0.4rem;
  }
  .idx_homeCon1 .swiper_box ul li .centerInfo .img_w100::after {
    opacity: 0 !important;
  }
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
  background: #FFFFFF;
  padding-bottom: 6.66rem;
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .top_info .idx_more .more .icon i.af {
  color: #000;
}
.idx_homeCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.84rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.idx_homeCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0 0.3rem;
  padding-top: 0.48rem;
  border-top: 1px solid #DDDDDD;
  position: relative;
  z-index: 1;
  border-left: 1px solid #DDDDDD;
}
.idx_homeCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: #FFFFFF;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .item_box .item::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  width: 0.06rem;
  height: 0.06rem;
  background: #00A0E9;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .item_box .item .wordB {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .item_box .item .wordB .t1 {
  width: 100%;
  height: calc(2em * 1.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .item_box .item .iconB {
  width: 100%;
  height: auto;
  margin-top: 1.49rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .item_box .item .iconB .t1 {
  color: #666666;
  line-height: 1.333;
}
.idx_homeCon2 .center_box .item_box .item .btnB {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  padding: 0 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateY(50px);
}
.idx_homeCon2 .center_box .item_box .item .btnB .idx_more {
  width: fit-content;
}
.idx_homeCon2 .center_box .item_box .item .btnB .idx_more .more {
  width: 100%;
  min-width: 1.72rem;
  padding-left: 0.24rem;
  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_homeCon2 .center_box .item_box .item .btnB .idx_more .more .word {
  font-size: var(--font14);
}
.idx_homeCon2 .center_box .item_box .item .btnB .idx_more .more .icon {
  width: 0.32rem;
  height: 0.32rem;
}
.idx_homeCon2 .center_box .item_box .item:first-child {
  border-left: 0;
}
.idx_homeCon2 .center_box .item_box .item:first-child::after {
  opacity: 0;
}
.idx_homeCon2 .center_box .item_box .item:first-child::before {
  opacity: 0;
}
.idx_homeCon2 .center_box .item_box .item:hover {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .item_box .item:hover .wordB .t1 {
  text-decoration: underline;
  color: var(--active_color2);
}
.idx_homeCon2 .center_box .item_box .item:hover .iconB {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.idx_homeCon2 .center_box .item_box .item:hover .btnB {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.idx_homeCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  display: none;
}
.idx_homeCon2 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  padding: 0 0.3rem;
  padding-top: 0.48rem;
  border-top: 1px solid #DDDDDD;
  position: relative;
  z-index: 1;
  border-left: 1px solid #DDDDDD;
}
.idx_homeCon2 .center_box .swiper_box ul li .item::after {
  content: '';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: #FFFFFF;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .swiper_box ul li .item::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  width: 0.06rem;
  height: 0.06rem;
  background: #00A0E9;
  top: 0;
  left: 0;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .swiper_box ul li .item .wordB {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box ul li .item .wordB .t1 {
  width: 100%;
  height: calc(2em * 1.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font30);
}
.idx_homeCon2 .center_box .swiper_box ul li .item .iconB {
  width: 100%;
  height: auto;
  margin-top: 1.49rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .swiper_box ul li .item .iconB .t1 {
  color: #666666;
  line-height: 1.333;
}
.idx_homeCon2 .center_box .swiper_box ul li .item .btnB {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  padding: 0 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateY(50px);
}
.idx_homeCon2 .center_box .swiper_box ul li .item .btnB .idx_more {
  width: fit-content;
}
.idx_homeCon2 .center_box .swiper_box ul li .item .btnB .idx_more .more {
  width: 100%;
  min-width: 1.72rem;
  padding-left: 0.24rem;
  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_homeCon2 .center_box .swiper_box ul li .item .btnB .idx_more .more .word {
  font-size: var(--font14);
}
.idx_homeCon2 .center_box .swiper_box ul li .item .btnB .idx_more .more .icon {
  width: 0.32rem;
  height: 0.32rem;
}
.idx_homeCon2 .center_box .swiper_box ul li .item:hover {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box ul li .item:hover .wordB .t1 {
  text-decoration: underline;
  color: var(--active_color2);
}
.idx_homeCon2 .center_box .swiper_box ul li .item:hover .iconB {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.idx_homeCon2 .center_box .swiper_box ul li .item:hover .btnB {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.idx_homeCon2 .center_box .swiper_box ul li:first-child .item {
  border-left: 0;
}
.idx_homeCon2 .center_box .swiper_box ul li:first-child .item::after {
  opacity: 0;
}
.idx_homeCon2 .center_box .swiper_box ul li:first-child .item::before {
  opacity: 0;
}
.idx_homeCon2 .content {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.idx_homeCon2 .content .img {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .content .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .content .list_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_homeCon2 .content .list_box .list {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .content .list_box .list .icon {
  width: max-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;
  left: 0;
  gap: 0.12rem;
}
.idx_homeCon2 .content .list_box .list .icon i {
  width: 0.1rem;
  height: 0.1rem;
  background: var(--active_color2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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%;
}
.idx_homeCon2 .content .list_box .list .icon i::after {
  content: '';
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: #009fe965;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  animation: bigcri var(--time) linear infinite;
}
.idx_homeCon2 .content .list_box .list .icon i::before {
  content: '';
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  background: #009fe965;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  animation: bigcri 5s linear infinite;
}
.idx_homeCon2 .content .list_box .list .icon span {
  font-size: var(--font18);
  color: #666666;
  position: relative;
  z-index: 3;
  opacity: 0;
}
@media (max-width:990px) {
  .idx_homeCon2 {
    padding-bottom: 0;
  }
  .idx_homeCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .idx_homeCon2 .center_box .item_box {
    display: none !important;
  }
  .idx_homeCon2 .center_box .swiper_box {
    display: block !important;
    margin-top: 0.84rem;
  }
  .idx_homeCon2 .center_box .swiper_box ul li .item .iconB {
    margin-top: 1rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  .idx_homeCon2 .center_box .swiper_box ul li .item .btnB {
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 0;
    margin-top: 0.4rem;
  }
  .idx_homeCon2 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: 0.6rem;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background-image: url(../images/bg2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.idx_homeCon3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content1 {
  width: 100%;
  height: auto;
  background: #FFFFFFCC;
  backdrop-filter: blur(60px);
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .content1 .left_box {
  width: 23.8%;
  padding: 0.48rem;
  border-right: 1px solid #0000001F;
  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;
}
.idx_homeCon3 .center_box .content1 .left_box .word {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content1 .left_box .word .t1 {
  color: #999;
}
.idx_homeCon3 .center_box .content1 .left_box .word .t2 {
  margin-top: 0.12rem;
  color: var(--active_color2);
}
.idx_homeCon3 .center_box .content1 .left_box .icon {
  width: 0.69rem;
}
.idx_homeCon3 .center_box .content1 .right_box {
  width: 76.2%;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0 0.47rem;
  -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;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url(../images/i7.png);
  background-size: 100% 100%;
  top: 0;
  left: 0;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo .img {
  width: 46%;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 179%;
}
.idx_homeCon3 .center_box .content1 .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;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo .wordB {
  width: 47%;
  height: auto;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo .wordB .t1 {
  color: #666666;
  line-height: 1.375;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo .wordB .idx_more {
  margin-top: 0.4rem;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo .wordB .idx_more.small .more {
  background: #FFFFFF;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo .wordB .idx_more:hover .more {
  background: var(--active_color3) !important;
}
.idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li:first-child .centerInfo::after {
  opacity: 0;
}
.idx_homeCon3 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.idx_homeCon3 .center_box .content2 .content {
  width: 100%;
  height: auto;
  background: #FFFFFFCC;
  backdrop-filter: blur(60px);
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .content2 .content .title {
  width: 100%;
  height: auto;
  padding: 0.32rem 0.48rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #0000001F;
  color: var(--active_color2);
}
.idx_homeCon3 .center_box .content2 .content .cont_info {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.1rem 0.56rem 0;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box {
  width: 100%;
  height: 2.6rem;
  overflow: auto;
  padding: 0 0.48rem;
  padding-right: 0.38rem;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .one {
  width: 100%;
  height: auto;
  padding-top: 0.22rem;
  padding-bottom: 0.23rem;
  color: #666;
  border-bottom: 1px dashed #00000033;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .one:first-child {
  padding-top: 0;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .one:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .one:hover {
  color: var(--active_color);
  text-decoration: underline;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item {
  width: 100%;
  height: auto;
  padding: 0.23rem 0;
  border-bottom: 1px dashed #00000033;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item .word {
  width: 100%;
  height: auto;
  color: #666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item .iconB {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.23rem;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item .iconB .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item .iconB .icon .ic {
  width: fit-content;
  height: auto;
  gap: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #999;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item .iconB .icon .ic img {
  width: 0.22rem;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item .iconB .icon .bgAc1 {
  color: var(--active_color3);
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item .iconB .icon .bgAc2 {
  color: var(--active_color);
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item:first-child {
  padding-top: 0;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.idx_homeCon3 .center_box .content2 .content .cont_info .list_box .item:hover .word {
  color: #000;
}
.idx_homeCon3 .center_box .content2 .content:hover {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .idx_homeCon3 {
    background-attachment: unset;
  }
  .idx_homeCon3 .center_box .content1 {
    gap: 0;
  }
  .idx_homeCon3 .center_box .content1 .left_box {
    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-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .idx_homeCon3 .idxPageHide {
    position: absolute;
    bottom: 0.3rem;
  }
  .idx_homeCon3 .center_box .content2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon3 .center_box .content1 .right_box .swiper_box ul li .centerInfo .img .pb {
    padding-bottom: 157%;
  }
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.91rem;
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .top_info .idx_more .more {
  min-width: 2.07rem;
}
.idx_homeCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.idx_homeCon4 .center_box .content .left_box {
  width: 46.3%;
  background: #F7F8F9;
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_homeCon4 .center_box .content .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_homeCon4 .center_box .content .left_box .img .pb {
  padding-bottom: 57%;
}
.idx_homeCon4 .center_box .content .left_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon4 .center_box .content .left_box .word_box {
  width: 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;
}
.idx_homeCon4 .center_box .content .left_box .word_box .word {
  width: 100%;
  height: auto;
  padding: 0.6rem 0.4rem;
  padding-bottom: 0.72rem;
  border-bottom: 1px solid #00000014;
}
.idx_homeCon4 .center_box .content .left_box .word_box .word .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.3);
  line-height: 1.3;
  color: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon4 .center_box .content .left_box .word_box .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.25rem 0.4rem;
  padding-bottom: 0.28rem;
}
.idx_homeCon4 .center_box .content .left_box .word_box .icon_box .icon {
  width: 1.07rem;
}
.idx_homeCon4 .center_box .content .left_box .word_box .icon_box .time {
  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;
}
.idx_homeCon4 .center_box .content .left_box .word_box .icon_box .time img {
  width: 0.2rem;
  min-width: 12px;
}
.idx_homeCon4 .center_box .content .left_box:hover .word_box .word .t1 {
  color: var(--active_color);
  text-decoration: underline;
}
.idx_homeCon4 .center_box .content .left_box:hover .img .pb .ab img {
  transform: scale(1.04);
}
.idx_homeCon4 .center_box .content .right_box {
  width: 48.2%;
}
.idx_homeCon4 .center_box .content .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;
}
.idx_homeCon4 .center_box .content .right_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;
  padding: 0.36rem 0;
  border-bottom: 1px solid #dddddd;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item .word_box {
  width: 55%;
  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.3rem;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item .word_box .word .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item .word_box .icon_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item .word_box .icon_box .icon {
  width: 1.07rem;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item .word_box .icon_box .time {
  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;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item .word_box .icon_box .time img {
  width: 0.2rem;
  min-width: 12px;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item .img {
  width: 38%;
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item .img .pb {
  padding-bottom: 64%;
}
.idx_homeCon4 .center_box .content .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;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item:first-child {
  padding-top: 0;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item:hover .word_box .word .t1 {
  color: var(--active_color);
  text-decoration: underline;
}
.idx_homeCon4 .center_box .content .right_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.04);
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .top_info .idx_more {
    display: none;
  }
}
.idx_homeCon5 {
  width: auto;
  height: 100vh;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon5 .item_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_homeCon5 .item_box .item {
  width: fit-content;
  height: 24px;
  padding: 0 0.22rem;
  padding-right: 0.32rem;
  text-align: end;
  font-size: 12px;
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  color: #FFFFFF99;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_homeCon5 .item_box .item i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
}
.idx_homeCon5 .item_box .item i::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FFFFFF99;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.idx_homeCon5 .item_box .item::after {
  content: '';
  position: absolute;
  right: 0;
  width: 25px;
  height: 25px;
  transform: translateX(1px);
  border: 1px solid #FFFFFF33;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.idx_homeCon5 .item_box .item.active {
  color: #FFF !important;
}
.idx_homeCon5 .item_box .item.active::after {
  border-color: #FFFFFF99;
  width: 100%;
}
.idx_homeCon5 .item_box .item.active i::after {
  background: var(--active_color) !important;
}
.idx_homeCon5.active .item_box .item {
  color: #99999999;
}
.idx_homeCon5.active .item_box .item i::after {
  background: #CCCCCC;
}
.idx_homeCon5.active .item_box .item::after {
  border: 1px solid #99999933 !important;
}
.idx_homeCon5.active .item_box .item.active {
  color: #000 !important;
}
.idx_homeCon5.active .item_box .item.active::after {
  border-color: #CCCCCC;
}
.idx_homeCon5.active .item_box .item.active i::after {
  background: var(--active_color) !important;
}
@media (max-width:990px) {
  .idx_homeCon5 {
    display: none;
  }
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: 100%;
  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_bannerCon1 .content .center_box .ins_navbox {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.15rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 10;
}
.ins_bannerCon1 .content .center_box .ins_navbox::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #10101033;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}
.ins_bannerCon1 .content .center_box .ins_navbox .icon,
.ins_bannerCon1 .content .center_box .ins_navbox .one {
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}
.ins_bannerCon1 .content .center_box .word {
  width: 69.5%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .word .t1 {
  color: #FFFFFF;
}
.ins_bannerCon1 .content .center_box .word .input {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  position: relative;
  z-index: 1;
  border-radius: 100px;
  overflow: hidden;
}
.ins_bannerCon1 .content .center_box .word .input input {
  width: 100%;
  height: 0.69rem;
  border-radius: 100px;
  padding-left: 0.5rem;
  padding-right: 1rem;
  border: 1px solid #FFFFFF99;
  background: #FFFFFF4D;
  backdrop-filter: blur(9.05000019px);
  font-size: var(--font20);
}
.ins_bannerCon1 .content .center_box .word .input .btn {
  width: 0.59rem;
  height: 0.59rem;
  position: absolute;
  right: 0.05rem;
  top: 0.05rem;
  border-radius: 100px;
  border: 0;
  background: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_bannerCon1 .content .center_box .word .input .btn img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_bannerCon1 .content .center_box .word .input .btn:hover {
  background: var(--active_color);
}
.ins_bannerCon1 .content .center_box .word .input .btn:hover img {
  filter: brightness(0) invert(1);
}
.ins_bannerCon1 .content .center_box .icon_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_bannerCon1 .content .center_box .icon_box2 {
  width: 40%;
}
.ins_bannerCon1 .content .center_box .icon_box2 .t2 {
  margin-top: 0.8rem;
}
.ins_bannerCon1 .content .center_box .icon_box2 .t1 {
  margin-top: 0.2rem;
  color: var(--active_color);
}
.ins_bannerCon1 .content .center_box .icon_box2 .t3 {
  color: #999999;
}
.ins_bannerCon1 .content .center_box .icon_box2 .t3 span {
  color: var(--active_color2);
}
.ins_bannerCon1 .content .center_box .icon_box2 .t4 {
  color: #000000;
}
.ins_bannerCon1 .content .center_box .icon_box2 .t4 span {
  color: var(--active_color2);
}
.ins_bannerCon1 .content .center_box .icon_box2 .list {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  gap: 0.55rem 0.2rem;
}
.ins_bannerCon1 .content .center_box .icon_box2 .list .one {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .icon_box2 .list .one .t1 {
  color: var(--active_color);
}
.ins_bannerCon1 .content .center_box .icon_box2 .list .one .t2 {
  margin-top: 0.08rem;
  color: #222222;
}
.ins_bannerCon1 .content .center_box .icon_box2.w100 {
  width: 100%;
}
.ins_bannerCon1 .content .center_box._left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width:990px) {
  .ins_bannerCon1 .content .center_box .icon_box2 {
    width: 100%;
    height: auto;
  }
  .ins_bannerCon1 .content .center_box .icon_box2 .list {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_bannerCon1 .content .center_box .icon_box2 .list .one {
    width: 100%;
    height: auto;
  }
}
.ins_bannerCon1.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #E6EBF1 2.99%, rgba(4, 114, 255, 0.1) 64.3%);
  z-index: 1;
  opacity: 0;
}
.ins_navCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0.15rem 0;
  background: #1010100F;
}
.ins_navCon1 .center_box {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_navCon1 {
    display: none;
  }
}
.ins_navCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_navCon2::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;
  bottom: 0;
  left: 0;
}
.ins_navCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_navCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.7rem;
  font-size: var(--font18);
}
.ins_navCon2 .center_box .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.3rem 0;
}
.ins_navCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
}
.ins_navCon2 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_navCon2 .center_box .item_box .item.active::after {
  width: 100%;
}
.ins_navCon2 .center_box .item_box .item:hover {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_navCon2 {
    display: none;
  }
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.48rem 0;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .left_box {
  width: 53%;
}
.ins_newCon1 .center_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newCon1 .center_box .right_box {
  width: 42.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
}
.ins_newCon1 .center_box .right_box .word_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .right_box .word_box .t1 {
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
}
.ins_newCon1 .center_box .right_box .word_box .t2 {
  margin-top: 0.4rem;
}
.ins_newCon1 .center_box .right_box .word_box .t3 {
  margin-top: 0.24rem;
  color: #666666;
  line-height: 1.6;
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_newCon2::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;
  bottom: 0;
  left: 0;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .left_box {
  width: fit-content;
}
.ins_newCon2 .center_box .left_box .item_box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.7rem;
  font-size: var(--font20);
}
.ins_newCon2 .center_box .left_box .item_box .item {
  width: fit-content;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .left_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
}
.ins_newCon2 .center_box .left_box .item_box .item.active {
  color: var(--active_color);
}
.ins_newCon2 .center_box .left_box .item_box .item.active::after {
  width: 100%;
}
.ins_newCon2 .center_box .left_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_newCon2 .center_box .right_box {
  width: fit-content;
  flex-direction: 0;
  padding: 0.15rem 0;
}
.ins_newCon2 .center_box .right_box .input_box {
  background: #F9F9F9;
  border-radius: 0.04rem;
  position: relative;
  z-index: 1;
  font-size: var(--font20);
}
.ins_newCon2 .center_box .right_box .input_box input {
  width: 3.8rem;
  height: 0.48rem;
  min-height: 35px;
  background: #F9F9F9;
  padding: 0 0.24rem;
  border: 0;
  --color: #999999;
}
.ins_newCon2 .center_box .right_box .input_box input::-webkit-input-placeholder,
.ins_newCon2 .center_box .right_box .input_box input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_newCon2 .center_box .right_box .input_box input:-moz-placeholder,
.ins_newCon2 .center_box .right_box .input_box input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_newCon2 .center_box .right_box .input_box input::-moz-placeholder,
.ins_newCon2 .center_box .right_box .input_box input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_newCon2 .center_box .right_box .input_box input:-ms-input-placeholder,
.ins_newCon2 .center_box .right_box .input_box input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_newCon2 .center_box .right_box .input_box .btn {
  position: absolute;
  width: 0.48rem;
  height: 0.48rem;
  min-width: 35px;
  min-height: 35px;
  right: 0;
  bottom: 0;
  border: 0;
  background: #F9F9F9;
  border-radius: 0.04rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_newCon2 .center_box .right_box .input_box .btn:hover {
  background: var(--active_color);
}
.ins_newCon2 .center_box .right_box .input_box .btn:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width:990px) {
  .ins_newCon2 {
    display: none;
  }
}
.ins_newCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
}
.ins_newCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.33rem;
}
.ins_newCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon3 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newCon3 .center_box .item_box .item .img .pb {
  padding-bottom: 64%;
}
.ins_newCon3 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon3 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.34rem;
}
.ins_newCon3 .center_box .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.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon3 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  height: calc(3em + 1.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_newCon3 .center_box .item_box .item .word .t3 {
  color: #999999;
  display: -webkit-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;
  margin-top: 0.4rem;
}
.ins_newCon3 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.04);
}
.ins_newdCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.18rem;
  padding-bottom: 1.48rem;
}
.ins_newdCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newdCon3 .center_box .box_info {
  width: 100%;
  height: auto;
}
.ins_newdCon3 .center_box .box_info .left_box {
  width: 64.7%;
  height: auto;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new {
  width: 100%;
  height: auto;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.5rem;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.24rem;
  color: #999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .time .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
  font-size: var(--font20);
  color: #999999;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  color: #999999;
  line-height: 1.5;
  margin-top: 0.6rem;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent img {
  width: unset !important;
  height: unset !important;
  border-radius: 0.16rem;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent p {
  min-height: 0.5em;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent h2 {
  font-size: var(--font24);
  color: #0C0D0E;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .content {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  position: relative;
  z-index: 1;
  padding: 0.52rem 0.73rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .content img {
  border-radius: 0;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .content .bgImg_full img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 0 !important;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .content .word_box {
  color: #FFFFFF;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .content .icon_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  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_newdCon3 .center_box .box_info .left_box .newContent .content .icon_box .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  color: #FFFFFF;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .content .icon_box .icon .img {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 100px;
  overflow: hidden;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .content .icon_box .icon .word {
  width: fit-content;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .content .icon_box .icon .word .t2 {
  opacity: 0.8;
  margin-top: 0.05rem;
}
.ins_newdCon3 .center_box .box_info .left_box .newContent .content .icon_box .logo {
  width: 1.65rem;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-top: 0.4rem;
  border-top: 1px solid #DDD;
  margin-top: 0.8rem;
  font-size: var(--font16);
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .next {
  width: 40%;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .next .t1 {
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .next.rigth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .next:hover .t1 {
  color: var(--active_color);
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox button {
  width: fit-content;
  height: 0.48rem;
  min-height: 40px;
  margin-top: 0.28rem;
  padding: 0 0.32rem;
  border-radius: 100px;
  border: 1px solid #DDDDDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox button img {
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox button:hover {
  border-color: var(--active_color);
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox button:hover img {
  filter: brightness(0) invert(1);
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .center {
  width: fit-content;
}
.ins_newdCon3 .center_box .box_info .left_box .pagerBox .center button {
  border-radius: 0.08rem;
}
.ins_newdCon3 .center_box .box_info .right_box {
  width: 28.9%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  padding: 0.4rem;
  border-radius: 0.12rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.27rem;
  opacity: 0.6;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one .img img {
  width: 100%;
  height: auto;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.16rem;
  z-index: 3;
}
.ins_newdCon3 .center_box .box_info .right_box .content .list .one:hover {
  color: var(--active_color);
}
.ins_newdCon3 .center_box .box_info .right_box .content .listow {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content .listow .one {
  width: 100%;
  height: auto;
}
.ins_newdCon3 .center_box .box_info .right_box .content .listow .one .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newdCon3 .center_box .box_info .right_box .content .listow .one .img img {
  width: 100%;
  height: auto;
}
.ins_newdCon3 .center_box .box_info .right_box .content .listow .one .word2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content .listow .one .idx_more {
  margin-top: 0.32rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content {
  width: 100%;
  height: auto;
  background: #F8F9FA;
  padding: 0.4rem;
  border-radius: 0.12rem;
}
.ins_newdCon3 .center_box .box_info .right_box .content .tag_box {
  margin-top: 0.32rem;
  gap: 0.16rem;
}
@media (max-width:990px) {
  .ins_newdCon3 .center_box .box_info .left_box .pagerBox {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.4rem;
    display: none;
  }
  .ins_newdCon3 .center_box .box_info .left_box .pagerBox .next {
    width: 100%;
    height: auto;
  }
  .ins_newdCon3 .center_box .box_info .left_box .pagerBox .next.rigth {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_newdCon3 .center_box .box_info .left_box .pagerBox .next button {
    margin-top: 0.1rem;
  }
  .ins_newdCon3 .center_box .box_info .left_box .ins_new .t1 p {
    display: contents;
  }
  .ins_newdCon3 .center_box .box_info .left_box .ins_new .item_box .time {
    flex-direction: column !important;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_newdCon3 .center_box .box_info .right_box {
    display: none;
  }
}
.ins_newsroomCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.5rem;
}
.ins_newsroomCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newsroomCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem 0.36rem;
}
.ins_newsroomCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.04rem;
  border-radius: 0.08rem;
  background: #F9F9F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-right: 0.64rem;
}
.ins_newsroomCon1 .center_box .item_box .item .img_box {
  width: 56.41%;
  background: #FFFFFF;
  border-radius: 0.08rem;
}
.ins_newsroomCon1 .center_box .item_box .item .img_box .img {
  width: 100%;
  height: auto;
}
.ins_newsroomCon1 .center_box .item_box .item .img_box .img .pb {
  padding-bottom: 123.8%;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box {
  width: 36.38%;
  padding: 0.28rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .word .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .word .t2 {
  margin-top: 0.32rem;
  color: #999999;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.23rem;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  padding-bottom: 0.16rem;
  position: relative;
  z-index: 1;
  font-size: var(--font20);
  cursor: pointer;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .list .one::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 1px;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .list .one::before {
  content: '';
  position: absolute;
  z-index: 2;
  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;
  bottom: 0;
  left: 0;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .list .one img {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(0);
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .list .one span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .list .one:hover::before {
  width: 100%;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .list .one:hover img {
  filter: unset;
}
.ins_newsroomCon1 .center_box .item_box .item .word_box .list .one:hover span {
  color: var(--active_color);
}
.ins_newsroomCon1 .center_box .item_box .item:hover .img_box .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newsroomCon1 .center_box .idx_laypage1 {
  width: 100%;
  height: auto;
  margin-top: 0.94rem;
}
.ins_newsroomCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
}
.ins_newsroomCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newsroomCon2 .center_box .left_box {
  width: 43%;
  height: 100%;
  position: sticky;
  top: calc(var(--header-height) + 0.3rem);
}
.ins_newsroomCon2 .center_box .left_box .idx_more {
  margin-top: 0.52rem;
}
.ins_newsroomCon2 .center_box .right_box {
  width: 50%;
}
.ins_newsroomCon2 .center_box .right_box .word {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  color: #999999;
}
.ins_newsroomCon2 .center_box .right_box .word p {
  min-height: 0.5em;
}
.ins_newsroomCon2 .center_box .right_box .word img {
  width: auto !important;
  height: auto !important;
}
@media (max-width:990px) {
  .ins_newsroomCon2 .center_box .left_box {
    position: relative;
    z-index: 1;
    top: unset;
  }
}
.ins_newsroomCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F9F9F9;
}
.ins_newsroomCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newsroomCon3 .center_box .top_info {
  gap: 0.3rem;
}
.ins_newsroomCon3 .center_box .top_info .swiper_btnBox {
  flex-shrink: 0;
}
.ins_newsroomCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.73rem;
  overflow: hidden;
}
.ins_newsroomCon3 .center_box .swiper_box ul li {
  width: 30%;
  height: auto;
}
.ins_newsroomCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_newsroomCon3 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newsroomCon3 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 65%;
}
.ins_newsroomCon3 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newsroomCon3 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.37rem;
}
.ins_newsroomCon3 .center_box .swiper_box ul li .centerInfo .word .t1 {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newsroomCon3 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newsroomCon3 .center_box .swiper_box ul li .centerInfo:hover .word .t1 {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  padding-top: 0.8rem;
}
.ins_caseCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .select_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;
  --height: clamp(35px, 0.56rem, 56px);
  gap: 0.24rem;
}
.ins_caseCon1 .center_box .select_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}
.ins_caseCon1 .center_box .select_box .item_box .item {
  flex: 1;
  width: 100%;
  background: #F7F7F7;
  border-radius: 0.1rem;
}
.ins_caseCon1 .center_box .select_box .item_box .item .layui-form-select .layui-input {
  width: 100%;
  height: var(--height);
  background: none;
  border: 0;
  padding-left: 0.24rem;
  box-shadow: unset !important;
  font-size: var(--font20);
  color: #999999;
}
.ins_caseCon1 .center_box .select_box .item_box .item .layui-form-selected dl {
  top: 100%;
  bottom: unset;
}
.ins_caseCon1 .center_box .select_box .item_box .item .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  top: 30%;
  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;
  right: 0.24;
  margin-top: unset !important;
}
.ins_caseCon1 .center_box .select_box .item_box .item .layui-form-select .layui-edge::after {
  content: '\e675';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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(--font18);
}
.ins_caseCon1 .center_box .select_box .search {
  width: 0.56rem;
  height: var(--height);
  background: #F7F7F7;
  border-radius: 0.1rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.ins_caseCon1 .center_box .select_box .search::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #FFF;
  right: 100%;
  z-index: -1;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.ins_caseCon1 .center_box .select_box .search .input {
  width: 0rem;
  height: var(--height);
  position: absolute;
  right: calc(100% + 2px);
  font-size: var(--font18);
  opacity: 0;
  z-index: 2;
}
.ins_caseCon1 .center_box .select_box .search .input input {
  width: 100%;
  height: 100%;
  background: #F7F7F7;
  border: 0;
  border-radius: 0.08rem;
  padding-left: 0.2rem;
}
.ins_caseCon1 .center_box .select_box .search .btn {
  cursor: pointer;
}
.ins_caseCon1 .center_box .select_box .search:hover::after {
  opacity: 1;
  visibility: visible;
}
.ins_caseCon1 .center_box .select_box .search:hover .input {
  width: 6rem;
  opacity: 1;
}
@media (max-width:990px) {
  .ins_caseCon1 .center_box .select_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_caseCon1 .center_box .select_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_caseCon1 .center_box .select_box .search {
    display: none;
  }
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.42rem;
  padding-bottom: 1.2rem;
}
.ins_caseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.34rem;
}
.ins_caseCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F7F7F7;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_caseCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_caseCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 64.33%;
}
.ins_caseCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_caseCon2 .center_box .item_box .item .word .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: calc(2em + 1.2);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_caseCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  height: calc(3em + 1.2);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_caseCon2 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_caseCon2 .center_box .idx_laypage1 {
  margin-top: 0.8rem;
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-bottom: 0.9rem;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .content1 .left_box {
  width: 40%;
}
.ins_contactCon1 .center_box .content1 .right_box {
  width: 50%;
}
.ins_contactCon1 .center_box .content1 .right_box .word {
  width: 100%;
  height: auto;
  color: #999999;
}
.ins_contactCon1 .center_box .content2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}
.ins_contactCon1 .center_box .content2 .item_box {
  width: 100%;
  height: auto;
  gap: 0.16rem;
}
.ins_contactCon1 .center_box .content2 .item_box .item {
  width: 100%;
  height: auto;
  background: #F9F9F9;
  border-radius: 0.16rem;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 0.82rem;
  padding-right: 0.74rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_contactCon1 .center_box .content2 .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(98deg, #0974BF -0.15%, #23BAFF 100.87%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: -1;
}
.ins_contactCon1 .center_box .content2 .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font20);
}
.ins_contactCon1 .center_box .content2 .item_box .item .icon {
  width: 0.62rem;
  height: 0.62rem;
  position: absolute;
  bottom: 0.32rem;
  right: 0.32rem;
}
.ins_contactCon1 .center_box .content2 .item_box .item.active::after {
  opacity: 1;
}
.ins_contactCon1 .center_box .content2 .item_box .item.active .word {
  color: #FFFFFF;
}
.ins_contactCon1 .center_box .content2 .item_box .item.active .icon {
  filter: brightness(0) invert(1);
}
.ins_contactCon1 .center_box .content3 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_contactCon1 .center_box .content3 .word {
  font-size: var(--font20);
  color: #999999;
}
.ins_contactCon1 .center_box .content4 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  gap: 0.88rem;
}
.ins_contactCon1 .center_box .content4 .left_box {
  width: 50%;
}
.ins_contactCon1 .center_box .content4 .right_box {
  width: 50%;
}
.ins_contactCon1 .center_box .content4 .item_box {
  width: 100%;
  height: auto;
  gap: 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;
}
.ins_contactCon1 .center_box .content4 .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input {
  width: 100%;
  min-height: 0.68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.05rem;
  border-bottom: 1px solid #00000066;
  gap: 0.24rem;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input input {
  width: 100%;
  height: 0.5rem;
  border: unset !important;
  background: unset !important;
  box-shadow: unset !important;
  color: #999999;
  font-size: var(--font24);
}
.ins_contactCon1 .center_box .content4 .item_box .item .input textarea {
  width: 100%;
  height: 2.54rem;
  background: none;
  border: 0;
  padding: 0.32rem 0;
  color: #999999;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input span {
  flex-shrink: 0;
  color: #000000;
  font-size: var(--font24);
}
.ins_contactCon1 .center_box .content4 .item_box .item .input span i {
  color: #006FBC;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input .layui-form-select {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input .layui-form-select .layui-input {
  padding: 0;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  top: 30%;
  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;
  right: 0;
  margin-top: unset !important;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input .layui-form-select .layui-edge::after {
  content: '\e623';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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(--font12);
}
.ins_contactCon1 .center_box .content4 .item_box .item .input .layui-form-selected dl {
  top: 100%;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input.select .layui-form-select {
  width: 60px !important;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input.select .ic {
  padding-right: 0.24rem;
  position: relative;
  z-index: 1;
}
.ins_contactCon1 .center_box .content4 .item_box .item .input.select .ic::after {
  content: '';
  position: absolute;
  right: 0;
  width: 1px;
  height: 0.68rem;
  background: #EEEEEE;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}
.ins_contactCon1 .center_box .content4 .item_box .item .input.select .on {
  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;
}
.ins_contactCon1 .center_box .content4 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.32rem;
  gap: 0.16rem 0.32rem;
}
.ins_contactCon1 .center_box .content4 .list .one {
  width: fit-content;
}
.ins_contactCon1 .center_box .content4 .list .one .layui-form-radio,
.ins_contactCon1 .center_box .content4 .list .one .layui-form-radio > i {
  margin: 0;
  padding: 0;
}
.ins_contactCon1 .center_box .content4 .list .one .layui-form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
}
.ins_contactCon1 .center_box .content4 .list .one .layui-form-radio > div {
  font-size: var(--font24);
  color: #999999;
}
.ins_contactCon1 .center_box .content4 .list .one .layui-anim.layui-icon {
  width: 0.24rem;
  height: 0.24rem;
  font-size: 0;
  border: 1px solid #CCCCCC;
  background: #F0F0F0;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}
.ins_contactCon1 .center_box .content4 .list .one .layui-anim.layui-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/i39.png);
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_contactCon1 .center_box .content4 .list .one .layui-form-radioed .layui-anim.layui-icon {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_contactCon1 .center_box .content4 .list .one .layui-form-radioed .layui-anim.layui-icon::after {
  opacity: 1;
}
.ins_contactCon1 .center_box .content4 .message {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  background: #F9F9F9;
  border-radius: 0.16rem;
}
.ins_contactCon1 .center_box .content4 .message textarea {
  width: 100%;
  height: 4.16rem;
  border: 0;
  background: none;
  padding: 0.4rem 0.52rem;
  font-size: var(--font24);
}
.ins_contactCon1 .center_box .content4 .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_contactCon1 .center_box .content5 {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
  background: #F9F9F9;
  border-radius: 0.16rem;
  padding: 0.48rem 0.52rem;
}
.ins_contactCon1 .center_box .content5 .left_box {
  width: 40%;
}
.ins_contactCon1 .center_box .content5 .left_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.32rem;
  gap: 0.16rem 0.32rem;
}
.ins_contactCon1 .center_box .content5 .left_box .list .one {
  width: fit-content;
}
.ins_contactCon1 .center_box .content5 .left_box .list .one .layui-form-radio,
.ins_contactCon1 .center_box .content5 .left_box .list .one .layui-form-radio > i {
  margin: 0;
  padding: 0;
}
.ins_contactCon1 .center_box .content5 .left_box .list .one .layui-form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
}
.ins_contactCon1 .center_box .content5 .left_box .list .one .layui-form-radio > div {
  font-size: var(--font24);
  color: #999999;
}
.ins_contactCon1 .center_box .content5 .left_box .list .one .layui-anim.layui-icon {
  width: 0.24rem;
  height: 0.24rem;
  font-size: 0;
  border: 1px solid #CCCCCC;
  background: #F0F0F0;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}
.ins_contactCon1 .center_box .content5 .left_box .list .one .layui-anim.layui-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/i39.png);
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_contactCon1 .center_box .content5 .left_box .list .one .layui-form-radioed .layui-anim.layui-icon {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_contactCon1 .center_box .content5 .left_box .list .one .layui-form-radioed .layui-anim.layui-icon::after {
  opacity: 1;
}
.ins_contactCon1 .center_box .content5 .right_box {
  width: 50%;
}
.ins_contactCon1 .center_box .content5 .right_box .img {
  width: 100%;
  height: auto;
  display: none;
}
.ins_contactCon1 .center_box .content5 .right_box .img.active {
  display: block;
}
.ins_contactCon1 .center_box .content5 .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .content6 {
  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.32rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_contactCon1 .center_box .content_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_contactCon1 .center_box .content_info .content_box {
  width: 100%;
  height: auto;
  display: none;
}
.ins_contactCon1 .center_box .content_info .content_box.active {
  display: block;
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-top: 0.9rem;
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .content1 .left_box {
  width: 40%;
}
.ins_contactCon2 .center_box .content1 .right_box {
  width: 50%;
}
.ins_contactCon2 .center_box .content1 .right_box .word {
  width: 100%;
  height: auto;
  color: #999999;
}
.ins_contactCon2 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  padding-bottom: 0.48rem;
  border-bottom: 1px solid #0000001A;
}
.ins_contactCon2 .center_box .content2 .left_box {
  width: 24.3%;
}
.ins_contactCon2 .center_box .content2 .left_box .item_box {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.24rem;
}
.ins_contactCon2 .center_box .content2 .left_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F9F9F9;
  border-radius: 0.16rem;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  cursor: pointer;
}
.ins_contactCon2 .center_box .content2 .left_box .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font20);
}
.ins_contactCon2 .center_box .content2 .left_box .item_box .item .icon {
  width: 0.52rem;
  height: 0.52rem;
  margin-top: 0.17rem;
}
.ins_contactCon2 .center_box .content2 .left_box .item_box .item.active {
  background: linear-gradient(98deg, #0974BF -0.15%, #23BAFF 100.87%);
}
.ins_contactCon2 .center_box .content2 .left_box .item_box .item.active .word {
  color: #FFFFFF;
}
.ins_contactCon2 .center_box .content2 .left_box .item_box .item.active .icon {
  filter: brightness(0) invert(1);
}
.ins_contactCon2 .center_box .content2 .right_box {
  width: 74%;
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box {
  width: 100%;
  height: auto;
  background: #000000;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.4rem;
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content .conBox {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(13.94999981px);
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.8rem;
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content .conBox .left {
  width: 51%;
  padding-right: 0.8rem;
  border-right: 1px solid #0000001A;
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content .conBox .left .t2 {
  margin-top: 0.16rem;
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content .conBox .left .t1 {
  color: var(--active_color);
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content .conBox .right {
  width: 41%;
}
.ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content .conBox .right .t2 {
  color: var(--active_color);
  margin-top: 0.07rem;
}
.ins_contactCon2 .center_box .content3 {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_contactCon2 .center_box .content3 .item_box {
  width: 100%;
  height: auto;
  gap: 0.34rem;
}
.ins_contactCon2 .center_box .content3 .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  background: linear-gradient(0deg, #F9F9F9 0%, #F9F9F9 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
  padding: 0.32rem;
  font-size: var(--font20);
  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_contactCon2 .center_box .content3 .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;
}
.ins_contactCon2 .center_box .content3 .item_box .item .one .icon {
  color: #999999;
}
.ins_contactCon2 .center_box .content3 .item_box .item .one .word {
  width: 61%;
  word-break: break-all;
}
@media (max-width:990px) {
  .ins_contactCon2 .center_box .content2 .right_box .swiper_box {
    background: none;
  }
  .ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0;
    background: none;
  }
  .ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content .conBox {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  .ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content .conBox .left {
    width: 100%;
    height: auto;
    border-right: 0;
  }
  .ins_contactCon2 .center_box .content2 .right_box .swiper_box ul li .centerInfo .content .conBox .right {
    width: 100%;
    height: auto;
  }
  .ins_contactCon2 .idxPageHide {
    display: flex !important;
  }
  .ins_contactCon2 .center_box .content2 .left_box {
    display: none;
  }
}
.ins_contactCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F9F9F9;
}
.ins_contactCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon3 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_contactCon3 .center_box .idx_title .t5 {
  margin-top: 0.32rem;
  color: #999999;
}
.ins_contactCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.16rem;
  margin-top: 0.72rem;
}
.ins_contactCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
}
.ins_contactCon3 .center_box .item_box .item .pb {
  padding-bottom: 52.58%;
}
.ins_contactCon3 .center_box .item_box .item .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:990px) {
  .ins_contactCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_eventsCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
}
.ins_eventsCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_eventsCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.8rem 0.33rem;
}
.ins_eventsCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid #0000001A;
}
.ins_eventsCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_eventsCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 64%;
}
.ins_eventsCon1 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_eventsCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.34rem;
}
.ins_eventsCon1 .center_box .item_box .item .word .t1 {
  color: #999999;
}
.ins_eventsCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #000;
  height: calc(2em + 1.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_eventsCon1 .center_box .item_box .item .word .t3 {
  color: #999999;
  display: -webkit-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;
  margin-top: 0.32rem;
}
.ins_eventsCon1 .center_box .item_box .item .word .t4 {
  color: #999999;
  display: -webkit-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;
  margin-top: 0.13rem;
}
.ins_eventsCon1 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.04);
}
.ins_joinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_joinCon1 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon1 .center_box .left_box {
  width: 48%;
}
.ins_joinCon1 .center_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_joinCon1 .center_box .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .right_box {
  width: 45.6%;
}
.ins_joinCon1 .center_box .right_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_joinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F9F9F9;
}
.ins_joinCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  gap: 0.32rem;
}
.ins_joinCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.08rem;
  padding: 0.4rem;
}
.ins_joinCon2 .center_box .item_box .item .icon {
  width: 0.52rem;
  height: 0.52rem;
}
.ins_joinCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_joinCon2 .center_box .item_box .item .word .t1 {
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #00000014;
}
.ins_joinCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.24rem;
  color: #999999;
}
.ins_joinCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_joinCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_joinCon3 .center_box .top_info .idx_title {
  width: fit-content;
}
.ins_joinCon3 .center_box .top_info .list_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
}
.ins_joinCon3 .center_box .top_info .list_box .list {
  padding: 0.16rem 0.4rem;
  border: 1px solid #0000001A;
  border-radius: 100px;
  font-size: var(--font22);
  color: #787878;
  cursor: pointer;
}
.ins_joinCon3 .center_box .top_info .list_box .list.active {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
.ins_joinCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.72rem;
}
.ins_joinCon3 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .swiper_box ul li .swiper_info {
  width: 100%;
  height: auto;
  opacity: 0;
}
.ins_joinCon3 .center_box .swiper_box ul li .swiper_info .swiper_img {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide {
  width: 30%;
}
.ins_joinCon3 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_joinCon3 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .pb {
  padding-bottom: 60%;
}
.ins_joinCon3 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon3 .center_box .swiper_box ul li.swiper-slide-active .swiper_info {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_joinCon3 .center_box .top_info .list_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    height: auto;
  }
  .ins_joinCon3 .center_box .top_info .list_box .list {
    width: 100%;
    height: auto;
    text-align: center;
  }
}
.ins_joinCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F9F9F9;
}
.ins_joinCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_joinCon4 .center_box .top_info .idx_title {
  width: fit-content;
}
.ins_joinCon4 .center_box .top_info .list_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
}
.ins_joinCon4 .center_box .top_info .list_box .list {
  padding: 0.16rem 0.4rem;
  border: 1px solid #0000001A;
  border-radius: 100px;
  font-size: var(--font22);
  color: #787878;
  cursor: pointer;
}
.ins_joinCon4 .center_box .top_info .list_box .list.active {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
.ins_joinCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.72rem;
}
.ins_joinCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box {
  width: 29%;
  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_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .word_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  padding: 0.4rem;
  cursor: pointer;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .t1 {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .t2 {
  margin-top: 0.16rem;
  color: #999999;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item.active .word_box {
  background: linear-gradient(98deg, #0974BF -0.15%, #23BAFF 100.87%);
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item.active .word_box .t1,
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item.active .word_box .t2 {
  color: #FFFFFF;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .centerInfo {
  width: 100%;
  height: 100%;
  border-radius: 0.08rem;
  overflow: hidden;
  padding: 0.4rem;
  background: #FFFFFF;
  display: none;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .centerInfo .word {
  width: 100%;
  height: auto;
  padding-bottom: 0.52rem;
  border-bottom: 1px solid #0000001A;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .centerInfo .word .t1 {
  line-height: 1.1;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .centerInfo .word .listInfo {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.28rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .centerInfo .word .listInfo .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font20);
  gap: 0.08rem;
  color: #999999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .centerInfo .content {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.52rem;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .centerInfo .content .one {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .centerInfo .content .one .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
  color: #999999;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box .item .centerInfo .content .one .email {
  color: var(--active_color2);
  text-decoration: underline;
  font-size: var(--font24);
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img {
  width: 70%;
  height: auto;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo {
  width: 100%;
  height: 100%;
  border-radius: 0.08rem;
  overflow: hidden;
  padding: 0.4rem;
  background: #FFFFFF;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .word {
  width: 100%;
  height: auto;
  padding-bottom: 0.52rem;
  border-bottom: 1px solid #0000001A;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .word .t1 {
  line-height: 1.1;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .word .listInfo {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.28rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .word .listInfo .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font20);
  gap: 0.08rem;
  color: #999999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .content {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.52rem;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .content .one {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .content .one .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
  color: #999999;
}
.ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img .swiper-slide .centerInfo .content .one .email {
  color: var(--active_color2);
  text-decoration: underline;
  font-size: var(--font24);
}
@media (max-width:990px) {
  .ins_joinCon4 .center_box .top_info .list_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    height: auto;
  }
  .ins_joinCon4 .center_box .top_info .list_box .list {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .ins_joinCon4 .center_box .swiper_box ul li .swiper_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_joinCon4 .center_box .swiper_box ul li .swiper_info .item_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .ins_joinCon4 .center_box .swiper_box ul li .swiper_info .swiper_img {
    display: none;
  }
}
.ins_developmentCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.33rem;
  padding-bottom: 0.7rem;
}
.ins_developmentCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon1 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_developmentCon1 .center_box .content1 .left_box {
  width: 47%;
  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_developmentCon1 .center_box .content1 .left_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_developmentCon1 .center_box .content1 .left_box .idx_title .t3 {
  margin-top: 0.2rem;
  line-height: 1.5;
  max-height: 3.25rem;
  overflow: auto;
}
.ins_developmentCon1 .center_box .content1 .left_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_developmentCon1 .center_box .content1 .left_box.w39 {
  width: 39%;
}
.ins_developmentCon1 .center_box .content1 .right_box {
  width: 50%;
}
.ins_developmentCon1 .center_box .content1 .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_developmentCon1 .center_box .content1 .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_developmentCon1 .center_box .content_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.63rem;
}
.ins_developmentCon1 .center_box .content_box .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem 0.7rem;
}
.ins_developmentCon1 .center_box .content_box .content .t1 {
  color: #999999;
  line-height: 1;
}
.ins_developmentCon1 .center_box .content_box .content .t1 span {
  color: var(--active_color2);
}
.ins_developmentCon1 .center_box .content_box .content .t2 {
  margin-top: 0.4rem;
  line-height: 1.4;
}
.ins_developmentCon1 .center_box .content_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_developmentCon1 .center_box .content_box .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_developmentCon1 .center_box .content_box .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0;
    padding-bottom: 0.5rem;
  }
  .ins_developmentCon1 .center_box .content_box .content .t2 {
    max-height: 3.7rem;
    overflow: auto;
  }
}
.ins_developmentCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_developmentCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon2 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_developmentCon2 .center_box .content1 .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.29rem;
}
.ins_developmentCon2 .center_box .content1 .list_box .list {
  width: fit-content;
  padding: 0.2rem 0.27rem;
  border: 1px solid #0000001A;
  border-top-left-radius: 0.16rem;
  border-top-right-radius: 0.16rem;
  font-size: var(--font20);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon2 .center_box .content1 .list_box .list:hover {
  color: var(--active_color);
}
.ins_developmentCon2 .center_box .content1 .list_box .list.active {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.ins_developmentCon2 .center_box .swiper_item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_developmentCon2 .center_box .swiper_item ul li {
  width: 100%;
  height: auto;
}
.ins_developmentCon2 .center_box .swiper_item ul li .content_info {
  width: 100%;
  height: auto;
  background: #F7F7F7;
  padding: 0.67rem 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.9rem;
  padding-bottom: 1.07rem;
}
@media (max-width:990px) {
  .ins_developmentCon2 .center_box .content1 .list_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_developmentCon2 .center_box .content1 .list_box .list {
    width: 100%;
    height: auto;
  }
}
.ins_developmentCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_developmentCon3 .idx_title {
  width: 100%;
  height: auto;
}
.ins_developmentCon3 .idx_title .t3 {
  margin-top: 0.32rem;
  line-height: 1.5;
}
.ins_developmentCon3 .idx_title .t6 {
  margin-top: 0.52rem;
}
.ins_developmentCon3 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.84rem;
  gap: 0.12rem;
}
.ins_developmentCon3 .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  padding: 0.33rem 0.1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #FFFFFF;
  padding-bottom: 0.2rem;
}
.ins_developmentCon3 .item_box .item .word_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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_developmentCon3 .item_box .item .word_box .icon {
  width: 1.23rem;
  height: 1.42rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon3 .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.27rem;
}
.ins_developmentCon3 .item_box .item .word_box .word .t1 {
  color: var(--active_color);
}
.ins_developmentCon3 .item_box .item .word_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.14rem;
  letter-spacing: -0.54px;
}
.ins_developmentCon3 .item_box .item .arrow {
  width: 0.46rem;
  height: 0.46rem;
  background: var(--active_color);
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  border: 0.06rem solid #F7F7F7;
  transform: translateY(-50%) translateX(calc(50% + 0.06rem));
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_developmentCon3 .item_box .item .arrow img {
  filter: brightness(0) invert(1);
  width: 0.07rem;
}
.ins_developmentCon3 .item_box .item:last-child .arrow {
  display: none;
}
.ins_developmentCon3 .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #D3E2F4 0%, #F0F4F6 100%);
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  border-radius: 0.1rem;
  opacity: 0;
}
.ins_developmentCon3 .item_box .item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: -2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  border-radius: 0.1rem;
}
.ins_developmentCon3 .item_box .item:hover::after {
  opacity: 1;
}
.ins_developmentCon3 .item_box .item:hover .word_box .icon {
  background: #FFFFFF;
}
.ins_developmentCon3 .item_box .item.lastBox {
  padding: 0.1rem;
  background: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.12rem;
  padding: 0;
}
.ins_developmentCon3 .item_box .item.lastBox .word_box {
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.ins_developmentCon3 .item_box .item.lastBox .word_box .word {
  margin-top: 0;
}
.ins_developmentCon3 .item_box .item.lastBox .word_box .word .t2 {
  margin-top: 0.03rem;
}
.ins_developmentCon3 .item_box .item.lastBox .word_box .icon {
  height: 0.6rem;
}
@media (max-width:990px) {
  .ins_developmentCon3 .item_box .item {
    width: 100%;
    height: auto;
    padding: 0.5rem !important;
  }
  .ins_developmentCon3 .item_box .item .arrow {
    top: 100%;
    right: unset;
    left: 50%;
    transform: translateY(-45%) translateX(-50%) rotate(90deg);
  }
  .ins_developmentCon3 .idx_title .t3 {
    max-height: 4rem;
    overflow: auto;
  }
}
.ins_developmentCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_developmentCon4 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.58rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}
.ins_developmentCon4 .item_box .item {
  width: 100%;
  height: auto;
  gap: 0.2rem;
}
.ins_developmentCon4 .item_box .item .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  padding: 0.2rem 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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 0.85rem;
  font-size: var(--font20);
  padding-right: 0.2rem;
}
.ins_developmentCon4 .item_box .item .one::after {
  content: '';
  position: absolute;
  width: 0.04rem;
  border-radius: 100px;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon4 .item_box .item .list {
  width: 100%;
  height: auto;
  line-height: 1.8;
  font-size: var(--font20);
  color: #666666;
}
.ins_developmentCon4 .item_box .item .list .thr {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
}
.ins_developmentCon4 .item_box .item .list .thr::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #666666;
  border-radius: 100px;
  top: 0.7em;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon4 .item_box .item .tow {
  width: 100%;
  height: auto;
  font-size: var(--font24);
}
.ins_developmentCon4 .item_box .item.grid_1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  padding: 0.2rem 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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 0.85rem;
  font-size: var(--font20);
}
.ins_developmentCon4 .item_box .item.grid_1::after {
  content: '';
  position: absolute;
  width: 0.04rem;
  border-radius: 100px;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_developmentCon5 .content2 {
  width: 100%;
  height: auto;
  gap: 0.08rem;
}
.ins_developmentCon5 .content2 .left_box {
  width: 50.2%;
  height: auto;
}
.ins_developmentCon5 .content2 .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}
.ins_developmentCon5 .content2 .left_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  padding: 0 0.52rem;
}
.ins_developmentCon5 .content2 .left_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;
  padding: 0.3rem 0;
  cursor: pointer;
}
.ins_developmentCon5 .content2 .left_box .item_box .item .top span {
  font-size: var(--font28);
}
.ins_developmentCon5 .content2 .left_box .item_box .item .top i {
  width: 0.38rem;
  height: 0.38rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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%;
  position: relative;
  z-index: 1;
  background: var(--active_color);
  flex-shrink: 0;
}
.ins_developmentCon5 .content2 .left_box .item_box .item .bot {
  padding-top: 0.4rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid #0000001A;
  line-height: 1.8;
  color: var(--color_666);
  display: none;
}
.ins_developmentCon5 .content2 .left_box .item_box .item .bot .list {
  width: 100%;
  height: auto;
  line-height: 2;
}
.ins_developmentCon5 .content2 .left_box .item_box .item .bot .list .one {
  font-size: var(--font20);
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
}
.ins_developmentCon5 .content2 .left_box .item_box .item .bot .list .one::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #666666;
  border-radius: 100px;
  top: 0.9em;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon5 .content2 .left_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_developmentCon5 .content2 .left_box .item_box .item .bot .img img {
  width: 100%;
  height: auto;
}
.ins_developmentCon5 .content2 .left_box .item_box .item.active .top i {
  transform: rotate(180deg);
}
.ins_developmentCon5 .content2 .right_box {
  width: 49.8%;
  height: auto;
}
.ins_developmentCon5 .content2 .right_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon5 .content2 .right_box .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_developmentCon5 .content2 .right_box .swiper_box .centerInfo .pb {
  padding-bottom: 98%;
}
.ins_developmentCon5 .content2 .right_box .swiper_box .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_developmentCon5 .content3 {
  width: 100%;
  height: auto;
  margin-top: 0.92rem;
}
.ins_developmentCon5 .content3 .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;
}
.ins_developmentCon5 .content3 .idx_more .more {
  background: #FFFFFF;
}
.ins_developmentCon5 .content3 .idx_more .more .af {
  color: #000;
}
.ins_developmentCon5 .content3 .idx_more .more:hover {
  background: var(--active_color);
}
.ins_developmentCon5 .content3.active {
  display: none;
}
.ins_developmentCon5 .content4 {
  width: 100%;
  height: auto;
  padding: 0.53rem;
  border-radius: 0.16rem;
  background: #FFFFFF;
  margin-top: 0.75rem;
  display: none;
}
.ins_developmentCon5 .content4 .imgs {
  width: 100%;
  height: auto;
}
.ins_developmentCon5 .content4 .imgs img {
  width: 100%;
  height: auto;
}
.ins_developmentCon5 .content4 .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: 1rem;
}
.ins_developmentCon5 .content4 .idx_more .more {
  background: #F7F7F7;
}
.ins_developmentCon5 .content4 .idx_more .more .af {
  color: #000;
}
.ins_developmentCon5 .content4 .idx_more .more:hover {
  background: var(--active_color);
}
.ins_developmentCon5 .content4.active {
  display: block !important;
}
@media (max-width:990px) {
  .ins_developmentCon5 .content2 .right_box .swiper_box {
    display: none !important;
  }
}
.ins_developmentCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F9F9F9;
}
.ins_developmentCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon6 .center_box .top_info {
  gap: 0.3rem;
}
.ins_developmentCon6 .center_box .top_info .swiper_btnBox {
  flex-shrink: 0;
  display: none;
}
.ins_developmentCon6 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  overflow: hidden;
}
.ins_developmentCon6 .center_box .swiper_box ul li {
  width: 30%;
  height: auto;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #0000001A;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 65%;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.37rem;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo .word .t1 {
  width: 100%;
  height: calc(2em * 1.3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo .word .icon {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo .word .icon .one {
  width: fit-content;
  height: 0.22rem;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo .word .icon .tow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  font-size: var(--font16);
  color: #999999;
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_developmentCon6 .center_box .swiper_box ul li .centerInfo:hover .word .t1 {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_developmentCon6.ins_productionCon2 {
  padding-top: 0.7rem;
  background: none;
  padding-bottom: 1.7rem;
}
.swiper_list {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.swiper_list ul li {
  width: fit-content;
  height: auto;
}
.swiper_list ul li .centerInfo {
  width: 100%;
  height: auto;
  padding: 0.2rem 0.27rem;
  min-width: 1.6rem;
  border: 1px solid #0000001A;
  border-top-left-radius: 0.16rem;
  border-top-right-radius: 0.16rem;
  font-size: var(--font20);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  border-bottom: 0;
}
.swiper_list ul li:hover .centerInfo {
  color: var(--active_color);
}
.swiper_list ul li.active .centerInfo {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.table_info {
  width: 100%;
  height: auto;
  margin-top: 0.57rem;
}
.table_info .info {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
  border: 1px solid #0000001A;
}
.table_info .info table {
  width: 100%;
  height: auto;
}
.table_info .info table thead {
  background: #006FBC;
  font-weight: 500;
}
.table_info .info table thead tr td {
  color: #FFFFFF;
  padding: 0.12rem 0;
  text-align: center;
  font-size: var(--font20);
  border-right: 1px solid #0000001A;
}
.table_info .info table thead tr td:last-child {
  border-right: 0;
}
.table_info .info table tbody tr {
  width: 100%;
  height: auto;
  text-align: center;
  color: #999999;
}
.table_info .info table tbody tr td {
  padding: 0.18rem 0;
  font-size: var(--font20);
  border: 1px solid #0000001A;
  border-left: 0;
}
.table_info .info table tbody tr td:last-child {
  border-right: 0;
}
.table_info .info table tbody tr:last-child td {
  border-bottom: 0;
}
.table_info .info table tbody tr:nth-child(2n) {
  background: #F7F7F7;
}
.ins_antibodyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 0.75rem;
}
.ins_antibodyCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_antibodyCon1 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_antibodyCon1 .center_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.06rem;
  margin-top: 0.66rem;
}
.ins_antibodyCon1 .center_box .list_box .list {
  width: fit-content;
  padding: 0.2rem 0.27rem;
  border: 1px solid #0000001A;
  border-top-left-radius: 0.16rem;
  border-top-right-radius: 0.16rem;
  font-size: var(--font20);
  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_antibodyCon1 .center_box .list_box .list::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_antibodyCon1 .center_box .list_box .list:hover {
  color: var(--active_color);
}
.ins_antibodyCon1 .center_box .list_box .list.active {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.ins_antibodyCon1 .center_box .list_box .list.active::after {
  opacity: 0;
}
.ins_antibodyCon1 .center_box .content_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_antibodyCon1 .center_box .content_info .content {
  width: 100%;
  height: auto;
  padding: 0.76rem 0.52rem;
  display: none;
  background: #F7F7F7;
}
.ins_antibodyCon1 .center_box .content_info .content .t1 {
  width: 100%;
  height: auto;
}
.ins_antibodyCon1 .center_box .content_info .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.72rem;
  position: relative;
  z-index: 1;
}
.ins_antibodyCon1 .center_box .content_info .content .item_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.19rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #FF6900 0%, #F9CCAD 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_antibodyCon1 .center_box .content_info .content .item_box .item {
  width: 100%;
  height: auto;
  flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 3;
}
.ins_antibodyCon1 .center_box .content_info .content .item_box .item .line {
  width: 0.19rem;
  height: 0.19rem;
  background: #FFFFFF4D;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
}
.ins_antibodyCon1 .center_box .content_info .content .item_box .item .line::after {
  content: '';
  position: absolute;
  width: 0.09rem;
  height: 0.09rem;
  background: #FFF;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_antibodyCon1 .center_box .content_info .content .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.79rem;
  font-size: var(--font20);
}
.ins_antibodyCon1 .center_box .content_info .content.active {
  display: block !important;
}
@media (max-width:990px) {
  .ins_antibodyCon1 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_antibodyCon1 .center_box .list_box .list {
    width: 100%;
    height: auto;
  }
  .ins_antibodyCon1 .center_box .content_info .content .item_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
  .ins_antibodyCon1 .center_box .content_info .content .item_box::after {
    width: 0.19rem;
    height: 100%;
    background: linear-gradient(180deg, #FF6900 0%, #F9CCAD 100%);
  }
  .ins_antibodyCon1 .center_box .content_info .content .item_box .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .ins_antibodyCon1 .center_box .content_info .content .item_box .item .word {
    margin-top: 0;
    text-align: start;
  }
  .ins_antibodyCon1 .center_box .content_info .content .item_box .item .word p {
    display: contents;
  }
}
.ins_antibodyCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.ins_antibodyCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_antibodyCon2 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.94rem;
  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.73rem;
}
.ins_antibodyCon2 .center_box .content_info .content {
  width: 100%;
  height: auto;
}
.ins_antibodyCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.13rem;
}
.ins_antibodyCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_antibodyCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border: 1px solid #0000001A;
}
.ins_antibodyCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 62%;
}
.ins_antibodyCon2 .center_box .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_antibodyCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: auto;
}
.ins_antibodyCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  margin-top: 0.23rem;
}
@media (max-width:990px) {
  .ins_antibodyCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_antibodyCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.42rem;
}
.ins_antibodyCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_antibodyCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.61rem;
  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_antibodyCon3 .center_box .item_box .item {
  width: 20.69%;
  height: auto;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.ins_antibodyCon3 .center_box .item_box .item .img {
  width: 100%;
  height: 6.05rem;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_antibodyCon3 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_antibodyCon3 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
}
.ins_antibodyCon3 .center_box .item_box .item.active {
  width: 56.597%;
}
.ins_antibodyCon3 .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 1.02rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_antibodyCon3 .center_box .idx_more .more .word {
  color: #000000;
}
.ins_antibodyCon3 .center_box .idx_more .more:hover .word {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_antibodyCon3 .center_box .item_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.6rem 0.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_antibodyCon3 .center_box .item_box .item {
    width: 100% !important;
  }
  .ins_antibodyCon3 .center_box .item_box .item .img {
    height: auto !important;
  }
  .ins_antibodyCon3 .center_box .idx_more .more {
    max-width: 5rem;
    text-align: center;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
}
.ins_productionCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.ins_productionCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productionCon1 .center_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.29rem;
}
.ins_productionCon1 .center_box .list_box .list {
  width: fit-content;
  padding: 0.2rem 0.27rem;
  border: 1px solid #0000001A;
  border-top-left-radius: 0.16rem;
  border-top-right-radius: 0.16rem;
  font-size: var(--font20);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productionCon1 .center_box .list_box .list:hover {
  color: var(--active_color);
}
.ins_productionCon1 .center_box .list_box .list.active {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.ins_productionCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  background: #F7F7F7;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.93rem 0.57rem;
  padding-bottom: 0.6rem;
}
.ins_productionCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .item_box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.44rem;
  z-index: 10;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .item_box .item {
  width: fit-content;
  height: auto;
  font-size: 0.32rem;
  padding-bottom: 0.07rem;
  color: #00000033;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 0.03rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .item_box .item.active {
  color: var(--active_color);
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .item_box .item.active::after {
  width: 100%;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item {
  width: 100%;
  height: auto;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content {
  width: 100%;
  height: auto;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box {
  width: 48%;
  padding-top: 0.8rem;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .name {
  line-height: 1.5;
  padding-right: 0.5rem;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info .list {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.23rem;
  padding: 0.4rem 0.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info .list .bigWord {
  font-size: var(--font36);
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info .list .icon {
  width: 0.29rem;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info .list .word {
  color: var(--active_color);
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info .list .word .t1 {
  font-weight: 600;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info .list.active {
  background: var(--active_color);
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .right_box {
  width: 48%;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content1 {
  width: 100%;
  height: auto;
  margin-top: 1.18rem;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content1 .list_info {
  width: 100%;
  height: auto;
  gap: 0.49rem;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content1 .list_info .list {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.48rem;
  background: #FFFFFF;
  border-radius: 0.08rem;
  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;
  position: relative;
  z-index: 1;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content1 .list_info .list::after {
  content: '';
  position: absolute;
  width: 0.04rem;
  border-radius: 100px;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content1 .list_info .list span {
  width: fit-content;
}
.ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content1 .list_info .list span:last-child {
  flex-shrink: 0;
}
@media (max-width:990px) {
  .ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info .list {
    width: 100%;
    height: auto;
  }
  .ins_productionCon1 .center_box .swiper_box ul li .swiper_info .swiper_item .centerInfo .content .left_box .list_info .list:first-child {
    grid-column: span 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .ins_productionCon1 .center_box .swiper_box {
    padding: 0.9rem 0.2rem;
  }
}
.ins_productionCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.ins_productionCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_productionCon5 .center_box .content_info {
  width: 100%;
  height: auto;
}
.ins_productionCon5 .center_box .content_info .content {
  width: 100%;
  height: auto;
  display: none;
  padding: 1.25rem 0.64rem 1.03rem 0.66rem;
  background: #F7F7F7;
}
.ins_productionCon5 .center_box .content_info .content.active {
  display: flex !important;
}
.ins_productionCon5 .center_box .content_info .content .left_box {
  width: 47%;
}
.ins_productionCon5 .center_box .content_info .content .left_box .word {
  width: 100%;
  height: auto;
}
.ins_productionCon5 .center_box .content_info .content .left_box .word .t1 {
  font-weight: 500;
}
.ins_productionCon5 .center_box .content_info .content .left_box .word .t2 {
  margin-top: 0.29rem;
  color: #666666;
  line-height: 1.6;
}
.ins_productionCon5 .center_box .content_info .content .right_box {
  width: 49%;
}
.ins_productionCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.75rem;
}
.ins_productionCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productionCon3 .center_box .content1 {
  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.61rem;
  gap: 0.16rem;
}
.ins_productionCon3 .center_box .content1 .word {
  width: 100%;
  height: auto;
}
.ins_productionCon3 .center_box .content1 .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.36rem;
}
.ins_productionCon3 .center_box .content1 .list_box .list {
  width: 100%;
  height: auto;
  padding-left: 0.21rem;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  font-size: var(--font20);
}
.ins_productionCon3 .center_box .content1 .list_box .list::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  top: 0.8em;
  left: 0;
}
.ins_productionCon3 .center_box .content1 .list_box .one {
  width: 100%;
  height: auto;
  padding-left: 0.21rem;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  font-size: var(--font20);
  color: #999999;
}
.ins_productionCon3 .center_box .content1 .left_box {
  width: 36.11%;
  background: #F7F7F7;
  padding: 0.6rem 0.45rem;
  border-radius: 0.12rem;
}
.ins_productionCon3 .center_box .content1 .right_box {
  width: 62.77%;
  background: #F7F7F7;
  padding: 0.6rem 0.71rem;
  border-radius: 0.12rem;
}
.ins_productionCon3 .center_box .content2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.51rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_productionCon3 .center_box .content2 .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productionCon3 .center_box .content2 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productionCon3 .center_box .content2 .swiper_box ul li.w43 {
  width: 43.05555556%;
}
.ins_productionCon3 .center_box .content2 .swiper_box ul li.w55 {
  width: 55.76388889%;
}
.ins_productionCon3 .center_box .content2 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productionCon3 .center_box .content2 .swiper_box ul li .centerInfo img {
  width: 100%;
  height: auto;
}
.ins_productionCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productionCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_productionCon4 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_productionCon4 .center_box .content .left_box {
  width: 47%;
  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_productionCon4 .center_box .content .right_box {
  width: 44.236%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productionCon4 .center_box .content .right_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_productionCon4 .center_box .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_productionCon4 .center_box .content .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_productionCon4 .center_box .content .right_box .idxPageShow {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0.2rem;
  z-index: 3;
  gap: 0.1rem;
}
.ins_productionCon4 .center_box .content .right_box .idxPageShow span {
  background: #FFF;
  opacity: 1;
}
.ins_productionCon4 .center_box .content .right_box .idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
.ins_servicesCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 0.6rem;
}
.ins_servicesCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_servicesCon1 .center_box .idx_title {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_servicesCon1 .center_box .idx_title .t1 {
  width: 40%;
}
.ins_servicesCon1 .center_box .idx_title .t3 {
  width: 55%;
  margin-top: 0;
  line-height: 1.5;
}
.ins_servicesCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.17rem;
  margin-top: 1.3rem;
}
.ins_servicesCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F2F2F2;
  border-radius: 0.08rem;
  padding: 0.44rem 0.47rem;
}
.ins_servicesCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_servicesCon1 .center_box .item_box .item .word .t1 {
  color: var(--active_color);
}
.ins_servicesCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.26rem;
}
.ins_servicesCon1 .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
}
.ins_servicesCon1 .center_box .content_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.1rem;
}
.ins_servicesCon1 .center_box .content_box .content {
  width: 77%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.34rem 1.02rem;
}
.ins_servicesCon1 .center_box .content_box .content .t1 {
  color: #999999;
}
.ins_servicesCon1 .center_box .content_box .content .t1 span {
  color: var(--active_color2);
}
.ins_servicesCon1 .center_box .content_box .content .t2 {
  margin-top: 0.4rem;
  line-height: 1.6;
}
.ins_servicesCon1 .center_box .content_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_servicesCon1 .center_box .content_box .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_servicesCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_servicesCon1 .center_box .idx_title {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_servicesCon1 .center_box .idx_title .t1 {
    width: 100% !important;
    height: auto;
  }
  .ins_servicesCon1 .center_box .idx_title .t3 {
    width: 100% !important;
    height: auto;
    margin-top: 0.5rem;
  }
  .ins_servicesCon1 .center_box .content_box {
    width: 100%;
    height: auto;
  }
  .ins_servicesCon1 .center_box .content_box .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0.2rem;
  }
  .ins_servicesCon1 .center_box .content_box .img {
    width: 100%;
    height: auto;
  }
}
.ins_servicesCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.6rem;
  padding-bottom: 1.01rem;
}
.ins_servicesCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_servicesCon2 .center_box .left_box {
  width: 45%;
}
.ins_servicesCon2 .center_box .left_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_servicesCon2 .center_box .left_box .idx_title * {
  scrollbar-color: var(--active_color) #d4d6d700;
  scrollbar-width: thin;
}
.ins_servicesCon2 .center_box .left_box .idx_title *::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d7;
}
.ins_servicesCon2 .center_box .left_box .idx_title *::-webkit-scrollbar-thumb {
  background-color: var(--active_color2);
  border-radius: 10px;
}
.ins_servicesCon2 .center_box .left_box .idx_title *::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0.76);
}
.ins_servicesCon2 .center_box .left_box .idx_title .t3 {
  margin-top: 0.52rem;
  line-height: 1.8;
  max-height: 4.36rem;
  overflow: auto;
  padding-right: 0.4rem;
}
.ins_servicesCon2 .center_box .right_box {
  width: 48%;
}
.ins_servicesCon2 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_servicesCon2 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_servicesCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_servicesCon3 .center_box {
  width: 100%;
  height: auto;
  padding: 0 0.44rem;
  padding-top: 1.3rem;
  padding-bottom: 0.85rem;
  background: #F2F2F2;
  border-radius: 0.12rem;
}
.ins_servicesCon3 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_servicesCon3 .center_box .idx_title .t3 {
  margin-top: 0.3rem;
  line-height: 1.6;
}
.ins_servicesCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_servicesCon3 .center_box .content .cont_box {
  width: 5.95rem;
  height: 5.95rem;
  min-width: 400px;
  min-height: 400px;
  border-radius: 50%;
  background: #F2F2F2;
  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_servicesCon3 .center_box .content .cont_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.ins_servicesCon3 .center_box .content .cont_box .item_box .item {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #FFFFFF;
  border-radius: 50%;
  clip-path: polygon(0% 0%, 50% 0, 50% 48%, 0 8%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: var(--rotate1);
}
.ins_servicesCon3 .center_box .content .cont_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--active_color);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: scale(0);
}
.ins_servicesCon3 .center_box .content .cont_box .item_box .item:hover {
  transform: var(--rotate2);
}
.ins_servicesCon3 .center_box .content .cont_box .item_box .item:hover::after {
  opacity: 1;
  transform: scale(1);
}
.ins_servicesCon3 .center_box .content .cont_box .word_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.ins_servicesCon3 .center_box .content .cont_box .word_box .word {
  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);
}
.ins_servicesCon3 .center_box .content .cont_box .word_box .word span {
  width: max-content;
  position: absolute;
  display: block;
  width: 1.3rem;
}
.ins_servicesCon3 .center_box .content .cont_box .center {
  position: absolute;
  z-index: 3;
  width: 1.7rem;
  height: 1.75rem;
  font-size: var(--font20);
  border-radius: 100px;
  text-align: center;
  color: #FFFFFF;
  background: var(--active_color2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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.1rem;
  border: 0.1rem solid #F2F2F2;
}
.ins_servicesCon3 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.78rem;
}
.ins_servicesCon3 .center_box .content1 .item_box {
  width: 100%;
  height: auto;
  gap: 0.2rem;
}
.ins_servicesCon3 .center_box .content1 .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.1rem;
  padding: 0.6rem 0.44rem;
  text-align: center;
}
.ins_servicesCon3 .center_box .content1 .item_box .item .t1 {
  color: var(--active_color);
}
.ins_servicesCon3 .center_box .content1 .item_box .item .t2 {
  margin-top: 0.22rem;
}
.ins_servicesCon3 .center_box .content1 .item_box .item .t3 {
  margin-top: 0.3rem;
  color: #999999;
}
@media (max-width:990px) {
  .ins_servicesCon3 .center_box .content .cont_box {
    min-width: 350px;
    min-height: 350px;
  }
  .ins_servicesCon3 .center_box .content .cont_box * {
    font-size: 12px !important;
  }
}
.ins_servicesCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.5rem;
  padding-bottom: 0.6rem;
}
.ins_servicesCon5 .center_box {
  width: 100%;
  height: auto;
  background: #F7F7F7;
  padding: 1.11rem 0.6rem;
  padding-bottom: 1.2rem;
  border-radius: 0.12rem;
}
.ins_servicesCon5 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_servicesCon5 .center_box .idx_title .t3 {
  margin-top: 0.25rem;
  line-height: 1.5;
}
.ins_servicesCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.88rem;
  gap: 0.14rem;
}
.ins_servicesCon5 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.56rem 0.4rem;
}
.ins_servicesCon5 .center_box .item_box .item .t1 {
  color: var(--active_color);
}
.ins_servicesCon5 .center_box .item_box .item .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_servicesCon5 .center_box .item_box .item .list .one {
  width: 100%;
  height: auto;
  padding-left: 0.15rem;
  position: relative;
  z-index: 1;
  line-height: 1.3;
  font-size: var(--font16);
}
.ins_servicesCon5 .center_box .item_box .item .list .one::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  top: 0.4em;
  left: 0;
}
.ins_servicesCon5 .center_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  gap: 0.14rem;
}
.ins_servicesCon5 .center_box .list_box .list {
  width: 100%;
  height: auto;
}
.ins_servicesCon5 .center_box .list_box .list .t1 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_servicesCon5 .center_box .list_box {
    gap: 0.5rem 0;
  }
  .ins_servicesCon5 .center_box .list_box .list {
    border-bottom: 1px solid #0000001A;
    padding-bottom: 0.5rem;
  }
}
.ins_teamCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F9F9F9;
  padding-top: 1.2rem;
  padding-bottom: 1.93rem;
}
.ins_teamCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_teamCon1 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  background: linear-gradient(157deg, #0974BF 5.37%, #23BAFF 60.36%);
  border-radius: 0.18rem;
  padding: 0.63rem 0.75rem 0 0.33rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_teamCon1 .center_box .content1 .left_box {
  width: 38%;
}
.ins_teamCon1 .center_box .content1 .right_box {
  width: 59.5%;
  padding-top: 0.8rem;
  color: #FFFFFF;
  padding-bottom: 0.5rem;
}
.ins_teamCon1 .center_box .content1 .right_box .word {
  width: 100%;
  height: auto;
}
.ins_teamCon1 .center_box .content1 .right_box .word .t1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.23rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  line-height: 1;
}
.ins_teamCon1 .center_box .content1 .right_box .word .t1 i {
  width: 0.12rem;
  height: 0.02rem;
  background: #FFFFFF;
  border-radius: 100px;
}
.ins_teamCon1 .center_box .content1 .right_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  line-height: 1.55;
  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.25rem;
  max-height: 4.2rem;
  overflow: auto;
}
.ins_teamCon1 .center_box .content1 .right_box .list .one {
  font-size: var(--font18);
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
}
.ins_teamCon1 .center_box .content1 .right_box .list .one::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  top: 0.6em;
  left: 0;
}
.ins_teamCon1 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.62rem;
}
.ins_teamCon1 .center_box .content2 .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
}
.ins_teamCon1 .center_box .content2 .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.1rem;
  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;
  box-shadow: 6px 6px 50px 0 rgba(0, 0, 0, 0.06);
}
.ins_teamCon1 .center_box .content2 .item_box .item .img {
  width: 45.3%;
}
.ins_teamCon1 .center_box .content2 .item_box .item .img .pb {
  padding-bottom: 126%;
}
.ins_teamCon1 .center_box .content2 .item_box .item .img .pb .ab {
  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_teamCon1 .center_box .content2 .item_box .item .word {
  width: 54%;
  padding-right: 0.27rem;
}
.ins_teamCon1 .center_box .content2 .item_box .item .word .t1 {
  color: var(--active_color2);
}
.ins_teamCon1 .center_box .content2 .item_box .item .word .t2 {
  margin-top: 0.1rem;
  color: var(--active_color2);
}
.ins_teamCon1 .center_box .content2 .item_box .item .word .t3 {
  margin-top: 0.3rem;
  line-height: 1.625;
}
@media (max-width:990px) {
  .ins_teamCon1 .center_box .content2 .item_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_teamCon1 .center_box .content2 .item_box .item .img {
    width: 100%;
    height: auto;
  }
  .ins_teamCon1 .center_box .content2 .item_box .item .word {
    width: 100%;
    height: auto;
    padding: 0.4rem;
  }
  .ins_teamCon1 .center_box .content1 {
    padding: 0.2rem;
  }
}
.ins_milestoneCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.93rem;
}
.ins_milestoneCon1 .center_box {
  width: 100%;
  height: auto;
  margin-top: 0.46rem;
  position: relative;
  z-index: 1;
  padding-top: 0.32rem;
  padding-bottom: 2.49rem;
}
.ins_milestoneCon1 .center_box::after {
  content: '';
  position: absolute;
  width: 0.04rem;
  height: 100%;
  background: linear-gradient(180deg, #FF6900 10%, #FFFFFF 100%);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  z-index: 1;
}
.ins_milestoneCon1 .center_box .list_box {
  width: 100%;
  height: auto;
  position: sticky;
  top: calc(var(--header-height) + 0.2rem);
  padding-left: 0.85rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  z-index: 6;
}
.ins_milestoneCon1 .center_box .list_box .list {
  width: fit-content;
  height: auto;
  padding: 0.12rem 0.37rem;
  font-size: var(--font18);
  border-radius: 100px;
  border: 1px solid #D8D8D8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1;
  background: #ffffff80;
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.ins_milestoneCon1 .center_box .list_box .list.active {
  background: var(--active_color);
  color: #FFFFFF;
  border-color: var(--active_color);
}
.ins_milestoneCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 4;
}
.ins_milestoneCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.62rem 0;
  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-left: 0.85rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ins_milestoneCon1 .center_box .item_box .item .locate_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  transform: translateY(-1rem);
}
.ins_milestoneCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.17rem;
  height: 0.17rem;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  border-radius: 100px;
  transform: translateX(-50%);
  z-index: 1;
}
.ins_milestoneCon1 .center_box .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.11rem;
  height: 0.11rem;
  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.03rem;
  border-radius: 100px;
  transform: translateX(-50%);
  z-index: 2;
}
.ins_milestoneCon1 .center_box .item_box .item .word {
  width: 33%;
}
.ins_milestoneCon1 .center_box .item_box .item .word .t1 {
  color: var(--active_color);
  line-height: 0.8;
}
.ins_milestoneCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.48rem;
}
.ins_milestoneCon1 .center_box .item_box .item .word .t3 {
  width: fit-content;
  padding: 0.06rem 0.15rem;
  border-radius: 0.06rem;
  background: linear-gradient(90deg, #F8D23C 0%, #F8D23C 100%);
  color: #FFFFFF;
  margin-top: 0.45rem;
}
.ins_milestoneCon1 .center_box .item_box .item .word .t4 {
  margin-top: 0.24rem;
}
.ins_milestoneCon1 .center_box .item_box .item .icon {
  width: 66%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_milestoneCon1 .center_box .item_box .item .icon .img {
  width: 57.5%;
  height: auto;
}
.ins_milestoneCon1 .center_box .item_box .item .icon .img img {
  border-radius: 0.06rem;
  overflow: hidden;
}
.ins_milestoneCon1 .center_box .item_box .item .icon .list {
  width: 38%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
}
.ins_milestoneCon1 .center_box .item_box .item .icon .list .one {
  width: 32%;
  flex-shrink: 0;
  background: #FFD880;
  border-radius: 0.06rem;
  color: #FFFFFF;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_milestoneCon1 .center_box .item_box .item .icon .list .tow {
  width: 68%;
  background: #66C4FF;
  border-radius: 0.06rem;
  color: #FFFFFF;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-top: 0.05rem;
}
@media (max-width:990px) {
  .ins_milestoneCon1 .center_box .list_box {
    display: none;
  }
  .ins_milestoneCon1 .center_box .item_box {
    width: 100%;
    height: auto;
  }
  .ins_milestoneCon1 .center_box .item_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.6rem;
  }
  .ins_milestoneCon1 .center_box .item_box .item .word {
    width: 100%;
    height: auto;
  }
  .ins_milestoneCon1 .center_box .item_box .item .icon {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_milestoneCon1 .center_box .item_box .item .icon .img {
    width: 100%;
    height: auto;
  }
  .ins_milestoneCon1 .center_box .item_box .item .icon .list {
    width: 100%;
    height: auto;
  }
  .ins_milestoneCon1 .center_box .item_box .item .icon .list .one {
    padding: 0.4rem 0;
  }
}
.ins_qualificationCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 0.8rem;
}
.ins_qualificationCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_qualificationCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1.08rem;
}
.ins_qualificationCon1 .center_box .content .left_box {
  width: 46.5%;
  position: relative;
  z-index: 2;
}
.ins_qualificationCon1 .center_box .content .left_box .list_info {
  width: 100%;
  height: auto;
  gap: 0.42rem 0.27rem;
}
.ins_qualificationCon1 .center_box .content .left_box .list_info .list {
  width: 100%;
  height: auto;
  min-height: 0.83rem;
  padding: 0.15rem 0.2rem;
  padding-right: 0.1rem;
  background: #FFFFFF;
  border-radius: 0.08rem;
  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;
  position: relative;
  z-index: 1;
  background: #F9F9F9;
}
.ins_qualificationCon1 .center_box .content .left_box .list_info .list::after {
  content: '';
  position: absolute;
  width: 0.04rem;
  border-radius: 100px;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_qualificationCon1 .center_box .content .left_box .list_info .list span {
  width: fit-content;
}
.ins_qualificationCon1 .center_box .content .left_box .list_info .list span:last-child {
  width: 51%;
}
.ins_qualificationCon1 .center_box .content .left_box .list_info .list:nth-child(2n) span:last-child {
  width: 70%;
}
.ins_qualificationCon1 .center_box .content .right_box {
  width: 34%;
  position: relative;
  z-index: 1;
}
.ins_qualificationCon1 .center_box .content .right_box::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, #FFF 87.78%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 100%;
  z-index: 8;
}
.ins_qualificationCon1 .center_box .content .right_box::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(-90deg, #FFF 87.78%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 100%;
  z-index: 8;
}
.ins_qualificationCon1 .center_box .content .right_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_qualificationCon1 .center_box .content .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_qualificationCon1 .center_box .content .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  opacity: 0.06;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_qualificationCon1 .center_box .content .right_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 70%;
}
.ins_qualificationCon1 .center_box .content .right_box .swiper_box ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_qualificationCon1 .center_box .content .right_box .swiper_box ul li.swiper-slide-active .centerInfo {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .ins_qualificationCon1 .center_box .content .left_box .list_info .list span:last-child {
    width: 70%;
  }
}
.ins_qualificationCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
}
.ins_qualificationCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_qualificationCon2 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_qualificationCon2 .center_box .content1 .left_box {
  width: 31%;
  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_qualificationCon2 .center_box .content1 .left_box .list_info {
  width: 100%;
  height: auto;
  gap: 0.42rem 0.27rem;
  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_qualificationCon2 .center_box .content1 .left_box .list_info .list {
  width: 100%;
  height: auto;
  min-height: 0.83rem;
  padding: 0.15rem 0.4rem;
  padding-right: 0.26rem;
  background: #FFFFFF;
  border-radius: 0.08rem;
  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;
  position: relative;
  z-index: 1;
  background: #F9F9F9;
  gap: 0.2rem;
}
.ins_qualificationCon2 .center_box .content1 .left_box .list_info .list::after {
  content: '';
  position: absolute;
  width: 0.04rem;
  border-radius: 100px;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_qualificationCon2 .center_box .content1 .left_box .list_info .list span {
  width: fit-content;
}
.ins_qualificationCon2 .center_box .content1 .left_box .list_info .list span:first-child {
  flex-shrink: 0;
}
.ins_qualificationCon2 .center_box .content1 .right_box {
  width: 64%;
}
.ins_qualificationCon2 .center_box .content1 .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_qualificationCon2 .center_box .content1 .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_qualificationCon2 .center_box .content2 {
  width: 100%;
  height: auto;
}
.ins_qualificationCon2 .center_box .content2 .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.1rem 0.22rem;
  font-size: var(--font16);
  color: #FFFFFF;
  background: var(--active_color);
  border-radius: 100px;
  cursor: pointer;
}
.ins_qualificationCon2 .center_box .content2 .more1 {
  margin-top: 0.6rem;
}
.ins_qualificationCon2 .center_box .content2 .more2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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.45rem;
  display: none;
}
.ins_qualificationCon2 .center_box .content2 .tableInfo {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: none;
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .name {
  padding-bottom: 0.2rem;
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .info {
  width: 100%;
  height: auto;
  overflow: auto;
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .info table {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .info table thead tr {
  border-bottom: 2px solid var(--active_color);
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .info table thead tr td {
  padding-bottom: 0.19rem;
  font-size: var(--font20);
  color: var(--active_color);
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .info table tbody {
  table-layout: fixed;
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .info table tbody tr {
  border-bottom: 1px solid #0000001A;
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .info table tbody tr td {
  color: #333333;
  font-size: var(--font24);
  padding: 0.3rem 0;
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .info table tr td {
  text-align: center;
}
.ins_qualificationCon2 .center_box .content2 .tableInfo .info table tr td:first-child {
  text-align: start;
}
.ins_qualificationCon2 .center_box .content2.active .more1 {
  display: none;
}
.ins_qualificationCon2 .center_box .content2.active .tableInfo {
  display: block !important;
}
.ins_qualificationCon2 .center_box .content2.active .more2 {
  display: flex;
}
.ins_campusCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.53rem;
}
.ins_campusCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_campusCon1 .center_box .content1 {
  width: 100%;
  height: auto;
  gap: 0.5rem;
}
.ins_campusCon1 .center_box .content1 .idx_title {
  width: fit-content;
  max-width: 50%;
}
.ins_campusCon1 .center_box .content1 .list_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.4rem 0.93rem;
  max-width: 50%;
}
.ins_campusCon1 .center_box .content1 .list_box .list {
  width: fit-content;
}
.ins_campusCon1 .center_box .content1 .list_box .list .t1 {
  color: var(--active_color);
}
.ins_campusCon1 .center_box .content1 .list_box .list .t2 {
  margin-top: 0.08rem;
  color: var(--active_color);
}
.ins_campusCon1 .center_box .content1 .list_box .list:first-child {
  transform: translateY(-0.1rem);
}
.ins_campusCon1 .center_box .content2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 1.12rem;
}
.ins_campusCon1 .center_box .content2 .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.ins_campusCon1 .center_box .content2 .item_box .point {
  width: 0.3rem;
  height: 0.3rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
}
.ins_campusCon1 .center_box .content2 .item_box .point::after {
  content: '';
  position: absolute;
  width: 0.13rem;
  height: 0.13rem;
  background: #555;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_campusCon1 .center_box .content2 .item_box .point::before {
  content: '';
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  background: #FFFFFF;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_campusCon1 .center_box .content2 .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_campusCon1 .center_box .content2 .item_box .item .word_box {
  position: absolute;
  width: max-content;
  background: #FFFFFF;
  bottom: 0.2rem;
  padding: 0.4rem;
  padding-bottom: 0.27rem;
  border-radius: 0.06rem;
  box-shadow: 6px 10px 36px 0 rgba(255, 105, 0, 0.36);
  min-width: 2.9rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_campusCon1 .center_box .content2 .item_box .item .word_box .name {
  font-weight: 500;
}
.ins_campusCon1 .center_box .content2 .item_box .item .word_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}
.ins_campusCon1 .center_box .content2 .item_box .item .word_box .list_box .list {
  font-size: var(--font18);
  font-weight: 300;
  cursor: pointer;
}
.ins_campusCon1 .center_box .content2 .item_box .item .word_box .list_box .list.active {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_campusCon1 .center_box .content2 .item_box .item:hover {
  z-index: 10;
}
.ins_campusCon1 .center_box .content2 .item_box .item:hover .word_box {
  opacity: 1;
  visibility: visible;
}
.ins_campusCon1 .center_box .content2 .item_box .item.active .point::after {
  background: var(--active_color);
}
.ins_campusCon1 .center_box .content2 .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: none;
}
.ins_campusCon1 .center_box .content2 .images_box.active {
  display: block;
}
.ins_campusCon1 .center_box .content2 .images_box .img {
  width: 100%;
  height: auto;
  display: none;
}
.ins_campusCon1 .center_box .content2 .images_box .img.active {
  display: block;
}
.ins_campusCon1 .center_box .content2 .images_box .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_campusCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_campusCon1 .center_box .content1 {
    width: 100%;
    height: auto;
  }
  .ins_campusCon1 .center_box .content1 .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    height: auto;
    max-width: unset;
  }
  .ins_campusCon1 .center_box .content1 .list_box .list {
    width: 100%;
    height: auto;
  }
}
.ins_campusCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.2rem;
}
.ins_campusCon2 .center_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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_campusCon2 .center_box .item_box {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 0.74rem;
  border: 1px solid #0000001A;
  border-radius: 100px;
}
.ins_campusCon2 .center_box .item_box .item {
  width: fit-content;
  padding: 0.27rem 0;
  font-size: var(--font22);
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_campusCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 100px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: -1px;
  left: 0;
  opacity: 0;
}
.ins_campusCon2 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_campusCon2 .center_box .item_box .item.active::after {
  opacity: 1;
}
.ins_campusCon2 .center_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_campusCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: none;
}
.ins_campusCon2 .center_box .content .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_campusCon2 .center_box .content .img img {
  width: 100%;
  height: auto;
}
.ins_campusCon2 .center_box .content .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
.ins_campusCon2 .center_box .content .list .one {
  width: 100%;
  height: auto;
}
.ins_campusCon2 .center_box .content .list .one .pb {
  padding-bottom: 70%;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_campusCon2 .center_box .content .list .one .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_campusCon2 .center_box .content .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_campusCon2 .center_box .content.active {
  display: block;
}
@media (max-width:990px) {
  .ins_campusCon2 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 0;
    max-width: unset;
    padding: 0;
    gap: 0.2rem;
  }
  .ins_campusCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
    font-size: var(--font16);
    text-align: center;
    background: #f6f6f693;
  }
}
.ins_introductionCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.26rem;
  padding-bottom: 0.88rem;
}
.ins_introductionCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_introductionCon1 .center_box .left_box {
  width: 46%;
}
.ins_introductionCon1 .center_box .left_box .idx_title .t2 {
  margin-top: 0.46rem;
  line-height: 1.8;
}
.ins_introductionCon1 .center_box .left_box .img {
  width: 100%;
  height: auto;
  margin-top: 0.85rem;
  border-radius: 0.14rem;
  overflow: hidden;
}
.ins_introductionCon1 .center_box .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_introductionCon1 .center_box .right_box {
  width: 48%;
}
.ins_introductionCon1 .center_box .right_box .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_introductionCon1 .center_box .right_box .img_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.14rem;
  overflow: hidden;
}
.ins_introductionCon1 .center_box .right_box .img_box .img img {
  width: 100%;
  height: auto;
}
.ins_introductionCon1 .center_box .right_box .img_box .icon {
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  z-index: 5;
  border-radius: 100px;
  background: var(--active_color3);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_introductionCon1 .center_box .right_box .img_box .icon img {
  width: 100%;
  height: auto;
}
.ins_introductionCon1 .center_box .right_box .img_box .icon:hover {
  background: var(--active_color);
}
.ins_introductionCon1 .center_box .right_box .idx_title {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_introductionCon1 .center_box .right_box .idx_title .t2 {
  margin-top: 0.34rem;
  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.3rem;
}
.ins_introductionCon1 .center_box .right_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_introductionCon1 .center_box .right_box .list_box .list {
  width: fit-content;
}
.ins_introductionCon1 .center_box .right_box .list_box .list .t1 {
  color: var(--active_color);
}
.ins_introductionCon1 .center_box .right_box .list_box .list .t2 {
  margin-top: 0.11rem;
  color: #999999;
}
@media (max-width:990px) {
  .ins_introductionCon1 .center_box .right_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_introductionCon1 .center_box .right_box .idx_title {
    order: 1;
    margin-top: 0;
  }
  .ins_introductionCon1 .center_box .right_box .idx_title .t2 {
    max-height: 5.2rem;
    overflow: auto;
  }
  .ins_introductionCon1 .center_box .right_box .img_box {
    order: 3;
    margin-top: 0.8rem;
  }
  .ins_introductionCon1 .center_box .right_box .list_box {
    order: 2;
  }
}
.ins_developmentCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.1rem;
  padding-bottom: 0.7rem;
}
.ins_developmentCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon7 .center_box .content1 {
  width: 100%;
  height: auto;
  padding-bottom: 3.2rem;
}
.ins_developmentCon7 .center_box .content1 .left_box {
  width: 30%;
}
.ins_developmentCon7 .center_box .content1 .right_box {
  width: 62%;
  position: relative;
  z-index: 1;
}
.ins_developmentCon7 .center_box .content1 .right_box .images {
  width: 100%;
  height: auto;
}
.ins_developmentCon7 .center_box .content1 .right_box .images img {
  width: 100%;
  height: auto;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 0.14rem;
  background: var(--active_color2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.18rem;
  z-index: 5;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.03rem;
  height: 0.03rem;
  background: var(--active_color2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: calc(0.18rem + 0.14rem);
  border-radius: 100px;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item .number {
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  background: var(--active_color2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  color: #FFFFFF;
  border: 0.03rem solid #FFFFFF;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item .cont {
  width: 2.6rem;
  position: absolute;
  top: 0.5rem;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item .cont .img {
  width: 100%;
  height: auto;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item .cont .img .pb {
  padding-bottom: 22.6%;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item .cont .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item .cont .word {
  font-size: var(--font24);
  padding: 0 0.1rem;
  text-align: center;
  margin-top: 0.2rem;
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item:nth-child(2n)::after,
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item:nth-child(2n)::before {
  background: var(--active_color);
}
.ins_developmentCon7 .center_box .content1 .right_box .item_box .item:nth-child(2n) .number {
  background: var(--active_color);
}
.ins_developmentCon7 .center_box .content2 {
  width: 100%;
  height: auto;
  padding: 0.8rem;
  padding-top: 1.06rem;
  background: #F7F7F7;
  border-radius: 0.12rem;
}
.ins_developmentCon7 .center_box .content2 .idx_title .t2 {
  margin-top: 0.23rem;
  line-height: 1.5;
}
.ins_developmentCon7 .center_box .content2 .content {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
  background: #FFFFFF;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_developmentCon7 .center_box .content2 .content .name {
  text-align: center;
  background: var(--active_color2);
  color: #FFFFFF;
  font-size: var(--font24);
  padding: 0.2rem 0;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_developmentCon7 .center_box .content2 .content .cont_box {
  width: 100%;
  height: auto;
  overflow: auto;
}
.ins_developmentCon7 .center_box .content2 .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.18rem;
  padding-bottom: 0.7rem;
  overflow: hidden;
  min-width: 1000px;
}
.ins_developmentCon7 .center_box .content2 .content .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-height: 40px;
  position: relative;
  z-index: 1;
}
.ins_developmentCon7 .center_box .content2 .content .item_box .item .month {
  flex: 1;
  text-align: center;
  padding-top: 0.24rem;
  font-size: var(--font24);
  position: relative;
  z-index: 1;
}
.ins_developmentCon7 .center_box .content2 .content .item_box .item .month::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100vh;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  opacity: 0.2;
  border-left: 1px dashed #0000004d;
}
.ins_developmentCon7 .center_box .content2 .content .item_box .item .month:first-child::after {
  opacity: 0;
}
.ins_developmentCon7 .center_box .content2 .content .item_box .item .proportion {
  width: var(--width);
  position: absolute;
  background: var(--bg);
  height: 0.4rem;
  min-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font18);
  border-radius: 100px;
  text-align: center;
  padding: 0 0.05rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_developmentCon7 .center_box .content2 .content .item_box .item .proportion:hover {
  color: var(--active_color);
}
.ins_developmentCon7 .center_box .content2 .images {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
}
.ins_developmentCon7 .center_box .content2 .images img {
  width: 100%;
  height: auto;
}
.ins_developmentCon7 .center_box .content2 .img {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
}
.ins_developmentCon7 .center_box .content2 .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_developmentCon7 .center_box .content1 .right_box .item_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 0.2rem;
  }
  .ins_developmentCon7 .center_box .content1 .right_box .item_box .item {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    left: unset !important;
    top: unset !important;
    gap: 0.5rem;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_developmentCon7 .center_box .content1 .right_box .item_box .item::after {
    opacity: 0;
  }
  .ins_developmentCon7 .center_box .content1 .right_box .item_box .item::before {
    opacity: 0;
  }
  .ins_developmentCon7 .center_box .content1 .right_box .item_box .item .number {
    position: relative;
    z-index: 1;
    min-width: 30px;
    min-height: 30px;
  }
  .ins_developmentCon7 .center_box .content1 .right_box .item_box .item .cont {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset;
  }
  .ins_developmentCon7 .center_box .content1 .right_box .item_box .item .cont .img .pb .ab {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_developmentCon7 .center_box .content1 .right_box .images {
    display: none;
  }
  .ins_developmentCon7 .center_box .content2 {
    padding: 0.4rem;
  }
}
.ins_developmentCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1rem;
}
.ins_developmentCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_developmentCon8 .center_box .idx_title {
  width: 71%;
  margin: 0 auto;
  height: auto;
}
.ins_developmentCon8 .center_box .idx_title .t2 {
  margin-top: 0.3rem;
}
.ins_developmentCon8 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
  gap: 0.5rem 2rem;
}
.ins_developmentCon8 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_developmentCon8 .center_box .item_box .item .t1 {
  color: var(--active_color);
  line-height: 1;
}
.ins_developmentCon8 .center_box .item_box .item .t2 {
  color: #999999;
  margin-top: 0.08rem;
}
.ins_developmentCon8 .center_box .item_box .item .t3 {
  margin-top: 0.31rem;
}
.ins_developmentCon8 .center_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
  gap: 0.16rem;
}
.ins_developmentCon8 .center_box .list_box .list {
  width: 100%;
  height: auto;
  padding: 0.58rem 0.73rem 0.53rem 0.55rem;
  background: #F7F7F7;
  border-radius: 0.1rem;
}
.ins_developmentCon8 .center_box .list_box .list .t1 {
  color: var(--active_color);
}
.ins_developmentCon8 .center_box .list_box .list .t2 {
  color: #999999;
  margin-top: 0.08rem;
}
.ins_developmentCon8 .center_box .list_box .list .t3 {
  margin-top: 0.64rem;
}
.ins_developmentCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 1.88rem;
}
.ins_developmentCon9 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.ins_developmentCon9 .center_box .content {
  width: 100%;
  height: auto;
  gap: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #0000001A;
}
.ins_developmentCon9 .center_box .content .left_box {
  width: 43%;
}
.ins_developmentCon9 .center_box .content .left_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.51rem;
  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;
}
.ins_developmentCon9 .center_box .content .left_box .list_box .list {
  width: 100%;
  height: auto;
  padding-left: 0.24rem;
  position: relative;
  z-index: 1;
}
.ins_developmentCon9 .center_box .content .left_box .list_box .list::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: var(--active_color2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0.45em;
  border-radius: 100px;
}
.ins_developmentCon9 .center_box .content .right_box {
  width: 5rem;
  height: auto;
  min-width: 280px;
  min-height: auto;
  position: relative;
  z-index: 1;
}
.ins_developmentCon9 .center_box .content .right_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
}
.ins_developmentCon9 .center_box .content .right_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_developmentCon9 .center_box .content .right_box .item_box .item .word {
  position: absolute;
  width: max-content;
  max-width: 1.44rem;
  min-width: 110px;
}
.ins_developmentCon9 .center_box .content .right_box .item_box .item .word .t1 {
  color: var(--active_color);
}
.ins_developmentCon9 .center_box .content .right_box .item_box .item .word .t2 {
  margin-top: 0.08rem;
}
.ins_developmentCon9 .center_box .content .right_box .item_box .item.active .word .t1 {
  color: #000000;
}
.ins_developmentCon9 .center_box .content .right_box .img_bg {
  width: 100%;
  height: auto;
}
.ins_developmentCon9 .center_box .content .right_box .img_bg img {
  width: 100%;
  height: auto;
}
.ins_developmentCon9 .center_box .content:nth-child(2n) {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.ins_developmentCon9 .center_box .content:nth-child(2n) .left_box {
  width: 48%;
}
.ins_developmentCon9 .center_box .content:last-child {
  padding-bottom: 0;
  border: 0;
}
@media (max-width:990px) {
  .ins_developmentCon9 .center_box .content:nth-child(2n) {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.ins_introductionCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 2.16rem;
}
.ins_introductionCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_introductionCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1.44rem;
  --number: 0%;
}
.ins_introductionCon2 .center_box .content .line_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_introductionCon2 .center_box .content .line_box .line {
  width: 100%;
  height: 0.16rem;
  background: F0F0F0;
  border-radius: 100px;
  background: #0000001A;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_introductionCon2 .center_box .content .line_box .line::after {
  content: '';
  position: absolute;
  width: var(--number);
  height: 100%;
  background: var(--active_color);
  left: 0;
}
.ins_introductionCon2 .center_box .content .line_box .icon {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  left: var(--number);
  top: 50%;
  z-index: 2;
}
.ins_introductionCon2 .center_box .content .line_box .icon img {
  width: 1.11rem;
  height: 1.11rem;
  position: absolute;
  max-width: unset;
  max-height: unset;
}
.ins_introductionCon2 .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_introductionCon2 .center_box .content1 .left_box {
  width: 45.5%;
  height: auto;
}
.ins_introductionCon2 .center_box .content1 .left_box .list_box {
  width: 100%;
  height: 100%;
  gap: 0.42rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.ins_introductionCon2 .center_box .content1 .left_box .list_box .list {
  width: 100%;
  height: 100%;
  padding-right: 0.42rem;
  border-right: 1px solid #0000001A;
  padding-top: 0.18rem;
}
.ins_introductionCon2 .center_box .content1 .left_box .list_box .list .t1 {
  color: var(--active_color);
}
.ins_introductionCon2 .center_box .content1 .left_box .list_box .list .t2 {
  color: #666666;
  line-height: 1.6;
  margin-top: 0.33rem;
}
.ins_introductionCon2 .center_box .content1 .right_box {
  width: 54.6%;
  height: auto;
}
.ins_introductionCon2 .center_box .content1 .right_box .item_box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_introductionCon2 .center_box .content1 .right_box .item_box .item {
  width: 100%;
  height: 100%;
  padding: 0 0.2rem;
  border-right: 1px solid #0000001A;
  text-align: center;
}
.ins_introductionCon2 .center_box .content1 .right_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_introductionCon2 .center_box .content1 .right_box .item_box .item .img .pb {
  padding-bottom: 69%;
}
.ins_introductionCon2 .center_box .content1 .right_box .item_box .item .word {
  font-size: var(--font26);
  margin-top: 0.45rem;
}
.ins_introductionCon2 .center_box .content1 .right_box .item_box .item:last-child {
  padding-right: 0;
  border-right: 0;
}
@media (max-width:990px) {
  .ins_introductionCon2 .center_box .content1 .left_box .list_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_introductionCon2 .center_box .content1 .left_box .list_box .list {
    border-right: 0 !important;
    border-bottom: 1px solid #0000001A;
    padding-bottom: 0.4rem;
  }
  .ins_introductionCon2 .center_box .content1 .right_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 0.2rem;
  }
  .ins_introductionCon2 .center_box .content1 .right_box .item_box .item {
    width: 100%;
    height: auto;
    padding: 0 0 !important;
    padding-bottom: 0.4rem !important;
    border-bottom: 1px solid #0000001A;
    border-right: 0;
  }
  .ins_introductionCon2 .center_box .content1 .right_box .item_box .item .img {
    width: 100%;
    height: auto;
  }
  .ins_introductionCon2 .center_box .content1 .right_box .item_box .item .img .pb {
    padding-bottom: 47%;
  }
}
.ins_servicesCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.85rem;
  padding-bottom: 0.98rem;
}
.ins_servicesCon4 .center_box {
  width: 100%;
  height: auto;
  gap: 0.2rem;
}
.ins_servicesCon4 .center_box .left_box {
  width: 55.76%;
  border-radius: 0.09rem;
  overflow: hidden;
  background: #F7F7F7;
}
.ins_servicesCon4 .center_box .left_box .name {
  width: 100%;
  height: auto;
  padding: 0.19rem;
  background: var(--active_color);
}
.ins_servicesCon4 .center_box .left_box .content {
  width: 100%;
  height: auto;
  padding: 0.7rem 0.5rem;
  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;
  overflow: auto;
}
.ins_servicesCon4 .center_box .left_box .content .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  min-width: 500px;
}
.ins_servicesCon4 .center_box .left_box .content .images_box .img {
  width: 100%;
  height: auto;
}
.ins_servicesCon4 .center_box .left_box .content .images_box .img img {
  width: 100%;
  height: auto;
}
.ins_servicesCon4 .center_box .left_box .content .images_box .item_box {
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding-top: 5%;
  overflow: hidden;
}
.ins_servicesCon4 .center_box .left_box .content .images_box .item_box .item {
  font-size: var(--font18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_servicesCon4 .center_box .left_box .content .images_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 0.08rem;
  background: #F7F7F7;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  transform: translateY(50%);
}
.ins_servicesCon4 .center_box .left_box .content .images_box .item_box .item:last-child::after {
  opacity: 0;
}
.ins_servicesCon4 .center_box .left_box .content .images_box .item_box .item:hover {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_servicesCon4 .center_box .left_box .content {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.ins_servicesCon4 .center_box .right_box {
  width: 42.84%;
  border-radius: 0.09rem;
  overflow: hidden;
  background: #F7F7F7;
}
.ins_servicesCon4 .center_box .right_box .name {
  width: 100%;
  height: auto;
  padding: 0.19rem;
  background: var(--active_color2);
  color: #FFFFFF;
}
.ins_servicesCon4 .center_box .right_box .list_box {
  width: 100%;
  height: auto;
  padding: 0.71rem 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.22rem;
}
.ins_servicesCon4 .center_box .right_box .list_box .list {
  font-size: var(--font18);
  padding-left: 0.24rem;
  position: relative;
  z-index: 1;
}
.ins_servicesCon4 .center_box .right_box .list_box .list::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  top: 0.45em;
  border-radius: 100px;
}
.popup_people {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100;
  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;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(25px);
  opacity: 0;
  visibility: hidden;
}
.popup_people .content {
  width: 100%;
  height: auto;
  background: linear-gradient(157deg, #0974BF 5.37%, #23BAFF 60.36%);
  border-radius: 0.18rem;
  padding: 0.6rem 0.75rem 0 0.33rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.popup_people .content .left_box {
  width: 40%;
}
.popup_people .content .left_box img {
  width: 100%;
  height: auto;
}
.popup_people .content .right_box {
  width: 58%;
  padding-top: 0.8rem;
  color: #FFFFFF;
  padding-bottom: 0.8rem;
}
.popup_people .content .right_box .word {
  width: 100%;
  height: auto;
}
.popup_people .content .right_box .word .t1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.23rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  line-height: 1;
}
.popup_people .content .right_box .word .t1 i {
  width: 0.12rem;
  height: 0.02rem;
  background: #FFFFFF;
  border-radius: 100px;
}
.popup_people .content .right_box .word .t2 {
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 0.4rem;
}
.popup_people .content .right_box .word .t3 {
  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.18rem;
  margin-top: 0.24rem;
  line-height: 1.555;
  max-height: 4rem;
  overflow: auto;
}
.popup_people .content .icon_colse {
  width: auto;
  height: auto;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
}
.popup_people .content .icon_colse i {
  font-size: var(--font28);
  color: #FFFFFF;
}
.popup_people .content .icon_colse:hover i {
  color: var(--active_color);
}
.popup_people.active {
  opacity: 1;
  visibility: visible;
}
.idx_homeCon2 .content .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon2 .content .img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFF -4.84%, rgba(255, 255, 255, 0) 96.48%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 5;
}
.idx_homeCon2 .content .img img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.lh875 {
  line-height: 1.875;
}
.lh5 {
  line-height: 1.5;
}
.ins_esgCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 0.72rem;
}
.ins_esgCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_esgCon1 .center_box .idx_title {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
}
.ins_esgCon1 .center_box .idx_title .t1 {
  width: 30%;
}
.ins_esgCon1 .center_box .idx_title .t3 {
  width: 55%;
  margin-top: 0;
}
.ins_esgCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.62rem;
}
.ins_esgCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  background: #F6F6F6;
  border-radius: 0.16rem;
}
.ins_esgCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_esgCon1 .center_box .item_box .item .word img {
  width: 0.52rem;
  flex-shrink: 0;
}
.ins_esgCon1 .center_box .item_box .item .word span {
  font-size: var(--font16);
  color: #999999;
}
.ins_esgCon1 .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
@media (max-width:990px) {
  .ins_esgCon1 .center_box .idx_title {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_esgCon1 .center_box .idx_title .t1 {
    width: 100%;
    height: auto;
  }
  .ins_esgCon1 .center_box .idx_title .t3 {
    width: 100%;
    height: auto;
  }
  .ins_esgCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_esgCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.72rem;
  padding-bottom: 0.7rem;
}
.ins_esgCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_esgCon2 .center_box .idx_title {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
}
.ins_esgCon2 .center_box .idx_title .t1 {
  width: 30%;
}
.ins_esgCon2 .center_box .idx_title .t3 {
  width: 48%;
  margin-top: 0;
}
.ins_esgCon2 .center_box .content {
  width: 100%;
  height: auto;
  min-height: 7.09rem;
  background-image: url(../images/10-31/bg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.62rem;
  border-radius: 0.16rem;
}
.ins_esgCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.62rem;
}
.ins_esgCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  border-radius: 10px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px);
}
.ins_esgCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  min-height: calc(2em * 1.25);
  line-height: 1.25;
  font-size: var(--font24);
}
.ins_esgCon2 .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.22rem;
  color: #999999;
}
@media (max-width:990px) {
  .ins_esgCon2 .center_box .idx_title {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_esgCon2 .center_box .idx_title .t1 {
    width: 100%;
    height: auto;
  }
  .ins_esgCon2 .center_box .idx_title .t3 {
    width: 100%;
    height: auto;
  }
  .ins_esgCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_esgCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
}
.ins_esgCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_esgCon3 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_esgCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.62rem;
}
.ins_esgCon3 .center_box .content .left_box {
  width: 49.67%;
  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_esgCon3 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F6F6F6;
  padding: 0 0.5rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_esgCon3 .center_box .content .left_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;
  padding: 0.3rem 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item .top span {
  font-size: var(--font28);
  color: #000000;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item .top i {
  width: 0.38rem;
  height: 0.38rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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%;
  position: relative;
  z-index: 1;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item .bot {
  padding-top: 0.32rem;
  padding-bottom: 1.1rem;
  border-top: 1px solid #0000001A;
  display: none;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item .bot .t1 {
  line-height: 1.8;
  color: var(--color_666);
  font-size: var(--font18);
  padding-right: 0.5rem;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item .bot .t1 p {
  padding-left: 0.15rem;
  position: relative;
  z-index: 1;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item .bot .t1 p::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.6em;
  left: 0;
  border-radius: 100px;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item .bot .img_w100 {
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item.active .top {
  padding-top: 0.56rem;
}
.ins_esgCon3 .center_box .content .left_box .item_box .item.active .top i {
  transform: rotate(180deg);
}
.ins_esgCon3 .center_box .content .right_box {
  width: 49.875%;
  height: auto;
}
.ins_esgCon3 .center_box .content .right_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_esgCon3 .center_box .content .right_box .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_esgCon3 .center_box .content .right_box .swiper_box .centerInfo .pb {
  padding-bottom: 91%;
}
.ins_esgCon3 .center_box .content .right_box .swiper_box .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_esgCon3 .center_box .content .right_box {
    display: none;
  }
  .ins_esgCon3 .center_box .content .left_box .item_box .item .bot {
    padding-bottom: 0.5rem;
  }
}
.ins_esgCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_esgCon4 .center_box {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_esgCon4 .center_box .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 1.4rem 0.7rem;
}
.ins_esgCon4 .center_box .content .idx_title .t3 {
  margin-top: 0.32rem;
}
.ins_esgCon4 .center_box .content .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_esgCon4 .center_box .content .word_box .name {
  width: 100%;
  height: auto;
}
.ins_esgCon4 .center_box .content .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_esgCon4 .center_box .content .word_box .list .one {
  font-size: var(--font20);
  color: #666666;
  padding-left: 0.15rem;
  position: relative;
  z-index: 1;
}
.ins_esgCon4 .center_box .content .word_box .list .one::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.4em;
  left: 0;
  border-radius: 100px;
}
.ins_esgCon4 .center_box .img_w100 {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_esgCon4 .center_box .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0;
  }
  .ins_esgCon4 .center_box .img_w100 {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
}
.ins_esgCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.3rem;
}
.ins_esgCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_esgCon5 .center_box .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_esgCon5 .center_box .top_box .item_box {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
}
.ins_esgCon5 .center_box .top_box .item_box .item {
  width: 100%;
  min-width: 1.64rem;
  height: auto;
  padding: 0.12rem 0.26rem;
  font-size: var(--font18);
  border-radius: 100px;
  border: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_esgCon5 .center_box .top_box .item_box .item.active {
  background: var(--active_color);
  color: #FFFFFF;
  border-color: var(--active_color);
}
.ins_esgCon5 .center_box .content {
  width: 100%;
  height: auto;
  display: none;
}
.ins_esgCon5 .center_box .content .tableInfo {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_esgCon5 .center_box .content .tableInfo .name {
  padding-bottom: 0.2rem;
}
.ins_esgCon5 .center_box .content .tableInfo .info {
  width: 100%;
  height: auto;
  overflow: auto;
}
.ins_esgCon5 .center_box .content .tableInfo .info table {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
  min-width: 800px;
}
.ins_esgCon5 .center_box .content .tableInfo .info table thead {
  width: 100%;
  height: auto;
}
.ins_esgCon5 .center_box .content .tableInfo .info table thead tr {
  background: var(--active_color2);
  font-size: var(--font20);
}
.ins_esgCon5 .center_box .content .tableInfo .info table thead tr td {
  color: #FFFFFF;
  padding: 0.13rem 0.76rem;
  border: 1px solid #0000001A;
}
.ins_esgCon5 .center_box .content .tableInfo .info table tbody tr {
  font-size: var(--font18);
  color: #999999;
  line-height: 1.6;
}
.ins_esgCon5 .center_box .content .tableInfo .info table tbody tr td {
  padding: 0.32rem 0.76rem;
  border: 1px solid #0000001A;
}
.ins_esgCon5 .center_box .content .tableInfo .info table tbody tr td a {
  color: #999999;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.05rem;
}
.ins_esgCon5 .center_box .content .tableInfo .info table tbody tr td a img {
  filter: brightness(0) invert(0.5);
}
.ins_esgCon5 .center_box .content .tableInfo .info table tbody tr td a:hover {
  color: var(--active_color);
}
.ins_esgCon5 .center_box .content .tableInfo .info table tbody tr td a:hover img {
  filter: unset;
}
.ins_esgCon5 .center_box .content .tableInfo .info table tbody tr:nth-child(2n) {
  background: #F7F7F7;
}
.ins_esgCon5 .center_box .content .tableInfo .tip {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: #666;
  font-size: var(--font18);
}
.ins_esgCon5 .center_box .content.active {
  display: block;
}
@media (max-width:990px) {
  .ins_esgCon5 .center_box .top_box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
.ins_esgCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 1.56rem;
}
.ins_esgCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_esgCon6 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_esgCon6 .center_box .idx_title .t3 {
  width: 100%;
  margin-top: 0.32rem;
}
.ins_esgCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.62rem;
}
.ins_esgCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  background: #F6F6F6;
  border-radius: 0.16rem;
  padding-bottom: 0.52rem;
}
.ins_esgCon6 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_esgCon6 .center_box .item_box .item .word .t1 {
  color: var(--active_color);
}
.ins_esgCon6 .center_box .item_box .item .word .t2 {
  color: #999999;
  margin-top: 0.06rem;
}
.ins_esgCon6 .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.62rem;
}
.ins_esgCon6 .center_box .name {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  font-size: var(--font20);
  color: #999999;
}
@media (max-width:990px) {
  .ins_esgCon6 .center_box .idx_title {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_esgCon6 .center_box .idx_title .t1 {
    width: 100%;
    height: auto;
  }
  .ins_esgCon6 .center_box .idx_title .t3 {
    width: 100%;
    height: auto;
  }
  .ins_esgCon6 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_esgCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_esgCon7 .center_box {
  width: 100%;
  height: auto;
  padding: 0.94rem 0.62rem;
  background: #F6F6F6;
  border-radius: 0.16rem;
}
.ins_esgCon7 .center_box .logo_box {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.24rem;
}
.ins_esgCon7 .center_box .logo_box .logo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_esgCon7 .center_box .logo_box .logo .pb {
  padding-bottom: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_esgCon7 .center_box .logo_box .logo .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_esgCon7 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.72rem;
}
.ins_esgCon7 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_esgCon7 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_esgCon7 .center_box .item_box .item .word img {
  width: 0.52rem;
  flex-shrink: 0;
}
.ins_esgCon7 .center_box .item_box .item .word span {
  font-size: var(--font16);
  color: #999999;
}
.ins_esgCon7 .center_box .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
@media (max-width:990px) {
  .ins_esgCon7 .center_box {
    padding: 0.9rem 0.2rem;
  }
  .ins_esgCon7 .center_box .logo_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .ins_esgCon7 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width:480px) {
  .ins_esgCon7 .center_box .logo_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_esgCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_esgCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_esgCon8 .center_box .swiper_list {
  width: 100%;
  height: auto;
  margin-top: 0.62rem;
}
.ins_esgCon8 .center_box .swiper_list ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_esgCon8 .center_box .swiper_list ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_esgCon8 .center_box .swiper_list ul li.active .centerInfo::after {
  opacity: 0;
}
.ins_esgCon8 .center_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.06rem;
  margin-top: 0.62rem;
}
.ins_esgCon8 .center_box .list_box .list {
  width: fit-content;
  padding: 0.2rem 0.27rem;
  border: 1px solid #0000001A;
  border-top-left-radius: 0.16rem;
  border-top-right-radius: 0.16rem;
  font-size: var(--font20);
  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_esgCon8 .center_box .list_box .list::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_esgCon8 .center_box .list_box .list:hover {
  color: var(--active_color);
}
.ins_esgCon8 .center_box .list_box .list.active {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #000000;
}
.ins_esgCon8 .center_box .list_box .list.active::after {
  opacity: 0;
}
.ins_esgCon8 .center_box .content_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_esgCon8 .center_box .content_info .content {
  width: 100%;
  height: auto;
  padding: 0.72rem 0.62rem;
  display: none;
  background: #F7F7F7;
}
.ins_esgCon8 .center_box .content_info .content .contBox {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_esgCon8 .center_box .content_info .content .contBox .t1 {
  width: 100%;
  height: auto;
  color: var(--active_color);
}
.ins_esgCon8 .center_box .content_info .content .contBox .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_esgCon8 .center_box .content_info .content .contBox .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  font-size: var(--font20);
  padding-left: 0.2rem;
}
.ins_esgCon8 .center_box .content_info .content .contBox .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #006FBC;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.4em;
  left: 0;
  border-radius: 100px;
}
.ins_esgCon8 .center_box .content_info .content .contBox:first-child {
  margin-top: 0;
}
.ins_esgCon8 .center_box .content_info .content.active {
  display: block !important;
}
@media (max-width:990px) {
  .ins_esgCon8 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_esgCon8 .center_box .list_box .list {
    width: 100%;
    height: auto;
  }
  .ins_esgCon8 .center_box .content_info .content .item_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
  .ins_esgCon8 .center_box .content_info .content .item_box::after {
    width: 0.19rem;
    height: 100%;
    background: linear-gradient(180deg, #FF6900 0%, #F9CCAD 100%);
  }
  .ins_esgCon8 .center_box .content_info .content .item_box .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .ins_esgCon8 .center_box .content_info .content .item_box .item .word {
    margin-top: 0;
    text-align: start;
  }
  .ins_esgCon8 .center_box .content_info .content .item_box .item .word p {
    display: contents;
  }
}
.ins_esgCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_esgCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .swiper_list {
  width: 100%;
  height: auto;
  margin-top: 0.62rem;
}
.ins_esgCon9 .center_box .swiper_list ul li .centerInfo {
  width: 100%;
  min-width: 3.4rem;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_esgCon9 .center_box .content_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_esgCon9 .center_box .content_info .content {
  width: 100%;
  height: auto;
  padding: 0.72rem 0.62rem;
  display: none;
  background: #F7F7F7;
}
.ins_esgCon9 .center_box .content_info .content .conBox1 {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox1 .title {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox1 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.32rem;
  margin-top: 0.62rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox1 .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.1rem;
  padding: 0.4rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox1 .item_box .item .icon {
  width: 0.52rem;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox1 .item_box .item .t1 {
  margin-top: 0.72rem;
  padding-bottom: 0.32rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox1 .item_box .item .t2 {
  width: 100%;
  height: auto;
  padding-top: 0.32rem;
  color: #999999;
  border-top: 1px solid #0000001A;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 {
  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.8rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .title {
  color: var(--active_color2);
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .subtitle {
  margin-top: 0.32rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content1 {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content1 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  gap: 0.24rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content1 .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content1 .item_box .item .pb {
  padding-bottom: 69%;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content1 .item_box .item .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  gap: 0.24rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 .item_box .item .pb {
  padding-bottom: 57%;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 .item_box .item .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 .list_info {
  width: 100%;
  height: auto;
  gap: 0.49rem;
  margin-top: 1.18rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 .list_info .list {
  width: 100%;
  height: auto;
  padding: 0.38rem 0.48rem;
  background: #FFFFFF;
  border-radius: 0.08rem;
  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;
  position: relative;
  z-index: 1;
  gap: 0.3rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 .list_info .list::after {
  content: '';
  position: absolute;
  width: 0.04rem;
  border-radius: 100px;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 .list_info .list span {
  width: fit-content;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content2 .list_info .list span:last-child {
  flex-shrink: 0;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .word_box .left {
  width: 57%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .word_box .right {
  width: fit-content;
  flex-shrink: 0;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .word_box .right .t1 {
  color: var(--active_color);
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .word_box .right .t2 {
  margin-top: 0.1rem;
  color: #999999;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  gap: 0.24rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .item_box .item .pb {
  padding-bottom: 57%;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .item_box .item .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .icon_box {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  line-height: 1.875;
  font-size: var(--font20);
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content4 {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content4 .img_w100 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content4 .img_w100 img {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content5 {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content5 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.52rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content5 .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.5rem;
  padding-top: 0.56rem;
  background: #FFFFFF;
  border-radius: 0.1rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content5 .item_box .item .t1 {
  color: var(--active_color);
}
.ins_esgCon9 .center_box .content_info .content .conBox2 .content5 .item_box .item .t2 {
  margin-top: 0.36rem;
  line-height: 1.875;
}
.ins_esgCon9 .center_box .content_info .content .conBox3 {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox3 .title {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox3 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.72rem;
}
.ins_esgCon9 .center_box .content_info .content .conBox3 .item_box .item {
  width: 100%;
  height: auto;
}
.ins_esgCon9 .center_box .content_info .content .conBox3 .item_box .item .t1 {
  color: var(--active_color);
}
.ins_esgCon9 .center_box .content_info .content .conBox3 .item_box .item .t2 {
  color: #999999;
}
.ins_esgCon9 .center_box .content_info .content .conBox3 .item_box .item .t3 {
  margin-top: 0.3rem;
}
.ins_esgCon9 .center_box .content_info .content.active {
  display: block !important;
}
@media (max-width:990px) {
  .ins_esgCon9 .center_box .content_info .content {
    width: 100%;
    height: auto;
    padding: 0.2rem;
    padding-top: 0.5rem;
  }
  .ins_esgCon9 .center_box .content_info .content .conBox1 .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_esgCon9 .center_box .content_info .content .conBox1 .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_esgCon9 .center_box .content_info .content .conBox1 .item_box .item .t1 {
    margin-top: 0.2rem;
  }
  .ins_esgCon9 .center_box .content_info .content .conBox2 .content1 .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .word_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
  .ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .word_box .left {
    width: 100%;
    height: auto;
  }
  .ins_esgCon9 .center_box .content_info .content .conBox2 .content3 .word_box .right {
    width: 100%;
    height: auto;
  }
  .ins_esgCon9 .center_box .content_info .content .conBox2 .content5 .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_esgCon9 .center_box .content_info .content .conBox3 .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 0.5rem;
  }
}
.ins_campusCon2 .center_box .content .list .one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_campusCon2 .center_box .content .list .one .icon {
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  z-index: 5;
  border-radius: 100px;
  background: var(--active_color3);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_campusCon2 .center_box .content .list .one .icon img {
  width: 100%;
  height: auto;
}
.ins_campusCon2 .center_box .content .list .one .icon:hover {
  background: var(--active_color);
}
