@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 {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
/* --------------------------------------------------------------- 全站内容区 */
html {
  font-size: calc(100vw/19.2);
}
@media (min-width: 1920px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1560px) {
  html {
    font-size: calc((100vw * 0.825) / 14.4);
  }
}
@media (max-width:990px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
.w1280 {
  width: 82.05128205%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width:990px) {
  .w1280 {
    width: 100%;
    padding: 0 0.4rem;
  }
}
.w1760 {
  width: 91.66666667%;
  max-width: 1760px;
  margin: 0 auto;
}
@media (max-width:990px) {
  .w1760 {
    width: 100%;
    padding: 0 0.4rem;
  }
}
.container,
.wrap {
  width: 100%;
  height: auto;
  padding: 0 0.4rem;
}
@media (max-width:990px) {
  .container,
  .wrap {
    width: 100%;
    padding: 0 0.4rem;
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul.swiper-wrapper,
ol.swiper-slide,
li.swiper-slide {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
.ab img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: run3 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.imgVideo {
  width: 100%;
  height: auto;
}
.imgVideo img,
.imgVideo video {
  width: 100%;
  height: auto;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
:root {
  /* COLOR */
  --active_color: #000000;
  --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);
}
.CoFF {
  color: var(--color_fff);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "vivoSans";
  src: url("../fonts/vivoSans-ExtraLight.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "vivoSans";
  src: url("../fonts/vivoSans-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "vivoSans";
  src: url("../fonts/vivoSans-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "vivoSans";
  src: url("../fonts/vivoSans-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "vivoSans";
  src: url("../fonts/vivoSans-DemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "vivoSans";
  src: url("../fonts/vivoSans-Bold.ttf");
  font-weight: 700;
}
main {
  width: 100%;
  height: auto;
  --header-height: 0.68rem;
  font-size: var(--font16);
  color: #000000;
  font-family: "vivoSans";
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img,
.banner_img video {
  width: 100%;
  height: auto;
}
.banner_img img.wap,
.banner_img video.wap {
  min-height: 660px;
  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: 0.4rem;
    height: 0.04rem;
    border-radius: 100px;
    opacity: 1;
    background: #00000033;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .idxPageHide span::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    background: #000000;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    opacity: 1;
    width: 0.6rem;
  }
  .idxPageHide .swiper-pagination-bullet-active::after {
    width: 100%;
  }
}
/* --------------------------------------------------------------- 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.08rem;
}
.idxPageShow span {
  width: 0.64rem;
  height: 0.04rem;
  border-radius: 100px;
  opacity: 1;
  background: #FFFFFF33;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idxPageShow span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: #FFFFFF;
  left: 0;
  right: 0;
}
.idxPageShow .swiper-pagination-bullet-active {
  opacity: 1;
  width: 0.96rem;
}
.idxPageShow .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 5s linear;
}
.idxPageShow.bg00 span {
  background: #00000033;
}
.idxPageShow.bg00 span::after {
  background: #000;
}
@media (max-width:990px) {
  .idxPageShow span {
    width: 0.6rem;
  }
  .idxPageShow .swiper-pagination-bullet-active {
    width: 0.6rem;
  }
}
/* --------------------------------------------------------------- 盖上去蒙版 */
/* --------------------------------------------------------------- 吸顶 */
.grid_x2 {
  grid-column: span 2;
}
.grid_x3 {
  grid-column: span 3;
}
.grid_x4 {
  grid-column: span 4;
}
.grid_x5 {
  grid-column: span 5;
}
.grid_x6 {
  grid-column: span 6;
}
.grid_x7 {
  grid-column: span 7;
}
.grid_x8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid_x2,
  .grid_x3,
  .grid_x4,
  .grid_x5,
  .grid_x6,
  .grid_x7,
  .grid_x8 {
    grid-column: unset;
  }
}
.grid_y2 {
  grid-column: span 2;
}
.grid_y3 {
  grid-column: span 3;
}
.grid_y4 {
  grid-column: span 4;
}
.grid_y5 {
  grid-column: span 5;
}
.grid_y6 {
  grid-column: span 6;
}
.grid_y7 {
  grid-column: span 7;
}
.grid_y8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid_y2,
  .grid_y3,
  .grid_y4,
  .grid_y5,
  .grid_y6,
  .grid_y7,
  .grid_y8 {
    grid-column: unset;
  }
}
.grid1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s 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;
}
.imgScale img {
  transform: scale(1.5);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
  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;
}
* {
  scrollbar-color: #c2c2c2 #00000000;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.1rem;
  padding: 0;
  padding-left: 0;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div {
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
  line-height: 1;
  margin-top: 0;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: underline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.14rem;
  height: 0.14rem;
  min-width: 10px;
  min-height: 10px;
  position: absolute;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #999999;
  left: 0;
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 0;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
  content: "";
  width: 60%;
  height: 60%;
  background: var(--active_color);
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
}
.layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.layui_item .layui-form-checkbox > div {
  white-space: unset;
  text-overflow: unset;
}
.layui_item .layui-form-checkbox > div a {
  display: contents;
}
.share_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  margin-top: 0.88rem;
}
.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.32rem;
  height: 0.32rem;
  min-width: 25px;
  min-height: 25px;
  font-size: 0;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.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.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  box-shadow: 0 0 10px 1px #8a8a8a1a;
}
.share_box .one:hover .imgs {
  opacity: 1;
  visibility: visible;
}
.share_box .one:hover .icon img {
  filter: brightness(0) invert(0);
}
.img_tX {
  overflow: hidden;
}
.img_tX img {
  transform: translateX(-100%);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.img_tX.active img {
  transform: translateX(0);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.img_tY {
  overflow: hidden;
}
.img_tY img {
  transform: translateY(-100%);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.img_tY.active img {
  transform: translateY(0);
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.img_FFF {
  position: relative;
  z-index: 1;
}
.img_FFF::after {
  content: '';
  position: absolute;
  z-index: 8;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
  top: 0;
  left: 0;
}
.img_FFF::before {
  content: '';
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
  top: 0;
  left: 0;
}
.img_FFF.active::after {
  width: 0;
  opacity: 0.3;
  -webkit-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
.img_FFF.active::before {
  width: 0;
  opacity: 0.2;
  -webkit-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}
.swiper_select {
  width: 100%;
  margin: 0 auto;
  margin-top: 0.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;
  overflow: hidden;
}
.swiper_select ul {
  width: fit-content;
  margin: 0 auto;
  max-width: 100%;
}
.swiper_select ul li {
  width: fit-content;
}
.swiper_select ul li .centerInfo {
  padding: 0.16rem 0.4rem;
  border: 1px solid #CCCCCC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.08rem;
  font-size: var(--font16);
  cursor: pointer;
}
.swiper_select ul li:last-child {
  margin-right: 0 !important;
}
.swiper_select ul li.active .centerInfo {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
.swiper_line {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 1;
  background: #00000033;
  display: flex;
  margin-top: 0.64rem;
}
.swiper_line span {
  height: 2px !important;
  background: #000000 !important;
  top: -1px !important;
  border-radius: 100px;
  overflow: hidden;
}
.banner_nav {
  width: 100%;
  height: auto;
  position: absolute;
  top: 1.36rem;
  left: 0;
  z-index: 5;
}
.ins_navbox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.05rem;
  font-weight: 300;
}
.ins_navbox .icon {
  font-size: var(--font16);
  color: #00000066;
}
.ins_navbox .one {
  font-size: var(--font16);
  color: #00000066;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_navbox .one.active {
  color: #000;
}
.ins_navbox .one:hover {
  opacity: 1;
  color: #000 !important;
}
@media (max-width:990px) {
  .ins_navbox {
    display: none;
  }
}
.ins_navbox.coFFF .icon {
  color: #FFFFFF99;
}
.ins_navbox.coFFF .one {
  color: #FFFFFF99;
}
.ins_navbox.coFFF .one.active {
  color: #FFFFFF !important;
}
.swiper_switch {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
@media (max-width:990px) {
  .swiper_switch {
    display: none;
  }
}
.swiper_icon {
  width: 0.56rem;
  height: 0.4rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
  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;
  overflow: hidden;
  border: 1px solid #00000033;
  position: relative;
  z-index: 1;
}
.swiper_icon::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  background: var(--active_color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: 100px;
  bottom: 0;
}
.swiper_icon i {
  color: #000000D1;
  font-size: var(--font18);
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.swiper_icon img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}
.swiper_icon:hover {
  border-color: #FFFFFF00 !important;
}
.swiper_icon:hover img {
  filter: unset;
}
.swiper_icon:hover i {
  color: #FFF !important;
}
.swiper_icon:hover::after {
  width: 100%;
  height: 100%;
}
.swiper_icon.bgFFF {
  border-color: #FFFFFF4D;
}
.swiper_icon.bgFFF i {
  color: #FFFFFFD1;
}
.swiper_icon.bgFFF::after {
  background: #FFFFFF;
}
.swiper_icon.bgFFF:hover i {
  color: #000 !important;
}
@media (max-width:990px) {
  .swiper_icon {
    display: none;
  }
}
/* --------------------------------------------------------------- wow */
.wowUp,
.wowRight,
.wowLeft {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
/* --------------------------------------------------------------- 新增公共组件 */
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  line-height: 1.5;
}
.newContent > p {
  color: #666666;
}
.newContent p {
  min-height: 0.5em;
}
.newContent a {
  display: contents;
  color: var(--active_color);
}
.newContent img {
  width: unset !important;
  height: unset !important;
}
.idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
}
.idx_more .more {
  width: fit-content;
  padding: 0.11rem 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.16rem;
  color: #000000B2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-size: var(--font16);
}
.idx_more .more i {
  font-size: var(--font18);
  transform: rotate(45deg);
}
@media (max-width:990px) {
  .idx_more .more i {
    transform: rotate(45deg) scale(0.8);
  }
}
.idx_more .more::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 0px;
  background: var(--active_color);
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 1000px;
  bottom: 0;
}
.idx_more .more:hover {
  border-color: #00000000;
  color: #FFFFFF !important;
}
.idx_more .more:hover::after {
  height: 100%;
  width: 100%;
}
.idx_more .more.coFF {
  border-color: #FFFFFFB2;
  color: #FFFFFFB2;
}
.idx_more .more.coFF:hover {
  border-color: #FFFFFF00;
  color: #000000 !important;
}
.idx_more .more.coFF:hover::after {
  background: #FFFFFF;
}
.idx_more .more.trs0 i {
  transform: rotate(0);
  font-size: var(--font18);
}
@media (max-width:990px) {
  .idx_more .more.trs0 i {
    transform: rotate(0) scale(0.8);
  }
}
.idx_more2 {
  width: fit-content;
}
.idx_more2 .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
  gap: 0.12rem;
  color: #FFFFFF;
  cursor: pointer;
}
.idx_more2 .more span {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_more2 .more i {
  font-size: var(--font18);
  transform: rotate(45deg);
}
.idx_more2 .more.bg00 {
  color: #000;
}
.idx_more2 .more:hover span {
  text-decoration: underline;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 300;
}
.idx_title .t2 {
  font-weight: 700;
  margin-top: 0.16rem;
}
.idx_title .t3 {
  margin-top: 0.16rem;
}
.idx_title .t4 {
  color: #0000008F;
  margin-top: 0.24rem;
}
.idx_title .t5 {
  margin-top: 0.16rem;
  color: #0000008F;
}
.idx_title .t5 a {
  display: inline-block;
  color: #000;
  text-decoration: underline;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_title .t5 a:hover {
  opacity: 0.8;
}
.idx_title .idx_more {
  margin-top: 0.32rem;
}
.idx_title.tc .idx_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_title .mtop0 {
  margin-top: 0;
}
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F1F2F4;
}
.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;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.64rem;
}
.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: 300;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t2 {
  font-weight: 700;
  margin-top: 0.16rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t3 {
  margin-top: 0.16rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  margin-top: 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;
}
.idx_homeCon1 .swiper_box ul li .banner_img {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .banner_img img,
.idx_homeCon1 .swiper_box ul li .banner_img video {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .idxPageShow {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.48rem;
  left: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon1 .swiper_icon {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}
.idx_homeCon1 .swiper_icon.prev {
  left: 0.16rem;
}
.idx_homeCon1 .swiper_icon.next {
  right: 0.16rem;
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.12rem;
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.12rem;
}
.idx_homeCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .center_box .item_box .item .idx_title {
  width: 80%;
  height: auto;
  position: absolute;
  top: 0.64rem;
  z-index: 5;
}
.idx_homeCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon2 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .idx_homeCon2 .center_box .item_box .item .img img {
    height: 660px;
    object-fit: cover;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.48rem;
  padding-bottom: 1.6rem;
}
.idx_homeCon3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.64rem;
}
.idx_homeCon3 .center_box .content .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  padding: 0.48rem;
  text-align: center;
  z-index: 2;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.08rem;
  font-weight: 300;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .time img {
  width: 0.26rem;
  height: 0.26rem;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .t1 {
  margin-top: 0.16rem;
  font-weight: 600;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_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.32rem;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  transform: scale(1.2);
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0.6rem;
  }
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0;
    text-align: start;
    color: #000;
  }
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .time {
    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;
  }
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .time img {
    filter: brightness(0) invert(0);
  }
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .idx_more {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .idx_more .more {
    border-color: #000000B2;
    color: #000000B2;
  }
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .idx_more .more::after {
    background: #000000;
  }
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .img {
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .img img {
    transform: scale(1) !important;
  }
  .idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li .centerInfo .wowUpS {
    animation: unset !important;
    opacity: 1 !important;
  }
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_box ul li.swiper-slide-active .img img {
  transform: scale(1);
}
.idx_homeCon3 .center_box .content .swiper_info .idxPageShow {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.48rem;
  left: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_icon {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_icon.prev {
  right: calc(100% + 0.56rem);
}
.idx_homeCon3 .center_box .content .swiper_info .swiper_icon.next {
  left: calc(100% + 0.56rem);
}
.idx_homeCon3 .center_box .content .swiper_item {
  width: 100%;
  margin: 0 auto;
  margin-top: 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;
  overflow: hidden;
}
.idx_homeCon3 .center_box .content .swiper_item ul {
  width: fit-content;
  margin: 0 auto;
  max-width: 100%;
}
.idx_homeCon3 .center_box .content .swiper_item ul li {
  width: fit-content;
  margin-right: 0.56rem;
}
.idx_homeCon3 .center_box .content .swiper_item ul li .centerInfo {
  width: fit-content;
  height: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
}
.idx_homeCon3 .center_box .content .swiper_item ul li .centerInfo img {
  filter: grayscale(100%);
  opacity: 0.3;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .content .swiper_item ul li .centerInfo {
    height: 0.4rem;
  }
}
.idx_homeCon3 .center_box .content .swiper_item ul li:last-child {
  margin-right: 0 !important;
}
.idx_homeCon3 .center_box .content .swiper_item ul li.active .centerInfo img {
  filter: unset;
  opacity: 1;
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .content .swiper_item {
    margin-top: 1rem;
  }
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .content {
    margin-top: 1rem;
  }
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  background: #F1F2F4;
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  overflow: hidden;
}
.idx_homeCon4 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .content .swiper_box ul li {
  width: fit-content;
  height: auto;
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 100%;
  min-height: 2.56rem;
  padding: 0.32rem;
  font-size: var(--font20);
  line-height: 1.4;
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: calc(3em * 1.4);
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
    height: auto;
    -webkit-line-clamp: unset;
  }
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo .people {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  border-top: 1px solid #00000014;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo .people .icon {
  width: 0.56rem;
  height: 0.56rem;
  flex-shrink: 0;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo .people .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo .people .name {
  width: fit-content;
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo .people .name .t1 {
  font-weight: 600;
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo .people .name .t2 {
  margin-top: 0.08rem;
  font-weight: 300;
  color: #0000008F;
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo:hover {
  box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.09);
}
.idx_homeCon4 .center_box .content .swiper_box ul li .centerInfo:hover .word .t1 {
  -webkit-line-clamp: unset;
  height: 100%;
}
.idx_homeCon4 .center_box .content .idxPageShow {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .content {
    overflow: unset;
  }
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.48rem;
  padding-bottom: 1.6rem;
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.idx_homeCon5 .center_box .swiper_box .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_homeCon5 .center_box .swiper_box .centerInfo .word {
  width: 80%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.32rem;
  z-index: 2;
  color: #FFFFFF;
}
.idx_homeCon5 .center_box .swiper_box .centerInfo .word .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  font-size: var(--font16);
  font-weight: 300;
}
.idx_homeCon5 .center_box .swiper_box .centerInfo .word .time img {
  width: 0.26rem;
  height: 0.26rem;
}
.idx_homeCon5 .center_box .swiper_box .centerInfo .word .t1 {
  margin-top: 0.17rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx_homeCon5 .center_box .swiper_box .centerInfo .word .idx_more2 {
  margin-top: 0.2rem;
  display: none;
}
@media (max-width:990px) {
  .idx_homeCon5 .center_box .swiper_box .centerInfo .word .idx_more2 {
    display: block !important;
  }
}
.idx_homeCon5 .center_box .swiper_box .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon5 .center_box .swiper_box .centerInfo .img .pb {
  padding-bottom: 66%;
}
.idx_homeCon5 .center_box .swiper_box .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon5 .center_box .swiper_switch {
  margin-top: 0.48rem;
  gap: 0.08rem;
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .t1 {
  color: #FFF;
  font-weight: 600;
}
.ins_bannerCon1 .content .center_box .t2 {
  margin-top: 0.24rem;
  font-weight: 300;
  color: #FFFFFF8F;
}
@media (max-width:990px) {
  .ins_bannerCon1 .content .center_box .t2 p {
    display: contents;
  }
}
.ins_bannerCon1 .content.topinfo {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-top: 2.44rem;
}
.ins_bannerCon1 .ins_navbox {
  width: 100%;
  height: auto;
  position: absolute;
  top: 1.16rem;
  z-index: 5;
  padding-left: 0.16rem;
}
.ins_servicesCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
}
.ins_servicesCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_servicesCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  gap: 0.16rem;
}
.ins_servicesCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.48rem;
  border-radius: 0.16rem;
  background: #F1F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_servicesCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_servicesCon1 .center_box .item_box .item .word .t1 {
  font-weight: 600;
}
.ins_servicesCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #0000008F;
}
.ins_servicesCon1 .center_box .item_box .item .icon {
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.91rem;
}
.ins_servicesCon1 .center_box .item_box .item:hover {
  box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.09);
}
.ins_servicesCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_servicesCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_servicesCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  gap: 0.16rem;
}
.ins_servicesCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.8rem 0.4rem;
  border-radius: 0.16rem;
  background: #F1F2F4;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  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_servicesCon2 .center_box .item_box .item .icon {
  width: 0.8rem;
  height: 0.8rem;
}
.ins_servicesCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_servicesCon2 .center_box .item_box .item .word .t1 {
  font-weight: 600;
}
.ins_servicesCon2 .center_box .item_box .item .word .idx_more2 {
  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.24rem;
}
.ins_servicesCon2 .center_box .item_box .item:hover {
  box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.09);
}
.ins_servicesCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_servicesCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_servicesCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.16rem;
  margin-top: 0.64rem;
}
.ins_servicesCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F1F2F4;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_servicesCon3 .center_box .item_box .item .left_box {
  width: 49.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;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.4rem;
}
.ins_servicesCon3 .center_box .item_box .item .left_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_servicesCon3 .center_box .item_box .item .left_box .word .t1 {
  font-weight: 600;
}
.ins_servicesCon3 .center_box .item_box .item .left_box .word .t2 {
  margin-top: 0.16rem;
  color: #0000008F;
}
.ins_servicesCon3 .center_box .item_box .item .left_box .word .idx_more2 {
  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.32rem;
}
.ins_servicesCon3 .center_box .item_box .item .left_box .icon {
  width: 0.8rem;
  height: 0.8rem;
}
.ins_servicesCon3 .center_box .item_box .item .right_box {
  width: 50.5%;
}
.ins_servicesCon3 .center_box .item_box .item .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_servicesCon3 .center_box .item_box .item .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_servicesCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.21rem;
  padding-bottom: 1.6rem;
  background: #F1F2F4;
}
.ins_servicesCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_servicesCon4 .center_box .idx_title .t4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_servicesCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_servicesCon4 .center_box .content .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
  padding: 0.8rem;
  padding-bottom: 1.18rem;
}
.ins_servicesCon4 .center_box .content .content_info .word1 {
  width: 100%;
  height: auto;
}
.ins_servicesCon4 .center_box .content .content_info .word1 .t1 {
  color: #000000;
}
.ins_servicesCon4 .center_box .content .content_info .word1 .t1 p {
  color: #000000;
}
.ins_servicesCon4 .center_box .content .content_info .word1 .t2 {
  margin-top: 0.2rem;
}
.ins_servicesCon4 .center_box .content .content_info h2 {
  font-size: var(--font32);
  font-weight: 700;
}
.ins_servicesCon4 .center_box .content .content_info h3 {
  margin-top: 0.64rem;
  margin-bottom: 0.32rem;
  font-weight: 700;
  font-size: var(--font24);
}
.ins_servicesCon4 .center_box .content .content_info h4 {
  margin-top: 0.32rem;
  margin-bottom: 0.16rem;
  font-size: var(--font20);
}
.ins_servicesCon4 .center_box .content .content_info p {
  font-size: var(--font16);
  color: #0000008F;
  min-height: 0.8em;
  line-height: 1.5;
}
.ins_servicesCon4 .center_box .content .content_info a {
  display: inline-block;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_servicesCon4 .center_box .content .content_info a:hover {
  text-decoration: underline;
}
.ins_servicesCon4 .center_box .content .content_info .table1 {
  width: 100%;
  height: auto;
  background: #F1F2F4;
  border-radius: 0.16rem;
  padding: 0.08rem;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0.32rem;
  margin-bottom: 0.32rem;
  overflow: auto;
}
.ins_servicesCon4 .center_box .content .content_info .table1 table {
  width: 100%;
  height: auto;
  table-layout: fixed;
  min-width: 800px;
}
.ins_servicesCon4 .center_box .content .content_info .table1 table thead {
  width: 100%;
  height: auto;
  background: #F1F2F4;
}
.ins_servicesCon4 .center_box .content .content_info .table1 table thead tr td {
  font-weight: 600;
}
.ins_servicesCon4 .center_box .content .content_info .table1 table tbody {
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_servicesCon4 .center_box .content .content_info .table1 table tbody tr td {
  color: #0000008F;
}
.ins_servicesCon4 .center_box .content .content_info .table1 table tbody tr td:first-child {
  color: #000;
  font-weight: 600;
}
.ins_servicesCon4 .center_box .content .content_info .table1 table tr td {
  padding: 0.32rem;
  text-align: center;
  border: 1px solid #0000001A;
  border-bottom: unset;
  border-right: 0;
}
.ins_servicesCon4 .center_box .content .content_info .table1 table tr td:first-child {
  border-left: 0;
}
.ins_servicesCon4 .center_box .content .content_info .table1 table tr:first-child td {
  border-top: unset;
}
@media (max-width:990px) {
  .ins_servicesCon4 .center_box .content .content_info {
    padding: 0.4rem;
  }
}
.ins_servicesCon4 .ins_navbox {
  width: 100%;
  height: auto;
  padding-left: 0.16rem;
}
.ins_servicesCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_servicesCon5 .content1 {
  width: 100%;
  height: auto;
  padding-top: 1.21rem;
  padding-bottom: 0.8rem;
  background: #F1F2F4;
}
.ins_servicesCon5 .content1 .ins_navbox {
  width: 100%;
  height: auto;
  padding-left: 0.16rem;
}
.ins_servicesCon5 .content1 .idx_title {
  margin-top: 0.69rem;
}
.ins_servicesCon5 .content2 {
  width: 100%;
  height: auto;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_servicesCon5 .content2 .item_box {
  width: 100%;
  height: auto;
  gap: 0.16rem;
}
.ins_servicesCon5 .content2 .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #F1F2F4;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_servicesCon5 .content2 .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_servicesCon5 .content2 .item_box .item .img .pb {
  padding-bottom: 56%;
}
.ins_servicesCon5 .content2 .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_servicesCon5 .content2 .item_box .item .img .icon {
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
  z-index: 5;
  padding: 0.06rem 0.2rem;
  border-radius: 100px;
  border-radius: 60px;
  border: 0.2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(28.20000076px);
  font-size: var(--font14);
  color: #000;
}
.ins_servicesCon5 .content2 .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_servicesCon5 .content2 .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_servicesCon5 .content2 .item_box .item .word_box .word .t1 {
  font-weight: 600;
}
.ins_servicesCon5 .content2 .item_box .item .word_box .word .t2 {
  margin-top: 0.13rem;
  font-weight: 300;
}
.ins_servicesCon5 .content2 .item_box .item .word_box .adrr {
  width: 100%;
  height: auto;
  margin-top: 0.83rem;
  color: #0000008F;
}
@media (max-width:990px) {
  .ins_servicesCon5 .content2 .item_box .item .word_box {
    padding: 0.64rem 0.32rem;
  }
  .ins_servicesCon5 .content2 .item_box .item .word_box .word .t2 {
    margin-top: 0.24rem;
  }
  .ins_servicesCon5 .content2 .item_box .item .word_box .adrr {
    margin-top: 0.48rem;
  }
}
.ins_servicesCon5 .content2 .item_box .item:hover {
  box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.09);
}
.ins_servicesCon5 .content2 .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_servicesCon5 .content2 .item_box2 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  gap: 0.16rem;
}
.ins_servicesCon5 .content2 .item_box2 .item {
  width: 100%;
  height: auto;
  background: #F1F2F4;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_servicesCon5 .content2 .item_box2 .item .img {
  width: 100%;
  height: auto;
}
.ins_servicesCon5 .content2 .item_box2 .item .img .pb {
  padding-bottom: 56%;
}
.ins_servicesCon5 .content2 .item_box2 .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_servicesCon5 .content2 .item_box2 .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_servicesCon5 .content2 .item_box2 .item .word .t1 {
  width: 100%;
  height: calc(2em * 1.25);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 600;
}
.ins_servicesCon5 .content2 .item_box2 .item .word .t2 {
  width: 100%;
  height: calc(2em * 1.25);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #0000008F;
  margin-top: 0.16rem;
}
.ins_servicesCon5 .content2 .item_box2 .item .word .t3 {
  margin-top: 0.53rem;
  color: #0000008F;
  font-weight: 300;
}
.ins_servicesCon5 .content2 .item_box2 .item:hover {
  box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.09);
}
.ins_servicesCon5 .content2 .item_box2 .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_servicesCon5 .content2 .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.64rem;
}
.ins_servicesCon5 .content2 .idx_more .more i {
  transform: rotate(90deg);
  font-size: var(--font14);
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.16rem;
}
.ins_contactCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.52rem;
  border-radius: 0.16rem;
  background: #F1F2F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
}
.ins_contactCon1 .center_box .item_box .item .icon {
  width: 0.8rem;
  height: 0.8rem;
}
.ins_contactCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_contactCon1 .center_box .item_box .item .word .t1 {
  font-weight: 600;
}
.ins_contactCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #0000008F;
}
.ins_contactCon1 .center_box .item_box .item .word .idx_more2 {
  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.32rem;
}
.ins_contactCon1 .center_box .item_box .item .word .email {
  width: fit-content;
  margin-top: 0.32rem;
}
.ins_contactCon1 .center_box .item_box .item:hover {
  box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.09);
}
.ins_contactCon1 .center_box .item_box .item.grid_x3 {
  padding: 0.64rem;
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.21rem;
  padding-bottom: 1.6rem;
  background: #F1F2F4;
}
.ins_newCon1 .content {
  width: 100%;
  height: auto;
  margin-top: 1.09rem;
}
.ins_newCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .content .center_box .idx_title {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon1 .content .center_box .idx_title .t2 {
  width: fit-content;
}
.ins_newCon1 .content .center_box .idx_title .idx_more {
  width: fit-content;
  margin-top: 0;
}
.ins_newCon1 .content .center_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_newCon1 .content .center_box .content1 .left_box {
  width: 60.8%;
  position: relative;
  z-index: 1;
}
.ins_newCon1 .content .center_box .content1 .left_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .content .center_box .content1 .left_box .swiper_box ul li {
  width: fit-content;
}
.ins_newCon1 .content .center_box .content1 .left_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newCon1 .content .center_box .content1 .left_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 56%;
}
.ins_newCon1 .content .center_box .content1 .left_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon1 .content .center_box .content1 .left_box .swiper_box ul li .centerInfo:hover .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon1 .content .center_box .content1 .left_box .idxPageShow {
  width: 100%;
  height: auto;
  bottom: 0.32rem;
  position: absolute;
  z-index: 6;
}
.ins_newCon1 .content .center_box .content1 .right_box {
  width: 36.8%;
  height: auto;
}
.ins_newCon1 .content .center_box .content1 .right_box .item_box {
  width: 100%;
  height: 100%;
  gap: 0.16rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.ins_newCon1 .content .center_box .content1 .right_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  padding: 0.32rem;
  background: #FFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_newCon1 .content .center_box .content1 .right_box .item_box .item .t1 {
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_newCon1 .content .center_box .content1 .right_box .item_box .item .t2 {
  margin-top: 0.24rem;
  color: #0A0A0AB2;
  font-weight: 300;
}
.ins_newCon1 .content .center_box .content1 .right_box .item_box .item:hover {
  box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.09);
}
@media (max-width:990px) {
  .ins_newCon1 .content .center_box .content1 .right_box .item_box .item {
    padding: 0.6rem 0.32rem;
  }
}
.ins_newCon1 .ins_navbox {
  width: 100%;
  height: auto;
  padding-left: 0.16rem;
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .idx_title {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon2 .center_box .idx_title .t2 {
  width: fit-content;
}
.ins_newCon2 .center_box .idx_title .idx_more {
  width: fit-content;
  margin-top: 0;
}
.ins_newCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  gap: 0.16rem;
}
.ins_newCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F1F2F4;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_newCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 56%;
}
.ins_newCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_newCon2 .center_box .item_box .item .word .t1 {
  width: 100%;
  height: calc(2em * 1.25);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 600;
}
.ins_newCon2 .center_box .item_box .item .word .t2 {
  width: 100%;
  height: calc(2em * 1.25);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #0000008F;
  margin-top: 0.16rem;
}
.ins_newCon2 .center_box .item_box .item .word .t3 {
  margin-top: 0.53rem;
  color: #0000008F;
  font-weight: 300;
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .item_box .item .word {
    padding: 0.64rem 0.32rem;
  }
  .ins_newCon2 .center_box .item_box .item .word .t2 {
    margin-top: 0.24rem;
  }
  .ins_newCon2 .center_box .item_box .item .word .t3 {
    margin-top: 0.48rem;
  }
}
.ins_newCon2 .center_box .item_box .item:hover {
  box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.09);
}
.ins_newCon2 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_newCon3 .content1 {
  width: 100%;
  height: auto;
  padding-top: 1.21rem;
  padding-bottom: 0.8rem;
  background: #F1F2F4;
}
.ins_newCon3 .content1 .ins_navbox {
  width: 100%;
  height: auto;
  padding-left: 0.16rem;
}
.ins_newCon3 .content1 .idx_title {
  margin-top: 0.69rem;
}
.ins_newCon3 .content2 {
  width: 100%;
  height: auto;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_newCon3 .content2 .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.48rem;
}
.ins_newCon3 .content2 .list .one {
  font-size: var(--font16);
  position: relative;
  z-index: 1;
  padding-bottom: 0.1rem;
  color: #0000008F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_newCon3 .content2 .list .one::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 0;
  opacity: 0;
}
.ins_newCon3 .content2 .list .one.active {
  color: #000;
}
.ins_newCon3 .content2 .list .one.active::after {
  opacity: 1;
  width: 100%;
}
.ins_newCon3 .content2 .list .one:hover {
  color: #000;
}
.ins_newCon3 .content2 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  gap: 0.16rem;
}
.ins_newCon3 .content2 .item_box .item {
  width: 100%;
  height: auto;
  background: #F1F2F4;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_newCon3 .content2 .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_newCon3 .content2 .item_box .item .img .pb {
  padding-bottom: 56%;
}
.ins_newCon3 .content2 .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon3 .content2 .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_newCon3 .content2 .item_box .item .word .t1 {
  width: 100%;
  height: calc(2em * 1.25);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 600;
}
.ins_newCon3 .content2 .item_box .item .word .t2 {
  width: 100%;
  height: calc(2em * 1.25);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #0000008F;
  margin-top: 0.16rem;
}
.ins_newCon3 .content2 .item_box .item .word .t3 {
  margin-top: 0.53rem;
  color: #0000008F;
  font-weight: 300;
}
@media (max-width:990px) {
  .ins_newCon3 .content2 .item_box .item .word {
    padding: 0.64rem 0.32rem;
  }
  .ins_newCon3 .content2 .item_box .item .word .t2 {
    margin-top: 0.24rem;
  }
  .ins_newCon3 .content2 .item_box .item .word .t3 {
    margin-top: 0.48rem;
  }
}
.ins_newCon3 .content2 .item_box .item:hover {
  box-shadow: 0 4px 5.5px 0 rgba(0, 0, 0, 0.09);
}
.ins_newCon3 .content2 .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon3 .content2 .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.64rem;
}
.ins_newCon3 .content2 .idx_more .more i {
  transform: rotate(90deg);
  font-size: var(--font14);
}
.ins_newCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.21rem;
  padding-bottom: 0.8rem;
  background: #F1F2F4;
}
.ins_newCon4 .ins_navbox {
  width: 100%;
  height: auto;
  padding-left: 0.16rem;
}
.ins_newCon4 .content_new {
  width: 100%;
  height: auto;
}
.ins_newCon4 .content_new .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon4 .content_new .center_box .name_box {
  width: 100%;
  height: auto;
  margin-top: 0.69rem;
}
.ins_newCon4 .content_new .center_box .name_box .t1 {
  color: #0000008F;
}
.ins_newCon4 .content_new .center_box .name_box .t2 {
  margin-top: 0.16rem;
}
.ins_newCon4 .content_new .center_box .name_box .t3 {
  margin-top: 0.4rem;
  color: #0000008F;
  display: -webkit-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.32rem;
}
.ins_newCon4 .content_new .center_box .name_box .t3 img {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
}
.ins_newCon4 .content_new .center_box .contentNew {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_newCon4 .content_new .center_box .contentNew h2 {
  font-size: var(--font32);
  font-weight: 700;
  margin-bottom: 0.16rem;
}
.ins_newCon4 .content_new .center_box .contentNew h3 {
  margin-top: 0.64rem;
  margin-bottom: 0.32rem;
  font-weight: 700;
  font-size: var(--font24);
}
.ins_newCon4 .content_new .center_box .contentNew h4 {
  margin-top: 0.32rem;
  margin-bottom: 0.16rem;
  font-size: var(--font20);
}
.ins_newCon4 .content_new .center_box .contentNew img {
  height: auto !important;
  border-radius: 0.16rem;
  overflow: hidden;
  margin: 0.48rem 0;
}
.ins_newCon4 .content_new .center_box .contentNew p {
  font-size: var(--font16);
  color: #0000008F;
  min-height: 0.8em;
  margin: 0.16rem 0;
  line-height: 1.5;
}
.ins_newCon4 .content_new .center_box .contentNew a {
  display: inline-block;
  color: #000000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_newCon4 .content_new .center_box .contentNew a:hover {
  text-decoration: underline;
}
.ins_newCon4 .content_new .center_box .contentNew ul {
  list-style: unset;
  padding-left: 0.2rem;
  margin-top: 0.16rem;
  margin-bottom: 0.6rem;
}
.ins_newCon4 .content_new .center_box .contentNew ul li {
  list-style: disc;
  font-size: var(--font16);
  color: #0000008F;
}
.ins_newCon4 .content_new .center_box .list {
  width: 100%;
  height: auto;
}
.wowFg {
  overflow: hidden;
}
.wowFg .write {
  opacity: 0;
  transform: translateX(0.2rem);
  display: inline-block;
}
@keyframes appear {
  0% {
    opacity: 0;
    transform: translateX(0.2rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.scrollY.active .write {
  animation: appear 0.8s forwards;
}
.scrollX.active .write {
  animation: appear 0.8s forwards;
}
.mrt0 {
  margin-top: 0 !important;
}
.ins_bannerCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon2 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_bannerCon2 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .content .center_box .t1 {
  color: #FFF;
  font-weight: 600;
}
.ins_bannerCon2 .content .center_box .t2 {
  margin-top: 0.24rem;
  font-weight: 300;
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_bannerCon2 .content .center_box .t2 p {
    display: contents;
  }
}
.ins_bannerCon2 .content .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_bannerCon2 .banner_img {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .banner_img img {
  width: 100%;
  height: auto;
}
.ins_title {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_title .t1 {
  color: #0000008F;
}
.ins_title .t2 {
  margin-top: 0.16rem;
  font-weight: 600;
}
.ins_title .t3 {
  margin-top: 0.32rem;
  color: #0000008F;
}
@media (max-width:990px) {
  .ins_title {
    width: 100% !important;
  }
}
.pb80 {
  padding-bottom: 0.8rem !important;
}
.pb160 {
  padding-bottom: 1.6rem;
}
.pt80 {
  padding-top: 0.8rem !important;
}
.pt160 {
  padding-top: 1.6rem;
}
.ins_productCon1 {
  width: 100%;
  height: 200vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon1 .mask_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(203deg, #888 -157.67%, #FFF 60.39%);
}
.ins_productCon1 .mask_box .center_box {
  width: 100%;
  height: 100vh;
  padding-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_productCon1 .mask_box .center_box .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon1 .mask_box .center_box .img_box .pb {
  padding-bottom: 50%;
}
.ins_productCon1 .mask_box .center_box .img_box .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_productCon1 .mask_box .center_box .img_box .pb .ab img {
  display: none;
}
.ins_productCon1 .mask_box .center_box .img_box .pb .ab img.active {
  display: block;
}
.ins_productCon1 .mask_box .center_box .img_box .word {
  width: 100%;
  height: auto;
  font-size: 4.8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0) 68.68%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  position: absolute;
  top: 0;
  z-index: -1;
  font-weight: 700;
}
@media (max-width:990px) {
  .ins_productCon1 .mask_box .center_box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 2rem;
  }
}
.ins_productCon2 {
  width: 100%;
  height: 150vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon2 .mask_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  --width: 60%;
  --height: auto;
  --opacity: 0;
  --radius: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon2 .mask_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000066;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0;
  left: 0;
  opacity: var(--opacity);
}
.ins_productCon2 .mask_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;
}
.ins_productCon2 .mask_box .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon2 .mask_box .content .center_box .idx_title {
  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;
  gap: 0.24rem;
}
.ins_productCon2 .mask_box .content .center_box .idx_title .t1 {
  color: #FFFFFFB2;
}
.ins_productCon2 .mask_box .content .center_box .idx_title .t2 {
  margin-top: 0;
}
.ins_productCon2 .mask_box .banner_img {
  width: var(--width);
  height: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.ins_productCon2 .mask_box .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon3 {
  width: 100%;
  height: 150vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon3 .mask_box {
  width: 100%;
  height: 100vh;
  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;
}
.ins_productCon3 .mask_box .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon3 .mask_box .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_productCon3 .mask_box .center_box .swiper_box ul li {
  width: fit-content;
  height: auto;
}
.ins_productCon3 .mask_box .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #F9FAFB;
}
.ins_productCon3 .mask_box .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon3 .mask_box .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 56%;
}
.ins_productCon3 .mask_box .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon3 .mask_box .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.4rem;
}
.ins_productCon3 .mask_box .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 300;
}
.ins_productCon3 .mask_box .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.12rem;
  font-weight: 600;
}
.ins_productCon3 .mask_box .center_box .swiper_box ul li .centerInfo .word .t3 {
  margin-top: 0.4rem;
  color: #0000008F;
}
@media (max-width:990px) {
  .ins_productCon3 {
    width: 100%;
    height: auto;
    padding: 1.6rem 0;
  }
  .ins_productCon3 .mask_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
}
.ins_productCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_productCon4 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
}
.ins_productCon4 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .content1 .top_box {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .content1 .top_box .left_box {
  width: 36%;
}
.ins_productCon4 .center_box .content1 .top_box .left_box .t1 {
  color: #0000008F;
}
.ins_productCon4 .center_box .content1 .top_box .left_box .t2 {
  margin-top: 0.16rem;
  font-weight: 600;
}
.ins_productCon4 .center_box .content1 .top_box .right_box {
  width: 38%;
  font-size: var(--font20);
  padding-top: calc(1em + 0.16rem);
}
.ins_productCon4 .center_box .content1 .top_box .right_box .t3 {
  color: #0000008F;
}
.ins_productCon4 .center_box .content1 .top_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.48rem;
  gap: 0.16rem;
}
.ins_productCon4 .center_box .content1 .top_box .item_box .item {
  width: 100%;
}
.ins_productCon4 .center_box .content1 .top_box .item_box .item .word {
  font-size: var(--font40);
  font-weight: 600;
}
.ins_productCon4 .center_box .content1 .top_box .item_box .item .word i {
  font-style: unset;
}
.ins_productCon4 .center_box .content1 .top_box .item_box .item .icon {
  font-size: var(--font16);
  color: #0000008F;
  margin-top: 0.08rem;
}
.ins_productCon4 .center_box .content1 .img {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon4 .center_box .content1 .img img {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .content2 {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon4 .center_box .content2 .left_box {
  width: 55%;
}
.ins_productCon4 .center_box .content2 .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon4 .center_box .content2 .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .content2 .right_box {
  width: 38%;
}
.ins_productCon4 .center_box .content2 .right_box .t1 {
  color: #0000008F;
}
.ins_productCon4 .center_box .content2 .right_box .t2 {
  margin-top: 0.16rem;
  font-weight: 600;
}
.ins_productCon4 .center_box .content2 .right_box .t3 {
  margin-top: 0.32rem;
  color: #0000008F;
}
.ins_productCon4 .center_box .content2 .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.8rem;
  gap: 0.16rem;
}
.ins_productCon4 .center_box .content2 .right_box .item_box .item {
  width: 100%;
}
.ins_productCon4 .center_box .content2 .right_box .item_box .item .word {
  font-size: var(--font40);
  font-weight: 600;
}
.ins_productCon4 .center_box .content2 .right_box .item_box .item .word i {
  font-style: unset;
}
.ins_productCon4 .center_box .content2 .right_box .item_box .item .icon {
  font-size: var(--font16);
  color: #0000008F;
  margin-top: 0.08rem;
}
@media (max-width:990px) {
  .ins_productCon4 .center_box .content2 .left_box {
    order: 1;
  }
  .ins_productCon4 .center_box .content2 .right_box {
    order: 2;
  }
}
.ins_productCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_productCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .ins_title {
  margin: 0 auto;
  width: 76%;
}
.ins_productCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_productCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon5 .center_box .swiper_box ul li .centerInfo img {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .swiper_switch {
  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.48rem;
}
.ins_productCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
}
.ins_productCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .ins_title {
  margin: 0 auto;
  width: 76%;
}
.ins_productCon6 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_productCon6 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon6 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
}
.ins_productCon6 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 600;
}
.ins_productCon6 .center_box .content .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.16rem;
  color: #0000008F;
}
.ins_productCon6 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon6 .center_box .content .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .content .item_box {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.64rem;
  position: relative;
  z-index: 1;
}
.ins_productCon6 .center_box .content .item_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.2;
  bottom: 0;
}
.ins_productCon6 .center_box .content .item_box .item {
  width: fit-content;
  padding-bottom: 0.24rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--font24);
  color: #0000008F;
}
.ins_productCon6 .center_box .content .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 0;
}
.ins_productCon6 .center_box .content .item_box .item.active {
  color: #000;
}
.ins_productCon6 .center_box .content .item_box .item.active::after {
  width: 100%;
}
.ins_productCon6 .center_box .content .list {
  width: 62%;
  height: auto;
  margin: 0 auto;
  margin-top: 0.32rem;
  text-align: center;
}
.ins_productCon6 .center_box .content .list .one {
  width: 100%;
  height: auto;
  display: none;
  color: #0000008F;
}
.ins_productCon6 .center_box .content .list .one.active {
  display: block;
}
.ins_productCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_productCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon7 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon7 .center_box .content .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon7 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 62%;
  height: auto;
  margin-top: 0.48rem;
  transform: translateX(50%);
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_productCon7 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 600;
}
.ins_productCon7 .center_box .content .swiper_box ul li .centerInfo .word .t2 {
  color: #0000008F;
  margin-top: 0.16rem;
}
@media (max-width:990px) {
  .ins_productCon7 .center_box .content .swiper_box ul li .centerInfo .word {
    width: 100%;
    height: auto;
  }
}
.ins_productCon7 .center_box .content .swiper_box ul li.swiper-slide-active .word {
  transform: translateX(0);
  opacity: 1;
}
.ins_productCon7 .center_box .content .swiper_switch {
  position: absolute;
  bottom: 0.48rem;
  right: 0;
  width: fit-content;
  z-index: 5;
}
.ins_productCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(201deg, #8399B0 -161.5%, #FCFCFC 75.86%);
}
.ins_productCon8 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.6rem;
}
.ins_productCon8 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon8 .content .center_box .idx_title .t4 {
  margin-top: 0.32rem;
  color: #000000B2;
}
.ins_productCon8 .img {
  width: 100%;
  height: auto;
}
.ins_productCon8 .img img {
  width: 100%;
  height: auto;
}
.ins_productCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2.85rem;
  padding-bottom: 2.85rem;
}
.ins_productCon9 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon9 .center_box .left_box {
  width: 31%;
}
.ins_productCon9 .center_box .left_box .t1 {
  font-weight: 600;
}
.ins_productCon9 .center_box .left_box .t2 {
  margin-top: 0.2rem;
  color: #000000B2;
}
.ins_productCon9 .center_box .left_box .idx_more {
  margin-top: 0.64rem;
}
.ins_productCon9 .center_box .right_box {
  width: 54%;
}
.ins_productCon9 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon9 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  background: linear-gradient(201deg, #8399B0 -161.5%, #FCFCFC 75.86%);
}
.ins_productCon10 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon10 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.08rem;
  margin-top: 0.4rem;
}
.ins_productCon10 .center_box .item_box .item {
  width: fit-content;
  padding: 0.11rem 0.24rem;
  border-radius: 100px;
  border: 1px solid #0000004D;
  color: #000000B2;
  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;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.ins_productCon10 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 0%;
  background: #000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 0;
  z-index: -1;
  border-radius: 100px;
}
.ins_productCon10 .center_box .item_box .item.active {
  color: #FFF;
  border-color: #000;
}
.ins_productCon10 .center_box .item_box .item.active::after {
  width: 100%;
  height: 100%;
}
.ins_productCon10 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon10 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon10 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon10 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 44%;
}
.ins_productCon10 .center_box .swiper_box ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_productCon11 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .idx_title .t4 a {
  display: inline-block;
  text-decoration: underline;
}
.ins_productCon11 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
  display: none;
}
.ins_productCon11 .center_box .content .cont_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.4rem;
}
.ins_productCon11 .center_box .content .cont_info .cont {
  width: 100%;
  height: auto;
  padding: 0.6rem 0.4rem;
  background: #F9FAFB;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
  border: 1px solid #EEEEEE;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .left_box {
  width: 43%;
  border-bottom: 1px solid #EEEEEE;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .left_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .left_box .swiper_box ul li {
  width: 0%;
  height: auto;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .left_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .left_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 55%;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .left_box .swiper_box ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.2rem;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .right_box {
  width: 57%;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.48rem;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .right_box .name {
  color: #000;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .right_box .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.12rem;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .right_box .list .one {
  width: 0.16rem;
  height: 0.16rem;
  background: var(--color);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .right_box .list .one::after {
  content: '';
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  border: 1px solid var(--color);
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .img_box .right_box .list .one.active::after {
  opacity: 1;
}
.ins_productCon11 .center_box .content .cont_info .cont .top_box .idx_more {
  margin-top: 0.32rem;
  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_productCon11 .center_box .content .cont_info .cont .bot_box {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .content .cont_info .cont .bot_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
  padding-top: 0.32rem;
  position: relative;
  z-index: 1;
}
.ins_productCon11 .center_box .content .cont_info .cont .bot_box .item_box .item {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_productCon11 .center_box .content .cont_info .cont .bot_box .item_box .item .t1 {
  color: #000;
}
.ins_productCon11 .center_box .content .cont_info .cont .bot_box .item_box .item .t2 {
  color: #0000008F;
  margin-top: 0.08rem;
}
.ins_productCon11 .center_box .content1 {
  width: 100%;
  height: auto;
  padding: 0.64rem;
  background: #F9FAFB;
  border-radius: 0.16rem;
  overflow: hidden;
  margin-top: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_productCon11 .center_box .content1 .cont {
  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-bottom: 0.32rem;
  border-bottom: 1px solid #d4d3d3;
}
.ins_productCon11 .center_box .content1 .cont:last-child {
  padding-bottom: 0;
  border-bottom: unset;
}
.ins_productCon11 .center_box .content1 .cont .left {
  width: 1.84rem;
  flex-shrink: 0;
  font-size: var(--font24);
}
.ins_productCon11 .center_box .content1 .cont .right {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.16rem;
}
.ins_productCon11 .center_box .content1 .cont .right .info_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
  border: 1px solid #EEEEEE;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .left_box {
  width: 43%;
  border-right: 1px solid #EEEEEE;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .left_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .left_box .swiper_box ul li {
  width: 0%;
  height: auto;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .left_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .left_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 94%;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .left_box .swiper_box ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.2rem;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .right_box {
  width: 57%;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .right_box .name {
  color: #000;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .right_box .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.12rem;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .right_box .list .one {
  width: 0.16rem;
  height: 0.16rem;
  background: var(--color);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .right_box .list .one::after {
  content: '';
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  border: 1px solid var(--color);
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.ins_productCon11 .center_box .content1 .cont .right .img_box .right_box .list .one.active::after {
  opacity: 1;
}
.ins_productCon11 .center_box .content1 .cont .right .idx_more {
  margin-top: 0.32rem;
  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_productCon11 .center_box .content1 .cont .right .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.32rem;
  position: relative;
  z-index: 1;
}
.ins_productCon11 .center_box .content1 .cont .right .item_box .item {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_productCon11 .center_box .content1 .cont .right .item_box .item .t1 {
  color: #000;
}
.ins_productCon11 .center_box .content1 .cont .right .item_box .item .t2 {
  color: #0000008F;
  margin-top: 0.08rem;
}
@media (max-width:990px) {
  .ins_productCon11 .center_box .content1 .cont .left {
    display: none;
  }
}
@media (max-width:990px) {
  .ins_productCon11 .center_box .content {
    display: block !important;
  }
  .ins_productCon11 .center_box .content1 {
    display: none !important;
  }
}
.ins_downloadCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.21rem;
  padding-bottom: 1.6rem;
  background: #F1F2F4;
}
.ins_downloadCon1 .ins_navbox {
  width: 100%;
  height: auto;
  padding-left: 0.16rem;
}
.ins_downloadCon1 .content {
  width: 100%;
  height: auto;
  margin-top: 1.09rem;
}
.ins_downloadCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .content .center_box .input_box {
  width: 69.5%;
  margin: 0 auto;
  margin-top: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_downloadCon1 .content .center_box .input_box input {
  width: 100%;
  height: 0.68rem;
  border-radius: 100px;
  overflow: hidden;
  border: unset;
  padding-left: 0.4rem;
  font-size: var(--font16);
}
.ins_downloadCon1 .content .center_box .input_box .btn {
  width: fit-content;
  height: 0.64rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  overflow: hidden;
  gap: 0.12rem;
  padding: 0 0.4rem;
  flex-shrink: 0;
  background: #000;
  color: #FFFFFF;
  border: unset;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #000;
}
.ins_downloadCon1 .content .center_box .input_box .btn i {
  font-size: var(--font18);
}
@media (max-width:990px) {
  .ins_downloadCon1 .content .center_box .input_box {
    width: 100%;
    height: auto;
  }
}
.ins_downloadCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_downloadCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
}
.ins_downloadCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.82rem;
  padding-bottom: 0.57rem;
  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;
  background: #F1F2F4;
  border-radius: 0.16rem;
}
.ins_downloadCon2 .center_box .item_box .item .icon {
  width: 1.2rem;
  height: 1.2rem;
}
.ins_downloadCon2 .center_box .item_box .item .icon img {
  filter: brightness(0.5) invert(0.8);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_downloadCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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(--font28);
  color: #00000066;
  gap: 0.16rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_downloadCon2 .center_box .item_box .item .word img {
  filter: brightness(0) invert(0.6);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 0.4rem;
  height: 0.4rem;
}
.ins_downloadCon2 .center_box .item_box .item:hover .icon img {
  filter: unset;
}
.ins_downloadCon2 .center_box .item_box .item:hover .word {
  color: #000;
  font-weight: 600;
}
.ins_downloadCon2 .center_box .item_box .item:hover .word img {
  filter: unset;
}
@media (max-width:990px) {
  .ins_downloadCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_downloadCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
    padding: 0.6rem 0.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .ins_downloadCon2 .center_box .item_box .item .word {
    margin-top: 0.24rem;
    font-size: var(--font20);
  }
  .ins_downloadCon2 .center_box .item_box .item .icon img {
    filter: unset;
  }
  .ins_downloadCon2 .center_box .item_box .item .word {
    color: #000;
    font-weight: 600;
  }
  .ins_downloadCon2 .center_box .item_box .item .word img {
    filter: unset;
  }
  .ins_downloadCon2 .center_box .item_box .item:last-child {
    grid-column: span 2;
  }
}
.ins_downloadCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
  background: #F1F2F4;
}
.ins_downloadCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon3 .center_box .product_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_downloadCon3 .center_box .product_info .left_box {
  width: 30.234375%;
  padding: 0.4rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
}
.ins_downloadCon3 .center_box .product_info .left_box .name {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: var(--font28);
  font-weight: 600;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #0000000F;
}
.ins_downloadCon3 .center_box .product_info .left_box .name img {
  width: 0.32rem;
  height: 0.32rem;
}
.ins_downloadCon3 .center_box .product_info .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_downloadCon3 .center_box .product_info .left_box .list .one {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.32rem;
  font-size: var(--font16);
  color: #00000066;
  cursor: pointer;
}
.ins_downloadCon3 .center_box .product_info .left_box .list .one i {
  position: absolute;
  font-size: var(--font18);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 0;
}
.ins_downloadCon3 .center_box .product_info .left_box .list .one.active {
  padding-left: 0.24rem;
  color: #000;
  font-weight: 500;
}
.ins_downloadCon3 .center_box .product_info .left_box .list .one.active i {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_downloadCon3 .center_box .product_info .left_box .list .one.active {
    padding-left: 0.5rem;
  }
}
.ins_downloadCon3 .center_box .product_info .right_box {
  width: 68.515625%;
  padding: 0.4rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .productCon1 {
  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-bottom: 0.24rem;
  border-bottom: 1px solid #0000000F;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .productCon1 .title {
  width: fit-content;
  font-size: var(--font28);
  font-weight: 600;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .productCon1 .pro_list {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .productCon1 .pro_list .one {
  width: fit-content;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #00000066;
  cursor: pointer;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .productCon1 .pro_list .one.active {
  color: #000;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .idxPageHide {
  z-index: 5;
  position: relative;
  flex-shrink: 0;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper-slide {
  width: 100%;
  height: auto;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_switch {
  width: fit-content;
  position: absolute;
  bottom: 0;
  right: 0;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .word_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .word_box .t1 {
  font-weight: 600;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .word_box .t2 {
  margin-top: 0.12rem;
  color: #0000008F;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .swiper-slide {
  width: 100%;
  height: auto;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo .left {
  width: 36.5%;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo .left .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo .left .img img {
  width: 100%;
  height: auto;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo .right {
  width: 58%;
  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_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo .right .top {
  width: 100%;
  height: auto;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo .right .top .word_box {
  width: 100%;
  height: auto;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #0000000F;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo .right .top .pdf {
  color: #0000008F;
  margin-top: 0.2rem;
}
@media (max-width:990px) {
  .ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo {
    gap: 0.24rem;
  }
  .ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo .left {
    width: 50%;
  }
  .ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_manual .centerInfo .right {
    width: 50%;
  }
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .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.2rem;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #0000000F;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .item_box .item .word {
  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);
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .item_box .item .word span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .item_box .item .word img {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 17px;
  min-height: 17px;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .item_box .item .idx_more {
  width: fit-content;
  flex-shrink: 0;
}
@media (max-width:990px) {
  .ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .item_box .item .idx_more .more span {
    display: none;
  }
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_word {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
  overflow: hidden;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_word .swiper-slide {
  width: 50%;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_word .centerInfo {
  width: 100%;
  height: auto;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_word .centerInfo .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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.13rem;
  border-bottom: 1px solid #0000000F;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_word .centerInfo .btn_box .word {
  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(--font20);
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_word .centerInfo .btn_box .word span {
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_word .centerInfo .btn_box .word img {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 17px;
  min-height: 17px;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_word .centerInfo .btn_box .idx_more {
  width: fit-content;
}
.ins_downloadCon3 .center_box .product_info .right_box .swiper_product .swiper_box .swiper_info .swiper_word .centerInfo .cont {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  line-height: 1.5;
  color: #0000008F;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.ins_downloadCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
  background: #F1F2F4;
}
.ins_downloadCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon4 .center_box .item_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.16rem;
}
.ins_downloadCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
  padding: 0 0.32rem;
}
.ins_downloadCon4 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.32rem 0;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  gap: 0.48rem;
}
.ins_downloadCon4 .center_box .item_box .item .top .word {
  width: fit-content;
  font-size: var(--font22);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_downloadCon4 .center_box .item_box .item .top .word img {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 15px;
  min-height: 15px;
}
.ins_downloadCon4 .center_box .item_box .item .top .icon {
  width: fit-content;
  padding: 0.1rem 0.22rem;
  border: 1px solid #0000004D;
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.ins_downloadCon4 .center_box .item_box .item .top .icon i {
  width: 0.12rem;
  height: 0.12rem;
  min-width: 8px;
  min-height: 8px;
  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_downloadCon4 .center_box .item_box .item .top .icon i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_downloadCon4 .center_box .item_box .item .top .icon i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: rotate(90deg);
}
@media (max-width:990px) {
  .ins_downloadCon4 .center_box .item_box .item .top .icon {
    transform: translateY(0.3em);
  }
}
@media (max-width:990px) {
  .ins_downloadCon4 .center_box .item_box .item .top .word img {
    display: none;
  }
}
.ins_downloadCon4 .center_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding: 0.32rem 0;
  padding-left: 0.4rem;
  position: relative;
  z-index: 1;
  font-size: var(--font18);
  border-top: 1px solid #0000000F;
  display: none;
}
.ins_downloadCon4 .center_box .item_box .item .bot .icon {
  width: 0.22rem;
  height: 0.22rem;
  min-width: 15px;
  min-height: 15px;
  position: absolute;
  left: 0;
  top: calc(0.3em + 0.32rem);
}
.ins_downloadCon4 .center_box .item_box .item .bot .word {
  font-size: var(--font18);
  line-height: 1.66;
  color: #00000066;
}
@media (max-width:990px) {
  .ins_downloadCon4 .center_box .item_box .item .bot {
    padding-left: 0;
  }
  .ins_downloadCon4 .center_box .item_box .item .bot .icon {
    display: none;
  }
}
.ins_downloadCon4 .center_box .item_box .item.active .top .icon {
  background: #000;
  border-color: #000;
}
.ins_downloadCon4 .center_box .item_box .item.active .top .icon i::before {
  transform: rotate(0);
  background: #FFF;
}
.ins_downloadCon4 .center_box .item_box .item.active .top .icon i::after {
  background: #FFF;
}
.ins_productCon12 {
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 1;
  overflow: hidden;
  top: calc(var(--header-height) + 0.16rem) !important;
}
.ins_productCon12 .content {
  width: calc(100% - 0.32rem);
  margin: 0 auto;
  padding: 0.24rem 0.4rem;
  background: #FFFFFF;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom-left-radius: 0.08rem;
  border-bottom-right-radius: 0.08rem;
}
.ins_productCon12 .content .left_box {
  width: fit-content;
  font-size: var(--font20);
}
.ins_productCon12 .content .right_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.56rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon12 .content .right_box .item_box {
  width: fit-content;
  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;
}
.ins_productCon12 .content .right_box .item_box .item {
  width: fit-content;
  color: #00000066;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_productCon12 .content .right_box .item_box .item.active {
  color: #000;
}
.ins_productCon12 .content .right_box .idx_more {
  width: fit-content;
}
@media (max-width:990px) {
  .ins_productCon12 .content {
    gap: 0.2rem;
  }
}
.ins_productCon13 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 3.32rem;
  padding-bottom: 1.6rem;
  background: #F1F2F4;
}
.ins_productCon13 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon13 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F9FAFB;
  padding: 0.64rem;
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_productCon13 .center_box .content .cont {
  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-bottom: 0.32rem;
  border-bottom: 1px solid #d4d3d3;
}
.ins_productCon13 .center_box .content .cont.bor0 {
  border-bottom: 0;
}
.ins_productCon13 .center_box .content .cont:last-child {
  padding-bottom: 0;
  border-bottom: unset;
}
.ins_productCon13 .center_box .content .cont .left {
  width: 16%;
  flex-shrink: 0;
}
.ins_productCon13 .center_box .content .cont .left .t2 {
  color: #00000066;
}
.ins_productCon13 .center_box .content .cont .left .list {
  width: 100%;
  height: auto;
}
.ins_productCon13 .center_box .content .cont .left .list .one {
  font-size: var(--font16);
  color: #00000066;
}
.ins_productCon13 .center_box .content .cont .right {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.16rem;
}
.ins_productCon13 .center_box .content .cont .right .info_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon13 .center_box .content .cont .right .img_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
  border: 1px solid #EEEEEE;
  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_productCon13 .center_box .content .cont .right .img_box .left_b {
  width: 43%;
  border-right: 1px solid #EEEEEE;
}
.ins_productCon13 .center_box .content .cont .right .img_box .left_b .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon13 .center_box .content .cont .right .img_box .left_b .swiper_box ul li {
  width: 0%;
  height: auto;
}
.ins_productCon13 .center_box .content .cont .right .img_box .left_b .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon13 .center_box .content .cont .right .img_box .left_b .swiper_box ul li .centerInfo .pb {
  padding-bottom: 94%;
}
.ins_productCon13 .center_box .content .cont .right .img_box .left_b .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;
  padding: 0.2rem;
}
.ins_productCon13 .center_box .content .cont .right .img_box .right_b {
  width: 57%;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.ins_productCon13 .center_box .content .cont .right .img_box .right_b .name {
  color: #000;
}
.ins_productCon13 .center_box .content .cont .right .img_box .right_b .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.12rem;
}
.ins_productCon13 .center_box .content .cont .right .img_box .right_b .list .one {
  width: 0.16rem;
  height: 0.16rem;
  background: var(--color);
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_productCon13 .center_box .content .cont .right .img_box .right_b .list .one::after {
  content: '';
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  border: 1px solid var(--color);
  border-radius: 100px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
.ins_productCon13 .center_box .content .cont .right .img_box .right_b .list .one.active::after {
  opacity: 1;
}
.ins_productCon13 .center_box .content .cont .right .idx_more {
  margin-top: 0.32rem;
  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_productCon13 .center_box .content .cont .right .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.32rem;
  position: relative;
  z-index: 1;
}
.ins_productCon13 .center_box .content .cont .right .item_box .item {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_productCon13 .center_box .content .cont .right .item_box .item .t1 {
  color: #000;
}
.ins_productCon13 .center_box .content .cont .right .item_box .item .t2 {
  color: #0000008F;
  margin-top: 0.08rem;
}
.ins_productCon13 .center_box .content .cont .list2 {
  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.2rem;
}
.ins_productCon13 .center_box .content .cont .list2 .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: var(--font16);
}
.ins_productCon13 .center_box .content .cont .list2 .one .le {
  width: 16%;
  color: #00000066;
}
.ins_productCon13 .center_box .content .cont .list2 .one .ri {
  width: 83%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.16rem;
}
.ins_productCon13 .center_box .content .cont .list2 .one .ri .word {
  width: 100%;
  height: auto;
  text-align: center;
  color: #000;
}
.ins_productCon13 .center_box .content .cont .name {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_productCon13 .center_box .content {
    overflow: auto;
  }
  .ins_productCon13 .center_box .content .cont {
    min-width: 800px;
  }
}
.ins_aboutCon1 {
  width: 100%;
  height: 200vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #FFFFFF;
}
.ins_aboutCon1 .mask_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_aboutCon1 .mask_box .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_aboutCon1 .mask_box .content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-50%);
}
@keyframes run3 {
  0% {
    transform: translateY(-100%);
    top: 0;
  }
  100% {
    transform: translateY(0%);
    top: 100%;
  }
}
.ins_bannerCon3 {
  width: 100%;
  height: 250vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon3 .maskBox {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_bannerCon3 .maskBox .content1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_bannerCon3 .maskBox .content1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0rem;
  left: 0;
  padding-top: 2.44rem;
}
.ins_bannerCon3 .maskBox .content1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon3 .maskBox .content1 .content .center_box .t1 {
  color: #FFF;
  font-weight: 600;
}
.ins_bannerCon3 .maskBox .content1 .content .center_box .t2 {
  margin-top: 0.24rem;
  font-weight: 300;
  color: #FFFFFF8F;
}
@media (max-width:990px) {
  .ins_bannerCon3 .maskBox .content1 .content .center_box .t2 p {
    display: contents;
  }
}
.ins_bannerCon3 .maskBox .content1 .ins_navbox {
  width: 100%;
  height: auto;
  position: absolute;
  top: 1.16rem;
  z-index: 5;
  padding-left: 0.16rem;
}
.ins_bannerCon3 .maskBox .banner_img {
  width: 100%;
  height: 100vh;
}
.ins_bannerCon3 .maskBox .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_bannerCon3 .maskBox .content2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.ins_bannerCon3 .maskBox .content2 .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_bannerCon3 .maskBox .content2 .img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100vh;
  background: #f1f2f4;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 100%;
  left: 0;
}
.ins_bannerCon3 .maskBox .content2 .img img {
  width: 100%;
  height: auto;
}
.ins_bannerCon3 .maskBox .content2 .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  bottom: 2.8rem;
  opacity: 0;
  transform: translateY(1rem);
}
.ins_bannerCon3 .maskBox .content2 .word_box .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.ins_bannerCon3 .maskBox .content2 .word_box .center_box .word {
  width: 36%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_bannerCon3 .maskBox .content2 .word_box .center_box .word .t1 {
  color: #00000066;
}
.ins_bannerCon3 .maskBox .content2 .word_box .center_box .word .t2 {
  color: #000;
}
@media (max-width:990px) {
  .ins_bannerCon3 .maskBox .content2 .word_box .center_box .word {
    width: 100%;
    height: auto;
  }
}
.ins_bannerCon3 .maskBox .content2 .word_box .center_box .scrr_box {
  width: fit-content;
  position: absolute;
  left: 3%;
  top: 120%;
}
.ins_bannerCon3 .maskBox .content2 .word_box .center_box .scrr_box .icon {
  width: 0.2rem;
  height: 0.3rem;
  border-radius: 100px;
  border: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_bannerCon3 .maskBox .content2 .word_box .center_box .scrr_box .icon i {
  width: 0.03rem;
  height: 0.18rem;
  background: #0000001A;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon3 .maskBox .content2 .word_box .center_box .scrr_box .icon i::after {
  content: '';
  position: absolute;
  width: 0.03rem;
  height: 0.05rem;
  background: #000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0;
  left: 0;
  animation: run3 2s linear infinite;
}
.ins_bannerCon3 .maskBox .content2 .word_box .center_box .scrr_box .tip {
  font-size: var(--font16);
  color: #00000066;
  margin-top: 0.16rem;
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon1 .center_box .left_box {
  width: 37.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-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 1rem;
}
.ins_aboutCon1 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_aboutCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.48rem;
  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.24rem;
  border-bottom: 1px solid #0000001A;
}
.ins_aboutCon1 .center_box .left_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .left_box .item_box .item .word .t1 {
  color: #00000066;
  font-weight: 300;
}
.ins_aboutCon1 .center_box .left_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  font-weight: 600;
}
.ins_aboutCon1 .center_box .left_box .item_box .item .icon {
  width: fit-content;
  flex-shrink: 0;
  color: #CCCCCCCC;
  font-size: var(--font16);
}
.ins_aboutCon1 .center_box .right_box {
  width: 56.3%;
}
.ins_aboutCon1 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_aboutCon1 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon2 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.2rem;
}
.ins_aboutCon2 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .content .center_box .swiper_item {
  width: 100%;
  height: auto;
  margin-top: 1.2rem;
  position: relative;
  z-index: 1;
}
.ins_aboutCon2 .content .center_box .swiper_item::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #000;
  opacity: 0.2;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ins_aboutCon2 .content .center_box .swiper_item ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .content .center_box .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  padding-bottom: 0.31rem;
  position: relative;
  z-index: 1;
  color: #00000066;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.ins_aboutCon2 .content .center_box .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: #000;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.ins_aboutCon2 .content .center_box .swiper_item ul li .centerInfo i {
  width: 0.2rem;
  height: 0.12rem;
  border-radius: 100px;
  border: 1px solid #00000033;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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;
  left: 0;
  bottom: 0;
  transform: translateY(50%);
  background: #FFF;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_aboutCon2 .content .center_box .swiper_item ul li .centerInfo i::after {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.02rem;
  background: #000;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  opacity: 0;
}
.ins_aboutCon2 .content .center_box .swiper_item ul li.active .centerInfo {
  color: #000;
}
.ins_aboutCon2 .content .center_box .swiper_item ul li.active .centerInfo::after {
  width: 100%;
  left: 0;
  transition: all 5s linear;
}
.ins_aboutCon2 .content .center_box .swiper_item ul li.active .centerInfo i {
  border-color: #000;
}
.ins_aboutCon2 .content .center_box .swiper_item ul li.active .centerInfo i::after {
  opacity: 1;
}
.ins_aboutCon2 .content .center_box .swiper_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-top: 0.85rem;
}
.ins_aboutCon2 .content .center_box .swiper_info .swiper_box {
  width: 51%;
  height: auto;
}
.ins_aboutCon2 .content .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .content .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .content .center_box .swiper_info .swiper_box ul li .centerInfo .t1 span {
  font-weight: 600;
}
.ins_aboutCon2 .content .center_box .swiper_info .swiper_box ul li .centerInfo .t1 i {
  font-style: unset;
  font-size: var(--font24);
  font-weight: 600;
}
.ins_aboutCon2 .content .center_box .swiper_info .swiper_box ul li .centerInfo .t2 {
  margin-top: 0.12rem;
}
.ins_aboutCon2 .content .center_box .swiper_info .swiper_box ul li .centerInfo .t3 {
  margin-top: 0.4rem;
  color: #0000008F;
}
@media (max-width:990px) {
  .ins_aboutCon2 .content .center_box .swiper_info .swiper_box ul li .centerInfo {
    min-height: 400px;
  }
}
@media (max-width:990px) {
  .ins_aboutCon2 .content .center_box .swiper_info .swiper_box {
    width: 100%;
    height: auto;
  }
}
.ins_aboutCon2 .content .center_box .swiper_info .swiper_switch {
  width: fit-content;
  height: auto;
}
.ins_aboutCon2 .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_aboutCon2 {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .ins_aboutCon2 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 0;
  }
  .ins_aboutCon2 .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ins_aboutCon2 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .idx_title {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon3 .center_box .idx_title .t2 {
  width: 20%;
}
.ins_aboutCon3 .center_box .idx_title .t4 {
  width: 51%;
  margin-top: 0;
  line-height: 1.5;
}
@media (max-width:990px) {
  .ins_aboutCon3 .center_box .idx_title {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_aboutCon3 .center_box .idx_title .t2 {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box .idx_title .t4 {
    width: 100%;
    height: auto;
    margin-top: 0.48rem;
  }
}
.ins_aboutCon3 .center_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  margin-top: 0.8rem;
}
.ins_aboutCon3 .center_box .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_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;
  gap: 0.24rem;
  margin-top: 0.8rem;
}
.ins_aboutCon3 .center_box .item_box .item {
  width: fit-content;
}
.ins_aboutCon3 .center_box .item_box .item .icon {
  width: 0.8rem;
  height: 0.8rem;
}
.ins_aboutCon3 .center_box .item_box .item .word {
  margin-top: 0.28rem;
  font-size: var(--font28);
  font-weight: 600;
}
.ins_aboutCon3 .center_box .item_box .line {
  width: 1px;
  height: 1.53rem;
  background: #0000001A;
}
@media (max-width:990px) {
  .ins_aboutCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.24rem;
  }
  .ins_aboutCon3 .center_box .item_box .item {
    width: 100%;
    height: auto;
    padding: 0.24rem;
    border-radius: 0.16rem;
    border: 1px solid #0000001A;
  }
  .ins_aboutCon3 .center_box .item_box .item .word {
    margin-top: 0.56rem;
  }
  .ins_aboutCon3 .center_box .item_box .line {
    width: 100%;
    height: 1px;
    display: none;
  }
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  background: #FAFAFB;
}
.ins_aboutCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon4 .center_box .top_box .idx_title {
  width: 60%;
}
@media (max-width:990px) {
  .ins_aboutCon4 .center_box .top_box .idx_title {
    width: 100%;
    height: auto;
  }
}
.ins_aboutCon4 .center_box .top_box .swiper_switch {
  width: fit-content;
}
.ins_aboutCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_aboutCon4 .center_box .swiper_box ul li {
  width: fit-content;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
  padding: 0.4rem;
}
.ins_aboutCon4 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 81%;
}
.ins_aboutCon4 .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_aboutCon4 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid #0000001A;
  font-size: var(--font16);
  font-weight: 600;
}
