@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul.swiper-wrapper,
ol.swiper-slide,
li.swiper-slide {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
.ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: more 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #BD1A21;
  --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 !important;
}
.mar_t13 {
  margin-top: 0.13rem !important;
}
.mar_t15 {
  margin-top: 0.15rem !important;
}
.mar_t17 {
  margin-top: 0.17rem !important;
}
.mar_t20 {
  margin-top: 0.2rem !important;
}
.mar_t23 {
  margin-top: 0.23rem !important;
}
.mar_t25 {
  margin-top: 0.25rem !important;
}
.mar_t27 {
  margin-top: 0.27rem !important;
}
.mar_t30 {
  margin-top: 0.3rem !important;
}
.mar_t33 {
  margin-top: 0.33rem !important;
}
.mar_t35 {
  margin-top: 0.35rem !important;
}
.mar_t37 {
  margin-top: 0.37rem !important;
}
.mar_t40 {
  margin-top: 0.4rem !important;
}
.mar_t43 {
  margin-top: 0.43rem !important;
}
.mar_t45 {
  margin-top: 0.45rem !important;
}
.mar_t47 {
  margin-top: 0.47rem !important;
}
.mar_t50 {
  margin-top: 0.5rem !important;
}
.mar_t53 {
  margin-top: 0.53rem !important;
}
.mar_t55 {
  margin-top: 0.55rem !important;
}
.mar_t57 {
  margin-top: 0.57rem !important;
}
.mar_t60 {
  margin-top: 0.6rem !important;
}
.mar_t63 {
  margin-top: 0.63rem !important;
}
.mar_t65 {
  margin-top: 0.65rem !important;
}
.mar_t67 {
  margin-top: 0.67rem !important;
}
.mar_t70 {
  margin-top: 0.7rem !important;
}
.mar_t73 {
  margin-top: 0.73rem !important;
}
.mar_t75 {
  margin-top: 0.75rem !important;
}
.mar_t77 {
  margin-top: 0.77rem !important;
}
.mar_t80 {
  margin-top: 0.8rem !important;
}
.mar_t83 {
  margin-top: 0.83rem !important;
}
.mar_t85 {
  margin-top: 0.85rem !important;
}
.mar_t87 {
  margin-top: 0.87rem !important;
}
.mar_t90 {
  margin-top: 0.9rem !important;
}
.mar_t93 {
  margin-top: 0.93rem !important;
}
.mar_t95 {
  margin-top: 0.95rem !important;
}
.mar_t97 {
  margin-top: 0.97rem !important;
}
.mar_t100 {
  margin-top: 1rem;
}
.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: "OPPOSans";
  src: url("../fonts/OPPOSans-Light.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "OPPOSans";
  src: url("../fonts/OPPOSans-Regular.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "OPPOSans";
  src: url("../fonts/OPPOSans-Medium.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "OPPOSans";
  src: url("../fonts/OPPOSans-Bold.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "OPPOSans";
  src: url("../fonts/OPPOSans-Heavy.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Anta";
  src: url("../fonts/Anta-Regular.ttf");
  font-weight: 700;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1360,
.container,
.wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1360,
  .container,
  .wrap {
    max-width: 70.83333333%;
  }
}
@media (max-width:990px) {
  .w1360,
  .container,
  .wrap {
    max-width: 100%;
    padding: 0 0.4rem;
  }
}
.w1760 {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1760 {
    max-width: 91.66666667%;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 65px;
  font-size: var(--font16);
  color: #000000;
  font-family: "OPPOSans";
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img {
  width: 100%;
  height: auto;
}
.banner_img img.wap {
  min-height: 400px;
  object-fit: cover;
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background-image: linear-gradient(180deg, #e3e3e375, #ffffff00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 5px;
    height: 5px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.15rem;
}
.idxPageShow span {
  width: 9px;
  height: 9px;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
/* --------------------------------------------------------------- 吸顶 */
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.grid_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid_6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid_7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid_8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid_1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
@media (max-width:990px) {
  .toUp_Box.posFix {
    top: var(--header-height);
  }
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.top_info .idx_title {
  width: fit-content;
}
.top_info .idx_more {
  width: fit-content;
}
.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: #000000 #d4d6d700;
  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);
}
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.5;
}
.newContent p {
  min-height: 0.5em;
}
.newContent img {
  width: unset !important;
  height: unset !important;
}
/* --------------------------------------------------------------- 新增公共组件 */
.idx_more {
  width: 100%;
  height: auto;
}
.idx_more .more {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.08rem;
  color: #FFFFFFCC;
  border-radius: 0.09rem;
  border: 1px solid #FFFFFFCC;
  font-size: var(--font16);
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0%;
  background: var(--active_color);
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more:hover {
  border-color: var(--active_color) !important;
  color: #FFFFFF !important;
}
.idx_more .more:hover::after {
  height: 100% !important;
}
.idx_more .more.bor00 {
  border-color: #000;
  color: #000;
}
.idx_more .more.bg000 {
  background: #000;
  color: #FFFFFF;
  border-color: #000;
}
.idx_more2 {
  width: 100%;
  height: auto;
}
.idx_more2 .more {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.03rem;
  font-size: var(--font16);
  font-weight: 500;
}
.idx_more2 .more i {
  font-size: 12px;
}
.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.48rem;
  height: 0.48rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 0.09rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.swiper_icon i {
  color: #FFFFFF66;
  font-size: var(--font14);
}
.swiper_icon:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.swiper_icon:hover img {
  filter: unset;
}
.swiper_icon:hover i {
  color: var(--active_color);
}
@media (max-width:990px) {
  .swiper_icon {
    display: none;
  }
}
.idxPageLine {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.24rem;
}
.idxPageLine span {
  width: 1.28rem;
  height: 2px;
  border-radius: 0;
  opacity: 1;
  position: relative;
  z-index: 1;
  background: none;
}
.idxPageLine span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FFFFFF66;
  bottom: 0;
  left: 0;
}
.idxPageLine span::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 0%;
  height: 4px;
  background: #FFFFFF;
  bottom: 0;
  left: 0;
}
.idxPageLine .swiper-pagination-bullet-active::before {
  width: 100%;
  transition: all 5s linear;
}
@media (max-width:990px) {
  .idxPageLine {
    gap: 0.1rem;
  }
  .idxPageLine span {
    width: 0.5rem;
    height: 1px;
  }
  .idxPageLine span::before {
    height: 2px;
  }
  .idxPageLine span::after {
    height: 1px;
  }
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 600;
}
.idx_title .t2 {
  margin-top: 0.24rem;
  font-weight: normal;
  line-height: 1.66;
  color: #1F1F1F;
}
.idx_title .t3 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
  font-size: var(--font16);
  color: #00000080;
}
.idx_laypage {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.3rem;
}
.layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.18rem;
  padding: 0;
  padding-left: 0.25rem;
}
.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);
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: #4261FF80;
  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;
  z-index: 1;
  top: 0.1em;
  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;
}
.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;
}
@media (max-width:990px) {
  .layui_item .layui-form-checkbox[lay-skin=primary] > i {
    top: 0.25em;
  }
}
.swiper_switch {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.swiper_switch .swiper_icon {
  width: 0.48rem;
  height: 0.48rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #000000;
  border-radius: 100px;
}
.swiper_switch .swiper_icon i {
  color: #000;
  font-size: var(--font20);
  font-weight: 700;
}
.swiper_switch .swiper_icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.swiper_switch .swiper_icon:hover i {
  color: #FFF;
}
@media (max-width:990px) {
  .swiper_switch {
    display: none;
  }
}
.formContent {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.formContent .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem 0.2rem;
}
.formContent .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  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;
  gap: 0.1rem;
  padding: 0 0.16rem;
  font-size: var(--font16);
}
.formContent .item_box .item .word {
  width: fit-content;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.05rem;
  color: #1F1F1F80;
}
.formContent .item_box .item .word i {
  color: var(--active_color);
  font-style: unset;
}
.formContent .item_box .item .input {
  width: 100%;
  height: auto;
}
.formContent .item_box .item .input input {
  width: 100%;
  height: 0.45rem;
  min-height: 35px;
  border: 0;
  background: none;
}
@media (max-width:990px) {
  .formContent .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.formContent .contForm1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.4rem;
}
.formContent .contForm1 .title {
  width: 100%;
  height: auto;
  font-weight: 500;
}
.formContent .contForm1 .title i {
  font-style: unset;
  color: var(--active_color);
}
.formContent .contForm1 .btn_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.16rem;
  margin-top: 0.2rem;
}
.formContent .contForm1 .btn_box .btn {
  width: 100%;
  height: auto;
  padding: 0.08rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid #0000001A;
  font-size: var(--font16);
  color: #00000080;
  border-radius: 0.09rem;
  background: none;
  cursor: pointer;
}
.formContent .contForm1 .btn_box .btn.on {
  background: #000;
  color: #FFF;
  border-color: #000;
}
@media (max-width:990px) {
  .formContent .contForm1 .btn_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.formContent .textCon1 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.formContent .textCon1 textarea {
  width: 100%;
  height: 1.21rem;
  border: 1px solid #0000001A;
  border-radius: 0.09rem;
  background: none;
  cursor: pointer;
  padding: 0.2rem 0.12rem;
  font-size: var(--font16);
}
.formContent .resume_box {
  width: 100%;
  height: auto;
  border: 1px solid #0000001A;
  margin-top: 0.2rem;
  padding: 0.33rem;
  color: #1F1F1F80;
  font-size: var(--font16);
  border-radius: 0.1rem;
}
.formContent .resume_box.pa10 {
  padding: 0.1rem;
}
.formContent .tipBox {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-size: var(--font16);
  color: #1F1F1F80;
}
.formContent .tipBox a {
  display: inline-block;
  color: #1F1F1F;
  text-decoration: underline;
}
.formContent .submit {
  width: fit-content;
  height: auto;
  padding: 0.08rem 0.35rem;
  background: #000;
  color: #FFF;
  font-size: var(--font16);
  margin-top: 0.15rem;
  border-radius: 0.09rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.formContent .submit:hover {
  background: var(--active_color) !important;
}
.formContent .app_list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem;
}
.formContent .app_list .app {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
  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;
  gap: 0.1rem;
  padding: 0.11rem 0.16rem;
  color: #1F1F1F80;
  font-weight: 300;
}
.swiper_component {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.43rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.6rem;
}
.swiper_component .swiper_pager {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  flex-shrink: 0;
}
@media (max-width:990px) {
  .swiper_component .swiper_pager {
    display: none;
  }
}
.swiper_line {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 1;
  background: #0000001A;
  display: flex;
}
.swiper_line span {
  background: #000 !important;
}
.table_info {
  width: 100%;
  height: auto;
}
.table_info table {
  width: 100%;
  height: auto;
  table-layout: fixed;
  border-radius: 0.16rem;
  background: #F0F0F0;
  overflow: hidden;
  text-align: center;
}
.table_info table thead {
  width: 100%;
  height: auto;
  background: #000000;
  border-radius: 0.16rem;
}
.table_info table thead tr td {
  color: #FFFFFF;
  padding: 0.23rem;
  font-size: var(--font20);
}
.table_info table tbody {
  width: 100%;
  height: auto;
}
.table_info table tbody tr td {
  padding: 0.2rem 0.32rem;
  font-size: var(--font20);
  font-weight: 300;
}
.table_info table tr td {
  border: 1px solid #0000001A;
}
.table_info2 {
  width: 100%;
  height: auto;
}
.table_info2 table {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: #F0F0F0;
  overflow: hidden;
  text-align: center;
}
.table_info2 table thead {
  width: 100%;
  height: auto;
  background: #000000;
  border-radius: 0.16rem;
}
.table_info2 table thead tr td {
  color: #FFFFFF;
  padding: 0.15rem 0.2rem;
  font-size: var(--font14);
}
.table_info2 table tbody {
  width: 100%;
  height: auto;
}
.table_info2 table tbody tr td {
  padding: 0.3rem 0.2rem;
  font-size: var(--font14);
  font-weight: 300;
}
.table_info2 table tr td {
  border: 1px solid #0000001A;
}
@media (max-width:990px) {
  .table_info2 {
    overflow: auto;
  }
  .table_info2 table {
    min-width: 1000px;
  }
}
.selectBox {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.38rem;
}
.selectBox .item {
  width: 37.5%;
}
.selectBox .item .layui-form-select .layui-input {
  width: 100%;
  height: 0.45rem;
  min-height: 38px;
  border-radius: 0.1rem;
  padding-left: 0.16rem;
}
.selectBox .item .layui-form-select dl {
  bottom: unset !important;
  top: calc(100% + 2px) !important;
}
.selectBox .item .layui-form-select .layui-edge {
  width: 0.3rem;
  height: 0.3rem;
  top: unset;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: unset;
}
.selectBox .item .layui-form-select .layui-edge::after {
  content: '\e685';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: var(--color1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 12px;
  color: #888888;
}
.selectBox .item .layui-select-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: auto;
}
.selectBox .item .layui-form-selected .layui-edge {
  margin-top: unset !important;
}
.selectBox .remove {
  width: fit-content;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.1rem;
  font-size: var(--font16);
}
.selectBox .remove i {
  font-size: var(--font16);
}
@media (max-width:990px) {
  .selectBox {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .selectBox .item {
    width: 100% !important;
    height: auto;
  }
  .selectBox .item.last {
    width: 80%;
  }
}
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_homeCon1 .content {
  width: 100%;
  height: auto;
  position: absolute;
  padding-top: 1.54rem;
}
.idx_homeCon1 .content .t1 {
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.056rem;
}
.idx_homeCon1 .content .t2 {
  margin-top: 0.16rem;
}
@media (max-width:990px) {
  .idx_homeCon1 .content .t1 {
    font-size: var(--font48);
  }
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.08rem;
}
.idx_homeCon2 .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.68rem;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .content .center_box .t1 {
  line-height: 1;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .content .center_box .t2 {
  line-height: 1;
  margin-top: 0.16rem;
  font-family: "Anta";
}
.idx_homeCon2 .swiper_box ul li .centerInfo .content .center_box .t3 {
  line-height: 1;
  margin-top: 0.16rem;
}
.idx_homeCon2 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  margin-top: 0.36rem;
}
.idx_homeCon2 .swiper_icon {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
}
.idx_homeCon2 .swiper_icon.next {
  right: 0.55rem;
}
.idx_homeCon2 .swiper_icon.prev {
  left: 0.55rem;
}
.idx_homeCon2 .content_box {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 5;
  bottom: 0.4rem;
}
.idx_homeCon2 .content_box .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .content_box .center_box .swiper_item {
  width: fit-content;
  height: auto;
  cursor: pointer;
  max-width: 100%;
}
.idx_homeCon2 .content_box .center_box .swiper_item ul li {
  width: auto;
  height: auto;
  margin-right: 0.8rem;
}
.idx_homeCon2 .content_box .center_box .swiper_item ul li .centerInfo {
  width: auto;
  height: auto;
  min-width: 2.4rem;
  color: #FFFFFFCC;
  text-align: center;
  padding-bottom: 0.24rem;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .content_box .center_box .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #FFFFFF66;
  bottom: 0;
  left: 0;
}
.idx_homeCon2 .content_box .center_box .swiper_item ul li .centerInfo::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 4px;
  background: #FFFFFF;
  bottom: 0;
  left: 0;
}
.idx_homeCon2 .content_box .center_box .swiper_item ul li:last-child {
  margin-right: 0;
}
.idx_homeCon2 .content_box .center_box .swiper_item ul li.active .centerInfo {
  color: #FFFFFF;
}
.idx_homeCon2 .content_box .center_box .swiper_item ul li.active .centerInfo::before {
  width: 100%;
  transition: all 5s linear;
}
@media (max-width:990px) {
  .idx_homeCon2 .swiper_box ul li .centerInfo .content {
    padding-top: 0.4rem;
  }
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.08rem;
}
.idx_homeCon3 .content {
  width: 100%;
  height: auto;
  position: absolute;
  padding-top: 0.72rem;
}
.idx_homeCon3 .content .t1 {
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.056rem;
  line-height: 1.166;
}
.idx_homeCon3 .content .t2 {
  margin-top: 0.24rem;
}
.idx_homeCon3 .content .t2 span {
  color: #666666;
}
.idx_homeCon3 .content .t2 a {
  display: inline-block;
  color: var(--active_color);
}
.idx_homeCon3 .content .t2 a:hover {
  text-decoration: underline;
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.08rem;
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx_homeCon4 .center_box .swiper_box {
  width: 62.8%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #F0F0F0;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  z-index: 4;
  color: #FFFFFF;
  padding: 0.8rem 0;
  padding-bottom: 1.22rem;
  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;
  pointer-events: none;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .content .word {
  width: 100%;
  height: auto;
  text-align: center;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .content .word .t1 {
  font-weight: 600;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .content .word .t2 {
  margin-top: 0.1rem;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .content .word .t3 {
  margin-top: 0.32rem;
  line-height: 1;
  font-weight: 600;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .content .word .t4 {
  line-height: 1;
  margin-top: 0.1rem;
  font-family: "Anta";
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .content .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: 100%;
  transform: scale(1.5);
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .img img.wap {
  min-height: 350px;
  object-fit: cover;
}
.idx_homeCon4 .center_box .swiper_box ul li .centerInfo .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon4 .center_box .swiper_box ul li.swiper-slide-active .centerInfo .img img {
  transform: scale(1);
}
.idx_homeCon4 .center_box .swiper_icon {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
}
.idx_homeCon4 .center_box .swiper_icon.next {
  right: 1.55rem;
}
.idx_homeCon4 .center_box .swiper_icon.prev {
  left: 1.55rem;
}
.idx_homeCon4 .center_box .swiper_icon i {
  color: #000;
}
.idx_homeCon4 .center_box .swiper_icon:hover {
  background: var(--active_color);
}
.idx_homeCon4 .center_box .swiper_icon:hover i {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box {
    padding: 0 0.08rem;
  }
  .idx_homeCon4 .center_box .swiper_box {
    width: 100%;
    height: auto;
  }
}
.idx_homeCon4 .idxPageLine {
  position: absolute;
  z-index: 5;
  bottom: 0.42rem;
  left: 0;
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.08rem;
  padding: 1.28rem 0;
  background: #F0F0F0;
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  gap: 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_homeCon5 .center_box .list_box .list {
  width: fit-content;
  font-size: var(--font16);
  color: #000;
  padding-bottom: 0.04rem;
  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;
}
.idx_homeCon5 .center_box .list_box .list::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: #000000AB;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .list_box .list::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0.14rem;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  right: 0;
  transform: translateX(0.16rem);
}
.idx_homeCon5 .center_box .list_box .list.active::after {
  width: 100%;
}
.idx_homeCon5 .center_box .list_box .list:last-child::before {
  opacity: 0;
}
.idx_homeCon5 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.63rem;
}
.idx_homeCon5 .center_box .content_info .contentBox {
  width: 100%;
  height: auto;
  display: none;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.25rem;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item {
  width: 14.43%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  border-radius: 0.19rem;
  overflow: hidden;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 0.6rem 0.24rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-right: 0.6rem;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .word .t1 {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .word .t2 {
  margin-top: 0.08rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .icon {
  width: 0.42rem;
  height: 0.42rem;
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  background: #FFFFFF;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: translateX(-0.9rem);
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .icon::after {
  content: '';
  position: absolute;
  width: 0.14rem;
  height: 0.02rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .icon::before {
  content: '';
  position: absolute;
  width: 0.14rem;
  height: 0.02rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(90deg);
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item .img {
  width: 100%;
  height: 5.8rem;
  position: relative;
  z-index: 1;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item.active {
  width: 36.5%;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item.active .content {
  padding: 0.6rem;
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item.active .content .word .t1 {
  font-size: var(--font24);
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item.active .content .word .t2 {
  font-size: var(--font32);
}
.idx_homeCon5 .center_box .content_info .contentBox .item_box .item.active .content .icon {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width:990px) {
  .idx_homeCon5 .center_box .content_info .contentBox .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.1rem;
  }
  .idx_homeCon5 .center_box .content_info .contentBox .item_box .item {
    width: 100% !important;
    height: auto;
  }
  .idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content {
    padding: 0.2rem !important;
  }
  .idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .word {
    width: 100%;
    height: auto;
  }
  .idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .word .t1 {
    font-size: var(--font16) !important;
  }
  .idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .word .t2 {
    font-size: var(--font20) !important;
  }
  .idx_homeCon5 .center_box .content_info .contentBox .item_box .item .content .icon {
    opacity: 1 !important;
    transform: translateX(0);
    width: 0.3rem;
    height: 0.3rem;
  }
  .idx_homeCon5 .center_box .content_info .contentBox .item_box .item .img {
    width: 100%;
    height: auto;
  }
  .idx_homeCon5 .center_box .content_info .contentBox .item_box .item:last-child {
    grid-column: span 2;
  }
  .idx_homeCon5 .center_box .content_info .contentBox .item_box .item:last-child .img {
    max-height: 3.3rem;
  }
}
.idx_homeCon5 .center_box .content_info .contentBox.active {
  display: block;
}
.idx_homeCon5 .center_box .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.64rem;
}
.idx_homeCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
}
.idx_homeCon6 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .top_info {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .top_info .idx_title {
  width: fit-content;
}
.idx_homeCon6 .center_box .top_info .idx_more {
  width: fit-content;
}
.idx_homeCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.idx_homeCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .item_box .item .img .pb {
  padding-bottom: 71%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon6 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon6 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.idx_homeCon6 .center_box .item_box .item .word .t1 {
  font-weight: 300;
}
.idx_homeCon6 .center_box .item_box .item .word .t2 {
  margin-top: 0.08rem;
  font-weight: 700;
}
@media (max-width:990px) {
  .idx_homeCon6 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_homeCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
  background-image: url(../images/z14.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.idx_homeCon7 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon7 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.24rem 0.16rem;
}
.idx_homeCon7 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF1A;
  border-radius: 0.05rem;
  border: 1px solid rgba(255, 254, 254, 0.05);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  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.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon7 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(181, 181, 181, 0.04) 0%, rgba(201, 19, 19, 0.5) 99.52%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  right: 0;
}
.idx_homeCon7 .center_box .item_box .item .pb {
  padding-bottom: 46%;
}
.idx_homeCon7 .center_box .item_box .item .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon7 .center_box .item_box .item .pb .ab img {
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon7 .center_box .item_box .item:hover {
  background: none;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(204, 16, 18, 0.22);
}
.idx_homeCon7 .center_box .item_box .item:hover::after {
  width: 100%;
}
.idx_homeCon7 .center_box .item_box .item:hover .pb .ab img {
  opacity: 1;
}
@media (max-width:990px) {
  .idx_homeCon7 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.idx_homeCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
}
.idx_homeCon8 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon8 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  gap: 0.4rem;
}
.idx_homeCon8 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon8 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.idx_homeCon8 .center_box .item_box .item .img .pb {
  padding-bottom: 71%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon8 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon8 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.26rem;
}
.idx_homeCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.16rem;
  padding-bottom: 1.28rem;
  background: #F0F0F0;
}
.idx_homeCon9 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon9 .center_box .content1 {
  width: 100%;
  height: auto;
}
.idx_homeCon9 .center_box .content1 .left_box {
  width: 36%;
  padding-top: 0.43rem;
}
.idx_homeCon9 .center_box .content1 .left_box .idx_more {
  margin-top: 0.64rem;
}
.idx_homeCon9 .center_box .content1 .right_box {
  width: 55.2%;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .images img {
  width: 100%;
  height: auto;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item i {
  width: 0.1rem;
  height: 0.1rem;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item i img {
  opacity: 0;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #BD1A21;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item i::before {
  content: '';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: #FFFFFFB2;
  z-index: -2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  opacity: 0;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item i.red::before,
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item i.white::before {
  opacity: 1;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item i.red img,
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item i.white img {
  opacity: 1;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item span {
  position: absolute;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  left: 0.15rem;
  font-size: var(--font16);
  color: #656565;
}
.idx_homeCon9 .center_box .content1 .right_box .map_box .item_box .item span.red {
  color: #FFFFFF;
}
.idx_homeCon9 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.41rem;
  padding-top: 0.56rem;
  border-top: 1px solid #0000001A;
}
.idx_homeCon9 .center_box .content2 .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_homeCon9 .center_box .content2 .item_box .item {
  width: fit-content;
}
.idx_homeCon9 .center_box .content2 .item_box .item .word {
  font-family: "Anta";
}
.idx_homeCon9 .center_box .content2 .item_box .item .word i {
  font-style: unset;
  color: var(--active_color);
}
.idx_homeCon9 .center_box .content2 .item_box .item .icon {
  margin-top: 0.04rem;
}
.idx_homeCon9 .center_box .content2 .item_box .line {
  width: 1px;
  height: 0.78rem;
  border-left: 1px dashed #0000001A;
  margin: auto 0;
}
@media (max-width:990px) {
  .idx_homeCon9 .center_box .content2 .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 0.2rem;
  }
  .idx_homeCon9 .center_box .content2 .item_box .line {
    display: none;
  }
}
.ins_aboutCon1 {
  width: 100%;
  height: 250vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  padding-bottom: 1.28rem;
  background: #FFFFFF;
}
.ins_aboutCon1 .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon1 .mask_box .content1 {
  width: 100%;
  height: auto;
  padding-top: var(--header-height);
}
.ins_aboutCon1 .mask_box .content1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .mask_box .content1 .center_box .left_box {
  width: 36%;
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}
.ins_aboutCon1 .mask_box .content1 .center_box .left_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .mask_box .content1 .center_box .left_box .idx_title .t3 {
  max-height: 1.85rem;
  overflow: auto;
}
.ins_aboutCon1 .mask_box .content1 .center_box .left_box .img_box {
  width: 100%;
  height: 3.54rem;
  position: absolute;
  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;
  background: #F0F0F0;
  border-radius: 0.16rem;
  overflow: hidden;
  bottom: 0;
  left: 0;
}
.ins_aboutCon1 .mask_box .content1 .center_box .left_box .img_box .img {
  width: 100%;
  height: 100%;
}
.ins_aboutCon1 .mask_box .content1 .center_box .left_box .img_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon1 .mask_box .content1 .center_box .left_box .img_box .icon {
  width: 0.61rem;
  height: 0.61rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  cursor: pointer;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box {
  width: 55.2%;
  position: relative;
  z-index: 1;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .images img {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item i {
  width: 0.1rem;
  height: 0.1rem;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item i img {
  opacity: 0;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #BD1A21;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item i::before {
  content: '';
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  background: #FFFFFFB2;
  z-index: -2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  opacity: 0;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item i.red::before,
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item i.white::before {
  opacity: 1;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item i.red img,
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item i.white img {
  opacity: 1;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item span {
  position: absolute;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  left: 0.15rem;
  font-size: var(--font16);
  color: #656565;
}
.ins_aboutCon1 .mask_box .content1 .center_box .right_box .map_box .item_box .item span.red {
  color: #FFFFFF;
}
.ins_aboutCon1 .mask_box .content2 {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 5;
  bottom: 1rem;
  left: 0;
  opacity: 0;
  transform: translateY(100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon1 .mask_box .content2 .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon1 .mask_box .content2 .item_box .item {
  width: fit-content;
  color: #FFFFFF;
}
.ins_aboutCon1 .mask_box .content2 .item_box .item .word {
  font-family: "Anta";
}
.ins_aboutCon1 .mask_box .content2 .item_box .item .word i {
  font-style: unset;
  color: var(--active_color);
}
.ins_aboutCon1 .mask_box .content2 .item_box .item .icon {
  margin-top: 0.04rem;
}
.ins_aboutCon1 .mask_box .content2 .item_box .line {
  width: 1px;
  height: 0.78rem;
  border-left: 1px dashed #ffffff;
  margin: auto 0;
}
@media (max-width:990px) {
  .ins_aboutCon1 .mask_box .content2 .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 0.2rem;
  }
  .ins_aboutCon1 .mask_box .content2 .item_box .line {
    display: none;
  }
}
@media (max-width:990px) {
  .ins_aboutCon1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon1 .mask_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon1 .mask_box .content1 .center_box .left_box {
    width: 100%;
    height: auto;
    padding-bottom: 0;
  }
  .ins_aboutCon1 .mask_box .content1 .center_box .left_box .idx_title .t3 {
    width: 100%;
    height: auto;
    max-height: unset;
  }
  .ins_aboutCon1 .mask_box .content1 .center_box .left_box .img_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
  background: #F0F0F0;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.ins_aboutCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_aboutCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 85%;
}
.ins_aboutCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.11rem;
  padding-bottom: 0.57rem;
}
.ins_aboutCon2 .center_box .item_box .item .word .t1 {
  font-weight: 600;
}
.ins_aboutCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.12rem;
}
@media (max-width:990px) {
  .ins_aboutCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
  background: #FFFFFF;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.ins_aboutCon3 .center_box .swiper_box ul li {
  width: 20%;
  height: auto;
}
.ins_aboutCon3 .center_box .swiper_box ul li .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .swiper_box ul li .img .pb {
  padding-bottom: 85.121%;
}
.ins_aboutCon3 .center_box .swiper_box ul li .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon3 .center_box .swiper_box ul li .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_aboutCon3 .center_box .swiper_box ul li .word .t1 {
  font-weight: 600;
}
.ins_aboutCon3 .center_box .swiper_box ul li .word .t2 {
  margin-top: 0.12rem;
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
  background: #F0F0F0;
}
.ins_aboutCon4 .center_box {
  width: 100%;
  height: auto;
  padding-left: 2rem;
}
.ins_aboutCon4 .center_box .content1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon4 .center_box .content1 .idx_title {
  width: 50%;
  height: auto;
  position: absolute;
  top: 0;
}
.ins_aboutCon4 .center_box .content1 .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper-slide-active {
  z-index: 10;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper_info {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper_info .swiper_switch {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper_info .swiper_word {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper_info .swiper_word .swiper-slide {
  width: 40%;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper_info .swiper_word .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper_info .swiper_word .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper_info .swiper_word .centerInfo .img .pb {
  padding-bottom: 63%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper_info .swiper_word .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon4 .center_box .content1 .swiper_box .swiper_info .swiper_word .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_aboutCon4 .center_box .content2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-right: 2rem;
  margin-top: 1rem;
}
.ins_aboutCon4 .center_box .content2 .swiper_item {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_aboutCon4 .center_box .content2 .swiper_item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.5;
  top: 0.02rem;
  z-index: -5;
}
.ins_aboutCon4 .center_box .content2 .swiper_item ul {
  position: relative;
  z-index: 5;
}
.ins_aboutCon4 .center_box .content2 .swiper_item ul li {
  width: auto;
  padding-right: 0.7rem;
}
.ins_aboutCon4 .center_box .content2 .swiper_item ul li .centerInfo {
  width: fit-content;
  text-align: center;
  padding-top: 0.28rem;
  font-size: var(--font24);
  opacity: 0.5;
  color: #000;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon4 .center_box .content2 .swiper_item ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  opacity: 0;
  height: 0.05rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0rem;
  left: 0;
}
.ins_aboutCon4 .center_box .content2 .swiper_item ul li.active .centerInfo {
  font-weight: 600;
  opacity: 1;
}
.ins_aboutCon4 .center_box .content2 .swiper_item ul li.active .centerInfo::after {
  opacity: 1;
}
.ins_aboutCon4 .center_box .content2 .swiper_item ul li:hover .centerInfo {
  opacity: 1;
}
.ins_aboutCon4 .center_box .content2 .swiper_item ul li:last-child {
  padding-right: 0;
}
@media (max-width:990px) {
  .ins_aboutCon4 .center_box {
    padding-left: 0;
  }
  .ins_aboutCon4 .center_box .content1 .idx_title {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon4 .center_box .content2 {
    padding: 0;
  }
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
}
.ins_aboutCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .left_box {
  width: 41%;
  position: relative;
  z-index: 2;
  padding: 1.27rem 0;
}
.ins_aboutCon5 .center_box .left_box::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  right: 0%;
  top: 0;
  border-radius: 0 16px 16px 0;
  background: #F0F0F0;
  box-shadow: 18px -2px 33.5px -16px rgba(0, 0, 0, 0.2);
}
.ins_aboutCon5 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
  max-height: 6.1rem;
  overflow: auto;
}
.ins_aboutCon5 .center_box .left_box .item_box .item {
  font-size: var(--font24);
}
.ins_aboutCon5 .center_box .right_box {
  width: 50%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.23rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.8rem 0;
}
.ins_aboutCon5 .center_box .right_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .right_box .swiper_box ul {
  transition-timing-function: linear !important;
}
.ins_aboutCon5 .center_box .right_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_aboutCon5 .center_box .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #F0F0F0;
  border-radius: 0.16rem;
}
.ins_aboutCon5 .center_box .right_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 122%;
}
.ins_aboutCon5 .center_box .right_box .swiper_box ul li .centerInfo .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon5 .center_box .right_box .swiper_box ul li .centerInfo .img {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon5 .center_box .right_box .swiper_box ul li .centerInfo .img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(115, 115, 115, 0.5) 0%, rgba(217, 217, 217, 0) 66.83%);
  top: 90%;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
}
.ins_productCon1 .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.28rem;
}
.ins_productCon1 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .content1 .list_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;
  margin-top: 0.2rem;
  gap: 0.22rem;
}
.ins_productCon1 .center_box .content1 .list_box .list {
  width: fit-content;
  padding: 0.08rem 0.22rem;
  background: #F0F0F0;
  border-radius: 0.09rem;
  cursor: pointer;
}
.ins_productCon1 .center_box .content1 .list_box .list.active {
  background: #000;
  color: #FFFFFF;
}
.ins_productCon1 .center_box .content1 .content_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.ins_productCon1 .center_box .content1 .content_box .content {
  width: 100%;
  height: auto;
  display: none;
}
.ins_productCon1 .center_box .content1 .content_box .content .item_box {
  width: 100%;
  height: auto;
  gap: 0.2rem;
}
.ins_productCon1 .center_box .content1 .content_box .content .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: #F0F0F0;
  padding: 0.6rem 0.4rem;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_productCon1 .center_box .content1 .content_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_productCon1 .center_box .content1 .content_box .content .item_box .item .word .t1 {
  font-weight: 600;
}
.ins_productCon1 .center_box .content1 .content_box .content .item_box .item .word .t2 {
  margin-top: 0.08rem;
}
.ins_productCon1 .center_box .content1 .content_box .content .item_box .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.56rem;
}
.ins_productCon1 .center_box .content1 .content_box .content .item_box .item .img .pb {
  padding-bottom: 124%;
}
.ins_productCon1 .center_box .content1 .content_box .content .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon1 .center_box .content1 .content_box .content.active {
  display: block;
}
.ins_productCon1 .center_box .content1 .item_box1 {
  width: 100%;
  height: auto;
  gap: 0.2rem;
  margin-top: 0.68rem;
}
.ins_productCon1 .center_box .content1 .item_box1 .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: #F0F0F0;
  padding: 0.6rem 0.4rem;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_productCon1 .center_box .content1 .item_box1 .item .word {
  width: 100%;
  height: auto;
  text-align: center;
}
.ins_productCon1 .center_box .content1 .item_box1 .item .word .t1 {
  color: #000000;
  opacity: 0.5;
}
.ins_productCon1 .center_box .content1 .item_box1 .item .word .t2 {
  margin-top: 0.08rem;
  font-weight: 600;
}
.ins_productCon1 .center_box .content1 .item_box1 .item .word .t3 {
  margin-top: 0.08rem;
}
.ins_productCon1 .center_box .content1 .item_box1 .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
.ins_productCon1 .center_box .content1 .item_box1 .item .img .pb {
  padding-bottom: 81%;
}
.ins_productCon1 .center_box .content1 .item_box1 .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon1 .center_box .content1 .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.68rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon1 .center_box .content1 .images_box .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon1 .center_box .content1 .images_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .content1 .images_box .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.7rem;
  text-align: center;
}
.ins_productCon1 .center_box .content1 .images_box .word_box .t1 {
  font-weight: 600;
}
.ins_productCon1 .center_box .content1 .images_box .word_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 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;
}
.ins_productCon1 .center_box .content1 .images_box .word_box .idx_more .more {
  border-radius: 0;
}
.ins_productCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
  background: #F9F9F9;
}
.ins_productCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .left_box {
  width: 66.6%;
  height: auto;
}
.ins_productCon2 .center_box .left_box .idx_title .t2 {
  margin-top: 0.2rem;
}
.ins_productCon2 .center_box .left_box .idx_title .t1 {
  line-height: 1;
}
.ins_productCon2 .center_box .right_box {
  width: 26.8%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}
.ins_productCon2 .center_box .right_box .content1 {
  width: 100%;
  height: auto;
  background: #F0F0F0;
  padding: 0.3rem 0.34rem;
  border-radius: 0.16rem;
}
.ins_productCon2 .center_box .right_box .content1 .title {
  font-weight: 600;
}
.ins_productCon2 .center_box .right_box .content1 .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.18rem;
}
.ins_productCon2 .center_box .right_box .content1 .word_box .word {
  width: 100%;
  height: auto;
  padding-bottom: 0.18rem;
  border-bottom: 1px solid #0000001A;
}
.ins_productCon2 .center_box .right_box .content1 .word_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 500;
}
.ins_productCon2 .center_box .right_box .content1 .word_box .word .t2 {
  margin-top: 0.08rem;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
}
.ins_productCon2 .center_box .right_box .content1 .word_box .word .t2 img {
  flex-shrink: 0;
}
.ins_productCon2 .center_box .right_box .content1 .word_box .word .img {
  width: 100%;
  height: auto;
  margin-top: 0.18rem;
  width: 1.1rem;
  min-width: 100px;
  border-radius: 0.09rem;
  overflow: hidden;
}
.ins_productCon2 .center_box .right_box .content1 .word_box .word .img img {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .right_box .content1 .word_box .word:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_productCon2 .formContent .contForm1 .btn_box .btn {
    width: fit-content;
    padding: 0.08rem 0.24rem;
  }
}
.ins_productCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #FFFFFF;
  padding: 0.1rem 0;
}
.ins_productCon3 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon3 .center_box .left_box {
  width: fit-content;
  font-size: var(--font16);
}
.ins_productCon3 .center_box .right_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.5rem;
}
.ins_productCon3 .center_box .right_box .list_box {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.48rem;
}
.ins_productCon3 .center_box .right_box .list_box .list {
  color: #00000080;
  font-size: var(--font16);
  font-weight: 500;
}
.ins_productCon3 .center_box .right_box .idx_more {
  width: auto;
}
.ins_productCon3 .center_box .right_box .idx_more .more {
  padding: 0.08rem 0.19rem;
  font-size: var(--font16);
}
@media (max-width:990px) {
  .ins_productCon3 .center_box {
    gap: 0.2rem;
  }
}
.ins_productCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg1);
  padding-top: 1.28rem;
  padding-bottom: 0.64rem;
}
.ins_productCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .left_box {
  width: 43%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.5rem;
}
.ins_productCon4 .center_box .left_box .idx_title .t1,
.ins_productCon4 .center_box .left_box .idx_title .t2 {
  color: var(--color1);
}
.ins_productCon4 .center_box .left_box .idx_title .t2 {
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0.2rem;
}
.ins_productCon4 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  color: var(--color1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.52rem 0.2rem;
}
.ins_productCon4 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .left_box .item_box .item .t1 span {
  font-family: "Anta";
}
.ins_productCon4 .center_box .left_box .item_box .item .t1 i {
  font-style: unset;
  padding-left: 0.1rem;
  display: inline-block;
}
.ins_productCon4 .center_box .left_box .item_box .item .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
}
.ins_productCon4 .center_box .left_box .item_box .item .t2 i {
  font-style: unset;
  opacity: 0.4;
  padding-left: 0.1rem;
}
.ins_productCon4 .center_box .right_box {
  width: 46%;
  height: auto;
}
.ins_productCon4 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon4 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg1);
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
}
.ins_productCon5 .center_box {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon5 .center_box .idx_title .t1,
.ins_productCon5 .center_box .idx_title .t2 {
  color: var(--color1);
}
.ins_productCon5 .center_box .idx_title .t2 {
  font-weight: 300;
  line-height: 1.2;
  margin-top: 0.2rem;
}
.ins_productCon5 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.64rem;
}
.ins_productCon5 .center_box .content .left_box {
  width: 43%;
}
.ins_productCon5 .center_box .content .left_box .images_box {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .content .left_box .images_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon5 .center_box .content .left_box .images_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .content .left_box .images_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.42rem;
}
.ins_productCon5 .center_box .content .left_box .images_box .word .t1 {
  font-weight: 600;
}
.ins_productCon5 .center_box .content .left_box .images_box .word .t2 {
  margin-top: 0.15rem;
}
.ins_productCon5 .center_box .content .right_box {
  width: 46%;
  height: auto;
}
.ins_productCon5 .center_box .content .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.ins_productCon5 .center_box .content .right_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon5 .center_box .content .right_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .content .right_box .item_box .item .img img {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .content .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 0.28rem;
}
.ins_productCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg1);
  padding-top: 0.64rem;
  padding-bottom: 1.28rem;
}
.ins_productCon6 .center_box {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon6 .center_box .images {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon6 .center_box .images img {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .content {
  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.45rem;
  margin-top: 0.68rem;
}
.ins_productCon6 .center_box .content .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;
}
.ins_productCon6 .center_box .content .item_box .item {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon6 .center_box .content .item_box .item .icon {
  width: 0.42rem;
  height: 0.42rem;
}
.ins_productCon6 .center_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  text-align: center;
  color: var(--color1);
  margin-top: 0.18rem;
  font-size: var(--font16);
}
@media (max-width:990px) {
  .ins_productCon6 .center_box .content .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_productCon6 .center_box .content .item_box .item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background: var(--bg2);
    padding: 0.3rem;
  }
  .ins_productCon6 .center_box .content .item_box .item:last-child {
    grid-column: span 2;
  }
}
.ins_productCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon7 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.31rem;
}
.ins_productCon7 .content .center_box {
  width: 100%;
  height: auto;
  color: #FFF;
}
.ins_productCon7 .content .center_box .word {
  width: 100%;
  height: auto;
}
.ins_productCon7 .content .center_box .word .t1 {
  font-weight: 300;
}
.ins_productCon7 .content .center_box .word .t2 {
  margin-top: 0.08rem;
  font-family: "Anta";
}
.ins_productCon7 .content .center_box .word .t3 {
  margin-top: 0.08rem;
  font-weight: 300;
}
.ins_productCon7 .content .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.36rem;
}
.ins_productCon7 .content .center_box .priceBox {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
}
.ins_productCon7 .content .center_box .priceBox .more {
  width: fit-content;
  height: auto;
  padding: 0.14rem 0.25rem;
  background: #FFFFFF;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
  border-radius: 8px;
  font-size: var(--font16);
  cursor: pointer;
}
.ins_productCon7 .content .center_box .priceBox .many_box {
  width: fit-content;
  height: auto;
  position: absolute;
  top: calc(100% + 0.16rem);
  padding: 0.16rem;
  background: #FFFFFF;
  border-radius: 0.09rem;
  overflow: hidden;
  color: #000;
  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;
  padding-right: 0.43rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 18px -2px 33.5px -16px rgba(0, 0, 0, 0.2);
}
.ins_productCon7 .content .center_box .priceBox .many_box .many {
  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.07rem;
  font-weight: 300;
  cursor: pointer;
}
.ins_productCon7 .content .center_box .priceBox:hover .many_box {
  opacity: 1;
  visibility: visible;
}
.ins_productCon7 .banner_img {
  width: 100%;
  height: auto;
}
.ins_productCon7 .banner_img img {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon1 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.28rem;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .t1 {
  font-weight: 600;
}
.ins_bannerCon1 .content .center_box .t2 {
  margin-top: 0.14rem;
}
.ins_bannerCon1 .content.center {
  width: 100%;
  height: 100%;
  padding-top: 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 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon2 .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon2 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.28rem;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .t0 p {
  opacity: 0.5;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .t1 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  font-weight: 600;
  line-height: 1.1;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.14rem;
  font-weight: 300;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.36rem;
}
.ins_bannerCon2 .lineBox {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.6rem;
  z-index: 10;
}
.ins_bannerCon2 .lineBox .idxPageLine {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .lineBox .idxPageLine span {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .t1 {
    font-size: var(--font48);
  }
  .ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .t2 {
    font-size: var(--font20);
    margin-top: 0.24rem;
  }
  .ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .t2 p {
    display: contents;
  }
}
.ins_appCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
}
.ins_appCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon1 .center_box .product_list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.56rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_appCon1 .center_box .product_list .list {
  font-size: var(--font32);
  font-weight: 600;
  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;
  color: #000;
}
.ins_appCon1 .center_box .product_list .list::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 0.24rem;
  right: 0;
  background: #00000033;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(0.26rem);
}
.ins_appCon1 .center_box .product_list .list span {
  opacity: 0.3;
}
.ins_appCon1 .center_box .product_list .list:last-child::after {
  opacity: 0;
}
.ins_appCon1 .center_box .product_list .list.active span {
  opacity: 1;
}
.ins_appCon1 .center_box .swiper_box {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 0.2rem;
}
.ins_appCon1 .center_box .swiper_box ul li {
  width: fit-content;
  height: auto;
  margin-right: 0.22rem;
}
.ins_appCon1 .center_box .swiper_box ul li:last-child {
  margin-right: 0;
}
.ins_appCon1 .center_box .swiper_box ul li .centerInfo {
  width: fit-content;
  min-width: 1.08rem;
  padding: 0.06rem 0.14rem;
  background: #F0F0F0;
  border-radius: 0.09rem;
  text-align: center;
  font-size: var(--font16);
  cursor: pointer;
}
.ins_appCon1 .center_box .swiper_box ul li.active .centerInfo {
  color: #FFF;
  background: #000;
}
.ins_appCon1 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.ins_appCon1 .center_box .content_info .content {
  width: 100%;
  height: auto;
  display: none;
}
.ins_appCon1 .center_box .content_info .content .item_box {
  width: 100%;
  height: auto;
  gap: 0.52rem 0.2rem;
}
.ins_appCon1 .center_box .content_info .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_appCon1 .center_box .content_info .content .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_appCon1 .center_box .content_info .content .item_box .item .img .pb {
  padding-bottom: 62%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appCon1 .center_box .content_info .content .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_appCon1 .center_box .content_info .content .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_appCon1 .center_box .content_info .content .item_box .item .word .t1 {
  font-weight: 600;
}
.ins_appCon1 .center_box .content_info .content .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.08rem;
}
.ins_appCon1 .center_box .content_info .content.active {
  display: block !important;
}
.ins_appCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
}
.ins_appCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon2 .center_box .content {
  width: 100%;
  height: auto;
  padding-left: 2rem;
}
.ins_appCon2 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.ins_appCon2 .center_box .content .swiper_box ul li {
  width: 50%;
  height: auto;
}
.ins_appCon2 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_appCon2 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_appCon2 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 63%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appCon2 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_appCon2 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_appCon2 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 600;
}
.ins_appCon2 .center_box .content .swiper_box ul li .centerInfo .word .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.22rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.08rem;
}
.ins_appCon2 .center_box .content .swiper_box ul li .centerInfo .word .list .one {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: #F0F0F0;
  border-radius: 0.09rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:990px) {
  .ins_appCon2 .center_box .content {
    padding-left: 0;
  }
}
.ins_appCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.64rem;
  padding-bottom: 1.28rem;
}
.ins_appCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon3 .center_box .idx_title .t2 {
  margin-top: 0.2rem;
}
.ins_appCon3 .center_box .idx_title .t1 {
  line-height: 1;
}
.ins_appCon3 .center_box .formContent .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ins_appCon3 .center_box .formContent .contForm1 .btn_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_appCon3 .center_box .formContent .contForm1 .btn_box .btn {
  width: fit-content;
  padding: 0.08rem 0.28rem;
  min-width: 1.99rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_appCon3 .center_box .formContent .contForm1 .btn_box .btn:hover {
  background: var(--active_color) !important;
}
.ins_appCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
  background: #F0F0F0;
}
.ins_appCon4 .center_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.ins_appCon4 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_appCon4 .center_box .content .t1 {
  width: 100%;
  height: auto;
  font-weight: 600;
}
.ins_appCon4 .center_box .content .t2 {
  margin-top: 0.24rem;
  font-weight: 300;
}
.ins_appCon4 .center_box .content .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_appCon4 .center_box .content .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.24rem;
  font-size: var(--font20);
  border-bottom: 1px solid #00000033;
  font-weight: 300;
}
.ins_appCon4 .center_box .content .list .one:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_appCon4 .center_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_appCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  padding-bottom: 0.64rem;
}
.ins_appCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon5 .center_box .list_box {
  width: fit-content;
  height: auto;
  margin: 0 auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #00000080;
  overflow: hidden;
}
.ins_appCon5 .center_box .list_box .list {
  width: fit-content;
  font-size: var(--font24);
  padding: 0.1rem 0.3rem;
  min-width: 2.9rem;
  text-align: center;
  border-right: 1px solid #00000080;
  font-weight: 600;
  color: #00000080;
  cursor: pointer;
}
.ins_appCon5 .center_box .list_box .list:last-child {
  border: 0;
}
.ins_appCon5 .center_box .list_box .list.active {
  background: #000;
  color: #FFFFFF;
}
.ins_appCon5 .center_box .content_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.68rem;
}
.ins_appCon5 .center_box .content_info .content {
  width: 100%;
  height: auto;
  display: none;
  background: #F0F0F0;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appCon5 .center_box .content_info .content .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appCon5 .center_box .content_info .content .images_box .img {
  width: 100%;
  height: auto;
}
.ins_appCon5 .center_box .content_info .content .images_box .img img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appCon5 .center_box .content_info .content .images_box .word_box {
  width: 57%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.09rem 0.66rem;
  color: #FFFFFF;
}
.ins_appCon5 .center_box .content_info .content .images_box .word_box .t1 {
  font-weight: 600;
}
.ins_appCon5 .center_box .content_info .content .images_box .word_box .t2 {
  margin-top: 0.24rem;
}
.ins_appCon5 .center_box .content_info .content .images_box .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  font-size: var(--font20);
  font-weight: 300;
}
.ins_appCon5 .center_box .content_info .content .images_box .word_box .list .one {
  width: 100%;
  height: auto;
}
.ins_appCon5 .center_box .content_info .content .contBox {
  width: 100%;
  height: auto;
  padding: 0.74rem 0.68rem;
  padding-right: 0.4rem;
  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_appCon5 .center_box .content_info .content .contBox .cont0 {
  width: 34%;
  padding-right: 0.4rem;
  border-right: 1px solid #00000033;
}
.ins_appCon5 .center_box .content_info .content .contBox .cont1 {
  width: 41%;
  padding: 0 0.44rem;
  border-right: 1px solid #00000033;
}
.ins_appCon5 .center_box .content_info .content .contBox .cont2 {
  width: 25%;
  padding-left: 0.4rem;
}
.ins_appCon5 .center_box .content_info .content .contBox .title {
  width: 100%;
  height: auto;
  font-weight: 600;
}
.ins_appCon5 .center_box .content_info .content .contBox .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.ins_appCon5 .center_box .content_info .content .contBox .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_appCon5 .center_box .content_info .content .contBox .item_box .item .img {
  width: 1.03rem;
  flex-shrink: 0;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_appCon5 .center_box .content_info .content .contBox .item_box .item .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.ins_appCon5 .center_box .content_info .content .contBox .item_box .item .word .font {
  width: 100%;
  height: auto;
}
.ins_appCon5 .center_box .content_info .content .contBox .item_box .item .word .font .t1 {
  font-weight: 500;
}
.ins_appCon5 .center_box .content_info .content .contBox .item_box .item .word .font .t2 {
  margin-top: 0.08rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width:1280px) {
  .ins_appCon5 .center_box .content_info .content .contBox .item_box .item .word .font .t1 {
    font-size: var(--font18);
  }
  .ins_appCon5 .center_box .content_info .content .contBox .item_box .item .word .font .t2 {
    font-size: var(--font14);
  }
}
.ins_appCon5 .center_box .content_info .content .contBox .list {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_appCon5 .center_box .content_info .content .contBox .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font16);
}
.ins_appCon5 .center_box .content_info .content.active {
  display: block;
}
@media (max-width:990px) {
  .ins_appCon5 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
    border: 0;
    gap: 0.1rem 0.05rem;
  }
  .ins_appCon5 .center_box .list_box .list {
    width: 100%;
    height: auto;
    font-size: var(--font18);
    background: #0000001A;
    border: 0;
    border-radius: 0.1rem;
    overflow: hidden;
  }
  .ins_appCon5 .center_box .content_info .content .images_box .word_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    color: #000;
    padding: 0.4rem;
  }
  .ins_appCon5 .center_box .content_info .content .contBox {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.2rem;
    margin-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
  .ins_appCon5 .center_box .content_info .content .contBox .cont0,
  .ins_appCon5 .center_box .content_info .content .contBox .cont1,
  .ins_appCon5 .center_box .content_info .content .contBox .cont2 {
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #00000021;
  }
  .ins_appCon5 .center_box .content_info .content .contBox .cont2 {
    padding-bottom: 0;
    border: 0;
  }
  .ins_appCon5 .center_box .content_info .content .contBox .item_box .item .img {
    width: 30%;
  }
}
.ins_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  padding: 1.28rem 0;
}
.ins_caseCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  gap: 0.5rem 0.2rem;
}
.ins_caseCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 62%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_caseCon1 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_caseCon1 .center_box .item_box .item .word .t1 {
  font-weight: 600;
}
.ins_caseCon1 .center_box .item_box .item .word .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.22rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.08rem;
}
.ins_caseCon1 .center_box .item_box .item .word .list .one {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: #F0F0F0;
  border-radius: 0.09rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font16);
}
@media (max-width:990px) {
  .ins_caseCon1 .center_box .item_box .item .word .list {
    margin-top: 0.2rem;
  }
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.68rem;
  padding-bottom: 0.64rem;
}
.ins_caseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box {
  width: 62%;
}
.ins_caseCon2 .center_box .left_box .title {
  width: 100%;
  height: auto;
  font-weight: 600;
  line-height: 1.1;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon2 .center_box .left_box .contentInfo {
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content1 {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content1 .word {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content1 .word .t1 {
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content1 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  gap: 0.2rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content1 .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content1 .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content1 .item_box .item .img img {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content1 .item_box .item .icon {
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  z-index: 5;
  cursor: pointer;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content2 {
  width: 100%;
  height: auto;
  margin-top: 1.28rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content2 .content {
  width: 100%;
  height: auto;
  padding: 0.56rem 0.5rem;
  background: #F0F0F0;
  border-radius: 0.16rem;
  margin-top: 0.68rem;
  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_caseCon2 .center_box .left_box .contentInfo .content2 .content .word {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content2 .content .word .t1 {
  font-weight: 600;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content2 .content .word .t2 {
  margin-top: 0.12rem;
  font-weight: 300;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content3 {
  width: 100%;
  height: auto;
  margin-top: 1.28rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .content4 {
  width: 100%;
  height: auto;
  margin-top: 1.28rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .word_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .word_box .t1 {
  width: 100%;
  height: auto;
  font-weight: 300;
}
.ins_caseCon2 .center_box .left_box .contentInfo .word_box .t2 {
  margin-top: 0.24rem;
  line-height: 1.1;
  font-weight: 600;
}
.ins_caseCon2 .center_box .left_box .contentInfo .word_box .t3 {
  margin-top: 0.24rem;
  font-weight: 300;
}
.ins_caseCon2 .center_box .left_box .contentInfo .word_box .t4 {
  line-height: 1.1;
  font-weight: 600;
}
.ins_caseCon2 .center_box .left_box .contentInfo .imgs {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_caseCon2 .center_box .left_box .contentInfo .imgs img {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .table {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  overflow: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .table table {
  width: 100%;
  height: auto;
  table-layout: fixed;
  border-radius: 0.16rem;
  background: #F0F0F0;
  overflow: hidden;
  text-align: center;
  min-width: 800px;
}
.ins_caseCon2 .center_box .left_box .contentInfo .table table thead {
  width: 100%;
  height: auto;
  background: #000000;
  border-radius: 0.16rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .table table thead tr td {
  color: #FFFFFF;
  padding: 0.23rem;
  font-size: var(--font20);
}
.ins_caseCon2 .center_box .left_box .contentInfo .table table tbody {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .table table tbody tr td {
  padding: 0.2rem 0.32rem;
  font-size: var(--font20);
  font-weight: 300;
}
.ins_caseCon2 .center_box .left_box .contentInfo .table table tr td {
  border: 1px solid #0000001A;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  padding: 0.5rem 0.58rem;
  background: #F0F0F0;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #0000001A;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .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.14rem 0;
  font-size: var(--font20);
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item .top span {
  font-weight: 500;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item .top .icon {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item .top .icon::after {
  content: '';
  position: absolute;
  width: 0.11rem;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item .top .icon::before {
  content: '';
  position: absolute;
  width: 0.11rem;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(90deg);
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.16rem;
  display: none;
  padding-bottom: 0.24rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item .bot .word {
  width: 100%;
  height: auto;
  font-weight: 300;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.27rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item .bot .img img {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item:last-child {
  border-bottom: 0;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item:last-child .top {
  padding-bottom: 0;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item.active {
  border-bottom: 0;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item.active .top {
  opacity: 1;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item.active .top .icon {
  background: #000;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item.active .top .icon::after,
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item.active .top .icon::before {
  background: #FFFFFF;
}
.ins_caseCon2 .center_box .left_box .contentInfo .selectBox2 .item.active .top .icon::before {
  transform: rotate(0);
}
.ins_caseCon2 .center_box .left_box .contentInfo .list_box2 {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .list_box2 .list {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  padding-right: 0.15rem;
  border-radius: 0.16rem;
  background: #F0F0F0;
}
.ins_caseCon2 .center_box .left_box .contentInfo .list_box2 .list .titBox {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .list_box2 .list .one_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.18rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .list_box2 .list .one_box .one {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  padding-left: 0.23rem;
  position: relative;
  z-index: 1;
  font-weight: 300;
}
.ins_caseCon2 .center_box .left_box .contentInfo .list_box2 .list .one_box .one::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.5em;
  left: 0;
  border-radius: 100px;
}
@media (max-width:990px) {
  .ins_caseCon2 .center_box .left_box .contentInfo .list_box2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_caseCon2 .center_box .left_box .contentInfo .word2 {
  width: 100%;
  height: auto;
  padding-left: 0.2rem;
  position: relative;
  z-index: 1;
  margin-top: 0.24rem;
}
.ins_caseCon2 .center_box .left_box .contentInfo .word2::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 1;
}
.ins_caseCon2 .center_box .left_box .contentInfo .word2::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 0.6rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.2rem;
  left: 0;
  z-index: 2;
}
.ins_caseCon2 .center_box .left_box .contentInfo .word2 .t1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.14rem;
  font-weight: 300;
}
.ins_caseCon2 .center_box .left_box .contentInfo .word2 .t1 p {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_caseCon2 .center_box .left_box .contentInfo .rate_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  padding: 0.68rem 0.54rem;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #F0F0F0;
}
.ins_caseCon2 .center_box .left_box .contentInfo .rate_box .word {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  font-weight: 300;
  line-height: 1.4;
}
.ins_caseCon2 .center_box .left_box .contentInfo .rate_box .name {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.24rem;
  font-size: var(--font20);
  font-weight: 600;
}
.ins_caseCon2 .center_box .right_box {
  width: 32.1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_caseCon2 .center_box .right_box .content {
  width: 100%;
  height: auto;
  padding: 0.3rem 0.38rem;
  background: #F0F0F0;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_caseCon2 .center_box .right_box .content1 {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .right_box .content1 .title {
  font-weight: 600;
}
.ins_caseCon2 .center_box .right_box .content1 .list {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.14rem;
}
.ins_caseCon2 .center_box .right_box .content1 .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  font-size: var(--font18);
}
.ins_caseCon2 .center_box .right_box .content1 .list .one .left {
  width: fit-content;
  flex-shrink: 0;
  font-weight: 500;
}
.ins_caseCon2 .center_box .right_box .content1 .list .one .right {
  font-weight: 300;
}
.ins_caseCon2 .center_box .right_box .content1 .list .one a {
  text-decoration: underline;
}
.ins_caseCon2 .center_box .right_box .content2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.15rem;
}
.ins_caseCon2 .center_box .right_box .content2 .icon {
  flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  min-width: 25px;
  min-height: 25px;
}
.ins_caseCon2 .center_box .right_box .content2 .word {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .right_box .content2 .word .t1 {
  font-weight: 600;
}
.ins_caseCon2 .center_box .right_box .content2 .word .t2 {
  margin-top: 0.08rem;
  font-weight: 300;
}
.ins_caseCon2 .center_box .right_box .content2 .word .more {
  width: fit-content;
  border-radius: 100px;
  background: #D9D9D9;
  padding: 3px 0.16rem;
  margin-top: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font16);
}
.ins_caseCon2 .center_box .right_box .content2 .word .more:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_serviceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
}
.ins_serviceCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_serviceCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  gap: 0.2rem;
}
.ins_serviceCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F0F0F0;
  padding: 0.56rem 0.48rem;
  border-radius: 0.16rem;
}
.ins_serviceCon1 .center_box .item_box .item .icon {
  width: 0.86rem;
  height: 0.86rem;
  background: #D9D9D9;
  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;
}
.ins_serviceCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 1.5rem;
}
.ins_serviceCon1 .center_box .item_box .item .word_box .t1 {
  width: 100%;
  height: auto;
}
.ins_serviceCon1 .center_box .item_box .item .word_box .t2 {
  font-weight: 600;
  margin-top: 0.16rem;
}
.ins_serviceCon1 .center_box .item_box .item .title {
  font-weight: 600;
}
.ins_serviceCon1 .center_box .item_box .item .content {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_serviceCon1 .center_box .item_box .item .content .list {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.38rem;
  text-align: center;
}
.ins_serviceCon1 .center_box .item_box .item .content .list .img {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_serviceCon1 .center_box .item_box .item .content .list .word {
  font-weight: 500;
  margin-top: 0.12rem;
}
@media (max-width:990px) {
  .ins_serviceCon1 .center_box .item_box .item {
    width: 100%;
    height: auto;
    padding: 0.3rem;
  }
  .ins_serviceCon1 .center_box .item_box .item .word_box {
    margin-top: 0.6rem;
  }
  .ins_serviceCon1 .center_box .item_box .item .content {
    width: fit-content;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
.ins_supportCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
}
.ins_supportCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_supportCon1 .center_box .idx_title {
  width: 90%;
  margin: 0 auto;
}
@media (max-width:990px) {
  .ins_supportCon1 .center_box .idx_title {
    width: 100%;
    height: auto;
  }
  .ins_supportCon1 .center_box .idx_title .t2 {
    text-align: justify;
  }
}
.ins_supportCon1 .center_box .imgs {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_supportCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
  background: #F0F0F0;
}
.ins_supportCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_supportCon2 .center_box .content1 {
  width: 100%;
  height: auto;
}
.ins_supportCon2 .center_box .content1 .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  gap: 0.2rem;
}
.ins_supportCon2 .center_box .content1 .item_box .item {
  width: 100%;
  height: auto;
}
.ins_supportCon2 .center_box .content1 .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_supportCon2 .center_box .content1 .item_box .item .img .pb {
  padding-bottom: 113%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_supportCon2 .center_box .content1 .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_supportCon2 .center_box .content1 .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_supportCon2 .center_box .content1 .item_box .item .word .t1 {
  font-weight: 600;
}
.ins_supportCon2 .center_box .content1 .item_box .item .word .t2 {
  font-weight: 300;
  margin-top: 0.08rem;
}
@media (max-width:990px) {
  .ins_supportCon2 .center_box .content1 .item_box {
    gap: 0.6rem;
  }
  .ins_supportCon2 .center_box .content1 .item_box .item .img .pb {
    padding-bottom: 65%;
  }
}
.ins_supportCon2 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 1.28rem;
  padding: 0.56rem 0.38rem;
  background: #FFFFFF;
  border-radius: 0.16rem;
}
.ins_supportCon2 .center_box .content2 .formContent .item_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ins_supportCon2 .center_box .tipBox {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  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_supportCon2 .center_box .tipBox .one {
  font-size: var(--font16);
  color: #1F1F1F80;
}
.ins_developerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.68rem;
  padding-bottom: 1.28rem;
}
.ins_developerCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_developerCon1 .center_box .left_box {
  width: 16%;
  height: 100%;
  position: sticky;
  top: 1rem;
}
.ins_developerCon1 .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.1rem;
}
.ins_developerCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.1rem 0;
}
.ins_developerCon1 .center_box .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  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;
  opacity: 0.5;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #000;
  gap: 0.1rem;
}
.ins_developerCon1 .center_box .left_box .item_box .item .top span {
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_developerCon1 .center_box .left_box .item_box .item .top i {
  font-size: 12px;
}
.ins_developerCon1 .center_box .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.2rem;
  display: none;
}
.ins_developerCon1 .center_box .left_box .item_box .item .bot .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_developerCon1 .center_box .left_box .item_box .item .bot .list .one {
  width: 100%;
  height: auto;
  opacity: 0.5;
  font-size: var(--font14);
  cursor: pointer;
}
.ins_developerCon1 .center_box .left_box .item_box .item .bot .list .one.active {
  opacity: 1;
  font-weight: 500;
}
.ins_developerCon1 .center_box .left_box .item_box .item.active .top {
  opacity: 1;
}
.ins_developerCon1 .center_box .left_box .item_box .item.active .top i {
  transform: rotate(180deg);
}
.ins_developerCon1 .center_box .left_box .item_box .item.active .bot {
  display: block;
}
.ins_developerCon1 .center_box .right_box {
  width: 78.7%;
}
.ins_developerCon1 .center_box .right_box .title {
  width: 100%;
  height: auto;
}
.ins_developerCon1 .center_box .right_box .title .t1 {
  font-weight: 600;
}
.ins_developerCon1 .center_box .right_box .title .t2 {
  font-weight: 300;
  margin-top: 0.24rem;
}
.ins_developerCon1 .center_box .right_box .content_box {
  width: 100%;
  height: auto;
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.48rem;
}
.ins_developerCon1 .center_box .right_box .content_box .content {
  width: 100%;
  height: auto;
}
.ins_developerCon1 .center_box .right_box .content_box .content .word_box {
  width: 100%;
  height: auto;
}
.ins_developerCon1 .center_box .right_box .content_box .content .word_box .t1 {
  font-weight: 600;
}
.ins_developerCon1 .center_box .right_box .content_box .content .word_box .t2 {
  font-weight: 300;
  margin-top: 0.24rem;
}
.ins_developerCon1 .center_box .right_box .content_box .content .img {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_developerCon1 .center_box .right_box .content_box .content .img img {
  max-width: 100%;
  max-height: 100%;
}
.ins_developerCon1 .center_box .right_box .content_box .content .table_info {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
@media (max-width:990px) {
  .ins_developerCon1 .center_box .left_box {
    position: relative;
    z-index: 1;
    top: unset;
  }
  .ins_developerCon1 .center_box .left_box .item_box {
    width: 100%;
    height: auto;
  }
  .ins_developerCon1 .center_box .left_box .item_box .item {
    display: none;
  }
  .ins_developerCon1 .center_box .left_box .item_box .item.active {
    display: block;
  }
  .ins_developerCon1 .center_box .left_box .item_box .item .top {
    font-size: var(--font36);
  }
  .ins_developerCon1 .center_box .left_box .item_box .item .top i {
    display: none;
  }
}
.ins_informationCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.68rem;
  padding-bottom: 1.28rem;
}
.ins_informationCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_informationCon1 .center_box .left_box {
  width: 15%;
  height: 100%;
  position: sticky;
  top: 1rem;
}
.ins_informationCon1 .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.2rem;
}
.ins_informationCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  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;
  opacity: 0.5;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #000;
  gap: 0.1rem;
  cursor: pointer;
}
.ins_informationCon1 .center_box .left_box .item_box .item span {
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_informationCon1 .center_box .left_box .item_box .item i {
  font-size: 12px;
  transform: rotate(-90deg);
}
.ins_informationCon1 .center_box .left_box .item_box .item.active {
  opacity: 1;
}
.ins_informationCon1 .center_box .right_box {
  width: 78.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.48rem;
}
.ins_informationCon1 .center_box .right_box .content1 {
  width: 100%;
  height: auto;
}
.ins_informationCon1 .center_box .right_box .content1 .titBox {
  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.38rem;
}
.ins_informationCon1 .center_box .right_box .content1 .titBox .icon {
  width: 0.48rem;
  height: 0.48rem;
  flex-shrink: 0;
}
.ins_informationCon1 .center_box .right_box .content1 .titBox .word {
  width: 100%;
  height: auto;
  font-size: var(--font48);
  font-weight: 600;
}
.ins_informationCon1 .center_box .right_box .content1 .sub {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_informationCon1 .center_box .right_box .list_box {
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
}
.ins_informationCon1 .center_box .right_box .list_box .list {
  font-weight: 300;
  font-size: var(--font16);
  line-height: 1.5;
}
.ins_informationCon1 .center_box .right_box .title {
  width: 100%;
  height: auto;
}
.ins_informationCon1 .center_box .right_box .title .t1 {
  font-weight: 500;
}
.ins_informationCon1 .center_box .right_box .iconBox {
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
}
.ins_informationCon1 .center_box .right_box .iconBox .icon {
  width: 0.34rem;
  flex-shrink: 0;
}
.ins_informationCon1 .center_box .right_box .iconBox .word {
  width: 100%;
  height: auto;
  font-weight: 300;
}
.ins_informationCon1 .center_box .right_box .iconBox .word .t1 {
  width: 100%;
  height: auto;
}
.ins_informationCon1 .center_box .right_box .iconBox .word .t2 {
  margin-top: 0.04rem;
  color: #00000080;
}
.ins_informationCon1 .center_box .right_box .table1 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_informationCon1 .center_box .right_box .table1 .item_box {
  width: 100%;
  height: auto;
  border-top: 1px solid #0000001A;
}
.ins_informationCon1 .center_box .right_box .table1 .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #0000001A;
  font-weight: 300;
}
.ins_informationCon1 .center_box .right_box .table1 .item_box .item .name {
  width: 20%;
  padding: 0.15rem 0;
  padding-left: 0.36rem;
  border-right: 1px solid #0000001A;
  flex-shrink: 0;
}
.ins_informationCon1 .center_box .right_box .table1 .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.15rem 0;
  padding-left: 0.36rem;
  color: #00000080;
}
.ins_informationCon1 .center_box .right_box .table2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_informationCon1 .center_box .right_box .table2 .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.07rem;
}
.ins_informationCon1 .center_box .right_box .table2 .item_box .item {
  width: 100%;
  height: 38px;
  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;
  background: #F0F0F0;
  border-radius: 0.08rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 0.42rem;
  font-size: var(--font16);
  font-weight: 300;
}
.ins_informationCon1 .center_box .right_box .table2 .item_box .item .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.15rem;
}
.ins_informationCon1 .center_box .right_box .table2 .item_box .item .icon img {
  width: 0.24rem;
}
.ins_informationCon1 .center_box .right_box .table2 .item_box .item:nth-child(2n) {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .ins_informationCon1 .center_box .left_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset;
  }
}
.ins_informationCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.68rem;
  padding-bottom: 1.28rem;
}
.ins_informationCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_informationCon2 .center_box .left_box {
  width: 16%;
  height: 100%;
  position: sticky;
  top: 1rem;
}
.ins_informationCon2 .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.1rem;
}
.ins_informationCon2 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.1rem 0;
}
.ins_informationCon2 .center_box .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  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;
  opacity: 0.5;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #000;
  gap: 0.1rem;
}
.ins_informationCon2 .center_box .left_box .item_box .item .top span {
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_informationCon2 .center_box .left_box .item_box .item .top i {
  font-size: 12px;
}
.ins_informationCon2 .center_box .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.2rem;
  display: none;
}
.ins_informationCon2 .center_box .left_box .item_box .item .bot .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_informationCon2 .center_box .left_box .item_box .item .bot .list .one {
  width: 100%;
  height: auto;
  opacity: 0.5;
  font-size: var(--font14);
  cursor: pointer;
}
.ins_informationCon2 .center_box .left_box .item_box .item .bot .list .one.active {
  opacity: 1;
  font-weight: 500;
}
.ins_informationCon2 .center_box .left_box .item_box .item.active .top {
  opacity: 1;
}
.ins_informationCon2 .center_box .left_box .item_box .item.active .top i {
  transform: rotate(180deg);
}
.ins_informationCon2 .center_box .left_box .item_box .item.active .bot {
  display: block;
}
.ins_informationCon2 .center_box .right_box {
  width: 78.7%;
  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.68rem;
}
.ins_informationCon2 .center_box .right_box .content {
  width: 100%;
  height: auto;
}
.ins_informationCon2 .center_box .right_box .content .title {
  font-weight: 600;
}
.ins_informationCon2 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
  padding: 0.32rem 0.38rem;
  background: #F0F0F0;
  border-radius: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_informationCon2 .center_box .right_box .content .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;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #0000001A;
  gap: 0.4rem;
}
.ins_informationCon2 .center_box .right_box .content .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_informationCon2 .center_box .right_box .content .item_box .item .word .t1 {
  opacity: 0.5;
  font-weight: 300;
}
.ins_informationCon2 .center_box .right_box .content .item_box .item .word .t2 {
  font-weight: 600;
  margin-top: 0.08rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_informationCon2 .center_box .right_box .content .item_box .item .word .t3 {
  margin-top: 0.08rem;
  font-weight: 300;
}
.ins_informationCon2 .center_box .right_box .content .item_box .item .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font20);
  color: #C7C7C7;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_informationCon2 .center_box .right_box .content .item_box .item .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_informationCon2 .center_box .right_box .content .item_box .item .icon:hover {
  color: #000;
}
.ins_informationCon2 .center_box .right_box .content .item_box .item .icon:hover img {
  filter: brightness(0) invert(0);
}
.ins_informationCon2 .center_box .right_box .content .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_informationCon2 .center_box .left_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset;
  }
}
.ins_videoCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  padding: 1.28rem 0;
}
.ins_videoCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_videoCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.5rem 0.2rem;
}
.ins_videoCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_videoCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_videoCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 62%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_videoCon1 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_videoCon1 .center_box .item_box .item .img .icon {
  position: absolute;
  z-index: 5;
  width: 0.62rem;
  height: 0.62rem;
  cursor: pointer;
}
.ins_videoCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_videoCon1 .center_box .item_box .item .word .t1 {
  font-weight: 600;
}
.ins_videoCon1 .center_box .item_box .item .word .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.22rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.08rem;
}
.ins_videoCon1 .center_box .item_box .item .word .list .one {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: #F0F0F0;
  border-radius: 0.09rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font16);
}
.ins_joinCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.28rem 0;
}
.ins_joinCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  margin-top: 0.68rem;
}
.ins_joinCon1 .center_box .item_box .item {
  width: 14.779%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon1 .center_box .item_box .item .img {
  width: 100%;
  height: 5.14rem;
  overflow: hidden;
}
.ins_joinCon1 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon1 .center_box .item_box .item .content {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.26rem;
  color: #FFF;
}
.ins_joinCon1 .center_box .item_box .item .content .bot {
  width: 100%;
  height: auto;
  display: none;
  padding-top: 0.28rem;
}
.ins_joinCon1 .center_box .item_box .item .content .bot .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
  font-weight: 300;
}
.ins_joinCon1 .center_box .item_box .item .content .bot .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 0.15rem;
}
.ins_joinCon1 .center_box .item_box .item .content .bot .list .one::after {
  content: '';
  position: absolute;
  width: 0.05rem;
  height: 0.05rem;
  background: #FFF;
  border-radius: 100px;
  top: 0.5em;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_joinCon1 .center_box .item_box .item.active {
  width: 52.941%;
}
.ins_joinCon1 .center_box .item_box .item.active .bot {
  display: block;
}
@media (max-width:990px) {
  .ins_joinCon1 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_joinCon1 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_joinCon1 .center_box .item_box .item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 1;
  }
  .ins_joinCon1 .center_box .item_box .item .content {
    z-index: 2;
  }
  .ins_joinCon1 .center_box .item_box .item .content .bot {
    display: block;
  }
}
.ins_joinCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
}
.ins_joinCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.ins_joinCon2 .center_box .swiper_box ul li {
  width: 50%;
  height: auto;
}
.ins_joinCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_joinCon2 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 63%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_joinCon2 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_joinCon2 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_joinCon2 .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 600;
}
.ins_joinCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  padding-top: 0.64rem;
  padding-bottom: 1.28rem;
}
.ins_joinCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .selectBox .item {
  width: 32.5%;
}
.ins_joinCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  background: #F0F0F04D;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_joinCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #0000001A;
}
.ins_joinCon3 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #F0F0F0;
  padding: 0.24rem 0.97rem;
}
.ins_joinCon3 .center_box .item_box .item .top .left {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.7rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_joinCon3 .center_box .item_box .item .top .left .word {
  font-size: var(--font24);
}
.ins_joinCon3 .center_box .item_box .item .top .left .icon {
  font-size: var(--font20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.2rem;
}
.ins_joinCon3 .center_box .item_box .item .top .left .icon img {
  width: 0.32rem;
}
.ins_joinCon3 .center_box .item_box .item .top .right {
  width: fit-content;
}
.ins_joinCon3 .center_box .item_box .item .top .right .icon {
  width: 0.4rem;
  height: 0.4rem;
  min-width: 30px;
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_joinCon3 .center_box .item_box .item .top .right .icon i {
  font-size: 12px;
  color: #000000;
}
.ins_joinCon3 .center_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding: 0.85rem 0.97rem;
  display: none;
}
.ins_joinCon3 .center_box .item_box .item .bot .content {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .item_box .item .bot .content .left_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.48rem;
}
.ins_joinCon3 .center_box .item_box .item .bot .content .left_box .word_box {
  width: 100%;
  height: auto;
}
.ins_joinCon3 .center_box .item_box .item .bot .content .left_box .word_box .t1 {
  font-weight: 700;
}
.ins_joinCon3 .center_box .item_box .item .bot .content .left_box .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  font-size: var(--font20);
  font-weight: 300;
}
.ins_joinCon3 .center_box .item_box .item .bot .content .right_box {
  width: fit-content;
}
.ins_joinCon3 .center_box .item_box .item .bot .content .right_box .idx_more .more {
  padding: 0.08rem 0.19rem;
}
.ins_joinCon3 .center_box .item_box .item.active {
  border-bottom: 0;
}
.ins_joinCon3 .center_box .item_box .item.active .top {
  border-bottom-right-radius: 0.16rem;
  border-bottom-left-radius: 0.16rem;
}
.ins_joinCon3 .center_box .item_box .item:last-child {
  border-bottom: 0;
}
.ins_joinCon3 .center_box .item_box .item.active + .item .top {
  border-top-right-radius: 0.16rem;
  border-top-left-radius: 0.16rem;
}
@media (max-width:990px) {
  .ins_joinCon3 .center_box .item_box .item .top {
    padding: 0.24rem;
  }
  .ins_joinCon3 .center_box .item_box .item .bot {
    padding: 0.24rem;
  }
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  padding: 1.28rem 0;
  padding-top: 0.68rem;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box {
  width: 66.6%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box .list_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.28rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_contactCon1 .center_box .left_box .list_box .list {
  font-size: var(--font32);
  color: #0000004D;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon1 .center_box .left_box .list_box .list.active {
  color: #000000;
}
.ins_contactCon1 .center_box .left_box .list_box .line {
  width: 1px;
  height: 0.24rem;
  background: #0000001A;
}
.ins_contactCon1 .center_box .left_box .idx_title {
  margin-top: 0.68rem;
}
.ins_contactCon1 .center_box .left_box .idx_title .t2 {
  margin-top: 0.2rem;
}
.ins_contactCon1 .center_box .left_box .idx_title .t1 {
  line-height: 1;
}
.ins_contactCon1 .center_box .left_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 1.28rem;
}
.ins_contactCon1 .center_box .left_box .content2 .idx_title {
  margin-top: 0;
}
.ins_contactCon1 .center_box .left_box .selectBox {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
  margin-top: 0.68rem;
}
.ins_contactCon1 .center_box .left_box .selectBox .item {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box .map_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border: 1px solid #0000001A;
  border-radius: 0.16rem;
}
.ins_contactCon1 .center_box .left_box .map_box .img {
  width: 34%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box .map_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_contactCon1 .center_box .left_box .map_box .content {
  width: 61.7%;
  height: auto;
  padding: 0.28rem 0;
  padding-right: 0.36rem;
  padding-bottom: 0.3rem;
}
.ins_contactCon1 .center_box .left_box .map_box .content .input {
  border: 1px solid #0000001A;
  border-radius: 0.1rem;
  --height: clamp(32px, 0.45rem, 45px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  padding-left: 0.16rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_contactCon1 .center_box .left_box .map_box .content .input input {
  width: 100%;
  height: var(--height);
  background: none;
  border: 0;
  font-size: var(--font16);
  font-weight: 300;
}
.ins_contactCon1 .center_box .left_box .map_box .content .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.2rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_contactCon1 .center_box .left_box .map_box .content .list .one {
  width: fit-content;
  height: auto;
  padding: 0.08rem 0.17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid #0000001A;
  font-size: var(--font16);
  color: #00000080;
  border-radius: 0.09rem;
  background: none;
  cursor: pointer;
}
.ins_contactCon1 .center_box .left_box .map_box .content .list .one.on {
  background: #000;
  color: #FFF;
  border-color: #000;
}
.ins_contactCon1 .center_box .left_box .map_box .content .address_box {
  width: 100%;
  height: auto;
  max-height: 3.55rem;
  margin-top: 0.25rem;
  overflow: 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_contactCon1 .center_box .left_box .map_box .content .address_box .address {
  width: 100%;
  height: auto;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #0000001A;
}
.ins_contactCon1 .center_box .left_box .map_box .content .address_box .address .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: 300;
}
.ins_contactCon1 .center_box .left_box .map_box .content .address_box .address .t3 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  font-weight: 300;
}
.ins_contactCon1 .center_box .left_box .map_box .content .address_box .address:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_contactCon1 .center_box .left_box .map_box .content .address_box {
    max-height: 6rem;
  }
}
@media (max-width:990px) {
  .ins_contactCon1 .center_box .left_box .map_box {
    flex-direction: column-reverse !important;
  }
}
.ins_contactCon1 .center_box .left_box .share_box {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_contactCon1 .center_box .left_box .share_box .share {
  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.32rem;
}
.ins_contactCon1 .center_box .left_box .share_box .share .right {
  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;
}
.ins_contactCon1 .center_box .left_box .share_box .share .right .list {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_contactCon1 .center_box .left_box .share_box .share .right .list .one {
  min-width: 4em;
  font-weight: 300;
  font-size: var(--font16);
  color: #00000080;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon1 .center_box .left_box .share_box .share .right .list .one:hover {
  color: #000000;
}
.ins_contactCon1 .center_box .left_box .share_box .share .right .input {
  width: fit-content;
}
.ins_contactCon1 .center_box .left_box .share_box .share .right .input input {
  width: 3rem;
  border: 0;
  border-bottom: 1px solid #0000001A;
  font-weight: 300;
  font-size: var(--font16);
  padding: 0.03rem 0;
}
.ins_contactCon1 .center_box .right_box {
  width: 26.8%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
  position: sticky;
  top: 1rem;
}
.ins_contactCon1 .center_box .right_box .content1 {
  width: 100%;
  height: auto;
  background: #F0F0F0;
  padding: 0.3rem 0.34rem;
  border-radius: 0.16rem;
}
.ins_contactCon1 .center_box .right_box .content1 .title {
  font-weight: 600;
}
.ins_contactCon1 .center_box .right_box .content1 .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.18rem;
}
.ins_contactCon1 .center_box .right_box .content1 .word_box .word {
  width: 100%;
  height: auto;
  padding-bottom: 0.18rem;
  border-bottom: 1px solid #0000001A;
}
.ins_contactCon1 .center_box .right_box .content1 .word_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 500;
}
.ins_contactCon1 .center_box .right_box .content1 .word_box .word .t2 {
  margin-top: 0.08rem;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
}
.ins_contactCon1 .center_box .right_box .content1 .word_box .word .t2 img {
  flex-shrink: 0;
}
.ins_contactCon1 .center_box .right_box .content1 .word_box .word .img {
  width: 100%;
  height: auto;
  margin-top: 0.18rem;
  width: 1.1rem;
  min-width: 100px;
  border-radius: 0.09rem;
  overflow: hidden;
}
.ins_contactCon1 .center_box .right_box .content1 .word_box .word .img img {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .right_box .content1 .word_box .word:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_contactCon1 .center_box .formContent .contForm1 .btn_box .btn {
    width: fit-content;
    padding: 0.08rem 0.2rem;
  }
  .ins_contactCon1 .center_box .left_box .selectBox {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_contactCon1 .center_box .left_box .map_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_contactCon1 .center_box .left_box .map_box .img {
    width: 100%;
    height: auto;
  }
  .ins_contactCon1 .center_box .left_box .map_box .content {
    width: 100%;
    height: auto;
    padding: 0.3rem;
  }
  .ins_contactCon1 .center_box .left_box .map_box .content .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_contactCon1 .center_box .left_box .map_box .content .list .one {
    width: 100%;
    height: auto;
  }
  .ins_contactCon1 .center_box .left_box .share_box .share {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.1rem 0.2rem;
  }
  .ins_contactCon1 .center_box .left_box .share_box .share .right {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    gap: 0.2rem;
  }
}
.ins_productCon8 {
  width: 100%;
  height: 300vh;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_productCon8 .mask_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  overflow: hidden;
}
.ins_productCon8 .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
}
.ins_productCon8 .mask_box .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon8 .mask_box .content .center_box .t1 {
  font-weight: 600;
}
.ins_productCon8 .mask_box .content .center_box .t2 {
  font-weight: 300;
  margin-top: 0.2rem;
}
.ins_productCon8 .mask_box .img_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_productCon8 .mask_box .img_box .img {
  width: 100%;
  height: 100%;
  display: none;
}
.ins_productCon8 .mask_box .img_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon8 .mask_box .img_box .img.active {
  display: block;
}
.ins_productCon8_new {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_productCon8_new .mask_box {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  overflow: hidden;
}
.ins_productCon8_new .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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
}
.ins_productCon8_new .mask_box .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon8_new .mask_box .content .center_box .t1 {
  font-weight: 600;
}
.ins_productCon8_new .mask_box .content .center_box .t2 {
  font-weight: 300;
  margin-top: 0.2rem;
}
.ins_productCon8_new .mask_box .video_new {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_productCon8_new .mask_box .video_new video {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
}
.ins_productCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon9 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding-top: 1.28rem;
}
.ins_productCon9 .content .center_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_productCon9 .content .center_box .idx_title .t2 {
  color: #FFFFFF;
  font-weight: 300;
  margin-top: 0.2rem;
  line-height: 1.1;
}
.ins_productCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  padding-bottom: 0.64rem;
  background: var(--bg1);
}
.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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.72rem;
}
.ins_productCon10 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--bg2);
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon10 .center_box .item_box .item .left_box {
  width: 50%;
}
.ins_productCon10 .center_box .item_box .item .left_box .img {
  width: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon10 .center_box .item_box .item .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon10 .center_box .item_box .item .right_box {
  width: 50%;
  padding: 0.9rem;
}
.ins_productCon10 .center_box .item_box .item .right_box .word {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon10 .center_box .item_box .item .right_box .word .t1 {
  font-weight: 500;
}
.ins_productCon10 .center_box .item_box .item .right_box .word .t2 {
  font-weight: 300;
  margin-top: 0.2rem;
}
@media (max-width:990px) {
  .ins_productCon10 .center_box .item_box .item .right_box {
    padding: 0.5rem 0.2rem;
    padding-top: 0;
  }
  .ins_productCon10 .center_box .item_box .item .right_box .word .t2 p {
    display: contents;
  }
}
.ins_productCon10 .center_box .item_box .item:nth-child(2n) {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width:990px) {
  .ins_productCon10 .center_box .item_box .item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.ins_productCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
  background: var(--bg1);
}
.ins_productCon11 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon11 .center_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon11 .center_box .idx_title .t2 {
  color: var(--color1);
  font-weight: 300;
  margin-top: 0.15rem;
}
.ins_productCon11 .center_box .img {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon11 .center_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon12 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
  background: var(--bg1);
}
.ins_productCon12 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon12 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon12 .center_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon12 .center_box .idx_title .t2 {
  color: var(--color1);
  font-weight: 300;
  margin-top: 0.15rem;
}
.ins_productCon12 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.ins_productCon12 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon12 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productCon12 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon12 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 44.6%;
}
.ins_productCon12 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon12 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: var(--color1);
}
.ins_productCon12 .center_box .swiper_box ul li .centerInfo .word .t2 {
  font-weight: 300;
  margin-top: 0.16rem;
}
.ins_productCon12 .center_box .idxPageHide span {
  background: #fff;
}
.ins_productCon12 .center_box .item_box {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.68rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid var(--color2);
  border-radius: 100px;
  overflow: hidden;
}
.ins_productCon12 .center_box .item_box .item {
  width: fit-content;
  padding: 0.11rem 0.97rem;
  color: var(--color2);
  font-size: var(--font24);
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon12 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
.ins_productCon12 .center_box .item_box .item:hover {
  color: var(--color1);
}
.ins_productCon12 .center_box .item_box .item.active {
  color: var(--bg1);
}
.ins_productCon12 .center_box .item_box .item.active::after {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_productCon12 .center_box .item_box {
    display: none;
  }
}
.ins_productCon12 .center_box .swiper_item {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_productCon12 .center_box .swiper_item ul li {
  width: fit-content;
}
.ins_productCon12 .center_box .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--font16);
  font-weight: 300;
  color: var(--color1);
}
@media (max-width:990px) {
  .ins_productCon12 .center_box .swiper_item {
    display: none;
  }
}
.ins_productCon13 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
  background: var(--bg1);
}
.ins_productCon13 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon13 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon13 .center_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon13 .center_box .idx_title .t2 {
  color: var(--color1);
  font-weight: 300;
  margin-top: 0.15rem;
}
.ins_productCon13 .center_box .content_box {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.ins_productCon13 .center_box .content_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.12rem;
}
.ins_productCon13 .center_box .content_box .item_box .gridr2 {
  grid-row: span 2;
}
.ins_productCon13 .center_box .content_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon13 .center_box .content_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon13 .center_box .content_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon13 .center_box .content_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.32rem;
  z-index: 5;
}
.ins_productCon13 .center_box .content_box .item_box .item .word .t1 {
  color: var(--color2);
  font-weight: 300;
}
.ins_productCon13 .center_box .content_box .item_box .item .word .t1 span {
  color: var(--color1);
  font-weight: 500;
}
.ins_productCon13 .center_box .content_box .item_box .item.cen .word {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon13 .center_box .content_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  margin-top: 0.12rem;
}
.ins_productCon13 .center_box .content_box .content .left {
  width: 19%;
}
.ins_productCon13 .center_box .content_box .content .center {
  width: 44.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}
.ins_productCon13 .center_box .content_box .content .right {
  width: 36%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.12rem;
}
.ins_productCon13 .center_box .content_box .content .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: var(--bg2);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon13 .center_box .content_box .content .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon13 .center_box .content_box .content .item .img img {
  width: 100%;
  height: auto;
}
.ins_productCon13 .center_box .content_box .content .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.32rem;
  z-index: 5;
}
.ins_productCon13 .center_box .content_box .content .item .word .t1 {
  color: var(--color2);
  font-weight: 300;
}
.ins_productCon13 .center_box .content_box .content .item .word .t1 span {
  color: var(--color1);
  font-weight: 500;
}
.ins_productCon13 .center_box .content_box .content .item.cen .word {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.2rem 0.32rem;
  line-height: 1;
}
@media (max-width:990px) {
  .ins_productCon13 .center_box .content_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_productCon13 .center_box .content_box .content .left,
  .ins_productCon13 .center_box .content_box .content .center,
  .ins_productCon13 .center_box .content_box .content .right {
    width: 100%;
    height: auto;
  }
}
.ins_productCon13 .center_box .content_box .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon13 .center_box .content_box .item:hover {
  transform: scale(1.01);
}
.ins_productCon14 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  padding-bottom: 1.28rem;
  background: var(--bg1);
}
.ins_productCon14 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon14 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon14 .center_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon14 .center_box .idx_title .t2 {
  color: var(--color1);
  font-weight: 300;
  margin-top: 0.15rem;
}
.ins_productCon14 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.ins_productCon14 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.88rem;
}
.ins_productCon14 .center_box .content .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;
  gap: 0.5rem;
  padding: 0.24rem 0;
  border-bottom: 1px solid var(--bg2);
  font-size: var(--font18);
}
.ins_productCon14 .center_box .content .item_box .item .word {
  color: var(--color2);
}
.ins_productCon14 .center_box .content .item_box .item .icon {
  color: var(--color1);
}
.ins_productCon14 .center_box .content .item_box .item:first-child {
  border-top: 1px solid var(--bg2);
}
.ins_productCon14 .center_box .content .item_box .item:nth-child(2) {
  border-top: 1px solid var(--bg2);
}
@media (max-width:990px) {
  .ins_productCon14 .center_box .content .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_productCon15 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  padding-bottom: 0.64rem;
  background: var(--bg1);
}
.ins_productCon15 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon15 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon15 .center_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon15 .center_box .idx_title .t2 {
  color: var(--color1);
  font-weight: 300;
  margin-top: 0.15rem;
}
.ins_productCon15 .center_box .formContent .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ins_productCon15 .center_box .formContent .item_box .item {
  border-color: var(--bg2);
}
.ins_productCon15 .center_box .formContent .item_box .item .word {
  color: var(--color2);
}
.ins_productCon15 .center_box .formContent .item_box .item .input input {
  color: var(--color1);
}
.ins_productCon15 .center_box .formContent .contForm1 .title {
  color: var(--color1);
}
.ins_productCon15 .center_box .formContent .contForm1 .btn_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ins_productCon15 .center_box .formContent .contForm1 .btn_box .btn {
  width: fit-content;
  padding: 0.08rem 0.28rem;
  min-width: 1.99rem;
  color: var(--color2);
  border-color: var(--bg2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_productCon15 .center_box .formContent .contForm1 .btn_box .btn:hover {
  background: var(--active_color) !important;
}
.ins_productCon15 .center_box .formContent .contForm1 .btn_box .btn.on {
  background: var(--color1);
  color: var(--bg1);
}
.ins_productCon15 .center_box .formContent .textCon1 textarea {
  border-color: var(--bg2);
  color: var(--color1);
}
.ins_productCon15 .center_box .formContent .layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--color3);
}
.ins_productCon15 .center_box .formContent .submit {
  background: var(--color1);
  color: var(--bg1);
}
.ins_productCon16 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.64rem;
  padding-bottom: 1.28rem;
  background: var(--bg1);
}
.ins_productCon16 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon16 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon16 .center_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon16 .center_box .idx_title .t2 {
  color: var(--color1);
  font-weight: 300;
  margin-top: 0.15rem;
}
.ins_productCon16 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
  padding: 0.32rem 0.38rem;
  background: var(--bg2);
  border-radius: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_productCon16 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #0000001A;
  gap: 0.4rem;
}
.ins_productCon16 .center_box .item_box .item .word {
  width: fit-content;
  height: auto;
  overflow: hidden;
}
.ins_productCon16 .center_box .item_box .item .word .t1 {
  opacity: 0.5;
  font-weight: 300;
  color: var(--color2);
}
.ins_productCon16 .center_box .item_box .item .word .t2 {
  font-weight: 600;
  margin-top: 0.08rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: var(--color1);
}
.ins_productCon16 .center_box .item_box .item .word .t3 {
  margin-top: 0.08rem;
  font-weight: 300;
  color: var(--color1);
}
.ins_productCon16 .center_box .item_box .item .icon {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font20);
  color: #C7C7C7;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_productCon16 .center_box .item_box .item .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.22rem;
}
.ins_productCon16 .center_box .item_box .item .icon:hover {
  color: #000;
}
.ins_productCon16 .center_box .item_box .item .icon:hover img {
  filter: brightness(0) invert(0);
}
.ins_productCon16 .center_box .item_box .item .btn {
  width: fit-content;
  padding: 0.07rem 0.35rem;
  border-radius: 0.09rem;
  background: var(--color1);
  color: var(--bg1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_productCon16 .center_box .item_box .item .btn:hover {
  background: var(--active_color) !important;
}
.ins_productCon16 .center_box .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_productCon16 .center_box .item_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_productCon16 .center_box .item_box .item .word {
    width: 100%;
    height: auto;
  }
  .ins_productCon16 .center_box .item_box .item .word .t2 {
    -webkit-line-clamp: unset;
  }
}
.ins_productCon17 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon17 .content {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding-top: 1.28rem;
}
.ins_productCon17 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon17 .content .center_box .t1 {
  font-weight: 300;
}
.ins_productCon17 .content .center_box .t2 {
  margin-top: 0.16rem;
  font-family: "Anta";
  line-height: 1;
}
.ins_productCon17 .content .center_box .t3 {
  margin-top: 0.16rem;
  font-weight: 300;
}
.ins_productCon18 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000;
}
.ins_productCon18 .content1 {
  width: 100%;
  height: auto;
  position: absolute;
  padding-top: 1.31rem;
}
.ins_productCon18 .content1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon18 .content1 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_productCon18 .content1 .center_box .idx_title .t2 {
  color: #FFFFFF;
  margin-top: 0.24rem;
  font-weight: 300;
  line-height: 1.2;
}
.ins_productCon18 .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon18 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon18 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon18 .swiper_box ul li .centerInfo img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon18 .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3.5rem;
  background: linear-gradient(0deg, rgba(44, 44, 44, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 5;
}
.ins_productCon18 .content2 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.7rem;
  left: 0;
}
.ins_productCon18 .content2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon18 .content2 .center_box .swiper_item {
  width: 100%;
  height: auto;
}
.ins_productCon18 .content2 .center_box .swiper_item ul li {
  width: fit-content;
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  padding: 0.1rem;
  border-radius: 0.16rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  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_productCon18 .content2 .center_box .swiper_item ul li .centerInfo .img {
  width: 51%;
  background: #E9E8E8;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo .img .pb {
  padding-bottom: 74%;
}
.ins_productCon18 .content2 .center_box .swiper_item 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_productCon18 .content2 .center_box .swiper_item ul li .centerInfo .word_box {
  width: 46%;
  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_productCon18 .content2 .center_box .swiper_item ul li .centerInfo .word_box .word {
  width: 100%;
  height: auto;
  color: #000;
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo .word_box .word .t1 {
  font-weight: 500;
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo .word_box .word .t2 {
  margin-top: 0.08rem;
  font-weight: 300;
  line-height: 1.1;
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo .word_box .more {
  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;
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo .word_box .more .btn {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #000;
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo .word_box .more .btn i {
  font-size: 12px;
  transform: scale(0.8);
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo:hover .word_box .word .t1 {
  color: var(--active_color);
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo:hover .word_box .more .btn {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_productCon18 .content2 .center_box .swiper_item ul li .centerInfo:hover .word_box .more .btn i {
  color: #FFFFFF;
}
.ins_productCon18 .idxPageHide span {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .ins_productCon18 {
    padding: 1.28rem 0;
    padding-bottom: 0.6rem;
  }
  .ins_productCon18 .content1 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding-top: 0;
  }
  .ins_productCon18 .content1 .center_box .idx_title .t2 p {
    display: contents;
  }
  .ins_productCon18 .swiper_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .ins_productCon18 .swiper_box ul li {
    width: 100%;
    height: auto;
  }
  .ins_productCon18 .swiper_box ul li .centerInfo {
    width: 100%;
    height: 100%;
  }
  .ins_productCon18 .swiper_box ul li .centerInfo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ins_productCon18 .content2 {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    bottom: 0;
    margin-top: 3rem;
  }
}
.ins_productCon19 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  padding-bottom: 1.28rem;
  background: var(--bg1);
}
.ins_productCon19 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon19 .center_box .left_box {
  width: 44%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.3rem;
}
.ins_productCon19 .center_box .left_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_productCon19 .center_box .left_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon19 .center_box .left_box .idx_title .t2 {
  margin-top: 0.2rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--color1);
}
.ins_productCon19 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.ins_productCon19 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding-top: 0.12rem;
  position: relative;
  z-index: 1;
  font-size: var(--font14);
  font-weight: 300;
  cursor: pointer;
  color: var(--color1);
}
.ins_productCon19 .center_box .left_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--bg2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: -1;
}
.ins_productCon19 .center_box .left_box .item_box .item::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--color1);
  top: 0;
  left: 0;
  z-index: 1;
}
.ins_productCon19 .center_box .left_box .item_box .item.active::before {
  width: 100%;
  transition: all 5s linear;
}
@media (max-width:990px) {
  .ins_productCon19 .center_box .left_box {
    gap: 0.6rem;
  }
}
.ins_productCon19 .center_box .right_box {
  width: 50.5%;
}
.ins_productCon19 .center_box .right_box .swiper_box {
  width: 100%;
  height: auto;
  background: #000;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon19 .center_box .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
  z-index: -1 !important;
}
.ins_productCon19 .center_box .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon19 .center_box .right_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 56%;
}
.ins_productCon19 .center_box .right_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(100%);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.ins_productCon19 .center_box .right_box .swiper_box ul li .centerInfo .icon {
  position: absolute;
  width: 0.61rem;
  height: 0.61rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 5;
  cursor: pointer;
}
.ins_productCon19 .center_box .right_box .swiper_box ul li.swiper-slide-active .centerInfo .pb .ab img {
  transform: translateY(0);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.ins_productCon19 .center_box .right_box .swiper_box ul li.swiper-slide-prev .centerInfo .pb .ab img {
  transform: translateY(-100%);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.ins_productCon20 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  padding-bottom: 0.64rem;
  background: var(--bg1);
}
.ins_productCon20 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon20 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon20 .center_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon20 .center_box .idx_title .t2 {
  color: var(--color1);
  font-weight: 300;
  margin-top: 0.15rem;
}
.ins_productCon20 .center_box .table_info2 {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  overflow: auto;
}
.ins_productCon20 .center_box .table_info2 table {
  background: var(--bg2);
  min-width: 1200px;
}
.ins_productCon20 .center_box .table_info2 table tbody tr td {
  color: var(--color1);
  border-color: var(--bg3);
}
.ins_productCon20 .center_box .tipBox {
  margin-top: 0.24rem;
  width: 100%;
  height: auto;
  color: var(--color2);
}
.ins_productCon20 .center_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 1.28rem;
}
.ins_productCon20 .center_box .content2 .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.72rem;
}
.ins_productCon20 .center_box .content2 .item_box .item {
  width: 100%;
  height: auto;
  background: var(--bg2);
  border-radius: 0.16rem;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.ins_productCon20 .center_box .content2 .item_box .item .left_box {
  width: 50%;
}
.ins_productCon20 .center_box .content2 .item_box .item .left_box .img {
  width: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon20 .center_box .content2 .item_box .item .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_productCon20 .center_box .content2 .item_box .item .right_box {
  width: 50%;
  padding: 0.9rem;
}
.ins_productCon20 .center_box .content2 .item_box .item .right_box .word {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon20 .center_box .content2 .item_box .item .right_box .word .t2 {
  font-weight: 300;
  margin-top: 0.2rem;
}
@media (max-width:990px) {
  .ins_productCon20 .center_box .content2 .item_box .item .right_box {
    padding: 0.5rem 0.2rem;
    padding-top: 0;
  }
  .ins_productCon20 .center_box .content2 .item_box .item .right_box .word .t2 p {
    display: contents;
  }
}
.ins_productCon20 .center_box .content2 .item_box .item:nth-child(2n) {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
@media (max-width:990px) {
  .ins_productCon20 .center_box .content2 .item_box .item {
    flex-direction: column !important;
  }
}
.ins_productCon21 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.64rem;
  padding-bottom: 0.64rem;
  background: var(--bg1);
}
.ins_productCon21 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon21 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon21 .center_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon21 .center_box .idx_title .t2 {
  color: var(--color1);
  font-weight: 300;
  margin-top: 0.15rem;
}
.ins_productCon21 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.68rem 0.2rem;
  margin-top: 0.68rem;
}
.ins_productCon21 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_productCon21 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon21 .center_box .item_box .item .img .pb {
  padding-bottom: 107%;
}
.ins_productCon21 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon21 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.41rem;
  color: var(--color1);
}
.ins_productCon21 .center_box .item_box .item .word .t1 {
  font-weight: 500;
}
.ins_productCon21 .center_box .item_box .item .word .t2 {
  margin-top: 0.12rem;
  font-weight: 300;
}
.ins_productCon21 .center_box .item_box .item.grid3 .img .pb {
  padding-bottom: 67%;
}
.ins_productCon21 .center_box .item_box .item.grid3 .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon22 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  padding-bottom: 0.64rem;
  background: var(--bg1);
}
.ins_productCon22 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon22 .center_box .idx_title {
  width: 100%;
  height: auto;
  color: var(--color1);
}
.ins_productCon22 .center_box .idx_title .t1 {
  color: var(--color1);
}
.ins_productCon22 .center_box .idx_title .t2 {
  color: var(--color1);
  font-weight: 300;
  margin-top: 0.15rem;
}
.ins_productCon22 .center_box .table_info2 {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
}
.ins_productCon22 .center_box .table_info2 table {
  background: var(--bg2);
}
.ins_productCon22 .center_box .table_info2 table tr td {
  font-size: var(--font14);
}
.ins_productCon22 .center_box .table_info2 table tbody tr td {
  color: var(--color1);
  border-color: var(--bg3);
  padding: 0.1rem 0.2rem;
}
