@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &: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 grow3 {
  to {
    transform: scale(3);
    opacity: 0;
  }
  from {
    transform: scale(0.5);
    opacity: 0.2;
  }
}
@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;
  }
}
/* 旋转 */
/* 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: #003C95;
  --color_fff: #ffffff;
  --color_text: #282828;
  --color_f6f: #f6f6f6;
  --color_f4f: #f4f4f4;
  --color_eee: #eeeeee;
  --color_ddd: #dddddd;
  --color_bbb: #bbbbbb;
  --color_999: #999999;
  --color_666: #666666;
  --color_444: #444444;
  --color_333: #333333;
  --color_222: #222222;
  --color_000: #000000;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../fonts/SourceHanSansCN-Heavy.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "Din";
  src: url("../fonts/DIN-Bold.otf");
  font-weight: normal;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1600,
.wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1600,
  .wrap {
    max-width: 83.33333333%;
  }
}
@media (max-width:990px) {
  .w1600,
  .wrap {
    max-width: 100%;
    padding: 0 0.4rem;
  }
}
.container {
  width: 100%;
  padding-left: 0.82rem;
  padding-right: 0.74rem;
}
@media (max-width:990px) {
  .container {
    padding: 0 0.4rem;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 0.97rem;
  font-family: "SourceHanSansCN";
  font-size: var(--font16);
  color: #000000;
}
main.active {
  --header-height: 0.7rem;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img {
  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);
  }
}
.idxPageDrop {
  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: 0.1rem;
  margin-top: 0.68rem;
}
.idxPageDrop span {
  width: 0.1rem;
  height: 0.1rem;
  background: #9A9A9A;
}
.idxPageDrop .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.09rem;
}
.idxPageShow span {
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 100px;
  border: 1px solid var(--active_color);
  opacity: 0.5;
  background: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
  border-color: var(--active_color);
  opacity: 1;
}
.idxPageShow.bgF span {
  border-color: #FFFFFF;
}
.idxPageShow.bgF .swiper-pagination-bullet-active {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
/* --------------------------------------------------------------- 吸顶 */
.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: auto;
  position: absolute;
  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;
    align-items: start !important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.imgScale img {
  transform: scale(1.2);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s 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;
  z-index: 50;
}
ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.layui-input:focus,
.layui-textarea:focus {
  box-shadow: unset;
  border-color: var(--active_color) !important;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-weight: normal;
}
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
/*  适用于轮播图中的依次间隔时间  data-atime="100" &.swiper-slide-active { .wowUpS { animation: fadeInUp 0.7s forwards; .dh(.1); } } .wowUpS { opacity: 0; }  */
.idx_more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.idx_more .more {
  width: fit-content;
  min-width: 1.61rem;
  height: 0.46rem;
  min-height: 35px;
  padding: 0 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.21rem;
  background-image: var(--bgImgSrc);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  --filter: unset;
  --color: var(--active_color);
}
.idx_more .more span {
  color: var(--color);
  font-size: var(--font16);
}
.idx_more .more img {
  filter: var(--filter);
}
.idx_more .more:hover {
  opacity: 0.9;
}
.idx_more .more:hover img {
  animation: more 0.5s linear;
}
.idx_more2 {
  width: fit-content;
  --color: var(--active_color);
}
.idx_more2 .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.09rem;
  font-size: var(--font16);
  color: var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 .more img {
  transform: translateY(1px);
}
.idx_more2 .more:hover {
  opacity: 0.9;
}
.idx_more2 .more:hover img {
  animation: more 0.5s linear;
}
.idx_more2.bg99 .more {
  color: #999999;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .icon {
  font-size: var(--font16);
  padding-bottom: 0.15rem;
}
.idx_title .t1 {
  font-weight: 700;
  line-height: 1.33;
}
.idx_title .t2 {
  margin-top: 0.1rem;
  color: #999;
}
@media (max-width:990px) {
  .idx_title {
    text-align: start;
  }
  .idx_title .t1 {
    font-size: var(--font40);
  }
}
.orderBg {
  width: fit-content;
  background-image: var(--bgImgSrc);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-clip: padding-box;
}
.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(--font18);
  color: #999999;
}
.ins_navbox .one {
  font-size: var(--font16);
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_navbox .one.active {
  color: #000000;
}
.ins_navbox .one:hover {
  color: #000000;
}
@media (max-width:990px) {
  .ins_navbox {
    display: none;
  }
}
body {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
* {
  scrollbar-color: var(--active_color) #d4d6d700;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d7;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0.76);
}
.ins_title {
  width: 100%;
  height: auto;
}
.ins_title .t1 {
  font-weight: 700;
}
.ins_title .t2 {
  margin-top: 0.12rem;
  color: #999999;
  line-height: 1.5;
}
@media (max-width:990px) {
  .ins_title {
    width: 100% !important;
    max-width: 100% !important;
    text-align: start !important;
  }
  .ins_title .t1,
  .ins_title .t2 {
    text-align: start !important;
  }
}
.swiper_svg {
  width: 0.45rem;
  min-width: 30px;
  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: absolute;
  z-index: 10;
  cursor: pointer;
}
.swiper_svg i {
  position: absolute;
  color: #FFFFFF;
  font-size: var(--font12);
}
.swiper_svg .svg {
  width: 100%;
  height: auto;
}
.swiper_svg .svg img {
  width: 100%;
  height: auto;
}
.swiper_svg.next {
  right: 0;
  transform: translateX(50%);
}
.swiper_svg.prev {
  left: 0;
  transform: translateX(-50%);
}
.swiper_svg:hover i {
  animation: more 0.5s linear;
}
@media (max-width:990px) {
  .swiper_svg {
    display: none;
  }
}
.idx_laypage {
  width: 100%;
  height: auto;
  margin-top: 1.04rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.swiper_pagerBox {
  width: fit-content;
  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;
  gap: 0.08rem;
}
.swiper_pagerBox .icon {
  width: 0.45rem;
  min-width: 30px;
  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;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.swiper_pagerBox .icon i {
  position: absolute;
  color: var(--active_color);
  font-size: var(--font18);
  font-weight: 900;
  z-index: 3;
}
.swiper_pagerBox .icon .svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.swiper_pagerBox .icon .svg img {
  width: 100%;
  height: auto;
}
.swiper_pagerBox .icon .svg .af {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_pagerBox .icon:hover i {
  color: #FFFFFF;
}
.swiper_pagerBox .icon:hover .svg .af {
  opacity: 1;
}
@media (max-width:990px) {
  .swiper_pagerBox {
    display: none !important;
  }
}
.share_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.3rem;
}
.share_box .one {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.share_box .one .icon {
  width: 0.3rem;
  border-radius: 100px;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.share_box .one .icon img {
  filter: brightness(0) invert(0.8);
}
.share_box .one .imgs {
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  bottom: calc(100% + 0.1rem);
  background: #FFFFFF;
  border-radius: 0.12rem;
  overflow: hidden;
  padding: 0.05rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px 1px #8a8a8a1a;
}
.share_box .one:hover .imgs {
  opacity: 1;
  visibility: visible;
}
.share_box .one:hover .icon img {
  filter: unset;
}
.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;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content {
  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;
  position: absolute;
  top: 0;
  left: 0;
  color: #FFFFFF;
  padding-top: 0.95rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 {
  font-weight: 700;
  line-height: 1.333;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.61rem;
  gap: 0.91rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one .number {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.06rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one .number .word {
  font-family: "Din";
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one .number .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 0.12rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one .name {
  margin-top: 0.07rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  margin-top: 0.74rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .img_w100 {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .img_w100 .wap {
  min-height: 500px;
  object-fit: cover;
}
.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 .idxPageShow {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.3rem;
  z-index: 10;
}
@media (max-width:990px) {
  .idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 {
    font-size: var(--font48);
  }
  .idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .list .one .number .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    flex-direction: row;
    padding-bottom: 0;
    gap: 5px;
  }
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.44rem;
  padding-bottom: 1.73rem;
  background: #F9F9F9;
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .idx_title .t2 {
  margin-top: 0.15rem;
}
.idx_homeCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.59rem;
  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 {
  width: 18.9375%;
  height: 6.2rem;
  border-radius: 0.15rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .item_box .item .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.idx_homeCon2 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.idx_homeCon2 .center_box .item_box .item .word_box .word1 {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
  padding: 0.55rem 0.4rem;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
}
.idx_homeCon2 .center_box .item_box .item .word_box .word1 .t1 {
  font-weight: 500;
}
.idx_homeCon2 .center_box .item_box .item .word_box .word2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0;
  padding: 0.65rem;
  color: #FFFFFF;
  transform: translateY(0.5rem);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_homeCon2 .center_box .item_box .item .word_box .word2 .t1 {
  font-weight: 500;
}
.idx_homeCon2 .center_box .item_box .item .word_box .word2 .t2 {
  margin-top: 0.15rem;
}
.idx_homeCon2 .center_box .item_box .item.active {
  width: 59.375%;
}
.idx_homeCon2 .center_box .item_box .item.active .word_box .word1 {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: translateY(-0.6rem);
}
.idx_homeCon2 .center_box .item_box .item.active .word_box .word2 {
  opacity: 1;
  transform: translateY(0%);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
@media (max-width:990px) {
  .idx_homeCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .idx_homeCon2 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
  .idx_homeCon2 .center_box .item_box .item {
    width: 100% !important;
    height: 4.6rem;
  }
  .idx_homeCon2 .center_box .item_box .item .word_box {
    width: 100%;
    height: auto;
  }
  .idx_homeCon2 .center_box .item_box .item .word_box .word1 {
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transform: translateY(-0.6rem);
  }
  .idx_homeCon2 .center_box .item_box .item .word_box .word2 {
    opacity: 1;
    transform: translateY(0%);
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    padding: 0.6rem 0.2rem;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.31rem;
  padding-bottom: 0.5rem;
}
.idx_homeCon3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .list {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.43rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.idx_homeCon3 .center_box .list .one {
  width: fit-content;
  height: 0.46rem;
  min-height: 35px;
  padding: 0 0.49rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.21rem;
  font-size: var(--font16);
  background-image: none;
  cursor: pointer;
}
.idx_homeCon3 .center_box .list .one.active {
  background-image: var(--bgImgSrc);
  color: #FFFFFF;
}
.idx_homeCon3 .center_box .content_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.65rem;
}
.idx_homeCon3 .center_box .content_box .content {
  width: 100%;
  height: auto;
  display: none;
}
.idx_homeCon3 .center_box .content_box .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.28rem;
}
.idx_homeCon3 .center_box .content_box .content .item_box .item {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #D3E2F4 0%, #F0F4F6 100%);
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.56rem 0.4rem;
  padding-bottom: 0.3rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .content_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #000;
}
.idx_homeCon3 .center_box .content_box .content .item_box .item .word .t1 {
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .content_box .content .item_box .item .word .t2 {
  margin-top: 0.04rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .content_box .content .item_box .item .word .idx_more2 {
  width: fit-content;
  margin-top: 0.2rem;
}
.idx_homeCon3 .center_box .content_box .content .item_box .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.19rem;
}
.idx_homeCon3 .center_box .content_box .content .item_box .item .img .pb {
  padding-bottom: 65%;
}
.idx_homeCon3 .center_box .content_box .content .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .center_box .content_box .content .item_box .item:hover {
  transform: translateY(-5px);
}
.idx_homeCon3 .center_box .content_box .content .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.idx_homeCon3 .center_box .content_box .content .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.idx_homeCon3 .center_box .content_box .content.active {
  display: block;
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .idx_title {
    text-align: center;
  }
  .idx_homeCon3 .center_box .content_box .content .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.1rem;
  }
  .idx_homeCon3 .center_box .content_box .content .item_box .item .word .t2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    opacity: 0.8;
  }
  .idx_homeCon3 .center_box .content_box .content .item_box .img .pb {
    padding-bottom: 40% !important;
  }
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1rem;
}
.idx_homeCon4 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  background: #FFFFFF;
}
.idx_homeCon4 .contentInfo {
  width: 100%;
  height: 250vh;
  position: relative;
  z-index: 1;
  margin-top: -1px;
}
.idx_homeCon4 .contentInfo .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.idx_homeCon4 .contentInfo .maskBox .content1,
.idx_homeCon4 .contentInfo .maskBox .content2,
.idx_homeCon4 .contentInfo .maskBox .content3 {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.idx_homeCon4 .contentInfo .maskBox .content1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 3;
}
.idx_homeCon4 .contentInfo .maskBox .content1 .images_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;
}
.idx_homeCon4 .contentInfo .maskBox .content1 .images_box .img {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  transform-origin: 45% center;
}
.idx_homeCon4 .contentInfo .maskBox .content2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 2;
}
.idx_homeCon4 .contentInfo .maskBox .content2 .video_info {
  width: 45%;
  position: absolute;
  left: 20%;
  padding-bottom: 2rem;
}
.idx_homeCon4 .contentInfo .maskBox .content3 {
  z-index: 3;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .idx_title {
  width: 40%;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .idx_title .t2 {
  margin-top: 0.51rem;
  color: #CCCCCC;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .idx_title .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.83rem;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 1.4rem;
  gap: 0.8rem;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .list .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .list .one .number {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.06rem;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .list .one .number .word {
  font-family: "Din";
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .list .one .number .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 0.12rem;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .list .one .number .icon .font30 {
  font-weight: 700;
}
.idx_homeCon4 .contentInfo .maskBox .content3 .center_box .list .one .name {
  margin-top: 0.07rem;
}
@media (max-width:990px) {
  .idx_homeCon4 .contentInfo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .idx_homeCon4 .contentInfo .maskBox {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background: #000000;
  }
  .idx_homeCon4 .contentInfo .maskBox .content1,
  .idx_homeCon4 .contentInfo .maskBox .content3 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
    opacity: 1;
    visibility: visible;
  }
  .idx_homeCon4 .contentInfo .maskBox .content3 {
    width: 100%;
    height: auto;
    padding: 1.6rem 0;
  }
  .idx_homeCon4 .contentInfo .maskBox .content3 .center_box {
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .contentInfo .maskBox .content3 .center_box .idx_title {
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .contentInfo .maskBox .content3 .center_box .idx_title .t2 {
    margin-top: 0.2rem;
  }
  .idx_homeCon4 .contentInfo .maskBox .content3 .center_box .list {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .idx_homeCon4 .contentInfo .maskBox .content3 .center_box .list .one .number .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    flex-direction: row !important;
    padding-bottom: 0;
    gap: 5px;
  }
  .idx_homeCon4 .contentInfo .maskBox .content2 {
    z-index: 2;
    bottom: 0;
    top: unset;
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .contentInfo .maskBox .content2 .video_info {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    left: 0%;
  }
  .idx_homeCon4 .contentInfo .maskBox .content1 .images_box .img {
    position: relative;
    z-index: 1;
    transform: translateY(-1px);
  }
  .idx_homeCon4 .contentInfo .maskBox .content1 {
    display: none !important;
  }
}
@media (max-width:990px) {
  .idx_homeCon4 .content {
    display: none;
  }
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.23rem;
  padding-bottom: 1.45rem;
  background: #F6F6F6;
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.61rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.26rem;
}
.idx_homeCon5 .center_box .content_info .content {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  position: relative;
  z-index: 1;
}
.idx_homeCon5 .center_box .content_info .content .new_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon5 .center_box .content_info .content .new_box .img {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .content_info .content .new_box .img .pb {
  padding-bottom: 63%;
}
.idx_homeCon5 .center_box .content_info .content .new_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_homeCon5 .center_box .content_info .content .new_box .word {
  width: 100%;
  height: auto;
  padding: 0.46rem 0.37rem;
  padding-bottom: 0.26rem;
}
.idx_homeCon5 .center_box .content_info .content .new_box .word .time {
  color: #999999;
}
.idx_homeCon5 .center_box .content_info .content .new_box .word .t1 {
  margin-top: 0.15rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.idx_homeCon5 .center_box .content_info .content .new_box .word .t2 {
  margin-top: 0.26rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: calc(2em * 1.4);
  line-height: 1.4;
  color: #999999;
}
.idx_homeCon5 .center_box .content_info .content .new_box .word .idx_more2 {
  margin-top: 0.5rem;
}
.idx_homeCon5 .center_box .content_info .content .new_box:hover .img .pb .ab img {
  transform: scale(1.03);
}
.idx_homeCon5 .center_box .content_info .content .new_box:hover .word .t1 {
  color: var(--active_color);
}
.idx_homeCon5 .center_box .content_info .content .bgImg_adap {
  bottom: 0 !important;
  left: 0;
}
.idx_homeCon5 .center_box .content_info .content .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: auto;
  padding: 0.4rem 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.3rem;
}
.idx_homeCon5 .center_box .content_info .content .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #99999926;
}
.idx_homeCon5 .center_box .content_info .content .item_box .item .time {
  color: #999999;
}
.idx_homeCon5 .center_box .content_info .content .item_box .item .t1 {
  margin-top: 0.11rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.idx_homeCon5 .center_box .content_info .content .item_box .item:last-child {
  padding-bottom: 0;
  border: 0;
}
@media (max-width:990px) {
  .idx_homeCon5 .center_box .content_info {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .idx_homeCon5 .center_box .content_info .content .item_box {
    width: 100%;
    height: auto;
    max-height: 5.8rem;
    position: relative;
    z-index: 1;
  }
}
.idx_homeCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.11rem;
  padding-bottom: 1.45rem;
}
.idx_homeCon6 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 1.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;
}
.idx_homeCon6 .center_box .item_box .item {
  width: fit-content;
  max-width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_homeCon6 .center_box .item_box .item .icon {
  width: 0.6rem;
  height: 0.6rem;
}
.idx_homeCon6 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.idx_homeCon6 .center_box .item_box .item .word .t1 {
  font-weight: 500;
}
.idx_homeCon6 .center_box .item_box .item .word .t2 {
  color: #999999;
  margin-top: 0.19rem;
}
@media (max-width:990px) {
  .idx_homeCon6 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem;
  }
  .idx_homeCon6 .center_box .item_box .item {
    width: 100%;
    height: auto;
    max-width: unset;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    gap: 0.5rem;
    border-bottom: 1px solid #9999991a;
    padding-bottom: 0.4rem;
  }
  .idx_homeCon6 .center_box .item_box .item .icon {
    flex-shrink: 0;
  }
  .idx_homeCon6 .center_box .item_box .item .word {
    text-align: start;
    margin-top: 0;
  }
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_bannerCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .word {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .word.coFFF {
  color: #FFFFFF;
}
.ins_bannerCon1 .content .center_box .word .t1 {
  font-weight: 700;
  line-height: 1.333;
}
.ins_bannerCon1 .content .center_box .word .t2 {
  margin-top: 0.2rem;
}
.ins_bannerCon1 .content.center {
  width: 100%;
  height: auto;
  padding-top: 1.9rem;
}
.ins_bannerCon1 .content.center .center_box .word {
  text-align: center;
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F6F6F6;
}
.ins_productCon1 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_productCon1 .center_box .item_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.8rem;
}
.ins_productCon1 .center_box .item_box .item {
  width: auto;
  height: auto;
  font-size: var(--font20);
  color: #999999;
  padding: 0.25rem 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
}
.ins_productCon1 .center_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_productCon1 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_productCon1 .center_box .item_box .item.active::after {
  width: 100%;
}
.ins_productCon1 .center_box .ins_navbox {
  width: fit-content;
}
@media (max-width:990px) {
  .ins_productCon1 {
    display: none;
  }
}
.ins_productCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.59rem;
  padding-bottom: 0.68rem;
}
.ins_productCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.69rem;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_productCon2 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #D3E2F4 0%, #F0F4F6 100%);
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.56rem 0.4rem;
  padding-bottom: 0.3rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #000;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item .word .t1 {
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item .word .t2 {
  margin-top: 0.04rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item .word .idx_more2 {
  width: fit-content;
  margin-top: 0.2rem;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.19rem;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item .img .pb {
  padding-bottom: 65%;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item:hover {
  transform: translateY(-5px);
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_productCon2 .center_box .swiper_info .swiper_box ul li .centerInfo .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_productCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 0.68rem;
  padding-bottom: 1.45rem;
}
.ins_productCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.79rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon3 .center_box .content .img_box {
  width: 4.9rem;
  height: 4.9rem;
  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_productCon3 .center_box .content .img_box .product_img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  overflow: hidden;
}
.ins_productCon3 .center_box .content .img_box .img {
  width: 100%;
  height: auto;
  animation: run 100s linear infinite;
  position: relative;
  z-index: 2;
}
.ins_productCon3 .center_box .content .img_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon3 .center_box .content .img_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.ins_productCon3 .center_box .content .img_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon3 .center_box .content .img_box .item_box .item .icon {
  position: absolute;
  width: 0.76rem;
  height: 0.76rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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);
}
.ins_productCon3 .center_box .content .img_box .item_box .item .word {
  position: absolute;
  width: max-content;
  right: calc(100% + 1.12rem);
  text-align: end;
  max-width: 3.47rem;
}
.ins_productCon3 .center_box .content .img_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_productCon3 .center_box .content .img_box .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
}
.ins_productCon3 .center_box .content .img_box .item_box .item:nth-child(2n) .word {
  left: calc(100% + 1rem);
  right: unset;
  text-align: start;
}
@media (max-width:990px) {
  .ins_productCon3 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_productCon3 .center_box .content {
    width: 100%;
    height: auto;
  }
  .ins_productCon3 .center_box .content .img_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_productCon3 .center_box .content .img_box .item_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.8rem;
  }
  .ins_productCon3 .center_box .content .img_box .item_box .item {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    left: unset !important;
    top: unset !important;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0.3rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #0000001A;
  }
  .ins_productCon3 .center_box .content .img_box .item_box .item .icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }
  .ins_productCon3 .center_box .content .img_box .item_box .item .word {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: unset;
    height: auto;
    right: unset !important;
    left: unset !important;
    text-align: start !important;
  }
  .ins_productCon3 .center_box .content .img_box .img {
    display: none;
  }
  .ins_productCon3 .center_box .content .img_box .product_img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    background: #F6F6F6;
    border-radius: 0.2rem;
  }
  .ins_productCon3 .center_box .content .img_box .product_img .pb .ab {
    background: #F6F6F6;
  }
  .ins_productCon3 .center_box .content .img_box .product_img .pb .ab img {
    mix-blend-mode: multiply;
  }
}
.ins_productCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.6rem;
  background: #F6F6F6;
}
.ins_productCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.84rem;
  gap: 0.12rem;
}
.ins_productCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  padding: 0.64rem 0.44rem 0.33rem 0.44rem;
  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;
}
.ins_productCon4 .center_box .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_productCon4 .center_box .item_box .item .word_box .icon {
  width: 0.92rem;
  height: 0.92rem;
  background: #003C951A;
  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_productCon4 .center_box .item_box .item .word_box .icon img {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_productCon4 .center_box .item_box .item .word_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.14rem;
}
.ins_productCon4 .center_box .item_box .item .number {
  width: 100%;
  height: auto;
  margin-top: 0.55rem;
  text-align: center;
  font-size: var(--font20);
  color: #0000004D;
}
.ins_productCon4 .center_box .item_box .item .arrow {
  width: 0.68rem;
  height: 0.68rem;
  background: #FFFFFF;
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  border: 0.11rem solid #F6F6F6;
  transform: translateY(-50%) translateX(calc(50% + 0.06rem));
  z-index: 10;
}
.ins_productCon4 .center_box .item_box .item:last-child .arrow {
  display: none;
}
.ins_productCon4 .center_box .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_productCon4 .center_box .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_productCon4 .center_box .item_box .item:hover::after {
  opacity: 1;
}
.ins_productCon4 .center_box .item_box .item:hover .word_box .icon {
  background: #FFFFFF;
}
.ins_productCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: none;
}
.ins_productCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  padding: 0.64rem 0.44rem 0.33rem 0.44rem;
  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;
}
.ins_productCon4 .center_box .swiper_box ul li .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_productCon4 .center_box .swiper_box ul li .item .word_box .icon {
  width: 0.92rem;
  height: 0.92rem;
  background: #003C951A;
  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_productCon4 .center_box .swiper_box ul li .item .word_box .icon img {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .swiper_box ul li .item .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_productCon4 .center_box .swiper_box ul li .item .word_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.14rem;
}
.ins_productCon4 .center_box .swiper_box ul li .item .number {
  width: 100%;
  height: auto;
  margin-top: 0.55rem;
  text-align: center;
  font-size: var(--font20);
  color: #0000004D;
}
.ins_productCon4 .center_box .swiper_box ul li .item .arrow {
  width: 0.68rem;
  height: 0.68rem;
  background: #FFFFFF;
  border-radius: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  border: 0.11rem solid #F6F6F6;
  transform: translateY(-50%) translateX(calc(50% + 0.06rem));
  z-index: 10;
}
.ins_productCon4 .center_box .swiper_box ul li .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_productCon4 .center_box .swiper_box ul li .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_productCon4 .center_box .swiper_box ul li .item:hover::after {
  opacity: 1;
}
.ins_productCon4 .center_box .swiper_box ul li .item:hover .word_box .icon {
  background: #FFFFFF;
}
.ins_productCon4 .center_box .swiper_box ul li:last-child .item .arrow {
  display: none;
}
.ins_productCon4 .center_box .swiper_box ul li.swiper-slide-active {
  z-index: unset;
}
.ins_productCon4.ins_innovationCon6 .center_box .item_box {
  margin-top: 0.64rem;
}
.ins_productCon4.ins_innovationCon6 .center_box .item_box .item {
  padding-top: 0.64rem;
  padding-bottom: 0.56rem;
}
.ins_productCon4.ins_innovationCon6 .center_box .item_box .item .number {
  margin-top: 1rem;
}
.ins_productCon4.ins_innovationCon6 .center_box .item_box .item .word_box .word {
  margin-top: 0.3rem;
}
.ins_productCon4.ins_innovationCon6 .center_box .swiper_box {
  margin-top: 0.64rem;
}
.ins_productCon4.ins_innovationCon6 .center_box .swiper_box .item {
  padding-top: 0.64rem;
  padding-bottom: 0.56rem;
}
.ins_productCon4.ins_innovationCon6 .center_box .swiper_box .item .number {
  margin-top: 1rem;
}
.ins_productCon4.ins_innovationCon6 .center_box .swiper_box .item .word_box .word {
  margin-top: 0.3rem;
}
@media (max-width:990px) {
  .ins_productCon4 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_productCon4 .center_box .item_box {
    display: none !important;
  }
  .ins_productCon4 .center_box .swiper_box {
    display: block !important;
  }
}
.ins_productCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.42rem;
  padding-bottom: 1.39rem;
}
.ins_productCon5 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.18rem;
  overflow: hidden;
}
.ins_productCon5 .center_box .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  color: #FFFFFF;
  padding: 0 1.02rem;
}
.ins_productCon5 .center_box .content .ins_title .t2 {
  color: #FFFFFF;
  margin-top: 0.24rem;
}
.ins_productCon5 .center_box .content .ins_title .t1 {
  font-weight: 500;
}
.ins_productCon5 .center_box .content .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 0.78rem;
}
.ins_productCon5 .center_box .img_box {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .img_box img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_productCon5 .center_box .content {
    padding: 0.4rem;
  }
}
.ins_productCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.61rem;
  padding-bottom: 0.7rem;
}
.ins_productCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.28rem;
  margin-top: 0.71rem;
}
.ins_productCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #D3E2F4 0%, #F0F4F6 100%);
  border-radius: 0.1rem;
  overflow: hidden;
  padding: 0.56rem 0.4rem;
  padding-bottom: 0.3rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon6 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #000;
}
.ins_productCon6 .center_box .item_box .item .word .t1 {
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon6 .center_box .item_box .item .word .t2 {
  margin-top: 0.04rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon6 .center_box .item_box .item .word .idx_more2 {
  width: fit-content;
  margin-top: 0.2rem;
}
.ins_productCon6 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.19rem;
}
.ins_productCon6 .center_box .item_box .item .img .pb {
  padding-bottom: 65%;
}
.ins_productCon6 .center_box .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon6 .center_box .item_box .item:hover {
  transform: translateY(-5px);
}
.ins_productCon6 .center_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_productCon6 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
@media (max-width:990px) {
  .ins_productCon6 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_productCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.8rem;
}
.ins_productCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.96rem;
}
.ins_productCon7 .center_box .content .left_box {
  width: 30%;
  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.6rem;
}
.ins_productCon7 .center_box .content .left_box .word_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content .left_box .word_box .t1 {
  font-weight: 500;
}
.ins_productCon7 .center_box .content .left_box .word_box .t2 {
  line-height: 2;
  margin-top: 0.4rem;
}
.ins_productCon7 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.ins_productCon7 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content .left_box .item_box .item .word {
  font-size: var(--font60);
  font-family: "Din";
  color: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.05rem;
}
.ins_productCon7 .center_box .content .left_box .item_box .item .word span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0em;
}
.ins_productCon7 .center_box .content .left_box .item_box .item .word span i {
  font-style: unset;
  font-weight: 500;
}
.ins_productCon7 .center_box .content .left_box .item_box .item .word span .font24 {
  font-weight: 900;
}
.ins_productCon7 .center_box .content .left_box .item_box .item .icon {
  margin-top: 0.08rem;
  font-size: var(--font18);
  color: #666666;
}
.ins_productCon7 .center_box .content .right_box {
  width: 55%;
}
.ins_productCon7 .center_box .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_productCon7 .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: 1.3rem;
}
.ins_productCon7 .center_box .content1 .left_box {
  width: 44%;
}
.ins_productCon7 .center_box .content1 .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_productCon7 .center_box .content1 .right_box {
  width: 45.75%;
  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.6rem;
}
.ins_productCon7 .center_box .content1 .right_box .word_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content1 .right_box .word_box .t1 {
  font-weight: 500;
}
.ins_productCon7 .center_box .content1 .right_box .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.71rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.69rem;
}
.ins_productCon7 .center_box .content1 .right_box .word_box .list .one {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content1 .right_box .word_box .list .one .t2 {
  font-weight: 500;
}
.ins_productCon7 .center_box .content1 .right_box .word_box .list .one .t3 {
  margin-top: 0.17rem;
  color: #999999;
}
.ins_productCon7 .center_box .content1 .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.ins_productCon7 .center_box .content1 .right_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content1 .right_box .item_box .item .word {
  font-size: var(--font60);
  font-family: "Din";
  color: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.05rem;
}
.ins_productCon7 .center_box .content1 .right_box .item_box .item .word span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0em;
}
.ins_productCon7 .center_box .content1 .right_box .item_box .item .word span i {
  font-style: unset;
  font-weight: 500;
}
.ins_productCon7 .center_box .content1 .right_box .item_box .item .word span .font24 {
  font-weight: 900;
}
.ins_productCon7 .center_box .content1 .right_box .item_box .item .icon {
  margin-top: 0.08rem;
  font-size: var(--font18);
  color: #666666;
}
@media (max-width:990px) {
  .ins_productCon7 .center_box .content .left_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_productCon7 .center_box .content .left_box .item_box .item .word span {
    flex-direction: row !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.05rem;
  }
  .ins_productCon7 .center_box .content1 .right_box .item_box .item .word span {
    flex-direction: row !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.05rem;
  }
  .ins_productCon7 .center_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.ins_productCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.42rem;
  padding-bottom: 1.93rem;
}
.ins_productCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon8 .center_box .content_info {
  width: 100%;
  height: auto;
}
.ins_productCon8 .center_box .content_info .left_box {
  width: 20.1875%;
  height: auto;
  border-radius: 0.04rem;
  background: #F9F9F9;
  padding: 0.4rem;
  padding-top: 0.29rem;
}
.ins_productCon8 .center_box .content_info .left_box .item {
  width: 100%;
  height: auto;
}
.ins_productCon8 .center_box .content_info .left_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.28rem 0;
  border-bottom: 1px solid #0000001A;
  cursor: pointer;
}
.ins_productCon8 .center_box .content_info .left_box .item .top span {
  font-size: var(--font22);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon8 .center_box .content_info .left_box .item .top i {
  color: #666666;
  width: 0.31rem;
  height: 0.31rem;
  background: #FFFFFF;
  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;
  font-size: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon8 .center_box .content_info .left_box .item .top i img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon8 .center_box .content_info .left_box .item .bot {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: none;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #0000001A;
}
.ins_productCon8 .center_box .content_info .left_box .item .bot .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.14rem;
}
.ins_productCon8 .center_box .content_info .left_box .item .bot .list .one {
  width: fit-content;
  font-size: var(--font18);
}
.ins_productCon8 .center_box .content_info .left_box .item .bot .list .one.active {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_productCon8 .center_box .content_info .left_box .item.active .top span {
  color: var(--active_color);
}
.ins_productCon8 .center_box .content_info .left_box .item.active .top i {
  background: var(--active_color);
  transform: rotate(180deg);
}
.ins_productCon8 .center_box .content_info .left_box .item.active .top i img {
  filter: brightness(0) invert(1);
}
.ins_productCon8 .center_box .content_info .left_box .item:last-child .top {
  border-bottom: 0;
  padding-bottom: 0;
}
.ins_productCon8 .center_box .content_info .left_box .item:last-child .bot {
  border-bottom: 0;
}
.ins_productCon8 .center_box .content_info .right_box {
  width: 77%;
  height: auto;
}
.ins_productCon8 .center_box .content_info .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.ins_productCon8 .center_box .content_info .right_box .item_box .item {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #D3E2F4 0%, #F0F4F6 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;
  border-radius: 0.1rem;
}
.ins_productCon8 .center_box .content_info .right_box .item_box .item .word {
  width: 46.7%;
  padding: 0.56rem;
  padding-right: 0;
}
.ins_productCon8 .center_box .content_info .right_box .item_box .item .word .t1 {
  font-weight: 500;
}
.ins_productCon8 .center_box .content_info .right_box .item_box .item .word .t2 {
  margin-top: 0.15rem;
}
.ins_productCon8 .center_box .content_info .right_box .item_box .item .word .idx_more2 {
  margin-top: 0.51rem;
}
.ins_productCon8 .center_box .content_info .right_box .item_box .item .img {
  width: 53.3%;
}
.ins_productCon8 .center_box .content_info .right_box .item_box .item .img .pb {
  padding-bottom: 111%;
}
.ins_productCon8 .center_box .content_info .right_box .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon8 .center_box .content_info .right_box .idx_laypage {
  margin-top: 0.82rem;
}
.ins_productCon8 .center_box .content_info .right_box .content_box {
  width: 100%;
  height: auto;
  margin-top: 1.12rem;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .cont {
  padding: 0.56rem 0.47rem;
  background: #F5F5F5;
  border-radius: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 0.31rem;
  position: relative;
  z-index: 1;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .cont .word {
  width: 100%;
  height: auto;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .cont .word .t1 {
  font-weight: 500;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .cont .word .t2 {
  margin-top: 0.15rem;
  color: #666666;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .cont .icon {
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
  font-size: var(--font32);
  color: var(--active_color);
  font-family: "DIN";
}
.ins_productCon8 .center_box .content_info .right_box .content_box .cont .icon span {
  font-family: "SourceHanSansCN";
  font-weight: 900;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .cont .img {
  width: 1.15rem;
  position: absolute;
  bottom: 0.11rem;
  right: 0.25rem;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .content1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .content1 .cont1 {
  width: 39.2%;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .content1 .cont2 {
  width: 59.49%;
}
.ins_productCon8 .center_box .content_info .right_box .content_box .content2 {
  width: 100%;
  height: auto;
  gap: 0.16rem;
  margin-top: 0.16rem;
}
@media (max-width:990px) {
  .ins_productCon8 .center_box .content_info .right_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_productCon8 .center_box .content_info .right_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0.4rem;
  }
  .ins_productCon8 .center_box .content_info .right_box .item_box .item .word {
    width: 100%;
    height: auto;
  }
  .ins_productCon8 .center_box .content_info .right_box .item_box .item .img {
    width: 100%;
    height: auto;
  }
  .ins_productCon8 .center_box .content_info .right_box .item_box .item .img .pb {
    padding-bottom: 40%;
  }
  .ins_productCon8 .center_box .content_info .right_box .content_box .content1 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_productCon8 .center_box .content_info .right_box .content_box .content1 .cont {
    width: 100% !important;
  }
}
.ins_productCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #FAFAFA;
}
.ins_productCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon9 .center_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_productCon9 .center_box .img img {
  width: 100%;
  height: auto;
}
.ins_productdInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productdInfo .ins_prodmask_box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.ins_productdInfo .ins_prodmask_box .center_box {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdInfo .ins_prodmask_box .center_box .content {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.5rem;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_box {
  width: 100%;
  overflow: hidden;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_box ul li .centerInfo .pb {
  padding-bottom: 83%;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .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_productdInfo .ins_prodmask_box .center_box .content .swiper_info {
  width: 1rem;
  flex-shrink: 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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_info .swiper_arrow {
  width: 100%;
  height: auto;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_info .swiper_arrow:hover {
  color: var(--active_color);
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_info .swiper_item {
  width: 100%;
  height: calc(4rem + 30px);
  overflow: hidden;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_info .swiper_item ul li {
  width: 100%;
  height: auto;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_info .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.05rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #0000001A;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_info .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg6.png);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  transform: translateY(10%);
  opacity: 0;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_info .swiper_item ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.2rem;
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_info .swiper_item ul li.active .centerInfo {
  border-color: var(--active_color);
}
.ins_productdInfo .ins_prodmask_box .center_box .content .swiper_info .swiper_item ul li.active .centerInfo::after {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_productdInfo {
    padding-bottom: 1.5rem;
  }
  .ins_productdInfo .ins_prodmask_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_productdInfo .ins_prodmask_box .center_box {
    width: 100%;
    height: auto;
  }
  .ins_productdInfo .ins_prodmask_box .center_box .content {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.51rem;
  padding-bottom: 0.6rem;
}
.ins_productdCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1.19rem;
}
.ins_productdCon1 .center_box .content .left_box {
  width: 31.4%;
}
.ins_productdCon1 .center_box .content .left_box .title {
  width: 100%;
  height: auto;
  padding-bottom: 0.44rem;
  border-bottom: 1px solid #0000001A;
  font-weight: 700;
}
.ins_productdCon1 .center_box .content .left_box .cont {
  width: 100%;
  height: auto;
  margin-top: 0.56rem;
}
.ins_productdCon1 .center_box .content .left_box .cont .subtitle {
  width: 100%;
  height: auto;
  font-weight: 500;
}
.ins_productdCon1 .center_box .content .left_box .cont .list {
  width: 100%;
  height: auto;
  margin-top: 0.31rem;
}
.ins_productdCon1 .center_box .content .left_box .cont .list .one {
  line-height: 2.3;
  color: #666666;
  padding-left: 0.25rem;
  font-size: var(--font20);
  position: relative;
  z-index: 1;
}
.ins_productdCon1 .center_box .content .left_box .cont .list .one::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4.5px 5px 4.5px;
  border-color: transparent transparent var(--active_color) transparent;
  position: absolute;
  left: 0;
  top: 1.05em;
}
.ins_productdCon1 .center_box .content .right_box {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.5rem;
}
.ins_productdCon1 .center_box .content .right_box .swiper_box {
  width: 100%;
  overflow: hidden;
}
.ins_productdCon1 .center_box .content .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productdCon1 .center_box .content .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdCon1 .center_box .content .right_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 83%;
}
.ins_productdCon1 .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_productdCon1 .center_box .content .right_box .swiper_info {
  width: 1rem;
  flex-shrink: 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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_productdCon1 .center_box .content .right_box .swiper_info .swiper_arrow {
  width: 100%;
  height: auto;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon1 .center_box .content .right_box .swiper_info .swiper_arrow:hover {
  color: var(--active_color);
}
.ins_productdCon1 .center_box .content .right_box .swiper_info .swiper_item {
  width: 100%;
  height: calc(4rem + 30px);
  overflow: hidden;
}
.ins_productdCon1 .center_box .content .right_box .swiper_info .swiper_item ul li {
  width: 100%;
  height: auto;
}
.ins_productdCon1 .center_box .content .right_box .swiper_info .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.05rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon1 .center_box .content .right_box .swiper_info .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg6.png);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  transform: translateY(10%);
  opacity: 0;
}
.ins_productdCon1 .center_box .content .right_box .swiper_info .swiper_item ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.2rem;
}
.ins_productdCon1 .center_box .content .right_box .swiper_info .swiper_item ul li.active .centerInfo {
  border-color: var(--active_color);
}
.ins_productdCon1 .center_box .content .right_box .swiper_info .swiper_item ul li.active .centerInfo::after {
  opacity: 1;
}
.ins_productdCon1 .center_box .icon_box {
  width: 100%;
  height: auto;
  margin-top: 0.33rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_productdCon1 .center_box .icon_box .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
  font-size: var(--font16);
  color: #999999;
}
.ins_productdCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.62rem;
  padding-bottom: 1.62rem;
}
.ins_productdCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon2 .center_box .content {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon2 .center_box .content .left_box {
  width: 50.2%;
}
.ins_productdCon2 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.67rem;
  border-bottom: 1px solid #0000001A;
}
.ins_productdCon2 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  border-top: 1px solid #0000001A;
  padding: 0.48rem 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;
  gap: 0.2rem;
}
.ins_productdCon2 .center_box .content .left_box .item_box .item .icon {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.22rem;
  font-size: var(--font20);
  font-weight: 500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-shrink: 0;
}
.ins_productdCon2 .center_box .content .left_box .item_box .item .word {
  width: fit-content;
  text-align: end;
  max-width: 70%;
  font-size: var(--font18);
  color: #666666;
}
.ins_productdCon2 .center_box .content .right_box {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.5rem;
}
.ins_productdCon2 .center_box .content .right_box .swiper_box {
  width: 100%;
  overflow: hidden;
}
.ins_productdCon2 .center_box .content .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productdCon2 .center_box .content .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdCon2 .center_box .content .right_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 83%;
}
.ins_productdCon2 .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_productdCon2 .center_box .content .right_box .swiper_info {
  width: 1rem;
  flex-shrink: 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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_productdCon2 .center_box .content .right_box .swiper_info .swiper_arrow {
  width: 100%;
  height: auto;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon2 .center_box .content .right_box .swiper_info .swiper_arrow:hover {
  color: var(--active_color);
}
.ins_productdCon2 .center_box .content .right_box .swiper_info .swiper_item {
  width: 100%;
  height: calc(4rem + 30px);
  overflow: hidden;
}
.ins_productdCon2 .center_box .content .right_box .swiper_info .swiper_item ul li {
  width: 100%;
  height: auto;
}
.ins_productdCon2 .center_box .content .right_box .swiper_info .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.05rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #0000001A;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon2 .center_box .content .right_box .swiper_info .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg6.png);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  transform: translateY(10%);
  opacity: 0;
}
.ins_productdCon2 .center_box .content .right_box .swiper_info .swiper_item ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.2rem;
}
.ins_productdCon2 .center_box .content .right_box .swiper_info .swiper_item ul li.active .centerInfo {
  border-color: var(--active_color);
}
.ins_productdCon2 .center_box .content .right_box .swiper_info .swiper_item ul li.active .centerInfo::after {
  opacity: 1;
}
.ins_productdCon2 .center_box .icon_box {
  width: 100%;
  height: auto;
  margin-top: 0.33rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_productdCon2 .center_box .icon_box .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
  font-size: var(--font16);
  color: #999999;
}
@media (max-width:990px) {
  .ins_productdCon2 .center_box .content .left_box .item_box .item {
    gap: 1rem;
  }
  .ins_productdCon2 .center_box .content .left_box .item_box .item .icon,
  .ins_productdCon2 .center_box .content .left_box .item_box .item .word {
    max-width: 60%;
  }
}
.ins_productdCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.57rem;
  padding-bottom: 0.7rem;
}
.ins_productdCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_productdCon3 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_productdCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productdCon3 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_productdCon3 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 66%;
}
.ins_productdCon3 .center_box .swiper_box ul li .centerInfo .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdCon3 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon3 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
  text-align: center;
  font-size: var(--font22);
  color: #333333;
}
.ins_productdCon3 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.04);
}
.ins_productdCon3 .center_box .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.74rem;
}
.ins_productdCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.18rem;
  padding-bottom: 1.68rem;
}
.ins_productdCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon4 .center_box .table_box {
  width: 100%;
  margin-top: 0.6rem;
  font-size: var(--font16);
  position: relative;
  z-index: 1;
}
.ins_productdCon4 .center_box .table_box .name {
  font-size: 12px;
  color: #999999;
  padding-bottom: 0.2rem;
}
.ins_productdCon4 .center_box .table_box .info {
  width: 100%;
  height: auto;
  overflow: auto;
  position: relative;
  z-index: 1;
}
.ins_productdCon4 .center_box .table_box table {
  width: 100%;
  height: auto;
  table-layout: fixed;
  min-width: 1000px;
  overflow: auto;
}
.ins_productdCon4 .center_box .table_box table tr {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  text-align: center;
  color: #333333;
}
.ins_productdCon4 .center_box .table_box table tr td {
  height: 0.5rem;
  border: 1px solid #e5e5e5;
  padding: 0.07rem 0;
  font-size: var(--font16);
  line-height: 1.1;
}
.ins_productdCon4 .center_box .table_box table thead {
  background: #00000008;
  color: #333;
  font-weight: 500;
  position: sticky;
  top: 0px;
  z-index: 3;
}
.ins_productdCon4 .center_box .table_box table thead tr td {
  color: #333;
}
.ins_productdCon4 .center_box .table_box table tbody tr:first-child {
  border-top: 0;
}
.ins_productdCon4 .center_box .table_box table tbody tr td:first-child {
  border-top: 0;
}
.ins_productdCon4 .center_box .table_box .one {
  width: fit-content;
  height: auto;
  margin-top: 0.17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.03rem;
  cursor: pointer;
}
.ins_productdCon4 .center_box .table_box .one span {
  color: #ff0000;
}
.ins_innovationCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.32rem;
  padding-bottom: 0.77rem;
}
.ins_innovationCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.97rem;
}
.ins_innovationCon1 .center_box .content .word {
  width: 100%;
  height: auto;
}
.ins_innovationCon1 .center_box .content .word .t1 {
  font-weight: 500;
}
.ins_innovationCon1 .center_box .content .word .t2 {
  margin-top: 0.25rem;
  color: #666666;
}
.ins_innovationCon1 .center_box .content .img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_innovationCon1 .center_box .content .img img {
  width: 100%;
  height: auto;
}
.ins_innovationCon1 .center_box .content .left_box {
  width: 44.1875%;
  padding-top: 0.54rem;
}
.ins_innovationCon1 .center_box .content .left_box .img {
  margin-top: 0.53rem;
}
.ins_innovationCon1 .center_box .content .right_box {
  width: 49.25%;
  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.77rem;
}
@media (max-width:990px) {
  .ins_innovationCon1 .center_box .content .right_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;
  }
}
.ins_innovationCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  padding-top: 0.77rem;
}
.ins_innovationCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon2 .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_innovationCon2 .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
  position: relative;
  z-index: 1;
  background: #000000;
}
.ins_innovationCon2 .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_innovationCon2 .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_innovationCon2 .swiper_info .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_innovationCon2 .swiper_info .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
.ins_innovationCon2 .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  gap: 0.2rem;
  z-index: 10;
  position: relative;
  margin-top: 0.4rem;
}
.ins_innovationCon2 .swiper_info .swiper_box ul li .centerInfo .word img {
  width: 0.25rem;
  min-width: 18px;
  filter: brightness(0) invert(0);
}
.ins_innovationCon2 .swiper_info .swiper_box ul li .centerInfo .word span {
  color: #141414;
  font-size: var(--font20);
}
.ins_innovationCon2 .swiper_info .content {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: 10;
  transform: translateY(50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_innovationCon2 .swiper_info .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background: #FFFFFF;
  mask-image: url(../images/bg8.png);
  mask-size: 100% 100%;
}
.ins_innovationCon2 .swiper_info .content .item_box .item {
  flex: 1;
  height: 0.85rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.14rem;
  font-size: var(--font18);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_innovationCon2 .swiper_info .content .item_box .item::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../images/bg11.png) no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_innovationCon2 .swiper_info .content .item_box .item img {
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_innovationCon2 .swiper_info .content .item_box .item span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_innovationCon2 .swiper_info .content .item_box .item.active::after {
  opacity: 1;
}
.ins_innovationCon2 .swiper_info .content .item_box .item.active img {
  filter: brightness(0) invert(1);
}
.ins_innovationCon2 .swiper_info .content .item_box .item.active span {
  color: #FFFFFF;
}
.ins_innovationCon2 .swiper_info .content .bgImg {
  width: 87.6%;
  position: absolute;
  z-index: -1;
  top: 0;
}
.ins_innovationCon2 .swiper_info .content .bgImg img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_innovationCon2 {
    padding-bottom: 1rem;
    background: #FFFFFF;
  }
  .ins_innovationCon2 .swiper_info .content {
    display: none;
  }
  .ins_innovationCon2 .swiper_info .swiper_box {
    width: 100%;
    height: auto;
    background: #FFFFFF !important;
  }
  .ins_innovationCon2 .swiper_info .swiper_box ul li .centerInfo .img {
    width: 100%;
    height: auto;
  }
  .ins_innovationCon2 .swiper_info .swiper_box ul li .centerInfo .img img {
    min-height: 300px;
    object-fit: cover;
  }
  .ins_innovationCon2 .swiper_info .swiper_box ul li .centerInfo .word {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-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_innovationCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.59rem;
  padding-bottom: 0.78rem;
}
.ins_innovationCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.61rem;
}
.ins_innovationCon3 .center_box .swiper_box ul li {
  width: 20%;
  height: auto;
}
.ins_innovationCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
}
.ins_innovationCon3 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_innovationCon3 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 65%;
}
.ins_innovationCon3 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_innovationCon3 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.39rem 0.31rem;
  padding-bottom: 0.45rem;
}
.ins_innovationCon3 .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 500;
}
.ins_innovationCon3 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.11rem;
}
.ins_innovationCon3 .center_box .content {
  width: 75%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 0.98rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_innovationCon3 .center_box .content .idxPageDrop {
  margin-top: 0;
  width: fit-content;
  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_innovationCon3 .center_box .content .swiper_svg {
  position: relative;
  z-index: 1;
  transform: translateX(0);
}
.ins_innovationCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.3rem;
  padding-bottom: 1.4rem;
}
.ins_innovationCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  gap: 0.27rem;
}
.ins_innovationCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  background: #D9D9D933;
  padding: 0.63rem 0.6rem;
  padding-bottom: 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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_innovationCon4 .center_box .item_box .item .icon {
  width: 1.05rem;
  height: 1.05rem;
  background: #003C951A;
  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_innovationCon4 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.31rem;
}
.ins_innovationCon4 .center_box .item_box .item .word .t1 {
  color: var(--active_color);
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_innovationCon4 .center_box .item_box .item .word .t2 {
  margin-top: 0.15rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_innovationCon4 .center_box .item_box .item:hover {
  background: var(--active_color);
}
.ins_innovationCon4 .center_box .item_box .item:hover .icon {
  background: #FFFFFF;
}
.ins_innovationCon4 .center_box .item_box .item:hover .word .t1,
.ins_innovationCon4 .center_box .item_box .item:hover .word .t2 {
  color: #FFFFFF;
}
.ins_innovationCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_innovationCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon5 .center_box .content_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.48rem;
}
.ins_innovationCon5 .center_box .content_info .content {
  width: 100%;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(138deg, #E5EDF3 -11.96%, #F8F8F9 114.9%);
  position: relative;
  z-index: 1;
}
.ins_innovationCon5 .center_box .content_info .content .left_box {
  width: 45.6875%;
  padding: 0.64rem 0.8rem;
  padding-right: 1.35rem;
  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.6rem;
}
.ins_innovationCon5 .center_box .content_info .content .left_box .word_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon5 .center_box .content_info .content .left_box .word_box .t1 {
  font-weight: 700;
  line-height: 1.16;
}
.ins_innovationCon5 .center_box .content_info .content .left_box .icon_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon5 .center_box .content_info .content .left_box .icon_box .icon {
  width: 0.68rem;
  height: 0.68rem;
}
.ins_innovationCon5 .center_box .content_info .content .left_box .icon_box .word {
  margin-top: 0.32rem;
  line-height: 1.75;
  color: #999;
}
.ins_innovationCon5 .center_box .content_info .content .right_box {
  width: 54.3125%;
  position: relative;
  z-index: 3;
}
.ins_innovationCon5 .center_box .content_info .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_innovationCon5 .center_box .content_info .content .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_innovationCon5 .center_box .content_info .content .img_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 34.5625%;
  left: 22%;
  transform: translateY(-10%);
}
.ins_innovationCon5 .center_box .content_info .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;
}
@media (max-width:990px) {
  .ins_innovationCon5 .center_box .content_info .content .left_box {
    padding: 0.4rem;
  }
  .ins_innovationCon5 .center_box .content_info .content:nth-child(2n) {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.ins_innovationCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_innovationCon7 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_innovationCon7 .center_box .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.8rem;
}
.ins_innovationCon7 .center_box .content .ins_title {
  width: 100%;
  height: auto;
}
.ins_innovationCon7 .center_box .content .ins_title .t1,
.ins_innovationCon7 .center_box .content .ins_title .t2 {
  color: #FFFFFF;
}
.ins_innovationCon7 .center_box .img_w100 {
  width: 100%;
  height: auto;
}
.ins_innovationCon7 .center_box .img_w100 img {
  width: 100%;
  height: auto;
}
.ins_innovationCon7 .center_box .img_w100 .wap {
  min-height: 500px;
  object-fit: cover;
}
.ins_innovationCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.44rem;
}
.ins_innovationCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon8 .center_box .left_box {
  width: 30.125%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.6rem;
}
.ins_innovationCon8 .center_box .left_box .word_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon8 .center_box .left_box .word_box .t1 {
  font-weight: 700;
}
.ins_innovationCon8 .center_box .left_box .icon_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon8 .center_box .left_box .icon_box .list {
  width: 100%;
  height: auto;
  padding-bottom: 0.38rem;
  border-bottom: 1px solid #0000001A;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.ins_innovationCon8 .center_box .left_box .icon_box .list .one {
  width: 100%;
  height: auto;
}
.ins_innovationCon8 .center_box .left_box .icon_box .list .one .t1 {
  font-weight: 900;
  line-height: 1.1;
  color: var(--active_color);
}
.ins_innovationCon8 .center_box .left_box .icon_box .list .one .t2 {
  margin-top: 0.09rem;
  color: #999999;
}
.ins_innovationCon8 .center_box .left_box .icon_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.33rem;
}
.ins_innovationCon8 .center_box .left_box .icon_box .word .t1 {
  color: #999999;
}
.ins_innovationCon8 .center_box .right_box {
  width: 60.625%;
}
.ins_innovationCon8 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_innovationCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.97rem;
  padding-bottom: 1.21rem;
  background: #F6F6F6;
}
.ins_innovationCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon9 .center_box .left_box {
  width: 36%;
}
.ins_innovationCon9 .center_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_innovationCon9 .center_box .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_innovationCon9 .center_box .right_box {
  width: 57%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.3rem;
}
.ins_innovationCon9 .center_box .right_box .ins_title {
  width: 100%;
  height: auto;
  text-align: end;
}
.ins_innovationCon9 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_innovationCon9 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_innovationCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.38rem;
  padding-bottom: 1.6rem;
}
.ins_innovationCon10 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon10 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_innovationCon10 .center_box .content1 .left_box {
  width: 30%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.6rem;
}
.ins_innovationCon10 .center_box .content1 .left_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_innovationCon10 .center_box .content1 .left_box .list {
  width: 100%;
  height: auto;
}
.ins_innovationCon10 .center_box .content1 .left_box .list .one {
  font-size: var(--font20);
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_innovationCon10 .center_box .content1 .left_box .list .one span {
  flex-shrink: 0;
}
.ins_innovationCon10 .center_box .content1 .right_box {
  width: 60.625%;
}
.ins_innovationCon10 .center_box .content1 .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_innovationCon10 .center_box .content1 .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_innovationCon10 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 1.6rem;
}
.ins_innovationCon10 .center_box .content2 .img {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_innovationCon10 .center_box .content2 .img img {
  width: 100%;
  height: auto;
}
.ins_innovationCon10 .center_box .content2 .word {
  width: 100%;
  height: auto;
  margin-top: 0.46rem;
}
.ins_innovationCon10 .center_box .content2 .word .t1 {
  font-weight: 700;
}
.ins_innovationCon10 .center_box .content2 .word .t2 {
  color: #999999;
  margin-top: 0.16rem;
}
.ins_innovationCon10 .center_box .content2 .word .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.05rem 0.34rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.16rem;
}
.ins_innovationCon10 .center_box .content2 .word .list .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.05rem;
  font-size: var(--font20);
  color: #999999;
}
.ins_innovationCon10 .center_box .content2 .left_box {
  width: 56.625%;
}
.ins_innovationCon10 .center_box .content2 .right_box {
  width: 39.0625%;
}
.ins_innovationCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
  background: #F6F6F6;
}
.ins_innovationCon11 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon11 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_box ul li {
  width: 30%;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs {
  width: 100%;
  height: auto;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs .pb {
  padding-bottom: 62%;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.56rem;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_box ul li .centerInfo .img_bg {
  width: 1.26rem;
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;
  transform: translateX(40%);
}
.ins_innovationCon11 .center_box .swiper_info .swiper_box ul li .centerInfo:hover .imgs .pb .ab img {
  transform: scale(1.04);
}
.ins_innovationCon11 .center_box .swiper_info .swiper_svg::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: translateX(-1px);
  height: 100%;
  background: url(../svg/i5.svg) no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 1;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_svg i {
  color: var(--active_color);
  z-index: 2;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_svg:hover::after {
  opacity: 1;
}
.ins_innovationCon11 .center_box .swiper_info .swiper_svg:hover i {
  color: #FFFFFF;
}
.ins_innovationCon12 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_innovationCon12 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon12 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_innovationCon12 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_innovationCon12 .center_box .swiper_info .swiper_box ul li {
  width: 30%;
}
.ins_innovationCon12 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F6F6F6;
  position: relative;
  z-index: 1;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_innovationCon12 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs {
  width: 100%;
  height: auto;
  padding: 0.08rem;
  overflow: hidden;
  padding-bottom: 0;
}
.ins_innovationCon12 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs .pb {
  padding-bottom: 112.5%;
  background: #FFFFFF;
  border-radius: 0.15rem;
}
.ins_innovationCon12 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_innovationCon12 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_innovationCon12 .center_box .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.34rem;
}
.ins_innovationCon12 .center_box .swiper_info .swiper_box ul li .centerInfo:hover .imgs .pb .ab img {
  transform: scale(1.04);
}
.ins_innovationCon13 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
  background: #F6F6F6;
}
.ins_innovationCon13 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon13 .center_box .content_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.48rem;
}
.ins_innovationCon13 .center_box .content_box .content {
  width: 100%;
  height: auto;
  padding: 0.56rem 0.48rem 0.56rem 0.8rem;
  background: #FFFFFF;
  border-radius: 0.15rem;
}
.ins_innovationCon13 .center_box .content_box .content .left_box {
  width: 34%;
  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_innovationCon13 .center_box .content_box .content .left_box .word {
  width: 100%;
  height: auto;
}
.ins_innovationCon13 .center_box .content_box .content .left_box .word .t1 {
  font-weight: 500;
}
.ins_innovationCon13 .center_box .content_box .content .left_box .word .t2 {
  font-weight: 700;
}
.ins_innovationCon13 .center_box .content_box .content .left_box .word .t3 {
  margin-top: 0.2rem;
  color: #999999;
  line-height: 1.75;
}
.ins_innovationCon13 .center_box .content_box .content .right_box {
  width: 53%;
}
.ins_innovationCon13 .center_box .content_box .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_innovationCon13 .center_box .content_box .content .right_box .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_innovationCon13 .center_box .content_box .content {
    padding: 0.4rem;
  }
}
.ins_innovationCon14 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.7rem;
  padding-bottom: 0.6rem;
}
.ins_innovationCon14 .center_box {
  width: 100%;
  height: auto;
}
.ins_innovationCon14 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 1.09rem;
  position: relative;
  z-index: 1;
}
.ins_innovationCon14 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_innovationCon14 .center_box .swiper_info .swiper_box ul li {
  width: 20%;
  height: auto;
}
.ins_innovationCon14 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_innovationCon14 .center_box .swiper_info .swiper_box ul li .centerInfo .img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 200px;
  overflow: hidden;
  border: 0.15rem solid #E0E8F3;
}
.ins_innovationCon14 .center_box .swiper_info .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_innovationCon14 .center_box .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.56rem;
}
.ins_innovationCon14 .center_box .swiper_info .swiper_svg {
  top: 1.1rem;
}
.ins_innovationCon14 .center_box .swiper_info .swiper_svg.next {
  right: 0;
  transform: translateX(100%);
}
.ins_innovationCon14 .center_box .swiper_info .swiper_svg.prev {
  left: 0;
  transform: translateX(-100%);
}
.ins_innovationCon14 .center_box .idxPageDrop {
  width: 100%;
  height: auto;
  margin-top: 1.33rem;
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.55rem;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .content1 {
  width: 100%;
  height: auto;
  gap: 0.3rem;
}
.ins_aboutCon1 .center_box .content1 .left_box {
  width: fit-content;
  flex-shrink: 0;
}
.ins_aboutCon1 .center_box .content1 .left_box .word {
  font-weight: 700;
  line-height: 1;
}
.ins_aboutCon1 .center_box .content1 .right_box {
  width: 73%;
}
.ins_aboutCon1 .center_box .content1 .right_box .word {
  width: 100%;
  height: auto;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_aboutCon1 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_aboutCon1 .center_box .content2 .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_aboutCon1 .center_box .content2 .img_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_aboutCon1 .center_box .content2 .img_box .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .content2 .img_box .icon_box {
  width: fit-content;
  position: absolute;
  z-index: 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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}
.ins_aboutCon1 .center_box .content2 .img_box .icon_box .icon {
  width: 0.94rem;
}
.ins_aboutCon1 .center_box .content2 .img_box .icon_box .word {
  color: #FFFFFF;
  font-size: var(--font32);
  margin-top: 0.25rem;
}
.ins_aboutCon1 .center_box .content3 {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_aboutCon1 .center_box .content3 .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.ins_aboutCon1 .center_box .content3 .item_box .item {
  width: fit-content;
}
.ins_aboutCon1 .center_box .content3 .item_box .item .word {
  font-size: var(--font56);
  color: var(--active_color);
  font-family: "DIN";
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  line-height: 1;
  gap: 0.05rem;
}
.ins_aboutCon1 .center_box .content3 .item_box .item .word span {
  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_aboutCon1 .center_box .content3 .item_box .item .word span i {
  font-size: var(--font20);
  font-style: unset;
  font-weight: 900;
}
.ins_aboutCon1 .center_box .content3 .item_box .item .word span i:last-child {
  font-size: var(--font18);
}
.ins_aboutCon1 .center_box .content3 .item_box .item .word span:last-child {
  padding-bottom: 0.05rem;
}
.ins_aboutCon1 .center_box .content3 .item_box .item .icon {
  color: #999999;
  margin-top: 0.11rem;
}
@media (max-width:990px) {
  .ins_aboutCon1 .center_box .content2 .img_box .img img {
    min-height: 300px;
    object-fit: cover;
  }
  .ins_aboutCon1 .center_box .content3 .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 0.4rem;
  }
  .ins_aboutCon1 .center_box .content3 .item_box .item .word span:last-child {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    gap: 0.08rem;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.55rem;
  padding-bottom: 1.72rem;
  background-image: url(../images/bg13.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .ins_title .t1 {
  color: #FFFFFF;
}
.ins_aboutCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  gap: 0.25rem;
  margin-top: 0.93rem;
}
.ins_aboutCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(80px);
  padding: 0.98rem 0.46rem;
  padding-bottom: 0.89rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.ins_aboutCon2 .center_box .item_box .item .icon {
  width: 1.17rem;
  height: 1.17rem;
  border-radius: 200px;
  background: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .item_box .item .icon img {
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
}
.ins_aboutCon2 .center_box .item_box .item .word .t1 {
  font-weight: 600;
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.28rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .item_box .item:hover {
  background: var(--active_color);
}
.ins_aboutCon2 .center_box .item_box .item:hover .icon {
  background: #FFFFFF;
}
.ins_aboutCon2 .center_box .item_box .item:hover .icon img {
  filter: unset;
}
.ins_aboutCon2 .center_box .item_box .item:hover .word .t1 {
  color: #FFFFFF;
}
.ins_aboutCon2 .center_box .item_box .item:hover .word .t2 {
  color: #FFFFFF;
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.52rem;
  padding-bottom: 1.2rem;
  background-image: url(../images/z41.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .swiper_item {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  padding-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .center_box .swiper_item ul li {
  width: calc(1.8rem + 0.7rem);
  height: auto;
  padding-right: 1.8rem !important;
}
.ins_aboutCon3 .center_box .swiper_item ul li .centerInfo {
  width: 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;
  font-size: var(--font24);
  color: #999999;
  padding-bottom: 0.33rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.ins_aboutCon3 .center_box .swiper_item ul li .centerInfo::before {
  content: '';
  position: absolute;
  width: calc(1.8rem + 0.35rem + 0.16rem);
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  right: calc(0.35rem + 0.08rem);
  opacity: 0.1;
}
.ins_aboutCon3 .center_box .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 0.06rem;
  border: 2px solid #DDDDDD;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  transform: translateY(50%);
}
.ins_aboutCon3 .center_box .swiper_item ul li:last-child {
  width: 0.7rem !important;
  padding-right: 0 !important;
}
.ins_aboutCon3 .center_box .swiper_item ul li:last-child::before {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: calc(0.35rem + 0.08rem);
  opacity: 0.1;
}
.ins_aboutCon3 .center_box .swiper_item ul li:first-child .centerInfo::before {
  width: 100vw;
}
.ins_aboutCon3 .center_box .swiper_item ul li.active .centerInfo {
  color: var(--active_color);
}
.ins_aboutCon3 .center_box .swiper_item ul li.active .centerInfo::after {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_aboutCon3 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon3 .center_box .content .swiper_pagerBox {
  position: absolute;
  right: 0;
  top: 0;
  width: fit-content;
  z-index: 10;
}
.ins_aboutCon3 .center_box .content .swiper_word {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .content .swiper_word ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content .swiper_word ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content .swiper_word ul li .centerInfo .number {
  font-size: var(--font64);
  font-weight: 600;
  color: var(--active_color);
}
.ins_aboutCon3 .center_box .content .swiper_word ul li .centerInfo .word {
  width: 47%;
  margin-top: 0.46rem;
  height: 3.6rem;
  overflow: auto;
}
.ins_aboutCon3 .center_box .content .swiper_word ul li .centerInfo .word .t1 {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .content .swiper_word ul li .centerInfo .word .t2 {
  margin-top: 0.1rem;
  color: #666666;
}
@media (max-width:990px) {
  .ins_aboutCon3 {
    background-attachment: unset;
    padding-bottom: 3rem;
  }
  .ins_aboutCon3 .center_box .content .swiper_word ul li .centerInfo .word {
    width: 100%;
    height: auto;
  }
}
.ins_productdCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.37rem;
  padding-bottom: 1.6rem;
}
.ins_productdCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdCon5 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productdCon5 .center_box .top_info .ins_title {
  width: 50%;
}
.ins_productdCon5 .center_box .top_info .swiper_pagerBox {
  width: fit-content;
  margin-top: 0;
}
.ins_productdCon5 .center_box .swiper_info {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_productdCon5 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productdCon5 .center_box .swiper_info .swiper_box ul li {
  width: 30%;
}
.ins_productdCon5 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F6F6F6;
  position: relative;
  z-index: 1;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_productdCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs {
  width: 100%;
  height: auto;
  padding: 0.08rem;
  overflow: hidden;
  padding-bottom: 0;
}
.ins_productdCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs .pb {
  padding-bottom: 105%;
  background: #FFFFFF;
  border-radius: 0.15rem;
}
.ins_productdCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productdCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .imgs .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productdCon5 .center_box .swiper_info .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.28rem;
}
.ins_productdCon5 .center_box .swiper_info .swiper_box ul li .centerInfo:hover .imgs .pb .ab img {
  transform: scale(1.04);
}
.ins_joinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_joinCon1 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_joinCon1 .center_box .ins_title .t1,
.ins_joinCon1 .center_box .ins_title .t2 {
  color: #FFFFFF;
}
.ins_joinCon1 .center_box .ins_title .t2 {
  font-weight: 300;
}
.ins_joinCon1 .center_box .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_joinCon1 .center_box .img {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .img img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
}
.ins_joinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.63rem;
}
.ins_joinCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  margin-top: 0.64rem;
}
.ins_joinCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-top: 1px solid #DDDDDD;
  padding-top: 0.48rem;
}
.ins_joinCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .item_box .item .word .t1 {
  color: var(--active_color);
  font-weight: 600;
}
.ins_joinCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #999999;
  font-weight: 300;
}
.ins_joinCon2 .center_box .item_box .item .icon {
  width: 0.67rem;
  height: 0.67rem;
  margin-top: 0.55rem;
}
@media (max-width:990px) {
  .ins_joinCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_joinCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
  background: #F6F6F6;
}
.ins_joinCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_joinCon3 .center_box .swiper_box ul li {
  width: 45%;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 63%;
}
.ins_joinCon3 .center_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon3 .center_box .swiper_pagerBox {
  width: 100%;
  height: auto;
  margin-top: 0.49rem;
}
.ins_joinCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.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;
  gap: 0.4rem;
}
.ins_joinCon4 .center_box .top_info .ins_title {
  width: fit-content;
}
.ins_joinCon4 .center_box .top_info .word {
  width: fit-content;
  text-align: end;
  color: #999999;
}
.ins_joinCon4 .center_box .top_info .word a {
  color: var(--active_color);
}
.ins_joinCon4 .center_box .top_info .word a:hover {
  text-decoration: underline;
}
.ins_joinCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
}
.ins_joinCon4 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_joinCon4 .center_box .content .item_box .item {
  width: 100%;
  height: auto;
  background: #F6F6F6;
  border-radius: 0.1rem;
  padding: 0 0.64rem;
}
.ins_joinCon4 .center_box .content .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;
  gap: 0.4rem;
  padding: 0.39rem 0;
  cursor: pointer;
}
.ins_joinCon4 .center_box .content .item_box .item .top .left {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.35rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon4 .center_box .content .item_box .item .top .left .word {
  font-size: var(--font28);
}
.ins_joinCon4 .center_box .content .item_box .item .top .left .icon {
  font-size: var(--font20);
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.05rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon4 .center_box .content .item_box .item .top .left .icon img {
  width: 0.32rem;
}
.ins_joinCon4 .center_box .content .item_box .item .top .right {
  width: fit-content;
  flex-shrink: 0;
}
.ins_joinCon4 .center_box .content .item_box .item .top .right .icon {
  width: 0.46rem;
  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_joinCon4 .center_box .content .item_box .item .top .right .icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/i54.png) no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  opacity: 0;
}
.ins_joinCon4 .center_box .content .item_box .item .top .right .icon i {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 5;
}
.ins_joinCon4 .center_box .content .item_box .item .top .right .icon i::after {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.02rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_joinCon4 .center_box .content .item_box .item .top .right .icon i::before {
  content: '';
  position: absolute;
  width: 0.12rem;
  height: 0.02rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(90deg) translateY(-0.5px);
  border-radius: 100px;
}
.ins_joinCon4 .center_box .content .item_box .item .bot {
  width: 100%;
  height: auto;
  border-top: 1px solid #0000001A;
  padding-bottom: 0.62rem;
  padding-top: 0.54rem;
  display: none;
}
.ins_joinCon4 .center_box .content .item_box .item .bot .content1 {
  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.5rem;
}
.ins_joinCon4 .center_box .content .item_box .item .bot .content1 .cont1 {
  width: 100%;
  height: auto;
}
.ins_joinCon4 .center_box .content .item_box .item .bot .content1 .cont1 .t1 {
  font-weight: 700;
}
.ins_joinCon4 .center_box .content .item_box .item .bot .content1 .cont1 .list {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.ins_joinCon4 .center_box .content .item_box .item .bot .content1 .cont1 .list .one {
  font-size: var(--font20);
}
.ins_joinCon4 .center_box .content .item_box .item.active .top .right .icon::after {
  opacity: 1;
}
.ins_joinCon4 .center_box .content .item_box .item.active .top .right .icon i::after {
  background: #FFFFFF;
}
.ins_joinCon4 .center_box .content .item_box .item.active .top .right .icon i::before {
  background: #FFFFFF;
  transform: rotate(0);
}
.ins_joinCon4 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  color: #999999;
}
@media (max-width:990px) {
  .ins_joinCon4 .center_box .top_info {
    gap: 0rem;
  }
  .ins_joinCon4 .center_box .top_info .word {
    text-align: start;
  }
  .ins_joinCon4 .center_box .content .item_box .item {
    padding: 0 0.3rem;
  }
  .ins_joinCon4 .center_box .content .item_box .item .top .left {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0.1rem;
  }
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.27rem;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.2rem;
}
.ins_contactCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding-bottom: 0.64rem;
  border-bottom: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 700;
}
.ins_contactCon1 .center_box .item_box .item .word img {
  width: 0.6rem;
  height: auto;
}
.ins_contactCon1 .center_box .item_box .item .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.52rem;
  margin-top: 0.64rem;
}
.ins_contactCon1 .center_box .item_box .item .list .one {
  width: fit-content;
  color: #999999;
  font-size: var(--font20);
}
@media (max-width:990px) {
  .ins_contactCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_contactCon1 .center_box .item_box .item .list {
    gap: 0rem;
    line-height: 2;
  }
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.25rem;
  background: #F8F8F8;
  padding-bottom: 3.36rem;
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
}
.ins_contactCon2 .content1 .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_contactCon2 .content1 .img img {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .content1 .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.ins_contactCon2 .content1 .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
}
.ins_contactCon2 .content1 .item_box .item i {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  border-radius: 100px;
  z-index: 5;
}
.ins_contactCon2 .content1 .item_box .item i::after {
  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;
  border-radius: 100px;
}
.ins_contactCon2 .content1 .item_box .item i::before {
  content: '';
  position: absolute;
  width: 0.23rem;
  height: 0.23rem;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_contactCon2 .content1 .item_box .item span {
  font-size: var(--font16);
  position: absolute;
  width: max-content;
  left: 0.2rem;
  font-weight: 500;
}
.ins_contactCon2 .content1 .item_box .item::after {
  content: '';
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  opacity: 0;
}
.ins_contactCon2 .content1 .item_box .item::before {
  content: '';
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  opacity: 0;
}
.ins_contactCon2 .content1 .item_box .item.active::after {
  animation: grow3 5s linear infinite;
}
.ins_contactCon2 .content1 .item_box .item.active::before {
  animation: grow3 4s linear infinite;
}
.ins_contactCon2 .content2 {
  width: 100%;
  height: auto;
  padding: 0 0.81rem;
  position: absolute;
  z-index: 2;
  bottom: 1.87rem;
}
.ins_contactCon2 .content2 .swiper_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .content2 .swiper_box ul li {
  width: 45%;
}
.ins_contactCon2 .content2 .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.15rem;
  position: relative;
  z-index: 1;
  padding: 0.75rem 0.51rem;
  padding-bottom: 0.83rem;
}
.ins_contactCon2 .content2 .swiper_box ul li .centerInfo .t1 {
  color: var(--active_color);
  font-weight: 500;
}
.ins_contactCon2 .content2 .swiper_box ul li .centerInfo .list {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.27rem;
}
.ins_contactCon2 .content2 .swiper_box ul li .centerInfo .list .one {
  font-size: var(--font16);
  color: #999999;
  padding-left: 0.38rem;
  position: relative;
  z-index: 1;
}
.ins_contactCon2 .content2 .swiper_box ul li .centerInfo .list .one img {
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.16rem;
}
.ins_contactCon2 .content2 .swiper_box ul li .centerInfo .bg_img {
  width: 45%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.ins_contactCon2 .content2 .swiper_box ul li .centerInfo .bg_img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_contactCon2 .content1 .item_box {
    display: none;
  }
  .ins_contactCon2 .content1 .item_box .item span {
    transform: scale(0.7);
    left: 0;
  }
  .ins_contactCon2 .content2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    bottom: 0;
    padding: 0 0.4rem;
  }
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.6rem 0;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .content1 {
  width: 100%;
  height: auto;
  background: #F6F6F6;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_newCon1 .center_box .content1 .left_box {
  width: 60.5%;
  height: auto;
}
.ins_newCon1 .center_box .content1 .left_box .img {
  width: 100%;
  height: 100%;
}
.ins_newCon1 .center_box .content1 .left_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon1 .center_box .content1 .right_box {
  width: 39.5%;
  padding: 0.73rem 0.5rem;
}
.ins_newCon1 .center_box .content1 .right_box .word {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .content1 .right_box .word .t1 {
  font-weight: 500;
}
.ins_newCon1 .center_box .content1 .right_box .word .t2 {
  margin-top: 0.38rem;
  color: #999999;
  font-family: "DIN";
}
.ins_newCon1 .center_box .content1 .right_box .word .t3 {
  margin-top: 0.7rem;
  color: #999999;
}
.ins_newCon1 .center_box .content1 .right_box .idx_more {
  margin-top: 0.7rem;
}
.ins_newCon1 .center_box .content1 .right_box .idx_more .more img {
  filter: brightness(0) invert(1);
}
.ins_newCon1 .center_box .content1 .img_bg {
  width: 18%;
  position: absolute;
  right: 0;
  bottom: 0.8rem;
}
.ins_newCon1 .center_box .content1 .img_bg img {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_newCon1 .center_box .content2 .item_box {
  width: 100%;
  height: auto;
  gap: 0.27rem;
}
.ins_newCon1 .center_box .content2 .item_box .item {
  width: 100%;
  height: auto;
  background: #F6F6F6;
}
.ins_newCon1 .center_box .content2 .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .content2 .item_box .item .img .pb {
  padding-bottom: 62%;
}
.ins_newCon1 .center_box .content2 .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .content2 .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.36rem;
  padding-bottom: 0.33rem;
}
.ins_newCon1 .center_box .content2 .item_box .item .word .t1 {
  font-family: "DIN";
  color: #999999;
  font-weight: 300;
}
.ins_newCon1 .center_box .content2 .item_box .item .word .t2 {
  margin-top: 0.13rem;
  width: 100%;
  height: calc(2em * 1.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .content2 .item_box .item .word .t3 {
  width: 100%;
  height: auto;
  margin-top: 0.19rem;
  color: #999999;
  height: calc(2em * 1.3);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon1 .center_box .content2 .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.38rem;
}
.ins_newCon1 .center_box .content2 .item_box .item .word .idx_more2 .more {
  color: #666666;
}
.ins_newCon1 .center_box .content2 .item_box .item .word .idx_more2 .more img {
  filter: brightness(0) invert(0.5);
}
.ins_newCon1 .center_box .content2 .item_box .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_newCon1 .center_box .content2 .item_box .item:hover .idx_more2 .more {
  color: var(--active_color);
}
.ins_newCon1 .center_box .content2 .item_box .item:hover .idx_more2 .more img {
  filter: unset;
}
.ins_newCon1 .center_box .content2 .idx_laypage {
  margin-top: 0.61rem;
}
@media (max-width:990px) {
  .ins_newCon1 .center_box .content1 .right_box {
    padding-top: 0;
  }
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.23rem;
  padding-bottom: 1.2rem;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.62rem;
}
.ins_newCon2 .center_box .content_info .left_box {
  width: 69.2%;
}
.ins_newCon2 .center_box .content_info .left_box .title {
  width: 100%;
  height: auto;
  font-weight: 900;
}
.ins_newCon2 .center_box .content_info .left_box .cont0 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.4rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon2 .center_box .content_info .left_box .cont0 .subtitle {
  width: 100%;
  height: auto;
  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.44rem;
}
.ins_newCon2 .center_box .content_info .left_box .cont0 .subtitle .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.14rem;
}
.ins_newCon2 .center_box .content_info .left_box .cont0 .subtitle .one img {
  width: 0.3rem;
  height: 0.3rem;
}
.ins_newCon2 .center_box .content_info .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.72rem;
  gap: 0.8rem;
  padding: 0.32rem 0.52rem;
  padding-bottom: 0.42rem;
  background: #F8F9FA;
  border-radius: 0.12rem;
}
.ins_newCon2 .center_box .content_info .left_box .item_box .item {
  width: fit-content;
  height: auto;
}
.ins_newCon2 .center_box .content_info .left_box .item_box .item .word {
  width: fit-content;
  height: auto;
  font-weight: 900;
  display: -webkit-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;
}
.ins_newCon2 .center_box .content_info .left_box .item_box .item .word i {
  font-style: unset;
  padding-left: 0.05rem;
}
.ins_newCon2 .center_box .content_info .left_box .item_box .item .icon {
  width: 100%;
  font-size: var(--font14);
  color: #999999;
  font-weight: 200;
  margin-top: 0.12rem;
}
.ins_newCon2 .center_box .content_info .left_box .item_box .item:last-child {
  border-bottom: 0;
}
.ins_newCon2 .center_box .content_info .left_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  padding-bottom: 0.47rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon2 .center_box .content_info .left_box .content p {
  width: 100%;
  height: auto;
  min-height: 0.5em;
  font-size: var(--font16);
  line-height: 1.5;
  color: #999999;
}
.ins_newCon2 .center_box .content_info .left_box .content h2 {
  font-weight: 500;
  color: #000;
  font-size: var(--font32);
}
.ins_newCon2 .center_box .content_info .left_box .content h3 {
  font-weight: 500;
  color: #000;
  font-size: var(--font24);
}
.ins_newCon2 .center_box .content_info .left_box .cont2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .list {
  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_newCon2 .center_box .content_info .left_box .cont2 .list .one {
  width: fit-content;
  max-width: 46%;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #666666;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.25rem;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .idx_more {
  width: fit-content;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .idx_more .more {
  position: relative;
  z-index: 1;
  min-width: unset;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .idx_more .more::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/moreBg2.png) no-repeat;
  background-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -2;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .idx_more .more img {
  filter: brightness(0) invert(0.5);
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .idx_more:hover .more::after {
  opacity: 1;
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .idx_more:hover .more img {
  filter: brightness(0) invert(1);
}
.ins_newCon2 .center_box .content_info .left_box .cont2 .btn_box .idx_more:hover .more span {
  color: #FFFFFF;
}
.ins_newCon2 .center_box .content_info .right_box {
  width: 23.611%;
  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_newCon2 .center_box .content_info .right_box .tit {
  font-weight: 500;
}
.ins_newCon2 .center_box .content_info .right_box .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.59rem;
}
.ins_newCon2 .center_box .content_info .right_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .content_info .right_box .item_box .item .img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_newCon2 .center_box .content_info .right_box .item_box .item .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .content_info .right_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .content_info .right_box .item_box .item .word .t1 {
  margin-top: 0.24rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .content_info .right_box .item_box .item .word .t2 {
  font-family: "DIN";
  margin-top: 0.09rem;
  color: #999999;
}
.ins_newCon2 .center_box .content_info .right_box .item_box .item:hover .img img {
  transform: scale(1.05);
}
.ins_newCon2 .center_box .content_info .right_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .content_info .left_box .cont2 {
    display: none;
  }
  .ins_newCon2 .center_box .content_info .left_box .cont0 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
  }
  .ins_newCon2 .center_box .content_info .right_box {
    display: none;
  }
}
.ins_resourceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}
.ins_resourceCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .left_box {
  width: 21.3%;
  height: 100%;
  position: sticky;
  top: calc(var(--header-height) + 0.3rem);
}
.ins_resourceCon1 .center_box .left_box .content {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  border: 1px solid #0000001A;
  padding: 0 0.3rem;
}
.ins_resourceCon1 .center_box .left_box .content .t1 {
  width: 100%;
  height: auto;
  padding: 0.34rem 0;
  border-bottom: 1px solid #0000001A;
  font-weight: 500;
}
.ins_resourceCon1 .center_box .left_box .content .item_box {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .left_box .content .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.28rem 0;
  font-size: var(--font18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px dashed #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_resourceCon1 .center_box .left_box .content .item_box .item img {
  width: 0.23rem;
  min-width: 0.15rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .left_box .content .item_box .item:last-child {
  border-bottom: 0;
}
.ins_resourceCon1 .center_box .left_box .content .item_box .item:hover {
  color: var(--active_color);
}
.ins_resourceCon1 .center_box .left_box .content .item_box .item.active {
  color: var(--active_color);
  font-weight: 500;
}
.ins_resourceCon1 .center_box .left_box .content .item_box .item.active img {
  transform: translateX(0);
  opacity: 1;
}
.ins_resourceCon1 .center_box .right_box {
  width: 77%;
}
.ins_resourceCon1 .center_box .right_box .idx_laypage {
  width: 100%;
  height: auto;
  margin-top: 0.61rem;
}
.ins_resourceCon1 .center_box .right_box .content1 {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box {
  width: 100%;
  height: auto;
  gap: 0.1rem;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item {
  width: 100%;
  height: auto;
  background: #F9F9F9;
  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;
  position: relative;
  z-index: 1;
  padding: 0 0.3rem;
  border-radius: 0.1rem;
  border: 1px solid #F9F9F9;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.37rem 0;
  min-height: 2rem;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item .word_box .t1 {
  color: #333333;
  font-weight: 500;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item .word_box .t2 {
  color: #999999;
  margin-top: 0.18rem;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item .download {
  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;
  border-top: 1px solid #0000001A;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item .download .word {
  width: fit-content;
  color: #999999;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item .download .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.09rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item .download .icon img {
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item .bgimg {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.86rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item:hover {
  border-color: var(--active_color);
  background: #003C9508;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item:hover .bgimg {
  opacity: 1;
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item:hover .download .icon {
  color: var(--active_color);
}
.ins_resourceCon1 .center_box .right_box .content1 .item_box .item:hover .download .icon img {
  filter: unset;
}
.ins_resourceCon1 .center_box .right_box .content2 {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box {
  width: 100%;
  height: auto;
  gap: 0.1rem;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.1rem;
  background: #F9F9F9;
  border-radius: 0.1rem;
  padding-bottom: 0;
  cursor: pointer;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
  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_resourceCon1 .center_box .right_box .content2 .item_box .item .img .icon {
  width: 0.6rem;
  height: 0.52rem;
  position: absolute;
  z-index: 5;
  background: #FFFFFF4D;
  mask-image: url(../images/icon11.png);
  backdrop-filter: blur(10px);
  mask-size: 100% 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item .img .icon img {
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item .img .pb {
  padding-bottom: 63%;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item .word {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 0.34rem 0;
  font-size: var(--font20);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item:hover .img .pb .ab img {
  transform: scale(1.06);
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item:hover .img .icon {
  background: #FFFFFF;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item:hover .img .icon img {
  filter: unset;
}
.ins_resourceCon1 .center_box .right_box .content2 .item_box .item:hover .word {
  color: var(--active_color);
}
.ins_resourceCon1 .center_box .right_box .content3 {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .right_box .content3 .item_box {
  width: 100%;
  height: auto;
  gap: 0.57rem 0.24rem;
}
.ins_resourceCon1 .center_box .right_box .content3 .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  padding-bottom: 0;
  cursor: pointer;
}
.ins_resourceCon1 .center_box .right_box .content3 .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  overflow: hidden;
  background: #F9F9F9;
}
.ins_resourceCon1 .center_box .right_box .content3 .item_box .item .img .pb {
  padding-bottom: 91.5%;
}
.ins_resourceCon1 .center_box .right_box .content3 .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_resourceCon1 .center_box .right_box .content3 .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content3 .item_box .item .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.21rem;
  font-size: var(--font20);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content3 .item_box .item:hover .img .pb .ab img {
  transform: scale(1.06);
}
.ins_resourceCon1 .center_box .right_box .content3 .item_box .item:hover .img .icon {
  background: #FFFFFF;
}
.ins_resourceCon1 .center_box .right_box .content3 .item_box .item:hover .img .icon img {
  filter: unset;
}
.ins_resourceCon1 .center_box .right_box .content3 .item_box .item:hover .word {
  color: var(--active_color);
}
.ins_resourceCon1 .center_box .right_box .content4 {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .right_box .content4 .item_box {
  width: 100%;
  height: auto;
  gap: 0.92rem 0.08rem;
}
.ins_resourceCon1 .center_box .right_box .content4 .item_box .item {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content4 .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .right_box .content4 .item_box .item .img .pb {
  padding-bottom: 107%;
}
.ins_resourceCon1 .center_box .right_box .content4 .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_resourceCon1 .center_box .right_box .content4 .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content4 .item_box .item:hover {
  transform: translateY(-0.1rem);
}
.ins_resourceCon1 .center_box .right_box .content4 .idx_laypage {
  margin-top: 1.8rem;
}
.ins_resourceCon1 .center_box .right_box .content5 {
  width: 100%;
  height: auto;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box {
  width: 100%;
  height: auto;
  gap: 0.1rem;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item {
  width: 100%;
  height: auto;
  background: #F9F9F9;
  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;
  position: relative;
  z-index: 1;
  padding: 0 0.3rem;
  border-radius: 0.1rem;
  border: 1px solid #F9F9F9;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.37rem 0;
  min-height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 0.4rem;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .word_box .word {
  width: 60%;
  height: auto;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .word_box .word .t1 {
  color: #333333;
  font-weight: 500;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .word_box .word .t2 {
  color: #999999;
  margin-top: 0.18rem;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .word_box .img {
  width: 33%;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .word_box .img .pb {
  padding-bottom: 107%;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .download {
  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;
  border-top: 1px solid #0000001A;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .download .word {
  width: fit-content;
  color: #999999;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .download .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.09rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item .download .icon img {
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item:hover {
  border-color: var(--active_color);
  background: #003C9508;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item:hover .bgimg {
  opacity: 1;
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item:hover .download .icon {
  color: var(--active_color);
}
.ins_resourceCon1 .center_box .right_box .content5 .item_box .item:hover .download .icon img {
  filter: unset;
}
@media (max-width:990px) {
  .ins_resourceCon1 .center_box .left_box {
    display: none;
  }
  .ins_resourceCon1 .center_box .right_box .content4 .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
