@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:1440px) {
  html {
    font-size: calc(100vw / 19.5);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color2);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes bigcri {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
:root {
  /* COLOR */
  --active_color: #FFF100;
  --color_fff: #ffffff;
  --color_text: #282828;
  --active_color2: #0E0E0C;
  --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);
}
@media (max-width:1280px) {
  :root {
    --font12: 0.12rem;
    --font14: 0.14rem;
    --font16: 0.16rem;
    --font17: 0.17rem;
    --font18: 0.18rem;
    --font20: 0.2rem;
    --font22: 0.22rem;
    --font24: 0.24rem;
    --font26: 0.26rem;
    --font28: 0.28rem;
    --font30: 0.3rem;
    --font32: 0.32rem;
    --font34: 0.34rem;
    --font36: 0.36rem;
    --font38: 0.38rem;
    --font15: 0.15rem;
    --font40: 0.4rem;
    --font42: 0.42rem;
    --font46: 0.46rem;
    --font48: 0.48rem;
    --font50: 0.5rem;
    --font52: 0.52rem;
    --font54: 0.54rem;
    --font56: 0.56rem;
    --font58: 0.58rem;
    --font44: 0.44rem;
    --font60: 0.6rem;
    --font64: 0.64rem;
    --font70: 0.7rem;
    --font72: 0.72rem;
    --font80: 0.8rem;
    --font66: 0.66rem;
  }
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
  line-height: 1.2;
}
.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);
}
.font84 {
  font-size: 0.84rem;
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "HarmonyOS_Sans";
  src: url("../fonts/HarmonyOS_Sans_SC_Thin.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "HarmonyOS_Sans";
  src: url("../fonts/HarmonyOS_Sans_SC_Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "HarmonyOS_Sans";
  src: url("../fonts/HarmonyOS_Sans_SC_Black.ttf");
  font-weight: 700;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1760,
.container,
.wrap {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1760,
  .container,
  .wrap {
    max-width: 91.66666667%;
  }
}
.w1360 {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1360 {
    max-width: 70.83333333%;
  }
}
@media (max-width:1640px) {
  .w1360 {
    max-width: 85.41666667%;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 0.92rem;
  color: #0E0E0C;
  
  font-family: "HarmonyOS_Sans";
}
main.active {
  --header-height: 0.7rem;
}
main.active .head_nbsp {
  height: var(--header-height);
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
    font-family: "Helvetica Neue", "HarmonyOS_Sans";
  }
  main .head_nbsp {
    height: 50px !important;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: calc(var(--header-height) + 0.87rem);
  -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;
  }
}
* {
  scrollbar-color: #c5c5c5 #ffffff00;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #c5c5c5;
}
*::-webkit-scrollbar-thumb {
  background-color: #c5c5c5;
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 20px;
  background: #c5c5c5;
}
/* --------------------------------------------------------------- 颜色渐变 */
.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;
}
.clipBox {
  -webkit-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
}
.clipBox3 {
  -webkit-clip-path: polygon(0.08rem 0%, 100% 0, 100% calc(100% - 0.08rem), calc(100% - 0.08rem) 100%, 0 100%, 0% 0.08rem);
  clip-path: polygon(0.08rem 0%, 100% 0, 100% calc(100% - 0.08rem), calc(100% - 0.08rem) 100%, 0 100%, 0% 0.08rem);
}
.clipBox2 {
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 0.12rem) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.12rem) 100%, 0 100%);
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.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: 8px;
    height: 8px;
    border-radius: 0 !important;
    background: #e2e2e2;
    opacity: 1;
  }
  .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: 0.12rem;
  height: 0.12rem;
  border-radius: 0;
  opacity: 1;
  background: #ffffff;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
@media (max-width:990px) {
  .idxPageShow span {
    width: 8px;
    height: 8px;
  }
}
/* --------------------------------------------------------------- 吸顶 */
.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);
}
/* --------------------------------------------------------------- 圖片放大 */
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
/* --------------------------------------------------------------- 轮播图依次出现 */
.tup {
  
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img {
  width: 100%;
  height: auto;
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img {
  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;
}
.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;
  }
}
/* --------------------------------------------------------------- 点击同意条款 
<div class="checkbox_c"><div class="icon"><i></i></div><input type="checkbox"><span>我理解并同意按照隐私保护条款使用和传递我的个人信息。</span></div>
*/
.checkbox_c {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
  cursor: pointer;
}
.checkbox_c span {
  color: #717171;
}
.checkbox_c .icon {
  width: 0.15rem;
  height: 0.15rem;
  border: 1px solid #979797;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: normal;
}
.checkbox_c .icon i {
  width: 0.08rem;
  height: 0.08rem;
  background: #000;
  opacity: 0;
  display: block;
}
.checkbox_c input {
  display: none;
}
.checkbox_c.active .icon i {
  opacity: 1;
}
.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;
}
.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_more2 {
  width: fit-content;
}
@media (max-width:990px) {
  .top_info .word {
    width: 100% !important;
    height: auto;
  }
  .top_info .idx_more2,
  .top_info .idx_swiperBtn {
    display: none;
  }
}
.idx_laypage {
  width: 100%;
  height: auto;
  margin-top: 0.92rem;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  
  font-weight: 700;
}
.idx_title.coAc {
  color: #ffffff;
}
.idx_title2 {
  width: 100%;
  height: auto;
}
.idx_title2 .t1 {
  font-weight: 700;
}
.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;
  --bgColor: #0E0E0C;
}
.idx_more .more {
  width: fit-content;
  height: 0.38rem;
  min-height: 30px;
  padding: 0 0.24rem;
  -webkit-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
  font-size: var(--font18);
  color: var(--active_color);
  background: var(--bgColor);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_more.bgColor {
  --bgColor: var(--active_color);
}
.idx_more.bgColor .more {
  color: #0E0E0C;
  padding: 0 0.4rem;
  height: 0.73rem;
  min-height: 45px;
  gap: 0.12rem;
  font-size: var(--font24);
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more.bgColor .more img {
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more.bgColor .more:hover {
  background: var(--active_color2);
  color: var(--active_color);
}
.idx_more.bgColor .more:hover img {
  filter: unset;
}
.idx_more2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  --bgColor: #EFD900;
}
.idx_more2 .more {
  width: fit-content;
  height: 0.58rem;
  min-height: 40px;
  -webkit-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
  font-size: var(--font24);
  color: #050102;
  background: var(--bgColor);
  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;
}
.idx_more2 .more .word {
  width: fit-content;
  padding: 0 0.32rem;
}
.idx_more2 .more .line {
  width: fit-content;
  height: 100%;
}
.idx_more2 .more .line img {
  width: auto;
  height: 100%;
}
.idx_more2 .more .arrow {
  width: fit-content;
  padding: 0 0.28rem;
}
.idx_more3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  --bgColor: #EFD900;
}
.idx_more3 .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.24rem;
  cursor: pointer;
  color: #FFF;
}
.idx_more3 .more span {
  font-size: var(--font24);
  
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more3 .more img {
  width: 0.11rem;
  min-width: 8px;
}
.idx_more3 .more:hover span {
  color: var(--active_color);
}
.idx_more3.coHH .more {
  color: #000;
}
.idx_more3.coHH .more:hover span {
  color: var(--active_color2);
}
.idx_more4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
}
.idx_more4 .more {
  width: fit-content;
  padding: 0 0.32rem;
  height: 0.58rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
  background: var(--active_color);
  font-size: var(--font24);
  min-width: 2.39rem;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more4 .more.borBg {
  background: #FFFFFF99;
  color: #FFFFFF;
}
.idx_more4 .more.borBg::after {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
  -webkit-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
}
.idx_more4 .more.borBg:hover {
  color: #FFFFFF;
  opacity: 0.9;
}
.idx_more4 .more:hover {
  color: #0E0E0C;
  opacity: 0.9;
}
.wowUpS {
  opacity: 0;
}
.tagBox {
  width: fit-content;
  height: 0.3rem;
  min-height: 25px;
  background: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0.12rem;
  padding-right: 0.32rem;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 0.12rem) 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.12rem) 100%, 0 100%);
  
  font-size: var(--font18);
  font-weight: 700;
  color: #0E0E0C;
}
.idxProgressbar {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
  background: #FFFFFF33;
}
.idxProgressbar .swiper-pagination-progressbar-fill {
  height: 0.05rem;
  background: var(--active_color);
  top: -0.025rem;
}
.ins_title {
  width: 100%;
  height: auto;
}
.ins_title .t1 {
  font-weight: 700;
}
.ins_title2 {
  width: 100%;
  height: auto;
}
.ins_title2 .t1 {
  font-weight: 700;
}
.ins_title2 .t2 {
  color: #666;
  
  margin-top: 0.16rem;
}
.ins_title2.info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_title2.info_box .t1 {
  width: 41%;
}
.ins_title2.info_box .t2 {
  max-width: 28%;
  margin-top: 0;
  padding-bottom: 0.15rem;
}
@media (max-width:990px) {
  .ins_title2 {
    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;
    align-items: start !important;
    gap: 0.4rem !important;
  }
  .ins_title2 .t1 {
    width: 100% !important;
    height: auto;
  }
  .ins_title2 .t2 {
    max-width: 100% !important;
    width: 100% !important;
    height: auto;
    margin-top: 0 !important;
  }
}
.margin1 {
  margin-top: -1px;
}
.idx_swiperBtn {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
}
.idx_swiperBtn .btn {
  width: 0.58rem;
  height: 0.58rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #666666;
  -webkit-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_swiperBtn .btn::after {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #F5F5F5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-clip-path: polygon(calc(100% - 0.105rem) 0%, 100% 0, 100% calc(100% - 0.105rem), calc(100% - 0.105rem) 100%, 0 100%, 0% calc(100% - 0.105rem));
  clip-path: polygon(0.105rem 0%, 100% 0, 100% calc(100% - 0.105rem), calc(100% - 0.105rem) 100%, 0 100%, 0% 0.105rem);
  z-index: 0;
}
.idx_swiperBtn .btn img {
  width: 0.11rem;
  min-width: 8px;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_swiperBtn .btn:hover {
  background: #050102;
}
.idx_swiperBtn .btn:hover::after {
  background: #050102 !important;
}
.idx_swiperBtn .btn:hover img {
  filter: unset;
}
ul li.swiper-slide-active {
  pointer-events: initial;
}
.idxPageLine {
  width: 100%;
  height: 1px;
  background: #00000033;
  margin-top: 0.72rem;
}
.idxPageLine span {
  height: 5px !important;
  background: #EFD900 !important;
  position: absolute;
  top: -2.5px !important;
}
.wowFg {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.wowFg span {
  transform: translateY(100%);
  display: inline-block;
}
.wowFg.active span {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.7s cubic-bezier(0.21, 0.28, 0.36, 0.89);
}
.ovHide {
  overflow: hidden;
}
.ins_word {
  width: 100%;
  height: auto;
}
.ins_word .t1 {
  font-weight: 700;
  
}
.ins_word .t2 {
  margin-top: 0.32rem;
  color: #666666;
}
section {
  margin-top: -1px;
}
.wowUpT {
  transform: translateY(80px);
}
.imgStrota img {
  transform: translateX(100%);
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.imgStrota.active img {
  transform: rotate(19deg);
}
.imgStrt img {
  transform: translateY(100px);
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.imgStrt.active img {
  transform: translateY(0);
}
.img_tY {
  overflow: hidden;
}
.img_tY img {
  transform: translateX(50px) scale(1.1);
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.img_tY.active img {
  transform: translateX(0) scale(1);
}
.imgScale {
  overflow: hidden;
}
.imgScale img {
  transform: scale(1.2);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1.3s ease;
  -o-transition: all 1.3s ease;
  transition: all 1.3s ease;
}
@keyframes lines {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}
.idx_banner .swiper_box {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li {
  width: 100%;
  height: auto;
  opacity: 1 !important;
}
.idx_banner .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_banner .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  position: absolute;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .word .t1 {
  color: #FFFFFF;
  font-weight: 800;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .word .t2 {
  color: #FFFFFF;
}
.idx_banner .swiper_box ul li .centerInfo .word_box .word .t2 p {
  opacity: 0.6;
}
.idx_banner .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .centerInfo .img img.wap {
  min-height: 500px;
  object-fit: cover;
}
.idx_banner .idxPageShow {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
  position: absolute;
  bottom: 0.72rem;
  z-index: 5;
}
.idx_product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-bottom: 1.17rem;
}
.idx_product .center_box {
  width: 100%;
  height: auto;
}
.idx_product .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.23rem;
  margin-top: 0.72rem;
}
.idx_product .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  color: #0E0E0C;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
.idx_product .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 0.62rem;
  text-align: center;
}
.idx_product .center_box .item_box .item .word .t1 {
  font-weight: 700;
}
.idx_product .center_box .item_box .item .word .t2 {
  margin-top: 0.08rem;
}
.idx_product .center_box .item_box .item .word .idx_more {
  margin-top: 0.32rem;
}
.idx_product .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.idx_product .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .center_box .item_box .item:hover .img img {
  transform: scale(1.02);
}
@media (max-width:990px) {
  .idx_product .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  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;
  --width: 91.66666667%;
  --borderR: 0.2rem;
  --tY: translateY(-20%);
}
.idx_video .video_box {
  width: var(--width);
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--borderR);
  overflow: hidden;
}
.idx_video .video_box .img {
  width: 100%;
  height: auto;
  transform: var(--tY);
}
.idx_video .video_box .img img,
.idx_video .video_box .img video {
  width: 100%;
  height: auto;
}
.idx_video .video_box .img img.wap {
  min-height: 500px;
  object-fit: cover;
}
.idx_video .video_box .idx_more {
  position: absolute;
  bottom: 1.84rem;
  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;
  z-index: 10;
}
.idx_video .video_box .idx_more img {
  width: auto;
  height: auto;
}
.idx_new {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #1A1A16;
}
.idx_new .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_new .center_box::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1A1A16;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 100%;
  z-index: 5;
}
.idx_new .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.76rem;
}
.idx_new .center_box .swiper_box ul li {
  width: fit-content;
}
.idx_new .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.04rem;
  overflow: hidden;
}
.idx_new .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 56%;
}
.idx_new .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_new .center_box .swiper_box ul li .centerInfo .img .tagBox {
  position: absolute;
  z-index: 8;
  top: 0.16rem;
  left: 0;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  margin-top: 0.32rem;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  font-size: var(--font16);
  color: #989898;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: 0.24rem;
  opacity: 0.8;
  color: #FFFFFF;
  font-weight: 700;
  
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.1;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box .t3 {
  margin-top: 0.08rem;
  
  font-weight: 200;
}
.idx_new .center_box .swiper_box ul li .centerInfo .word_box .idx_more3 {
  margin-top: 0.48rem;
}
.idx_new .center_box .swiper_box ul li .centerInfo:hover {
  transform: translateY(-2px);
}
.idx_new .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.02);
}
.idx_new .center_box .swiper_box ul li .centerInfo:hover .word_box .t2 {
  color: var(--active_color);
}
.idx_new .center_box .swiper_box ul li .centerInfo:hover .idx_more3 .more span {
  color: var(--active_color);
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.94rem 0;
  background: #F5F5F5;
}
.ins_productCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .list_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
  clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_productCon1 .center_box .list_box .one {
  width: fit-content;
  height: 0.76rem;
  min-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0.72rem;
  font-size: var(--font24);
  color: #666666;
  position: relative;
  z-index: 1;
  -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
  clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
  
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .list_box .one:hover {
  color: #000;
}
.ins_productCon1 .center_box .list_box .one.active {
  font-weight: 700;
  background: #1A1A16;
  color: var(--active_color);
}
.ins_productCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  margin-top: 0.72rem;
}
.ins_productCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.55rem;
  padding-bottom: 0.52rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 102%;
}
.ins_productCon1 .center_box .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon1 .center_box .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
  text-align: center;
}
.ins_productCon1 .center_box .item_box .item .word .t1 {
  font-weight: 700;
  
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_productCon1 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_productCon1 .center_box .item_box .item .bgImg_adap {
  background: linear-gradient(330deg, #FFF 0%, #AAA 227.8%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item .bgImg_adap img {
  transform: translateY(-20%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item:hover .bgImg_adap {
  opacity: 1;
}
.ins_productCon1 .center_box .item_box .item:hover .bgImg_adap img {
  transform: translateY(0);
}
.ins_productCon1 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.02);
}
@media (max-width:990px) {
  .ins_productCon1 .center_box .list_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem 0.2rem;
    background: #F5F5F5;
  }
  .ins_productCon1 .center_box .list_box .one {
    width: 100%;
    height: auto;
    background: #FFFFFF;
    padding: 0 0.3rem;
  }
  .ins_productCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_productCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon2 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 2.44rem;
}
.ins_productCon2 .content .word {
  width: 100%;
  height: auto;
  color: #0E0E0C;
}
.ins_productCon2 .content .word .t1 {
  font-weight: 700;
  
  line-height: 1.2;
}
.ins_productCon2 .content .word .t2 {
  margin-top: 0.16rem;
  line-height: 1.2;
}
.ins_productCon2 .content .word .t2 p {
  opacity: 0.6;
}
.ins_productCon2 .full_img img.wap {
  min-height: 600px;
  object-fit: cover;
}
.ins_productCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.44rem 0;
  background: #0E0E0C;
}
.ins_productCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.16rem;
}
.ins_productCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon3 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon3 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 0.52rem 0.4rem;
  font-size: var(--font32);
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_productCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_productCon3 .center_box .item_box .item .img {
    height: 200px;
  }
  .ins_productCon3 .center_box .item_box .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_productCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon4 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon4 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon4 .content .center_box .word {
  width: 40.5%;
  height: auto;
  color: #FFFFFF;
  padding: 1.9rem 0;
}
.ins_productCon4 .content .center_box .word .t1 {
  font-weight: 700;
  
  line-height: 1.2;
}
.ins_productCon4 .content .center_box .word .t2 {
  margin-top: 0.24rem;
  line-height: 1.2;
}
.ins_productCon4 .content .center_box .word .list {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.6rem;
  margin-top: 0.52rem;
}
.ins_productCon4 .content .center_box .word .list .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.ins_productCon4 .content .center_box .word .list .one .icon {
  width: 1.15rem;
}
.ins_productCon4 .content .center_box .word .list .one .wordS {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_productCon4.right .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_productCon4.right .content .center_box {
  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_productCon4.bottom .content {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_productCon4.bottom .content .center_box {
  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;
}
.ins_productCon4.bottom .content .center_box .word {
  width: 80%;
  padding: 1.44rem 0;
  text-align: center;
}
.ins_productCon4.top .content {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_productCon4.top .content .center_box {
  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;
}
.ins_productCon4.top .content .center_box .word {
  width: 80%;
  padding: 1.44rem 0;
  text-align: center;
  color: #333333;
}
.ins_productCon4.top .content .center_box .word .t2 {
  color: #666666;
}
@media (max-width:990px) {
  .ins_productCon4 .content {
    align-items: start !important;
  }
  .ins_productCon4 .content .center_box .word {
    width: 100% !important;
    height: auto;
  }
  .ins_productCon4 .content .center_box .word .t2 p {
    display: contents;
  }
  .ins_productCon4 .full_img img.wap {
    height: 100vh;
    min-height: 800px;
    object-fit: cover;
  }
}
.ins_productConPro {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productConPro .center_box {
  width: 100%;
  height: auto;
}
.ins_productConPro .center_box .left_box {
  width: 40.5%;
}
.ins_productConPro .center_box .left_box .word {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_productConPro .center_box .left_box .word .t1 {
  font-weight: 700;
  
  line-height: 1.2;
}
.ins_productConPro .center_box .left_box .word .t1 p {
  display: contents;
}
.ins_productConPro .center_box .left_box .word .t2 {
  margin-top: 0.16rem;
  line-height: 1.2;
}
.ins_productConPro .center_box .left_box .word .t2 p {
  opacity: 0.6;
}
.ins_productConPro .center_box .left_box .word .list {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.6rem;
  margin-top: 0.52rem;
}
.ins_productConPro .center_box .left_box .word .list .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.ins_productConPro .center_box .left_box .word .list .one .icon {
  width: 1.15rem;
}
.ins_productConPro .center_box .left_box .word .list .one .wordS {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_productConPro .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_productConPro.switch .center_box {
  -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_productConPro {
    padding: 1.9rem 0;
  }
  .ins_productConPro .center_box {
    width: 100%;
    height: auto;
    gap: 2rem !important;
    flex-direction: column !important;
  }
  .ins_productConPro .center_box .left_box .word {
    padding: 0 !important;
  }
  .ins_productConPro .center_box .right_box .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 !important;
  }
  .ins_productConPro .center_box .right_box .img img {
    width: 60%;
  }
}
.ins_productConPr2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 1.44rem;
}
.ins_productConPr2 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productConPr2 .center_box .img_box {
  height: auto;
}
.ins_productConPr2 .center_box .img_box img {
  width: 100%;
  height: auto;
}
.ins_productConPr2 .center_box .word {
  width: 80%;
  text-align: center;
  color: #FFFFFF;
}
.ins_productConPr2 .center_box .word .t1 {
  font-weight: 700;
  
  line-height: 1.2;
}
.ins_productConPr2 .center_box .word .t2 {
  margin-top: 0.24rem;
  line-height: 1.2;
}
.ins_productConPr2.colorBg {
  padding-top: 1.45rem;
}
.ins_productConPr2.colorBg .word {
  color: #333333;
}
.ins_productConPr2.colorBg .word .t2 {
  color: #666666;
}
.ins_productConPr2.colorBg .img_box {
  margin-top: 0.62rem;
}
@media (max-width:990px) {
  .ins_productConPr2 .center_box .word {
    width: 100%;
    height: auto;
    order: 1;
  }
  .ins_productConPr2 .center_box .word .t2 p {
    display: contents;
  }
  .ins_productConPr2 .center_box .img_box {
    width: 100% !important;
    order: 2;
    margin-top: 1.2rem !important;
  }
}
.ins_productCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.44rem 0;
}
.ins_productCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  gap: 0.11rem;
}
.ins_productCon6 .center_box .content .left_box {
  width: 35%;
  background: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.2rem 0;
}
.ins_productCon6 .center_box .content .left_box .img {
  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_productCon6 .center_box .content .right_box {
  width: 65%;
}
.ins_productCon6 .center_box .content .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.11rem;
}
.ins_productCon6 .center_box .content .right_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_productCon6 .center_box .content .right_box .item_box .item .icon {
  width: 0.38rem;
  height: 0.38rem;
  min-width: 20px;
  min-height: 20px;
}
.ins_productCon6 .center_box .content .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.34rem;
}
.ins_productCon6 .center_box .content .right_box .item_box .item .word .t1 {
  opacity: 0.6;
}
.ins_productCon6 .center_box .content .right_box .item_box .item .word .t2 {
  margin-top: 0.08rem;
  font-weight: 700;
  line-height: 1.15;
}
.ins_productCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.44rem;
}
.ins_productCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  gap: 0.11rem;
}
.ins_productCon7 .center_box .content .left_box {
  width: 35%;
  background: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.2rem 0;
}
.ins_productCon7 .center_box .content .left_box .img {
  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_productCon7 .center_box .content .right_box {
  width: 65%;
  height: 100%;
}
.ins_productCon7 .center_box .content .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.11rem;
}
.ins_productCon7 .center_box .content .right_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F5F5F5;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_productCon7 .center_box .content .right_box .item_box .item .icon {
  width: 0.38rem;
  height: 0.38rem;
  min-width: 20px;
  min-height: 20px;
}
.ins_productCon7 .center_box .content .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.81rem;
}
.ins_productCon7 .center_box .content .right_box .item_box .item .word .t1 {
  opacity: 0.6;
}
.ins_productCon7 .center_box .content .right_box .item_box .item .word .t2 {
  margin-top: 0.08rem;
  font-weight: 700;
  line-height: 1.15;
}
.ins_productCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.93rem;
  padding-bottom: 1.62rem;
}
.ins_productCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon8 .center_box .left_box {
  width: 45.8%;
}
.ins_productCon8 .center_box .left_box .img {
  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_productCon8 .center_box .right_box {
  width: 43.75%;
  padding-top: 0.93rem;
}
.ins_productCon8 .center_box .right_box .word {
  width: 100%;
  color: #FFFFFF;
}
.ins_productCon8 .center_box .right_box .word .t1 {
  font-weight: 700;
  
  line-height: 1.2;
}
.ins_productCon8 .center_box .right_box .word .list {
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
}
.ins_productCon8 .center_box .right_box .word .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  line-height: 1.6;
}
.ins_productCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.44rem;
  padding-bottom: 1.44rem;
  background: #F5F5F5;
}
.ins_productCon9 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon9 .center_box .left_box {
  width: 45.8%;
}
.ins_productCon9 .center_box .left_box .img {
  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_productCon9 .center_box .right_box {
  width: 43.75%;
}
.ins_productCon9 .center_box .right_box .word {
  width: 100%;
  color: #333333;
}
.ins_productCon9 .center_box .right_box .word .t1 {
  font-weight: 700;
  
  line-height: 1.2;
}
.ins_productCon9 .center_box .right_box .word .list {
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
}
.ins_productCon9 .center_box .right_box .word .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  line-height: 1.6;
  color: #666666;
}
.ins_productCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.4rem;
  background: #F5F5F5;
}
.ins_productCon10 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon10 .center_box .top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_productCon10 .center_box .top_info .word {
  width: 40%;
}
.ins_productCon10 .center_box .top_info .word .t1 {
  font-weight: 700;
}
.ins_productCon10 .center_box .swiper_box {
  width: 97%;
  height: auto;
  margin-top: 0.71rem;
  position: relative;
  z-index: 1;
}
.ins_productCon10 .center_box .swiper_box::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: #F5F5F5;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 100%;
}
.ins_productCon10 .center_box .swiper_box ul li {
  width: auto;
}
.ins_productCon10 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.55rem;
  padding-bottom: 0.52rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon10 .center_box .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
}
.ins_productCon10 .center_box .swiper_box ul li .item .img .pb {
  padding-bottom: 102%;
}
.ins_productCon10 .center_box .swiper_box ul li .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_productCon10 .center_box .swiper_box ul li .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon10 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
  text-align: center;
}
.ins_productCon10 .center_box .swiper_box ul li .item .word .t1 {
  font-weight: 700;
  
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_productCon10 .center_box .swiper_box ul li .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_productCon10 .center_box .swiper_box ul li .item .bgImg_adap {
  background: linear-gradient(330deg, #FFF 0%, #AAA 227.8%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon10 .center_box .swiper_box ul li .item .bgImg_adap img {
  transform: translateY(-20%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon10 .center_box .swiper_box ul li .item:hover .bgImg_adap {
  opacity: 1;
}
.ins_productCon10 .center_box .swiper_box ul li .item:hover .bgImg_adap img {
  transform: translateY(0);
}
.ins_productCon10 .center_box .swiper_box ul li .item:hover .img .pb .ab img {
  transform: scale(1.02);
}
.ins_productCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2.6rem;
}
.ins_productCon11 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon11 .center_box .content .left {
  width: 28.23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon11 .center_box .content .left img {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .content .right {
  width: 43.54%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon11 .center_box .content .right img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_productCon11 {
    padding: 2rem 0;
  }
  .ins_productCon11 .center_box .content {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 0;
  }
  .ins_productCon11 .center_box .content .right {
    width: 100%;
    height: auto;
    order: 1;
    grid-column: span 2;
  }
  .ins_productCon11 .center_box .content .left {
    width: 100%;
    height: auto;
    order: 2;
  }
}
.ins_productCon12 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon12 .center_box {
  width: 100%;
  height: auto;
  padding-top: 2.6rem;
}
.ins_productCon12 .center_box .title {
  width: 100%;
  height: auto;
  text-align: center;
  position: absolute;
  left: 0;
  color: #FFFFFF;
}
.ins_productCon12 .center_box .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon12 .center_box .content .left {
  width: 28.23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_productCon12 .center_box .content .left .img {
  width: 100%;
  height: auto;
}
.ins_productCon12 .center_box .content .left .img img {
  width: 100%;
  height: auto;
}
.ins_productCon12 .center_box .content .left .word {
  font-size: var(--font20);
  color: #FFFFFF;
  text-align: center;
  margin-top: 0.4rem;
  line-height: 1.4;
}
.ins_productCon12 .center_box .content .right {
  width: 43.54%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_productCon12 .center_box .content .right img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_productCon12 {
    padding: 2rem 0;
  }
  .ins_productCon12 .center_box .content {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 0;
  }
  .ins_productCon12 .center_box .content .right {
    width: 100%;
    height: auto;
    order: 1;
    grid-column: span 2;
  }
  .ins_productCon12 .center_box .content .left {
    width: 100%;
    height: auto;
    order: 2;
  }
}
.ins_blogCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 1.2rem;
  overflow: hidden;
}
.ins_blogCon1 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_blogCon1 .center_box .idx_title {
  width: 26%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_blogCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_blogCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 26%;
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .left_box .word_box {
  width: 100%;
  height: auto;
  color: var(--active_color2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .left_box .word_box .t1 {
  color: #989898;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .left_box .word_box .t2 {
  margin-top: 0.24rem;
  font-weight: 700;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .left_box .word_box .t3 {
  margin-top: 0.24rem;
  color: #666666;
  
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .left_box .word_box .idx_more3 {
  margin-top: 0.72rem;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 66%;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .right_box .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .right_box .img .pb {
  padding-bottom: 60.5%;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo .right_box .img .tagBox {
  position: absolute;
  z-index: 8;
  top: 0.48rem;
  left: 0;
  height: 0.53rem;
  min-height: 40px;
  font-size: var(--font24);
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo:hover .left_box .word_box {
  opacity: 0.8;
}
.ins_blogCon1 .center_box .swiper_box ul li .centerInfo:hover .right_box .img .pb .ab img {
  transform: scale(1.03);
}
.ins_blogCon1 .center_box .idxPageShow {
  position: absolute;
  width: 66%;
  right: 0;
  bottom: 0.4rem;
  z-index: 10;
}
@media (max-width:990px) {
  .ins_blogCon1 {
    padding-top: 1.8rem;
  }
  .ins_blogCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_blogCon1 .center_box .idx_title {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_blogCon1 .center_box .swiper_box {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  .ins_blogCon1 .center_box .idxPageShow {
    width: 100%;
    height: auto;
  }
}
.ins_blogCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.2rem 0;
  overflow: hidden;
  background: #F5F5F5;
}
.ins_blogCon2 .content1 {
  width: 100%;
  height: auto;
}
.ins_blogCon2 .btnInputwap {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.4rem;
  -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
  clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
  display: none;
}
.ins_blogCon2 .btnInputwap .input {
  width: 100%;
  height: auto;
}
.ins_blogCon2 .btnInputwap .input input {
  width: 100%;
  height: 1rem;
  border: 0;
  background: unset;
  padding-left: 0.3rem;
  font-size: var(--font28);
}
.ins_blogCon2 .btnInputwap .icon {
  width: 1rem;
  height: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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_blogCon2 .btnInputwap .icon img {
  max-width: 25px;
  filter: brightness(0) invert(0.3);
}
.ins_blogCon2 .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon2 .content2 .center_box {
  width: 100%;
  height: auto;
}
.ins_blogCon2 .content2 .center_box .list_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
  clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
.ins_blogCon2 .content2 .center_box .list_box .one {
  width: fit-content;
  height: 0.76rem;
  min-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0.72rem;
  font-size: var(--font24);
  color: #666666;
  position: relative;
  z-index: 1;
  -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
  clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
  
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon2 .content2 .center_box .list_box .one:hover {
  color: #000;
}
.ins_blogCon2 .content2 .center_box .list_box .one.active {
  font-weight: 700;
  background: #1A1A16;
  color: var(--active_color);
}
.ins_blogCon2 .content2 .center_box .list_box .btnInput {
  position: relative;
  z-index: 11;
  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_blogCon2 .content2 .center_box .list_box .btnInput .icon {
  background: #00000066;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
  clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0.36rem;
  height: 0.76rem;
  min-height: 45px;
  cursor: pointer;
}
.ins_blogCon2 .content2 .center_box .list_box .btnInput .icon img {
  filter: brightness(0) invert(0.3);
}
.ins_blogCon2 .content2 .center_box .list_box .btnInput .icon::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #FFF;
  -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
  clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
}
.ins_blogCon2 .content2 .center_box .list_box .btnInput .icon:hover {
  background: var(--active_color2);
}
.ins_blogCon2 .content2 .center_box .list_box .btnInput .icon:hover::after {
  background: var(--active_color2);
}
.ins_blogCon2 .content2 .center_box .list_box .btnInput .icon:hover img {
  filter: unset;
}
.ins_blogCon2 .content2 .center_box .list_box .btnInput.active .icon {
  background: #0000002d;
}
.ins_blogCon2 .content2 .center_box .list_box .btnInput.active .input input {
  background: #f8f8f8;
}
.ins_blogCon2 .content2 .center_box .list_box .btnInput:hover .input input {
  width: 7rem;
}
.ins_blogCon2 .content2 .center_box .list_box .input_pc {
  width: 100%;
  height: calc(100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background: #FFFFFF;
  transform: translateY(-100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon2 .content2 .center_box .list_box .input_pc input {
  width: 100%;
  height: 100%;
  border: 0;
  background: unset;
  padding-left: 0.3rem;
  font-size: var(--font28);
}
.ins_blogCon2 .content2 .center_box .list_box .input_pc.active {
  transform: translateY(0);
}
.ins_blogCon2 .content2.posFix {
  margin-top: 0;
  padding: 0.1rem 0;
  background: #F5F5F5;
}
.ins_blogCon2 .content3 {
  width: 100%;
  height: auto;
  margin-top: 0.94rem;
}
.ins_blogCon2 .content3 .center_box {
  width: 100%;
  height: auto;
}
.ins_blogCon2 .content3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.94rem 0.35rem;
}
.ins_blogCon2 .content3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon2 .content3 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.04rem;
  overflow: hidden;
}
.ins_blogCon2 .content3 .center_box .item_box .item .img .pb {
  padding-bottom: 56%;
}
.ins_blogCon2 .content3 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon2 .content3 .center_box .item_box .item .img .tagBox {
  position: absolute;
  z-index: 8;
  top: 0.16rem;
  left: 0;
}
.ins_blogCon2 .content3 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  color: #0E0E0C;
  margin-top: 0.32rem;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon2 .content3 .center_box .item_box .item .word_box .t1 {
  font-size: var(--font16);
  color: #989898;
}
.ins_blogCon2 .content3 .center_box .item_box .item .word_box .t2 {
  margin-top: 0.24rem;
  opacity: 0.8;
  color: #0E0E0C;
  font-weight: 700;
  
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.1;
}
.ins_blogCon2 .content3 .center_box .item_box .item .word_box .t3 {
  margin-top: 0.06rem;
  
  font-weight: 200;
  color: #666666;
}
.ins_blogCon2 .content3 .center_box .item_box .item .word_box .idx_more3 {
  margin-top: 0.52rem;
}
.ins_blogCon2 .content3 .center_box .item_box .item:hover .word_box {
  opacity: 1;
}
.ins_blogCon2 .content3 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.02);
}
@media (max-width:990px) {
  .ins_blogCon2 .btnInputwap {
    display: flex !important;
  }
  .ins_blogCon2 .content2 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: none;
    gap: 0.2rem;
    margin-top: 0.6rem;
  }
  .ins_blogCon2 .content2 .center_box .list_box .one {
    width: 100%;
    height: auto;
    background: #ffffffdc;
    padding: 0.2rem 0.72rem;
  }
  .ins_blogCon2 .content2 .center_box .list_box .btnInput {
    display: none;
  }
  .ins_blogCon2 .content3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_blogCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.94rem;
  padding-bottom: 1.2rem;
  background: #F5F5F5;
}
.ins_blogCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_blogCon3 .center_box .box_info {
  width: 100%;
  height: auto;
}
.ins_blogCon3 .center_box .box_info .left_box {
  width: 71%;
  height: auto;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .t1 {
  font-weight: 800;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.48rem;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.24rem;
  color: #999;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .time .one {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
  font-size: var(--font16);
  color: #999999;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .time .one img {
  width: 0.4rem;
  height: 0.4rem;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .list {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox {
  width: fit-content;
  height: auto;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic {
  width: 0.4rem;
  height: 0.4rem;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic i {
  font-size: var(--font20);
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic .img {
  width: 1.2rem;
  position: absolute;
  top: calc(100% + 0.1rem);
  opacity: 0;
  visibility: hidden;
  border: 1px solid #0000001A;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic .img img {
  width: 100%;
  height: auto;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic:hover {
  background: var(--active_color);
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic:hover i {
  color: #0E0E0C;
}
.ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box .list .icBox .ic:hover .img {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon3 .center_box .box_info .left_box .newContent {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5;
  margin-top: 0.6rem;
  font-weight: 400;
}
.ins_blogCon3 .center_box .box_info .left_box .newContent img {
  width: unset !important;
  height: unset !important;
}
.ins_blogCon3 .center_box .box_info .left_box .newContent p {
  min-height: 0.5em;
}
.ins_blogCon3 .center_box .box_info .left_box .newContent .tag_box {
  margin-top: 0.8rem;
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-top: 0.48rem;
  border-top: 1px solid #DDD;
  margin-top: 0.8rem;
  font-size: var(--font16);
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox .next {
  width: 40%;
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox .next .t1 {
  color: #666666;
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox .next.rigth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox button {
  width: fit-content;
  height: 0.58rem;
  min-height: 40px;
  margin-top: 0.28rem;
  padding: 0 0.54rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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.14rem;
  background: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-clip-path: polygon(calc(100% - 0.12rem) 0%, 100% 0, 100% calc(100% - 0.12rem), calc(100% - 0.12rem) 100%, 0 100%, 0% calc(100% - 0.12rem));
  clip-path: polygon(0.12rem 0%, 100% 0, 100% calc(100% - 0.12rem), calc(100% - 0.12rem) 100%, 0 100%, 0% 0.12rem);
  background: #00000066;
  border: none;
  position: relative;
  z-index: 1;
  color: #000;
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox button::after {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #F5F5F5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
  z-index: -1;
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox button img {
  width: 0.11rem;
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox button:hover {
  color: var(--active_color);
  background: var(--active_color2);
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox button:hover::after {
  background: var(--active_color2);
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox button:hover img {
  filter: unset;
}
.ins_blogCon3 .center_box .box_info .left_box .pagerBox .center {
  width: fit-content;
}
.ins_blogCon3 .center_box .box_info .right_box {
  width: 24.9%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_blogCon3 .center_box .box_info .right_box .content {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.4rem 0.32rem;
  border-radius: 0.08rem;
}
.ins_blogCon3 .center_box .box_info .right_box .content .tit {
  font-weight: 700;
}
.ins_blogCon3 .center_box .box_info .right_box .content .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.ins_blogCon3 .center_box .box_info .right_box .content .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #00000033;
}
.ins_blogCon3 .center_box .box_info .right_box .content .list .one .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_blogCon3 .center_box .box_info .right_box .content .list .one .img .tagBox {
  position: absolute;
  z-index: 8;
  top: 0.16rem;
  left: -1px;
}
.ins_blogCon3 .center_box .box_info .right_box .content .list .one .img img {
  width: 100%;
  height: auto;
}
.ins_blogCon3 .center_box .box_info .right_box .content .list .one .word {
  width: 80%;
  height: auto;
  margin-top: 0.24rem;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 700;
}
.ins_blogCon3 .center_box .box_info .right_box .content .list .one:hover {
  color: var(--active_color);
}
.ins_blogCon3 .center_box .box_info .right_box .content .list .one:last-child {
  border: 0;
  padding-bottom: 0;
}
@media (max-width:990px) {
  .ins_blogCon3 .center_box .box_info .left_box .pagerBox {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.4rem;
    display: none;
  }
  .ins_blogCon3 .center_box .box_info .left_box .pagerBox .next {
    width: 100%;
    height: auto;
  }
  .ins_blogCon3 .center_box .box_info .left_box .pagerBox .next.rigth {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_blogCon3 .center_box .box_info .left_box .pagerBox .next button {
    margin-top: 0.1rem;
  }
  .ins_blogCon3 .center_box .box_info .left_box .ins_new .t1 p {
    display: contents;
  }
  .ins_blogCon3 .center_box .box_info .left_box .ins_new .item_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_blogCon3 .center_box .box_info .right_box {
    display: none;
  }
}
.ins_blogCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_blogCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_blogCon4 .center_box .top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_blogCon4 .center_box .top_info .word {
  width: 40%;
}
.ins_blogCon4 .center_box .top_info .word .t1 {
  font-weight: 700;
}
.ins_blogCon4 .center_box .top_info .idx_swiperBtn .btn::after {
  background: #FFFFFF;
}
.ins_blogCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.71rem;
  position: relative;
  z-index: 1;
}
.ins_blogCon4 .center_box .swiper_box::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 100%;
}
.ins_blogCon4 .center_box .swiper_box ul li {
  width: auto;
}
.ins_blogCon4 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.55rem;
  padding-bottom: 0.52rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F5F5F5;
  border: 1px solid #FFFFFF;
}
.ins_blogCon4 .center_box .swiper_box ul li .item .img {
  width: 100%;
  height: auto;
}
.ins_blogCon4 .center_box .swiper_box ul li .item .img .pb {
  padding-bottom: 102%;
}
.ins_blogCon4 .center_box .swiper_box ul li .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_blogCon4 .center_box .swiper_box ul li .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon4 .center_box .swiper_box ul li .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
  text-align: center;
}
.ins_blogCon4 .center_box .swiper_box ul li .item .word .t1 {
  font-weight: 700;
  
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_blogCon4 .center_box .swiper_box ul li .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_blogCon4 .center_box .swiper_box ul li .item .bgImg_adap {
  background: linear-gradient(330deg, #FFF 0%, #AAA 227.8%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon4 .center_box .swiper_box ul li .item .bgImg_adap img {
  transform: translateY(-20%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_blogCon4 .center_box .swiper_box ul li .item:hover .bgImg_adap {
  opacity: 1;
}
.ins_blogCon4 .center_box .swiper_box ul li .item:hover .bgImg_adap img {
  transform: translateY(0);
}
.ins_blogCon4 .center_box .swiper_box ul li .item:hover .img .pb .ab img {
  transform: scale(1.02);
}
.ins_buyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #020109;
}
.ins_buyCon1 .swiper_box {
  width: 100%;
  height: auto;
}
.ins_buyCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_buyCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_buyCon1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  z-index: 10;
}
.ins_buyCon1 .swiper_box ul li .centerInfo .content .word_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_buyCon1 .swiper_box ul li .centerInfo .content .word_box .left_box {
  width: 32.3%;
}
.ins_buyCon1 .swiper_box ul li .centerInfo .content .word_box .left_box .idx_more4 {
  margin-top: 0.72rem;
}
.ins_buyCon1 .swiper_box ul li .centerInfo .content .word_box .right_box {
  width: 51.7%;
  padding-top: 0.92rem;
  padding-bottom: 1.24rem;
}
.ins_buyCon1 .swiper_box ul li .centerInfo .content .word_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_buyCon1 .swiper_box ul li .centerInfo .content .word_box .right_box .img .pb {
  padding-bottom: 60%;
}
.ins_buyCon1 .swiper_box ul li .centerInfo .img_w100 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.ins_buyCon1 .idxPageShow {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.72rem;
  left: 0;
  z-index: 10;
  gap: 0.12rem;
}
@media (max-width:990px) {
  .ins_buyCon1 .swiper_box ul li .centerInfo {
    padding-top: 0.8rem;
  }
  .ins_buyCon1 .swiper_box ul li .centerInfo .content .word_box .right_box .img .pb {
    padding-bottom: 75%;
  }
}
.ins_buyCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.94rem;
  padding-bottom: 1.2rem;
  background: #F5F5F5;
}
.ins_buyCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_buyCon2 .center_box .left_box {
  width: 20.35%;
  height: 100%;
  min-height: 70vh;
  position: sticky;
  top: 1rem;
}
.ins_buyCon2 .center_box .left_box .idx_title2 {
  padding-bottom: 0.44rem;
  border-bottom: 1px solid #0000001A;
}
.ins_buyCon2 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_buyCon2 .center_box .left_box .item_box .item {
  width: fit-content;
  color: #999999;
  font-size: var(--font18);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  
}
.ins_buyCon2 .center_box .left_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_buyCon2 .center_box .left_box .item_box .item.active {
  color: #333333;
}
.ins_buyCon2 .center_box .left_box .item_box .item.active::after {
  width: 100%;
}
.ins_buyCon2 .center_box .left_box .item_box .item:hover {
  color: #333333;
}
.ins_buyCon2 .center_box .right_box {
  width: 75%;
}
.ins_buyCon2 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
.ins_buyCon2 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.55rem;
  padding-bottom: 0.52rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_buyCon2 .center_box .right_box .item_box .item .tagBox {
  position: absolute;
  top: 0.24rem;
  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;
  gap: 4px;
  z-index: 10;
}
.ins_buyCon2 .center_box .right_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_buyCon2 .center_box .right_box .item_box .item .img .pb {
  padding-bottom: 102%;
}
.ins_buyCon2 .center_box .right_box .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_buyCon2 .center_box .right_box .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_buyCon2 .center_box .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
  text-align: center;
}
.ins_buyCon2 .center_box .right_box .item_box .item .word .t1 {
  font-weight: 700;
  
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_buyCon2 .center_box .right_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_buyCon2 .center_box .right_box .item_box .item .bgImg_adap {
  background: linear-gradient(330deg, #FFF 0%, #AAA 227.8%);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_buyCon2 .center_box .right_box .item_box .item .bgImg_adap img {
  transform: translateY(-20%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_buyCon2 .center_box .right_box .item_box .item:hover .bgImg_adap {
  opacity: 1;
}
.ins_buyCon2 .center_box .right_box .item_box .item:hover .bgImg_adap img {
  transform: translateY(0);
}
.ins_buyCon2 .center_box .right_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.02);
}
@media (max-width:990px) {
  .ins_buyCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_buyCon2 .center_box .left_box {
    width: 100%;
    height: auto;
    min-height: unset;
    position: relative;
    z-index: 1;
    top: unset;
  }
  .ins_buyCon2 .center_box .left_box .item_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.2rem;
  }
  .ins_buyCon2 .center_box .left_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0.2rem;
    background: #dadada6e;
    -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
    clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
  }
  .ins_buyCon2 .center_box .left_box .item_box .item::after {
    opacity: 0;
  }
  .ins_buyCon2 .center_box .left_box .item_box .item.active {
    background: var(--active_color2);
    color: var(--active_color);
  }
  .ins_buyCon2 .center_box .right_box {
    width: 100%;
    height: auto;
  }
  .ins_buyCon2 .center_box .right_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_buyCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.25rem 0;
  padding-bottom: 1.62rem;
  background-image: url(../images/bg10.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
.ins_buyCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_buyCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.93rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.63rem;
  position: relative;
  z-index: 1;
}
.ins_buyCon3 .center_box .item_box::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: calc(0.91rem / 2);
  left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  height: 1px;
  border-top: 3px dashed #0E0E0C66;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_buyCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_buyCon3 .center_box .item_box .item .icon {
  width: 0.91rem;
  height: 0.91rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: #0E0E0C;
  border-radius: 50%;
}
.ins_buyCon3 .center_box .item_box .item .word {
  margin-top: 0.4rem;
}
.ins_buyCon3 .center_box .item_box .item .word .t1 {
  
  font-weight: 700;
}
.ins_buyCon3 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  
  color: #666;
}
@media (max-width:990px) {
  .ins_buyCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
  .ins_buyCon3 .center_box .item_box::after {
    width: 2px;
    height: calc(100% + 0.5rem);
    top: 0;
    transform: translateX(0) translateY(-0.5rem);
    border-left: 2px dashed #0E0E0C66;
    left: calc(0.91rem / 2);
    border-top: 0;
  }
  .ins_buyCon3 .center_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0.5rem;
  }
  .ins_buyCon3 .center_box .item_box .item .icon {
    flex-shrink: 0;
  }
  .ins_buyCon3 .center_box .item_box .item .word {
    margin-top: 0;
    padding-top: 0.1rem;
  }
}
@media (max-width:1280px) {
  .ins_buyCon3 .center_box .item_box::after {
    border-top: 2px dashed #0E0E0C66;
  }
}
.ins_buyCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.24rem;
  background: #F5F5F5;
}
.ins_buyCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_buyCon5 .center_box .navBox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #CCCCCC;
  font-size: var(--font18);
}
.ins_buyCon5 .center_box .navBox .one {
  color: #CCCCCC;
  padding: 0 0.1rem;
}
.ins_buyCon5 .center_box .navBox .one.active {
  color: #FFFFFF;
  cursor: auto;
}
.ins_buyCon5 .center_box .navBox .one:hover {
  text-decoration: underline;
}
.ins_buyCon5 .center_box .navBox i {
  font-style: unset;
}
.ins_buyCon5 .center_box .navBox.bg000 .one {
  color: #999999;
}
.ins_buyCon5 .center_box .navBox.bg000 .one.active {
  color: #000;
}
.ins_buyCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.6rem;
  background: #F5F5F5;
}
.ins_buyCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_buyCon6 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_buyCon6 .center_box .swiper_box::after {
  background: #F5F5F5;
}
.ins_buyCon6 .center_box .swiper_box ul li .item {
  background: #FFFFFF;
}
.ins_buyCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F5F5F5;
  padding-top: 0.7rem;
  padding-bottom: 0.6rem;
}
.ins_buyCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_buyCon4 .center_box .left_box {
  width: 44.5%;
  overflow: hidden;
}
.ins_buyCon4 .center_box .left_box .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_buyCon4 .center_box .left_box .swiper_info .idx_swiperBtn {
  width: 100%;
  height: auto;
  position: absolute;
  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 0.24rem;
}
.ins_buyCon4 .center_box .left_box .swiper_info .idx_swiperBtn .btn::after {
  background: #FFFFFF;
}
.ins_buyCon4 .center_box .left_box .swiper_info .idx_swiperBtn .btn:hover::after {
  background: #050102;
}
.ins_buyCon4 .center_box .left_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_buyCon4 .center_box .left_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_buyCon4 .center_box .left_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
}
.ins_buyCon4 .center_box .left_box .swiper_item {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
}
.ins_buyCon4 .center_box .left_box .swiper_item ul li {
  width: 0;
  height: auto;
}
.ins_buyCon4 .center_box .left_box .swiper_item ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  cursor: pointer;
  border: 1px solid #FFFFFF;
}
.ins_buyCon4 .center_box .left_box .swiper_item ul li.active .centerInfo {
  border: 1px solid #000;
}
.ins_buyCon4 .center_box .right_box {
  width: 50.7%;
}
.ins_buyCon4 .center_box .right_box .word_box {
  width: 100%;
  height: auto;
}
.ins_buyCon4 .center_box .right_box .word_box .t1 {
  font-weight: 700;
  color: #333;
  
}
.ins_buyCon4 .center_box .right_box .word_box .t2 {
  margin-top: 0.52rem;
  color: #666;
  
}
.ins_buyCon4 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_buyCon4 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_buyCon4 .center_box .right_box .item_box .item .top {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.24rem 0;
  font-size: var(--font24);
  color: #333;
  font-weight: 700;
  border-bottom: 1px solid #0000001A;
  cursor: pointer;
}
.ins_buyCon4 .center_box .right_box .item_box .item .top img {
  width: 0.18rem;
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_buyCon4 .center_box .right_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-bottom: 0.28rem;
  padding-top: 0.32rem;
  display: none;
}
.ins_buyCon4 .center_box .right_box .item_box .item .bot .list {
  width: 100%;
  height: auto;
}
.ins_buyCon4 .center_box .right_box .item_box .item .bot .list .one {
  line-height: 1.6;
  color: #666;
  
  padding-left: 0.23rem;
  position: relative;
  z-index: 1;
  font-size: var(--font18);
}
.ins_buyCon4 .center_box .right_box .item_box .item .bot .list .one::after {
  content: '';
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.5em;
  left: 0;
  transform: rotate(45deg);
}
.ins_buyCon4 .center_box .right_box .item_box .item .bot .list .one span {
  color: #333;
  font-weight: 700;
}
.ins_buyCon4 .center_box .right_box .item_box .item.active .top img {
  transform: rotate(0deg);
}
.ins_buyCon4 .center_box .right_box .content1 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_buyCon4 .center_box .right_box .content1 .t1 {
  color: #666;
}
.ins_buyCon4 .center_box .right_box .content1 .t1 span {
  font-weight: 700;
}
.ins_buyCon4 .center_box .right_box .content1 .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.12rem;
}
.ins_buyCon4 .center_box .right_box .content1 .list .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  cursor: pointer;
  border: 1px solid #FFF;
}
.ins_buyCon4 .center_box .right_box .content1 .list .one .img {
  width: 100%;
  height: auto;
}
.ins_buyCon4 .center_box .right_box .content1 .list .one .icon {
  position: absolute;
  bottom: calc(100% + 0.2rem);
  background: #313131;
  padding: 0.12rem 0.25rem;
  border-radius: 0.04rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.ins_buyCon4 .center_box .right_box .content1 .list .one .icon::after {
  content: '';
  position: absolute;
  width: 0.15rem;
  height: 0.15rem;
  background: #313131;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.03rem;
  top: 100%;
  transform: rotate(45deg) translateY(-60%) translateX(-20%);
}
.ins_buyCon4 .center_box .right_box .content1 .list .one:hover .icon {
  opacity: 1;
  visibility: visible;
}
.ins_buyCon4 .center_box .right_box .content1 .list .one.active {
  border: 1px solid #000;
}
.ins_buyCon4 .center_box .right_box .content1 .list .one.active .icon {
  opacity: 1;
  visibility: visible;
}
.ins_buyCon4 .center_box .right_box .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_buyCon4 .center_box .right_box .content2 .t1 {
  color: #333;
  font-weight: 700;
}
.ins_buyCon4 .center_box .right_box .content2 .icon_info {
  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;
  gap: 0.72rem;
}
.ins_buyCon4 .center_box .right_box .content2 .icon_info .icon_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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.32rem;
}
.ins_buyCon4 .center_box .right_box .content2 .icon_info .icon_box .icon {
  width: 0.58rem;
  height: 0.58rem;
  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;
  background: #666666;
  -webkit-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_buyCon4 .center_box .right_box .content2 .icon_info .icon_box .icon::after {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #F5F5F5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-clip-path: polygon(calc(100% - 0.105rem) 0%, 100% 0, 100% calc(100% - 0.105rem), calc(100% - 0.105rem) 100%, 0 100%, 0% calc(100% - 0.105rem));
  clip-path: polygon(0.105rem 0%, 100% 0, 100% calc(100% - 0.105rem), calc(100% - 0.105rem) 100%, 0 100%, 0% 0.105rem);
  z-index: 0;
}
.ins_buyCon4 .center_box .right_box .content2 .icon_info .icon_box .icon img {
  width: 0.25rem;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_buyCon4 .center_box .right_box .content2 .icon_info .icon_box .icon:hover {
  background: var(--active_color);
}
.ins_buyCon4 .center_box .right_box .content2 .icon_info .icon_box .icon:hover::after {
  background: var(--active_color);
}
.ins_buyCon4 .center_box .right_box .content2 .icon_info .icon_box .word {
  font-size: var(--font24);
  color: #333;
  font-weight: 700;
  
}
.ins_buyCon4 .center_box .right_box .content2 .icon_info .btn {
  width: fit-content;
  padding: 0 0.32rem;
  height: 0.58rem;
  min-height: 40px;
  background: #0E0E0C;
  color: var(--active_color);
  font-size: var(--font24);
  border: 0;
  -webkit-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
  cursor: pointer;
}
@media (max-width:990px) {
  .ins_buyCon4 .center_box .right_box .content1 .list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}
.ins_questionsCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #191916;
}
.ins_questionsCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_questionsCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_questionsCon1 .content .center_box .word {
  width: 100%;
  height: auto;
}
.ins_questionsCon1 .content .center_box .word .t1 {
  
  font-weight: 700;
}
.ins_questionsCon1 .content .center_box .word .t1.font48 {
  font-size: 8.4rem;
}
.ins_questionsCon1 .content .center_box .word .t1.font52 {
  font-size: var(--font52);
}
.ins_questionsCon1 .content .center_box .word .t2 {
  color: #666;
  
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_questionsCon1 .content .center_box .word .t2 .ainfo {
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: underline;
}
.ins_questionsCon1 .img_w100 {
  width: 100%;
  height: auto;
}
.ins_questionsCon1 .img_w100 img {
  width: 100%;
  height: auto;
}
.ins_questionsCon1.coFFF .content .center_box .word .t1 {
  color: #FFFFFF;
}
.ins_questionsCon1.coFFF .content .center_box .word .t2 {
  margin-top: 0.32rem;
  color: #FFFFFF;
  width: 33%;
}
@media (max-width:990px) {
  .ins_questionsCon1 .img_w100 img.wap {
    min-height: 500px;
    object-fit: cover;
  }
  .ins_questionsCon1 .content .center_box .word .t1 {
    font-size: 0.6rem !important;
  }
  .ins_questionsCon1 .content .center_box .word .t2 {
    width: 100% !important;
  }
}
.ins_questionsCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.94rem;
  padding-bottom: 1.2rem;
  background: #F5F5F5;
}
.ins_questionsCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_questionsCon2 .center_box .left_box {
  width: 20.35%;
  height: 100%;
  min-height: 70vh;
  position: sticky;
  top: 1rem;
}
.ins_questionsCon2 .center_box .left_box .idx_title2 {
  padding-bottom: 0.44rem;
  border-bottom: 1px solid #0000001A;
}
.ins_questionsCon2 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_questionsCon2 .center_box .left_box .item_box .item {
  width: fit-content;
  color: #999999;
  font-size: var(--font18);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  
}
.ins_questionsCon2 .center_box .left_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_questionsCon2 .center_box .left_box .item_box .item.active {
  color: #333333;
}
.ins_questionsCon2 .center_box .left_box .item_box .item.active::after {
  width: 100%;
}
.ins_questionsCon2 .center_box .left_box .item_box .item:hover {
  color: #333333;
}
.ins_questionsCon2 .center_box .right_box {
  width: 75%;
}
.ins_questionsCon2 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_questionsCon2 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0 0.4rem;
}
.ins_questionsCon2 .center_box .right_box .item_box .item .top {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.4rem 0;
  padding-bottom: 0.35rem;
  font-size: var(--font24);
  color: #333;
  font-weight: 700;
  cursor: pointer;
}
.ins_questionsCon2 .center_box .right_box .item_box .item .top img {
  width: 0.18rem;
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_questionsCon2 .center_box .right_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding: 0.4rem 0;
  display: none;
  border-top: 1px solid #0000001A;
}
.ins_questionsCon2 .center_box .right_box .item_box .item .bot .list {
  width: 100%;
  height: auto;
  padding-left: 1em;
  font-size: var(--font16);
}
.ins_questionsCon2 .center_box .right_box .item_box .item .bot .list .one {
  line-height: 1.6;
  color: #666;
  
  position: relative;
  z-index: 1;
  list-style: decimal;
}
.ins_questionsCon2 .center_box .right_box .item_box .item .bot .list .one span {
  color: #333;
  font-weight: 700;
}
.ins_questionsCon2 .center_box .right_box .item_box .item.active .top img {
  transform: rotate(0deg);
}
.ins_questionsCon2 .center_box .right_box .idx_laypage {
  margin-top: 0.72rem;
}
@media (max-width:990px) {
  .ins_questionsCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_questionsCon2 .center_box .left_box {
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    z-index: 1;
    top: unset;
  }
  .ins_questionsCon2 .center_box .left_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_questionsCon2 .center_box .left_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0.2rem;
    background: #dadada6e;
    -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
    clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
    text-align: center;
  }
  .ins_questionsCon2 .center_box .left_box .item_box .item::after {
    opacity: 0;
  }
  .ins_questionsCon2 .center_box .left_box .item_box .item.active {
    background: var(--active_color2);
    color: var(--active_color);
  }
}
.ins_downloadCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.72rem;
  padding-bottom: 1.2rem;
  background: #F5F5F5;
}
.ins_downloadCon1 .content {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .content2 .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;
}
.ins_downloadCon1 .content2 .center_box .list_box {
  width: 81.2%;
  height: auto;
  background: #FFFFFF;
  -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
  clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_downloadCon1 .content2 .center_box .list_box .one {
  width: fit-content;
  height: 0.76rem;
  min-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0.72rem;
  font-size: var(--font24);
  color: #666666;
  position: relative;
  z-index: 1;
  -webkit-clip-path: polygon(calc(100% - 0.2rem) 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% calc(100% - 0.2rem));
  clip-path: polygon(0.2rem 0%, 100% 0, 100% calc(100% - 0.2rem), calc(100% - 0.2rem) 100%, 0 100%, 0% 0.2rem);
  
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .content2 .center_box .list_box .one:hover {
  color: #000;
}
.ins_downloadCon1 .content2 .center_box .list_box .one.active {
  font-weight: 700;
  background: #1A1A16;
  color: var(--active_color);
}
.ins_downloadCon1 .content2.posFix {
  margin-top: 0;
  padding: 0.1rem 0;
  background: #F5F5F5;
}
.ins_downloadCon1 .content3 {
  width: 100%;
  height: auto;
  margin-top: 0.92rem;
}
.ins_downloadCon1 .content3 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  margin-top: 0.72rem;
}
.ins_downloadCon1 .content3 .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.55rem;
  padding-bottom: 0.52rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_downloadCon1 .content3 .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_downloadCon1 .content3 .item_box .item .img .pb {
  padding-bottom: 102%;
}
.ins_downloadCon1 .content3 .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_downloadCon1 .content3 .item_box .item .img .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .content3 .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.44rem;
  text-align: center;
}
.ins_downloadCon1 .content3 .item_box .item .word .t1 {
  font-weight: 700;
  
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ins_downloadCon1 .content3 .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_downloadCon1 .content3 .item_box .item .icon_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
  background: #00000066;
  backdrop-filter: blur(34.70000076px);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .content3 .item_box .item .icon_box .icon {
  width: 100%;
  height: 0.58rem;
  min-height: 40px;
  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: 0 0.32rem;
  background: #FFFFFF;
  -webkit-clip-path: polygon(calc(100% - 0.12rem) 0%, 100% 0, 100% calc(100% - 0.12rem), calc(100% - 0.12rem) 100%, 0 100%, 0% calc(100% - 0.12rem));
  clip-path: polygon(0.12rem 0%, 100% 0, 100% calc(100% - 0.12rem), calc(100% - 0.12rem) 100%, 0 100%, 0% 0.12rem);
  cursor: pointer;
  font-size: var(--font24);
  
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .content3 .item_box .item .icon_box .icon:hover {
  background: var(--active_color);
}
.ins_downloadCon1 .content3 .item_box .item:hover .icon_box {
  opacity: 1;
  visibility: visible;
}
.ins_downloadCon1 .content3 .idx_laypage {
  margin-top: 0.72rem;
}
@media (max-width:990px) {
  .ins_downloadCon1 .content2 .center_box .list_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: none;
    gap: 0.2rem;
  }
  .ins_downloadCon1 .content2 .center_box .list_box .one {
    width: 100%;
    height: auto;
    background: #ffffffdc;
    padding: 0.2rem 0.72rem;
  }
  .ins_downloadCon1 .content3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.72rem;
  padding-bottom: 0.6rem;
  background: #F5F5F5;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .map_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_contactCon1 .map_box .img {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .map_box .img img {
  width: 100%;
  height: auto;
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  padding-top: 0.6rem;
  background: #F5F5F5;
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #00000033;
  border-right: 0;
  border-bottom: 0;
}
.ins_contactCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.52rem 0.4rem;
  padding-bottom: 0.55rem;
  border-right: 1px solid #00000033;
  border-bottom: 1px solid #00000033;
}
.ins_contactCon2 .center_box .item_box .item .icon {
  width: 0.58rem;
  height: 0.58rem;
  background: #050102;
  -webkit-clip-path: polygon(calc(100% - 0.15rem) 0%, 100% 0, 100% calc(100% - 0.15rem), calc(100% - 0.15rem) 100%, 0 100%, 0% calc(100% - 0.15rem));
  clip-path: polygon(0.15rem 0%, 100% 0, 100% calc(100% - 0.15rem), calc(100% - 0.15rem) 100%, 0 100%, 0% 0.15rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_contactCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.95rem;
}
.ins_contactCon2 .center_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_contactCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.24rem;
  color: #666;
}
.ins_contactCon2 .center_box .item_box .item .word .t2 a {
  color: #666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon2 .center_box .item_box .item .word .t2 a:hover {
  color: #000;
}
@media (max-width:990px) {
  .ins_contactCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_contactCon2 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_contactCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0.5rem;
  }
  .ins_contactCon2 .center_box .item_box .item .icon {
    flex-shrink: 0;
  }
  .ins_contactCon2 .center_box .item_box .item .word {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}
.ins_authenticityCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F5F5F5;
}
.ins_authenticityCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_authenticityCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_authenticityCon1 .center_box .content .input {
  width: 51.5%;
  height: auto;
}
.ins_authenticityCon1 .center_box .content .input input {
  width: 100%;
  height: 0.77rem;
  min-height: 40px;
  border: unset;
  background: #FFFFFF;
  color: #050102;
  -webkit-clip-path: polygon(calc(100% - 0.21rem) 0%, 100% 0, 100% calc(100% - 0.21rem), calc(100% - 0.21rem) 100%, 0 100%, 0% calc(100% - 0.21rem));
  clip-path: polygon(0.21rem 0%, 100% 0, 100% calc(100% - 0.21rem), calc(100% - 0.21rem) 100%, 0 100%, 0% 0.21rem);
  font-size: var(--font24);
  padding-left: 0.32rem;
  --color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_authenticityCon1 .center_box .content .input input::-webkit-input-placeholder,
.ins_authenticityCon1 .center_box .content .input input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_authenticityCon1 .center_box .content .input input:-moz-placeholder,
.ins_authenticityCon1 .center_box .content .input input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_authenticityCon1 .center_box .content .input input::-moz-placeholder,
.ins_authenticityCon1 .center_box .content .input input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_authenticityCon1 .center_box .content .input input:-ms-input-placeholder,
.ins_authenticityCon1 .center_box .content .input input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_authenticityCon1 .center_box .content .input input:focus {
  background: #fffef0;
}
.ins_authenticityCon1 .center_box .content .btn {
  width: 51.5%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_authenticityCon1 .center_box .content .btn .one {
  width: 100%;
  height: 0.77rem;
  min-height: 40px;
  border: 0;
  background: #0E0E0C;
  -webkit-clip-path: polygon(calc(100% - 0.21rem) 0%, 100% 0, 100% calc(100% - 0.21rem), calc(100% - 0.21rem) 100%, 0 100%, 0% calc(100% - 0.21rem));
  clip-path: polygon(0.21rem 0%, 100% 0, 100% calc(100% - 0.21rem), calc(100% - 0.21rem) 100%, 0 100%, 0% 0.21rem);
  font-size: var(--font24);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_authenticityCon1 .center_box .content .btn .one:hover {
  opacity: 0.8;
}
@media (max-width:990px) {
  .ins_authenticityCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_authenticityCon1 .center_box .content .input,
  .ins_authenticityCon1 .center_box .content .btn {
    width: 100%;
    height: auto;
  }
}
.ins_authenticityCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #FFFFFF;
}
.ins_authenticityCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_authenticityCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
  margin-top: 0.75rem;
}
.ins_authenticityCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_authenticityCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_authenticityCon2 .center_box .item_box .item .img img {
  width: 100%;
  height: auto;
}
.ins_authenticityCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
  margin-top: 0.32rem;
}
.ins_authenticityCon2 .center_box .item_box .item .word i {
  width: 0.4rem;
  height: 0.4rem;
  min-width: 25px;
  min-height: 25px;
  font-style: unset;
  -webkit-clip-path: polygon(calc(100% - 0.09rem) 0%, 100% 0, 100% calc(100% - 0.09rem), calc(100% - 0.09rem) 100%, 0 100%, 0% calc(100% - 0.09rem));
  clip-path: polygon(0.09rem 0%, 100% 0, 100% calc(100% - 0.09rem), calc(100% - 0.09rem) 100%, 0 100%, 0% 0.09rem);
  background: var(--active_color2);
  color: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font24);
}
.ins_authenticityCon2 .center_box .item_box .item .word span {
  font-size: var(--font24);
  
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #1A1A16;
  padding-top: 1.2rem;
  padding-bottom: 0.58rem;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box {
  width: 69.318%;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img .pb {
  padding-bottom: 60%;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .left_box .img .pb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box {
  width: 26.1%;
  color: #FFFFFF;
  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: 1rem;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .word .t1 {
  font-weight: 700;
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box .icon {
  width: 100%;
  height: auto;
  
}
.ins_aboutCon1 .center_box .swiper_info .swiper_box ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.ins_aboutCon1 .center_box .swiper_info .idxPageShow {
  width: 69.318%;
  position: absolute;
  left: 0;
  bottom: 0.32rem;
  z-index: 10;
}
.ins_aboutCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.72rem;
  border-top: 1px solid #FFFFFF33;
}
.ins_aboutCon1 .center_box .item_box .item {
  width: fit-content;
  color: #FFFFFF;
  padding-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon1 .center_box .item_box .item .word {
  font-size: 0.62rem;
  font-weight: 700;
}
.ins_aboutCon1 .center_box .item_box .item .word span {
  color: var(--active_color);
  font-size: var(--font24);
  display: none;
}
.ins_aboutCon1 .center_box .item_box .item .icon {
  width: fit-content;
  padding: 0.1rem 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_aboutCon1 .center_box .item_box .item .icon .ic {
  font-size: var(--font24);
  color: var(--active_color);
  font-weight: 700;
}
.ins_aboutCon1 .center_box .item_box .item .icon .on {
  font-size: var(--font18);
  margin-top: 0.04rem;
}
@media (max-width:990px) {
  .ins_aboutCon1 .center_box .swiper_info .idxPageShow {
    position: relative;
    z-index: 1;
    bottom: 0;
    margin-top: 0.8rem;
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo {
    gap: 0.8rem;
  }
  .ins_aboutCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .right_box {
    gap: 0.5rem;
  }
  .ins_aboutCon1 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_aboutCon1 .center_box .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0;
    text-align: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_aboutCon1 .center_box .item_box .item .word span {
    display: inline-block !important;
  }
  .ins_aboutCon1 .center_box .item_box .item .icon .ic {
    display: none;
  }
  .ins_aboutCon1 .center_box .item_box .item .icon .on {
    margin-top: 0;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F5F5F5;
  padding: 1.2rem 0;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .ins_title2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_aboutCon2 .center_box .ins_title2 .t1 {
  width: 41%;
}
.ins_aboutCon2 .center_box .ins_title2 .t2 {
  max-width: 28%;
  margin-top: 0;
}
.ins_aboutCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_aboutCon2 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 123%;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon2 .center_box .idxPageLine {
  position: relative;
  z-index: 1;
}
@media (max-width:990px) {
  .ins_aboutCon2 .center_box .ins_title2 {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_aboutCon2 .center_box .ins_title2 .t1 {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .center_box .ins_title2 .t2 {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-top: 0.3rem;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 2.95rem 0;
  background-image: url(../images/z36.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.ins_aboutCon3 .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;
}
.ins_aboutCon3 .center_box .word {
  width: 36%;
  height: auto;
  color: #FFFFFF;
}
.ins_aboutCon3 .center_box .word .t1 {
  font-weight: 700;
}
.ins_aboutCon3 .center_box .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
  color: #F5F5F5;
}
@media (max-width:990px) {
  .ins_aboutCon3 {
    background-attachment: unset;
    position: relative;
    z-index: 1;
  }
  .ins_aboutCon3::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.3;
  }
  .ins_aboutCon3 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box .word {
    width: 100%;
    height: auto;
  }
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #191916;
  padding-top: 0.65rem;
  padding-bottom: 1.08rem;
}
.ins_aboutCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content .left_box {
  width: 32.6%;
}
.ins_aboutCon4 .center_box .content .left_box .ins_title2 {
  width: 100%;
  height: auto;
  color: #FFFFFF;
  padding-top: 0.55rem;
}
.ins_aboutCon4 .center_box .content .left_box .ins_title2 .t2 {
  color: #FFFFFF;
  margin-top: 0.32rem;
}
.ins_aboutCon4 .center_box .content .right_box {
  width: 60%;
  height: 100%;
}
.ins_aboutCon4 .center_box .content .right_box .map_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .item_box .item .icon {
  width: 0.24rem;
  height: 0.24rem;
  background: #FFFFFFB2;
  position: absolute;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .item_box .item .icon::after {
  content: '';
  position: absolute;
  z-index: 0;
  width: 0.12rem;
  height: 0.12rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .item_box .item .icon::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 0.4rem;
  height: 0.4rem;
  background: #ffffff79;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
  animation: bigcri 5s linear infinite;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .item_box .item .icon img {
  position: relative;
  z-index: 10;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .item_box .item .word {
  width: max-content;
  position: absolute;
  left: 0.24rem;
  font-size: var(--font20);
  color: #FFFFFF99;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .item_box .item.left .word {
  left: unset;
  right: 0.24rem;
}
.ins_aboutCon4 .center_box .content .right_box .map_info .item_box .item.coFFF .word {
  color: #FFF;
}
.ins_aboutCon4 .center_box .list_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.21rem;
  margin-top: 1.33rem;
}
.ins_aboutCon4 .center_box .list_box .item {
  width: 100%;
  height: auto;
  padding: 0.32rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF1A;
  gap: 0.32rem;
}
.ins_aboutCon4 .center_box .list_box .item .icon {
  width: 0.68rem;
  height: 0.68rem;
}
.ins_aboutCon4 .center_box .list_box .item .line {
  width: 1px;
  height: 0.68rem;
  background: #FFFFFF33;
}
.ins_aboutCon4 .center_box .list_box .item .word {
  color: #FFFFFF;
  font-size: var(--font24);
  
}
@media (max-width:990px) {
  .ins_aboutCon4 .center_box .content .right_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .ins_aboutCon4 .center_box .content .right_box .map_info {
    width: 90%;
  }
  .ins_aboutCon4 .center_box .content .right_box .map_info .item_box .item .word {
    font-size: var(--font14);
  }
  .ins_aboutCon4 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #E6E6E6;
  padding: 1.2rem 0;
}
.ins_aboutCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .ins_title2 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_aboutCon5 .center_box .ins_title2 .t1 {
  width: 38%;
}
.ins_aboutCon5 .center_box .ins_title2 .t2 {
  max-width: 28%;
  margin-top: 0;
}
.ins_aboutCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_aboutCon5 .center_box .swiper_box ul li {
  width: 35%;
  height: auto;
}
.ins_aboutCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 0.53rem 0.4rem;
}
.ins_aboutCon5 .center_box .swiper_box ul li .centerInfo .img {
  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_aboutCon5 .center_box .swiper_box ul li .centerInfo .img .word {
  font-size: var(--font16);
  color: #CCCCCC;
}
.ins_aboutCon5 .center_box .swiper_box ul li .centerInfo .img .icon {
  width: 0.98rem;
  height: 0.98rem;
}
.ins_aboutCon5 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  margin-top: 1.7rem;
}
.ins_aboutCon5 .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  font-weight: 700;
}
.ins_aboutCon5 .center_box .swiper_box ul li .centerInfo .word_box .t2 {
  color: #999999;
  margin-top: 0.2rem;
}
.ins_settlementCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F5F5F5;
}
.ins_settlementCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_settlementCon1 .center_box .left_box {
  width: 61%;
  padding-top: 0.72rem;
  padding-bottom: 1.14rem;
}
.ins_settlementCon1 .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;
  margin-top: 0.52rem;
}
.ins_settlementCon1 .center_box .left_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;
  background: #FFFFFF;
  padding: 0.32rem 0.4rem;
  border: 1px solid #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left {
  width: 66.3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .word_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.24rem;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .word_box .img {
  width: 0.94rem;
  background: #F5F5F5;
  padding: 0.11rem;
  flex-shrink: 0;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .word_box .word {
  width: 100%;
  height: auto;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .word_box .word .t1 {
  font-weight: 700;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .word_box .word .t2 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .icon_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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.32rem;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .icon_box .icon {
  width: 0.44rem;
  height: 0.44rem;
  min-width: 20px;
  min-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: #666666;
  -webkit-clip-path: polygon(calc(100% - 0.11rem) 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% calc(100% - 0.11rem));
  clip-path: polygon(0.11rem 0%, 100% 0, 100% calc(100% - 0.11rem), calc(100% - 0.11rem) 100%, 0 100%, 0% 0.11rem);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .icon_box .icon::after {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-clip-path: polygon(calc(100% - 0.105rem) 0%, 100% 0, 100% calc(100% - 0.105rem), calc(100% - 0.105rem) 100%, 0 100%, 0% calc(100% - 0.105rem));
  clip-path: polygon(0.105rem 0%, 100% 0, 100% calc(100% - 0.105rem), calc(100% - 0.105rem) 100%, 0 100%, 0% 0.105rem);
  z-index: 0;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .icon_box .icon img {
  width: 0.14rem;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .icon_box .icon:hover {
  background: var(--active_color);
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .icon_box .icon:hover::after {
  background: var(--active_color);
}
.ins_settlementCon1 .center_box .left_box .item_box .item .left .icon_box .word {
  font-size: var(--font24);
  color: #333;
  font-weight: 700;
  
}
.ins_settlementCon1 .center_box .left_box .item_box .item .right {
  width: fit-content;
  flex-shrink: 0;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .right .icon {
  width: 0.35rem;
  height: 0.35rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_settlementCon1 .center_box .left_box .item_box .item .right .icon:hover {
  opacity: 0.7;
}
.ins_settlementCon1 .center_box .left_box .item_box .item:hover {
  border: 1px solid #999999;
}
.ins_settlementCon1 .center_box .left_box .idx_laypage {
  margin-top: 0.72rem;
}
.ins_settlementCon1 .center_box .right_box {
  width: 35.3%;
  height: auto;
  padding-top: 0.72rem;
  padding-bottom: 1.14rem;
  padding-left: 0.79rem;
  position: relative;
  z-index: 1;
}
.ins_settlementCon1 .center_box .right_box::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #FFFFFF;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_settlementCon1 .center_box .right_box .word {
  width: 100%;
  height: auto;
}
.ins_settlementCon1 .center_box .right_box .word .t1 {
  font-weight: 700;
}
.ins_settlementCon1 .center_box .right_box .word .t2 {
  margin-top: 0.16rem;
  color: #999999;
}
.ins_settlementCon1 .center_box .right_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.32rem;
}
.ins_settlementCon1 .center_box .right_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_settlementCon1 .center_box .right_box .item_box .item .icon {
  font-weight: 700;
  font-size: var(--font18);
}
.ins_settlementCon1 .center_box .right_box .item_box .item .icon span {
  color: #E42727;
}
.ins_settlementCon1 .center_box .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
}
.ins_settlementCon1 .center_box .right_box .item_box .item .word input {
  width: 100%;
  height: 0.58rem;
  min-height: 40px;
  -webkit-clip-path: polygon(calc(100% - 0.14rem) 0%, 100% 0, 100% calc(100% - 0.14rem), calc(100% - 0.14rem) 100%, 0 100%, 0% calc(100% - 0.14rem));
  clip-path: polygon(0.14rem 0%, 100% 0, 100% calc(100% - 0.14rem), calc(100% - 0.14rem) 100%, 0 100%, 0% 0.14rem);
  background: #F5F5F5;
  border: 0;
  padding-left: 0.32rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
  --color: #999999;
}
.ins_settlementCon1 .center_box .right_box .item_box .item .word input::-webkit-input-placeholder,
.ins_settlementCon1 .center_box .right_box .item_box .item .word input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_settlementCon1 .center_box .right_box .item_box .item .word input:-moz-placeholder,
.ins_settlementCon1 .center_box .right_box .item_box .item .word input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_settlementCon1 .center_box .right_box .item_box .item .word input::-moz-placeholder,
.ins_settlementCon1 .center_box .right_box .item_box .item .word input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_settlementCon1 .center_box .right_box .item_box .item .word input:-ms-input-placeholder,
.ins_settlementCon1 .center_box .right_box .item_box .item .word input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_settlementCon1 .center_box .right_box .item_box .item .word .layui-input:focus,
.ins_settlementCon1 .center_box .right_box .item_box .item .word .layui-textarea:focus {
  background: #0000001A;
}
.ins_settlementCon1 .center_box .right_box .checkbox {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
  font-size: var(--font14);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: #999;
}
.ins_settlementCon1 .center_box .right_box .checkbox > div span,
.ins_settlementCon1 .center_box .right_box .checkbox > div a {
  display: contents;
}
.ins_settlementCon1 .center_box .right_box .checkbox > div a {
  color: #333;
  text-decoration: underline;
}
.ins_settlementCon1 .center_box .right_box .checkbox .layui-form-checkbox[lay-skin=primary] {
  gap: 0.08rem;
}
.ins_settlementCon1 .center_box .right_box .checkbox .layui-form-checkbox {
  padding: 0;
  margin: 0;
  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;
}
.ins_settlementCon1 .center_box .right_box .checkbox .layui-form-checkbox[lay-skin=primary] > div {
  padding: 0;
  margin: 0;
}
.ins_settlementCon1 .center_box .right_box .checkbox .layui-form-checkbox[lay-skin=primary] > i {
  position: relative;
  z-index: 1;
  width: 0.18rem;
  height: 0.18rem;
  top: unset;
  left: 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;
  -webkit-clip-path: polygon(calc(100% - 0.04rem) 0%, 100% 0, 100% calc(100% - 0.04rem), calc(100% - 0.04rem) 100%, 0 100%, 0% calc(100% - 0.04rem));
  clip-path: polygon(0.04rem 0%, 100% 0, 100% calc(100% - 0.04rem), calc(100% - 0.04rem) 100%, 0 100%, 0% 0.04rem);
  background: #858585d5;
  border-color: #858585d5;
}
.ins_settlementCon1 .center_box .right_box .checkbox .layui-form-checkbox[lay-skin=primary] > i::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url(../images/i41.png);
  background-repeat: no-repeat;
  background-size: 70% auto;
  background-position: center center;
  opacity: 0;
}
.ins_settlementCon1 .center_box .right_box .checkbox .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color2);
  border-color: var(--active_color2) !important;
}
.ins_settlementCon1 .center_box .right_box .checkbox .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.ins_settlementCon1 .center_box .right_box .checkbox .layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: unset;
}
.ins_settlementCon1 .center_box .right_box .checkbox .layui-form-checkbox[lay-skin=primary] > div {
  color: #999;
}
.ins_settlementCon1 .center_box .right_box .idx_btn {
  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.72rem;
}
.ins_settlementCon1 .center_box .right_box .idx_btn .one {
  width: fit-content;
  height: 0.58rem;
  min-height: 40px;
  padding: 0 0.81rem;
  -webkit-clip-path: polygon(calc(100% - 0.12rem) 0%, 100% 0, 100% calc(100% - 0.12rem), calc(100% - 0.12rem) 100%, 0 100%, 0% calc(100% - 0.12rem));
  clip-path: polygon(0.12rem 0%, 100% 0, 100% calc(100% - 0.12rem), calc(100% - 0.12rem) 100%, 0 100%, 0% 0.12rem);
  border: unset;
  background: var(--active_color2);
  color: var(--active_color);
  font-size: var(--font18);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_settlementCon1 .center_box .right_box .idx_btn .one:hover {
  opacity: 0.8;
}
@media (max-width:990px) {
  .ins_settlementCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_settlementCon1 .center_box .left_box {
    width: 100%;
    height: auto;
  }
  .ins_settlementCon1 .center_box .left_box .item_box .item {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    align-items: start;
    position: relative;
    z-index: 1;
  }
  .ins_settlementCon1 .center_box .left_box .item_box .item .left {
    width: 100%;
    height: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .ins_settlementCon1 .center_box .left_box .item_box .item .left .word_box {
    width: 100%;
    height: auto;
  }
  .ins_settlementCon1 .center_box .left_box .item_box .item .left .word_box .img {
    width: 30%;
    height: auto;
    flex-shrink: 0;
  }
  .ins_settlementCon1 .center_box .left_box .item_box .item .left .word_box .word {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
  }
  .ins_settlementCon1 .center_box .left_box .item_box .item .left .icon_box {
    position: absolute;
    left: calc(30% + 0.44rem);
    bottom: 0.32rem;
  }
  .ins_settlementCon1 .center_box .left_box .item_box .item .right {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
  }
  .ins_settlementCon1 .center_box .right_box {
    width: 100%;
    height: auto;
    padding: 0.8rem 0.4rem;
  }
  .ins_settlementCon1 .center_box .right_box::after {
    width: 100%;
    height: 100%;
  }
}
.ins_storiesCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #191916;
  padding-top: 1.2rem;
  padding-bottom: 0.6rem;
}
.ins_storiesCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_storiesCon1 .center_box .ins_title2 {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.ins_storiesCon1 .center_box .ins_title2 .t2 {
  max-width: 33%;
  color: #FFFFFF;
}
.ins_storiesCon1 .center_box .img_w100 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_storiesCon1 .center_box .img_w100 img {
  width: 100%;
  height: auto;
}
.ins_storiesCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #191916;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.ins_storiesCon2 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_storiesCon2 .center_box .ins_title2 {
  width: 32.22%;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 1rem;
}
.ins_storiesCon2 .center_box .ins_title2 .t2 {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_storiesCon2 .center_box .img_box {
  width: 63%;
  height: auto;
}
.ins_storiesCon2 .center_box .img_box img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_storiesCon2 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.7rem;
  }
  .ins_storiesCon2 .center_box .ins_title2 {
    width: 100%;
    height: auto;
  }
  .ins_storiesCon2 .center_box .img_box {
    width: 100%;
    height: auto;
  }
}
.ins_storiesCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #191916;
  padding-top: 0.6rem;
  padding-bottom: 1.2rem;
}
.ins_storiesCon3 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -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_storiesCon3 .center_box .ins_title2 {
  width: 32.22%;
  height: auto;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 1rem;
}
.ins_storiesCon3 .center_box .ins_title2 .t2 {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_storiesCon3 .center_box .img_box {
  width: 63%;
  height: auto;
}
.ins_storiesCon3 .center_box .img_box img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_storiesCon3 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.7rem;
  }
  .ins_storiesCon3 .center_box .ins_title2 {
    width: 100%;
    height: auto;
  }
  .ins_storiesCon3 .center_box .img_box {
    width: 100%;
    height: auto;
  }
}
.ins_storiesCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_storiesCon4 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.2rem;
}
.ins_storiesCon4 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_storiesCon4 .content .center_box .ins_title2 {
  width: 32.22%;
  height: auto;
  color: #FFFFFF;
}
.ins_storiesCon4 .content .center_box .ins_title2 .t2 {
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_storiesCon4 .img_box {
  width: 100%;
  height: auto;
}
.ins_storiesCon4 .img_box img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_storiesCon4 .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  .ins_storiesCon4 .content .center_box .ins_title2 {
    width: 100%;
    height: auto;
    color: var(--active_color2);
  }
  .ins_storiesCon4 .content .center_box .ins_title2 .t2 {
    color: #666666;
  }
  .ins_storiesCon4 .img_box {
    width: 91.66666667%;
    height: auto;
    margin: 0 auto;
    margin-top: 0.7rem;
  }
}
.ins_storiesCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #F5F5F5;
  padding: 1.2rem 0;
}
.ins_storiesCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_storiesCon5 .center_box .img_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  position: relative;
  z-index: 1;
  padding: 1.75rem 0;
  padding-left: 0.72rem;
}
.ins_storiesCon5 .center_box .img_box .item_box {
  width: fit-content;
  height: auto;
  position: relative;
  z-index: 2;
  padding: 0.4rem;
  background: #FFFFFFE5;
  backdrop-filter: blur(50px);
  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_storiesCon5 .center_box .img_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #0000001A;
}
.ins_storiesCon5 .center_box .img_box .item_box .item .icon {
  width: 0.4rem;
  height: 0.4rem;
  flex-shrink: 0;
}
.ins_storiesCon5 .center_box .img_box .item_box .item .word {
  font-weight: 700;
  
  font-size: var(--font18);
}
.ins_storiesCon5 .center_box .img_box .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_storiesCon5 .center_box .img_box .img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.ins_storiesCon5 .center_box .img_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_storiesCon5.bgFFF {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .ins_storiesCon5 .center_box .img_box {
    width: 100%;
    height: auto;
    padding: 0;
  }
  .ins_storiesCon5 .center_box .img_box .img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
  }
  .ins_storiesCon5 .center_box .img_box .item_box {
    width: 100%;
    height: auto;
    padding: 0;
    background: none;
  }
}
.ins_storiesCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.09rem 0;
  padding-top: 0.54rem;
}
.ins_storiesCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_storiesCon6 .center_box .content1 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_storiesCon6 .center_box .content1 .word {
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 700;
}
.ins_storiesCon6 .center_box .content1 .icon {
  width: 13.7%;
}
.ins_storiesCon6 .center_box .content2 {
  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_storiesCon6 .center_box .content2 .word {
  width: fit-content;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 0.94rem;
}
.ins_storiesCon6 .center_box .content2 .icon {
  width: 30.4%;
}
@media (max-width:990px) {
  .ins_storiesCon6 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_storiesCon6 .center_box .content1 .word {
    font-size: 0.8rem;
  }
  .ins_storiesCon6 .center_box .content2 .word {
    font-size: 0.8rem;
  }
}
.ins_storiesCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_storiesCon7 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_storiesCon7 .center_box .left {
  width: 32.67%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 1rem;
}
.ins_storiesCon7 .center_box .left .ins_word {
  width: 80%;
}
.ins_storiesCon7 .center_box .center {
  width: 32.1%;
  height: auto;
}
.ins_storiesCon7 .center_box .right {
  width: 26.2%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:990px) {
  .ins_storiesCon7 .center_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem 0.4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_storiesCon7 .center_box .left,
  .ins_storiesCon7 .center_box .center,
  .ins_storiesCon7 .center_box .right {
    width: 100%;
    height: auto;
  }
  .ins_storiesCon7 .center_box .left {
    grid-column: span 2;
  }
  .ins_storiesCon7 .center_box .ins_word {
    width: 100% !important;
    height: auto;
  }
}
.ins_storiesCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_storiesCon8 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_storiesCon8 .center_box .left {
  width: 49.829%;
}
.ins_storiesCon8 .center_box .left .content {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_storiesCon8 .center_box .left .content .ins_word {
  width: 52.7%;
}
.ins_storiesCon8 .center_box .left .content .img {
  width: 41%;
}
.ins_storiesCon8 .center_box .left .content .img img {
  width: 100%;
  height: auto;
}
.ins_storiesCon8 .center_box .right {
  width: 44.65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_storiesCon8 .center_box .right .imgBox {
  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;
  padding-right: 0.78rem;
}
.ins_storiesCon8 .center_box .right .imgBox .img {
  width: 51%;
}
.ins_storiesCon8 .center_box .right .imgBox .img img {
  width: 100%;
  height: auto;
}
.ins_storiesCon8 .center_box .right .ins_word {
  width: 58%;
}
@media (max-width:990px) {
  .ins_storiesCon8 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
  }
  .ins_storiesCon8 .center_box .left,
  .ins_storiesCon8 .center_box .right {
    width: 100%;
    height: auto;
  }
  .ins_storiesCon8 .center_box .right {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    position: relative;
    z-index: -1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .ins_storiesCon8 .center_box .right .imgBox {
    width: 41%;
    padding-right: 0;
    margin-top: 0;
  }
  .ins_storiesCon8 .center_box .right .imgBox .img {
    width: 100%;
    height: auto;
  }
  .ins_storiesCon8 .center_box .right .imgBox .imgStrota.active img {
    transform: rotate(0deg) !important;
  }
  .ins_storiesCon8 .center_box .right .ins_word {
    width: 52.7%;
  }
}
.ins_storiesCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_storiesCon9 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_storiesCon9 .center_box .left {
  width: 32.1%;
  height: auto;
}
.ins_storiesCon9 .center_box .left .img {
  width: 100%;
  height: auto;
}
.ins_storiesCon9 .center_box .left .img img {
  width: 100%;
  height: auto;
}
.ins_storiesCon9 .center_box .center {
  width: 39.68%;
  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: 1.2rem;
}
.ins_storiesCon9 .center_box .center .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_storiesCon9 .center_box .center .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.32rem;
}
.ins_storiesCon9 .center_box .center .item_box .item .icon {
  flex-shrink: 0;
}
.ins_storiesCon9 .center_box .center .item_box .item .icon img {
  width: 100%;
  height: auto;
}
.ins_storiesCon9 .center_box .center .item_box .item .word {
  font-size: var(--font18);
  color: #666666;
}
.ins_storiesCon9 .center_box .right {
  width: 18.4%;
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
@media (max-width:990px) {
  .ins_storiesCon9 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem 0.4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_storiesCon9 .center_box .left,
  .ins_storiesCon9 .center_box .right,
  .ins_storiesCon9 .center_box .center {
    width: 100%;
    height: auto;
  }
  .ins_storiesCon9 .center_box .left,
  .ins_storiesCon9 .center_box .right {
    order: 2;
  }
  .ins_storiesCon9 .center_box .left .img,
  .ins_storiesCon9 .center_box .right .img {
    width: 100%;
    height: 100%;
  }
  .ins_storiesCon9 .center_box .left .img img,
  .ins_storiesCon9 .center_box .right .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ins_storiesCon9 .center_box .center {
    order: 1;
    grid-column: span 2;
  }
  .ins_storiesCon9 .center_box .center .item_box {
    gap: 0.5rem;
  }
}
.ins_storiesCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
}
.ins_storiesCon10 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -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_storiesCon10 .center_box .ins_title2 {
  width: 32.22%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 1rem;
}
.ins_storiesCon10 .center_box .ins_title2 .t2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_storiesCon10 .center_box .img_box {
  width: 62%;
  height: auto;
}
.ins_storiesCon10 .center_box .img_box img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_storiesCon10 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
  }
  .ins_storiesCon10 .center_box .ins_title2,
  .ins_storiesCon10 .center_box .img_box {
    width: 100%;
    height: auto;
  }
}
.ins_productCon3Bg {
  background-image: url(../images/bg2a.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.layui-laypage .layui-laypage-curr em {
  color: var(--active_color) !important;
}
