@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 产品：小黄 QQ: 1452595308  */
/* 项目：小余：18816793621 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul.swiper-wrapper,
ol.swiper-slide,
li.swiper-slide {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
.ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: more 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #0080CB;
  --active_color2: #F9BE00;
  --color_fff: #ffffff;
  --color_text: #282828;
  --color_f6f: #f6f6f6;
  --color_f4f: #f4f4f4;
  --color_eee: #eeeeee;
  --color_ddd: #dddddd;
  --color_bbb: #bbbbbb;
  --color_999: #999999;
  --color_666: #666666;
  --color_444: #444444;
  --color_333: #333333;
  --color_222: #222222;
  --color_000: #000000;
  --color_bg: #F5F8FD;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font15 {
  font-size: var(--font15);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
.pb140 {
  padding-bottom: 1.4rem !important;
}
.pbt70 {
  padding-top: 0.7rem !important;
}
.patb140 {
  padding: 1.4rem 0 !important;
}
.pbb70 {
  padding-bottom: 0.7rem !important;
}
.pbt140 {
  padding-top: 1.4rem !important;
}
/* 圆角 */
.bra04 {
  border-radius: 0.04rem;
  overflow: hidden;
}
.bra06 {
  border-radius: 0.06rem;
  overflow: hidden;
}
.bra08 {
  border-radius: 0.08rem;
  overflow: hidden;
}
.bra10 {
  border-radius: 0.1rem;
  overflow: hidden;
}
.bra12 {
  border-radius: 0.12rem;
  overflow: hidden;
}
.bra14 {
  border-radius: 0.14rem;
  overflow: hidden;
}
.bra16 {
  border-radius: 0.16rem;
  overflow: hidden;
}
.bra18 {
  border-radius: 0.18rem;
  overflow: hidden;
}
.bra24 {
  border-radius: 0.24rem;
  overflow: hidden;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333) !important;
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
.CoFF {
  color: var(--color_fff) !important;
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "WixMadeforDisplay";
  src: url("../fonts/WixMadeforDisplay-Regular.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "WixMadeforDisplay";
  src: url("../fonts/WixMadeforDisplay-Medium.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "WixMadeforDisplay";
  src: url("../fonts/WixMadeforDisplay-SemiBold.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "WixMadeforDisplay";
  src: url("../fonts/WixMadeforDisplay-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "WixMadeforDisplay";
  src: url("../fonts/WixMadeforDisplay-ExtraBold.ttf");
  font-weight: 900;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1760,
.container,
.wrap {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1760,
  .container,
  .wrap {
    max-width: 91.66666667%;
  }
}
.w1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width:1920px) {
  .w1440 {
    max-width: 75%;
  }
}
@media (max-width:990px) {
  .w1440 {
    max-width: 100%;
    padding: 0 0.4rem;
  }
}
main {
  width: 100%;
  height: auto;
  --topHeight: 0.65rem;
  --header-height: clamp(65px, 0.81rem, 81px);
  font-size: var(--font16);
  color: #1A1A1A;
  font-family: "WixMadeforDisplay";
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: calc(var(--header-height) + var(--topHeight));
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.head_nbsp.active {
  height: var(--header-height);
}
@media (max-width:990px) {
  .head_nbsp {
    height: var(--header-height);
  }
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img {
  width: 100%;
  height: auto;
}
.banner_img img.wap {
  min-height: 400px;
  object-fit: cover;
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background-image: linear-gradient(180deg, #e3e3e375, #ffffff00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 0.12rem;
    height: 0.12rem;
    opacity: 1;
    background: #00000022;
    position: relative;
    z-index: 1;
    border-radius: 100px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
  .idxPageHide .swiper-pagination-bullet-active::after {
    width: 100%;
    transition: all 5s linear;
  }
}
/* --------------------------------------------------------------- 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.22rem;
}
.idxPageShow span {
  width: 0.12rem;
  height: 0.12rem;
  opacity: 1;
  background: #FFFFFF99;
  position: relative;
  z-index: 1;
  border-radius: 100px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idxPageShow span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  background: var(--active_color2);
}
.idxPageShow .swiper-pagination-bullet-active {
  width: 0.71rem;
}
.idxPageShow .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 5s linear;
}
/* --------------------------------------------------------------- 吸顶 */
.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;
}
.grid-2 {
  grid-row: span 2;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.grid_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid_6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid_7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid_8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid_1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .top_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: start !important;
    gap: 0.32rem;
  }
  .top_info .idx_title {
    width: 100% !important;
    height: auto;
    max-width: 100% !important;
  }
}
.imgScale img {
  transform: scale(1.5);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  z-index: 50;
}
ul li.swiper-slide-active .wowUpS {
  animation: fadeInRight 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.layui-input:focus,
.layui-textarea:focus {
  box-shadow: unset;
  border-color: var(--active_color) !important;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-weight: normal;
}
* {
  scrollbar-color: var(--active_color) #d4d6d700;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  line-height: 1.5;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #0000001A;
}
.newContent p {
  min-height: 0.3em;
  color: #666666;
  line-height: 1.2;
}
.newContent a {
  display: inline-block;
  color: var(--active_color);
  text-decoration: underline;
}
.newContent h2 {
  font-size: var(--font32);
  font-weight: 700;
  color: #0C0D0E;
}
.newContent h3 {
  font-size: var(--font24);
  font-weight: 700;
  color: #0C0D0E;
}
.newContent > img {
  width: unset !important;
  height: unset !important;
  border-radius: 0.24rem;
}
.newContent.bor0 {
  border-bottom: 0;
  padding-bottom: 0;
}
.newContent ul {
  width: 100%;
  height: auto;
  padding-left: 0.25rem;
}
.newContent ul li {
  list-style: unset;
  font-size: var(--font18);
  color: #666666;
}
.idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.idx_more .more {
  width: fit-content;
  padding: 0.24rem 0.48rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.idx_more .more.bg_more {
  background: #FFFFFF;
  color: var(--active_color);
}
.idx_more .more.bg_more.bgAc {
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_more .more.bg_more.bgAc:hover {
  background: var(--active_color2) !important;
}
.idx_more .more.br_more {
  color: var(--active_color2);
  text-decoration: underline;
}
@media (max-width:990px) {
  .idx_more .more.br_more {
    padding: 0.24rem 0;
  }
  .idx_more .more.br_more:hover {
    padding: 0.24rem 0.48rem;
  }
}
.idx_more .more.br_more:hover {
  background: none !important;
  color: var(--active_color2) !important;
  opacity: 0.8;
}
.idx_more .more.bor_Ac {
  border: 1px solid var(--active_color);
  color: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_more .more.bor_Ac img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more.bor_FF {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.idx_more .more:hover {
  background: var(--active_color) !important;
  color: #FFFFFF !important;
  border-color: var(--active_color) !important;
  text-decoration: underline;
}
.idx_more .more:hover img {
  filter: brightness(0) invert(1);
}
.idx_more .more1 {
  width: fit-content;
  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;
  color: var(--active_color2);
  margin-left: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_more .more1:hover {
  padding-left: 0.1rem;
}
@media (max-width:990px) {
  .idx_more {
    gap: 0.1rem !important;
  }
  .idx_more .more {
    padding: 0.15rem 0.2rem !important;
  }
}
.idx_more2 {
  width: 100%;
  height: auto;
}
.idx_more2 .more {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font18);
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  gap: 0.12rem;
}
.idx_more2 .more span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
  font-weight: 300;
}
.idx_more2 .more i {
  font-size: var(--font12);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more2 .more:hover {
  color: var(--active_color2) !important;
}
.idx_more2 .more:hover i {
  animation: more 0.5s linear;
}
.idx_more2 .more.coFF {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .idx_more2 .more i {
    transform: scale(0.5);
  }
}
.idx_more3 {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_more3 .more {
  width: fit-content;
  padding: 0.24rem 0.64rem;
  background: var(--active_color);
  color: #FFFFFF;
  border-radius: 100px;
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more3 .more:hover {
  background: var(--active_color2) !important;
  color: #FFFFFF !important;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 700;
}
.idx_title .t2 {
  margin-top: 0.4rem;
  color: #666666;
}
.idx_title .t3 {
  margin-top: 0.2rem;
  color: #666666;
}
@media (max-width:990px) {
  .idx_title {
    text-align: start !important;
  }
  .idx_title * {
    text-align: start !important;
  }
}
.swiper_switch {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.swiper_switch .swiper_icon {
  width: 0.52rem;
  height: 0.52rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #00000033;
  border-radius: 100px;
}
.swiper_switch .swiper_icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_switch .swiper_icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.swiper_switch .swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width:990px) {
  .swiper_switch {
    display: none;
  }
}
@media (max-width:990px) {
  .swiper_icon {
    display: none !important;
  }
}
.swiperProgressbar {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.swiperProgressbar .idxBtn {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.swiperProgressbar .idxPro {
  width: 100%;
  height: 2px;
  background: #0000001A;
  --width: 10%;
  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;
}
.swiperProgressbar .idxPro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--width);
  height: 3px;
  background: var(--active_color);
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
  z-index: 5;
}
.swiperProgressbar .idxPro .icon {
  position: absolute;
  width: 0.32rem;
  height: 0.32rem;
  z-index: 10;
  left: var(--width);
  transform: translateX(-50%);
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
  cursor: pointer;
}
@media (max-width:990px) {
  .swiperProgressbar .idxPro .icon {
    opacity: 0;
  }
}
.select_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.4rem;
}
.select_box .swiper_select {
  width: fit-content;
  padding: 0.09rem 0.12rem;
  background: #F5F8FD;
  border-radius: 0.16rem;
  max-width: 100%;
  overflow: hidden;
}
.select_box .swiper_select ul li {
  width: fit-content;
  height: auto;
}
.select_box .swiper_select ul li .centerInfo {
  width: fit-content;
  padding: 0.2rem 0.48rem;
  border-radius: 0.12rem;
  color: #666666;
  cursor: pointer;
  font-size: var(--font18);
}
.select_box .swiper_select ul li.active .centerInfo {
  background: var(--active_color);
  color: #FFF;
}
.select_box .swiper_select ul li:last-child {
  margin-right: 0 !important;
}
@media (max-width:990px) {
  .select_box {
    position: relative;
    z-index: 1;
  }
  .select_box::after {
    content: '\e689';
    position: absolute;
    font-family: "iconfont";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: -0.35rem;
    top: 0.35rem;
    font-size: 12px;
    transform: scale(0.8);
  }
  .select_box::before {
    content: '\e687';
    position: absolute;
    font-family: "iconfont";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    right: -0.35rem;
    top: 0.35rem;
    font-size: 12px;
    transform: scale(0.8);
  }
}
.select_box_auto {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.4rem;
}
.select_box_auto .swiper_select {
  width: fit-content;
  padding: 0.09rem 0.12rem;
  background: #F5F8FD;
  border-radius: 0.16rem;
  max-width: 100%;
  overflow: hidden;
}
.select_box_auto .swiper_select ul li {
  width: fit-content;
  height: auto;
}
.select_box_auto .swiper_select ul li .centerInfo {
  width: fit-content;
  padding: 0.2rem 0.48rem;
  border-radius: 0.12rem;
  color: #666666;
  cursor: pointer;
  font-size: var(--font18);
}
.select_box_auto .swiper_select ul li.active .centerInfo {
  background: var(--active_color);
  color: #FFF;
}
.select_box_auto .swiper_select ul li:last-child {
  margin-right: 0 !important;
}
@media (max-width:990px) {
  .select_box_auto {
    position: relative;
    z-index: 1;
  }
  .select_box_auto::after {
    content: '\e689';
    position: absolute;
    font-family: "iconfont";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: -0.35rem;
    top: 0.35rem;
    font-size: 12px;
    transform: scale(0.8);
  }
  .select_box_auto::before {
    content: '\e687';
    position: absolute;
    font-family: "iconfont";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    right: -0.35rem;
    top: 0.35rem;
    font-size: 12px;
    transform: scale(0.8);
  }
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.16rem;
}
.layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 0.18rem;
  padding: 0;
  padding-left: 0.3rem;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div {
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: underline;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 10px;
  min-height: 10px;
  position: absolute;
  z-index: 1;
  top: -0.15em;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: none;
  border: 1px solid #999999;
  left: 0;
  border-radius: 0.05rem;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
  content: "";
  width: 60%;
  height: 60%;
  background: var(--active_color);
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
  border-radius: 0.02rem;
}
.layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.layui_item .layui-form-checkbox > div {
  white-space: unset;
  text-overflow: unset;
}
.layui_item .layui-form-checkbox > div a {
  display: contents;
}
@media (max-width:1440px) {
  .layui_item .layui-form-checkbox[lay-skin=primary] > i {
    top: 0.1em;
  }
}
@media (max-width:990px) {
  .layui_item .layui-form-checkbox[lay-skin=primary] > i {
    top: 0.3em;
  }
}
.banner_nav {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0.24rem;
  left: 0;
  z-index: 5;
}
.ins_navbox {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.14rem;
  font-weight: 300;
}
.ins_navbox .icon {
  font-size: var(--font16);
  color: #FFFFFF;
  opacity: 0.6;
}
.ins_navbox .one {
  font-size: var(--font18);
  color: #FFFFFF;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_navbox .one.active {
  opacity: 1;
}
.ins_navbox .one:hover {
  opacity: 1;
}
@media (max-width:990px) {
  .ins_navbox {
    display: none;
  }
}
.share_icon {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.4rem;
}
.share_icon .one {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.share_icon .one .icon1 {
  width: 0.36rem;
  height: 0.36rem;
  min-width: 28px;
  min-height: 28px;
  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;
  border-radius: 100px;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.share_icon .one .img_bg {
  position: absolute;
  bottom: calc(100% + 20px);
  width: 1.2rem;
  height: 1.2rem;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.2rem;
}
.share_icon .one .img_bg img {
  width: 100%;
  height: auto;
}
.share_icon .one .img_bg::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 12px 0 12px;
  border-color: #91919160 transparent transparent transparent;
  position: absolute;
  top: 100%;
}
.share_icon .one:hover .icon1 {
  opacity: 1;
}
.share_icon .one:hover .img_bg {
  opacity: 1;
  visibility: visible;
}
.share_icon2 {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.16rem;
}
.share_icon2 .one {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.share_icon2 .one .icon {
  width: 0.36rem;
  height: 0.36rem;
  min-width: 28px;
  min-height: 28px;
  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;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #DCE0E5;
}
.share_icon2 .one .img_bg {
  position: absolute;
  bottom: calc(100% + 20px);
  width: 1.2rem;
  height: 1.2rem;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.2rem;
}
.share_icon2 .one .img_bg img {
  width: 100%;
  height: auto;
}
.share_icon2 .one .img_bg::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 12px 0 12px;
  border-color: #91919160 transparent transparent transparent;
  position: absolute;
  top: 100%;
}
.share_icon2 .one:hover .icon {
  opacity: 1;
  background: var(--active_color);
}
.share_icon2 .one:hover .img_bg {
  opacity: 1;
  visibility: visible;
}
.table_info2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  --borColor: #00000033;
  border-radius: 0.16rem;
  overflow: hidden;
  border: 1px solid var(--borColor);
}
.table_info2 .info {
  width: 100%;
  height: auto;
  overflow-x: auto;
}
.table_info2 .info table {
  width: 100%;
  height: auto;
  background: #F5F8FD;
  table-layout: fixed;
  min-width: 1000px;
}
.table_info2 .info table tr {
  width: 100%;
  height: auto;
}
.table_info2 .info table tr td {
  text-align: center;
  padding: 0.24rem;
  border-bottom: 1px solid var(--borColor);
  border-right: 1px solid var(--borColor);
  color: #666666;
  font-size: var(--font16);
}
.table_info2 .info table tr td:last-child {
  border-right: 0;
}
.table_info2 .info table thead {
  width: 100%;
  height: auto;
  background: #E6ECF0;
}
.table_info2 .info table thead tr td {
  padding: 0.4rem 0.2rem;
  color: #1A1A1A;
  font-size: var(--font18);
  font-weight: 700;
}
.table_info2 .info table tbody {
  width: 100%;
  height: auto;
  color: #666666;
}
.table_info2 .info table tbody tr:last-child {
  border-bottom: 0;
}
.table_info2 .info table tbody tr:last-child td {
  border-bottom: 0;
}
/* ----------------------------------------------------------------------------------    首页 */
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}
.idx_homeCon1 .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding-top: 2.34rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word_box {
  width: 100%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word_box .t1 {
  font-weight: 700;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word_box .t2 {
  margin-top: 0.24rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .banner_img {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .banner_img img {
  transform: scale(1.05);
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.idx_homeCon1 .swiper_box ul li.swiper-slide-active .centerInfo .banner_img img {
  transform: scale(1);
}
.idx_homeCon1 .pageHome1 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 1rem;
  left: 0;
  z-index: 10;
}
.idx_homeCon1 .pageHome1 .idxPageShow {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media (max-width:990px) {
  .idx_homeCon1 .swiper_box ul li .centerInfo .content {
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .word_box .t1 {
    font-size: var(--font48);
  }
  .idx_homeCon1 .banner_img img.wap {
    min-height: 600px;
  }
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.idx_homeCon2 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .top_info {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_homeCon2 .center_box .top_info .idx_title {
  width: 65%;
}
.idx_homeCon2 .center_box .top_info .swiper_switch {
  flex-shrink: 0;
  padding-bottom: 0.15rem;
}
.idx_homeCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}
.idx_homeCon2 .center_box .swiper_box ul li {
  width: 0%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F5F8FD;
  border-radius: 0.16rem;
  padding: 0.4rem;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 0%;
  height: 100%;
  background-image: url(../images/bg1.jpg);
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: 0.24rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .word_box .t3 {
  margin-top: 0.16rem;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .imgs {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .imgs .pb {
  padding-bottom: 97%;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo .imgs .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo:hover::after {
  opacity: 1;
  width: 100%;
  left: 0;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo:hover .word_box .t1 {
  color: var(--active_color2);
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo:hover .word_box .t2 {
  color: #FFFFFF;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo:hover .word_box .t3 {
  color: #FFFFFF;
}
.idx_homeCon2 .center_box .swiper_box ul li .centerInfo:hover .imgs .pb .ab img {
  transform: scale(1.05);
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.9rem;
}
.idx_homeCon3 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .top_info {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_homeCon3 .center_box .top_info .idx_title {
  width: 56%;
}
.idx_homeCon3 .center_box .top_info .idx_more {
  width: fit-content;
  flex-shrink: 0;
  padding-bottom: 0.15rem;
}
.idx_homeCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.idx_homeCon3 .center_box .content .left_box {
  width: 32.5%;
}
.idx_homeCon3 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #0000001a;
}
.idx_homeCon3 .center_box .content .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  font-size: var(--font32);
  font-weight: 700;
  padding: 0.38rem 0;
  cursor: pointer;
}
.idx_homeCon3 .center_box .content .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  display: none;
  padding-bottom: 0.4rem;
  color: #666666;
}
.idx_homeCon3 .center_box .content .left_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon3 .center_box .content .left_box .item_box .item:first-child .top {
  padding-top: 0.2rem;
}
.idx_homeCon3 .center_box .content .right_box {
  width: 58.8%;
}
.idx_homeCon3 .center_box .content .right_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_homeCon3 .center_box .content .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .content .right_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 66%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon3 .center_box .content .right_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon3 .center_box .swiper_logo {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_homeCon3 .center_box .swiper_logo::after {
  content: '';
  position: absolute;
  width: 1.31rem;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 1;
}
.idx_homeCon3 .center_box .swiper_logo::before {
  content: '';
  position: absolute;
  width: 1.31rem;
  height: 100%;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
  z-index: 2;
}
.idx_homeCon3 .center_box .swiper_logo ul {
  transition-timing-function: linear !important;
}
.idx_homeCon3 .center_box .swiper_logo ul li {
  width: 0%;
  height: auto;
}
.idx_homeCon3 .center_box .swiper_logo ul li .centerInfo {
  width: 100%;
  height: auto;
}
.idx_homeCon3 .center_box .swiper_logo ul li .centerInfo .pb {
  padding-bottom: 38%;
  background: #F5F8FD;
  border-radius: 0.08rem;
  overflow: hidden;
}
@media (max-width:990px) {
  .idx_homeCon3 .center_box .content .right_box {
    display: none;
  }
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.9rem;
  padding-bottom: 0.7rem;
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .center_box .item_box {
  width: fit-content;
  height: auto;
  margin: 0 auto;
  margin-top: 0.4rem;
  padding: 0.09rem 0.12rem;
  background: #F5F8FD;
  border-radius: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.idx_homeCon4 .center_box .item_box .item {
  width: fit-content;
  padding: 0.2rem 0.47rem;
  border-radius: 0.12rem;
  overflow: hidden;
  cursor: pointer;
  font-size: var(--font18);
}
.idx_homeCon4 .center_box .item_box .item.active {
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_homeCon4 .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  background: #000;
}
.idx_homeCon4 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .swiper_box ul li .swiper_info {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word {
  width: 100%;
  height: 100%;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .centerInfo {
  width: 100%;
  height: 100%;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .centerInfo .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 0.94rem;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .centerInfo .content .center_box {
  width: 57%;
  height: auto;
  color: #FFFFFF;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .centerInfo .content .center_box .t1 {
  font-weight: 700;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .centerInfo .content .center_box .t2 {
  margin-top: 0.24rem;
  font-weight: 300;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .centerInfo .content .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .centerInfo .img {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .centerInfo .img img {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .swiper-slide-active .wowUpS {
  animation: fadeInRight 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .content_info {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.48rem;
  z-index: 5;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .content_info .swiper_item {
  width: 100%;
  height: auto;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .content_info .swiper_item .centerInfo {
  width: 100%;
  height: auto;
  color: #FFFFFF66;
  padding-bottom: 0.32rem;
  position: relative;
  z-index: 1;
  font-size: var(--font24);
  text-align: center;
  pointer-events: initial;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .content_info .swiper_item .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #FFFFFF66;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 1px;
  left: 0;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .content_info .swiper_item .centerInfo::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 3px;
  background: #FFFFFF;
  bottom: 0;
  left: 0;
  border-radius: 100px;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .content_info .swiper_item .active .centerInfo {
  color: #FFFFFF;
}
.idx_homeCon4 .swiper_box ul li .swiper_info .content_info .swiper_item .active .centerInfo::before {
  width: 100%;
  transition: all  5s linear;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.1rem;
    text-align: center;
  }
  .idx_homeCon4 .center_box .item_box .item {
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .swiper_box ul li .swiper_info .swiper_word .centerInfo .content .center_box {
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .swiper_box ul li .swiper_info .content_info .swiper_item {
    width: 100%;
    height: auto;
  }
  .idx_homeCon4 .swiper_box ul li .swiper_info .content_info .swiper_item .swiper-slide {
    width: fit-content;
  }
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.idx_homeCon5 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .top_info {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_homeCon5 .center_box .top_info .idx_title {
  width: 70%;
}
.idx_homeCon5 .center_box .top_info .swiper_switch {
  flex-shrink: 0;
  padding-bottom: 0.15rem;
}
.idx_homeCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  overflow: hidden;
}
.idx_homeCon5 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #F5F8FD;
  border-radius: 0.16rem;
  overflow: hidden;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 58.55%;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .left_box .img_box {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  position: relative;
  z-index: 1;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .left_box .img_box .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  padding: 0.52rem;
  color: #FFFFFF;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .left_box .img_box .word_box .t1 {
  font-weight: 700;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .left_box .img_box .word_box .t2 {
  margin-top: 0.24rem;
  font-weight: 300;
}
@media (max-width:990px) {
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .left_box .img_box .word_box {
    padding: 0.2rem;
  }
  .idx_homeCon5 .center_box .swiper_box ul li .centerInfo .left_box .img_box .word_box .t2 {
    max-height: 50px;
    overflow: auto;
  }
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 41.45%;
  padding: 0.52rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.64rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box .img_bg img {
  width: 100%;
  height: 100%;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box .word_box {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box .word_box .t1 {
  width: 100%;
  height: auto;
  color: #666666;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box .word_box .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.51rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box .name_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box .name_box .icon {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box .name_box .word {
  width: 100%;
  height: auto;
}
.idx_homeCon5 .center_box .swiper_box ul li .centerInfo .right_box .name_box .word .t2 {
  margin-top: 0.08rem;
  color: #999999;
}
.idx_homeCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 3.27rem;
  padding-bottom: 0.97rem;
}
.idx_homeCon6 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 1.6rem;
  gap: 0.32rem;
}
.idx_homeCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.4rem;
  border-radius: 0.16rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
  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;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon6 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .item_box .item .word_box .icon {
  width: 100%;
  height: auto;
}
.idx_homeCon6 .center_box .item_box .item .word_box .icon .img {
  width: 0.69rem;
}
.idx_homeCon6 .center_box .item_box .item .word_box .icon .t1 {
  margin-top: 0.54rem;
  font-weight: 700;
}
.idx_homeCon6 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.idx_homeCon6 .center_box .item_box .item .word_box .word .t2 {
  font-weight: 300;
}
.idx_homeCon6 .center_box .item_box .item .idx_more2 {
  margin-top: 0.54rem;
}
.idx_homeCon6 .center_box .item_box .item:hover {
  transform: translateY(-10px);
}
@media (max-width:990px) {
  .idx_homeCon6 .center_box .item_box .item .word_box .icon {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0.1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .idx_homeCon6 .center_box .item_box .item .word_box .icon .img {
    flex-shrink: 0;
  }
  .idx_homeCon6 .center_box .item_box .item .word_box .icon .t1 {
    margin-top: 0;
  }
}
@media (max-width:990px) {
  .idx_homeCon6 {
    background-attachment: unset;
  }
}
.idx_homeCon6 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.idx_homeCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.9rem;
}
.idx_homeCon7 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon7 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.idx_homeCon7 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F5F8FD;
  border-radius: 0.08rem;
}
.idx_homeCon7 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.08rem;
  overflow: hidden;
}
.idx_homeCon7 .center_box .item_box .item .img .pb {
  padding-bottom: 57%;
}
.idx_homeCon7 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.4rem;
}
.idx_homeCon7 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  font-weight: 700;
}
.idx_homeCon7 .center_box .item_box .item .word_box .word .t1 {
  font-weight: 700;
}
.idx_homeCon7 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.idx_homeCon7 .center_box .item_box .item .word_box .list .one {
  color: var(--active_color);
  text-decoration: underline;
  font-size: var(--font24);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon7 .center_box .item_box .item .word_box .list .one:hover {
  color: var(--active_color2);
}
.idx_homeCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.9rem;
  padding-bottom: 1.4rem;
}
.idx_homeCon8 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon8 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.idx_homeCon8 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #F5F8FD;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_homeCon8 .center_box .item_box .item .content1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon8 .center_box .item_box .item .content1 .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon8 .center_box .item_box .item .content1 .img img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon8 .center_box .item_box .item .content1 .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  z-index: 10;
  padding: 0.52rem;
}
.idx_homeCon8 .center_box .item_box .item .content1 .word_box .t1 {
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.idx_homeCon8 .center_box .item_box .item .content1 .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem 0.1rem;
  margin-top: 0.17rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.idx_homeCon8 .center_box .item_box .item .content1 .word_box .list .one {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.13rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font18);
}
.idx_homeCon8 .center_box .item_box .item .content1 .word_box .list .one img {
  width: 0.2rem;
  min-width: 13px;
}
.idx_homeCon8 .center_box .item_box .item .content1 .word_box .line {
  width: 1px;
  height: 0.12rem;
  background: #FFFFFF33;
}
.idx_homeCon8 .center_box .item_box .item .content1 .word_box .idx_more2 {
  margin-top: 0.4rem;
}
.idx_homeCon8 .center_box .item_box .item .content1:hover .img img {
  transform: scale(1.05);
}
@media (max-width:990px) {
  .idx_homeCon8 .center_box .item_box .item .content1 .img {
    width: 100%;
    height: auto;
  }
  .idx_homeCon8 .center_box .item_box .item .content1 .word_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    color: #000;
  }
  .idx_homeCon8 .center_box .item_box .item .content1 .word_box .list .one img {
    filter: brightness(0) invert(0);
  }
  .idx_homeCon8 .center_box .item_box .item .content1 .idx_more2 .more {
    color: var(--active_color) !important;
  }
}
.idx_homeCon8 .center_box .item_box .item .content2 {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.6rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon8 .center_box .item_box .item .content2 .word {
  width: 100%;
  height: auto;
}
.idx_homeCon8 .center_box .item_box .item .content2 .word .t1 {
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx_homeCon8 .center_box .item_box .item .content2 .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.17rem;
}
.idx_homeCon8 .center_box .item_box .item .content2 .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  font-size: var(--font18);
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon8 .center_box .item_box .item .content2 .list .one img {
  filter: brightness(0) invert(0.5);
  width: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 13px;
}
.idx_homeCon8 .center_box .item_box .item .content2:hover {
  background: var(--active_color);
}
.idx_homeCon8 .center_box .item_box .item .content2:hover .bgImg_full img {
  filter: brightness(0) invert(0);
}
.idx_homeCon8 .center_box .item_box .item .content2:hover .word .t1 {
  color: #FFFFFF;
}
.idx_homeCon8 .center_box .item_box .item .content2:hover .word .list .one {
  color: #FFFFFF;
}
.idx_homeCon8 .center_box .item_box .item .content2:hover .word .list .one img {
  filter: brightness(0) invert(1);
}
.idx_homeCon8 .center_box .item_box .item .content2:hover .idx_more2 .more {
  color: #FFFFFF;
}
.idx_homeCon8 .center_box .item_box .item .content3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 0.4rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon8 .center_box .item_box .item .content3 .word {
  width: 100%;
  height: auto;
}
.idx_homeCon8 .center_box .item_box .item .content3 .word .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.17rem;
}
.idx_homeCon8 .center_box .item_box .item .content3 .word .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  font-size: var(--font18);
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon8 .center_box .item_box .item .content3 .word .list .one img {
  filter: brightness(0) invert(0.5);
  width: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 13px;
}
.idx_homeCon8 .center_box .item_box .item .content3 .word .t1 {
  margin-top: 0.22rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.idx_homeCon8 .center_box .item_box .item .content3 .idx_more2 {
  margin-top: 0.66rem;
}
.idx_homeCon8 .center_box .item_box .item .content3 .bgImg_full {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon8 .center_box .item_box .item .content3:hover {
  background: var(--active_color);
}
.idx_homeCon8 .center_box .item_box .item .content3:hover .bgImg_full {
  opacity: 1;
}
.idx_homeCon8 .center_box .item_box .item .content3:hover .word .t1 {
  color: #FFFFFF;
}
.idx_homeCon8 .center_box .item_box .item .content3:hover .word .list .one {
  color: #FFFFFF;
}
.idx_homeCon8 .center_box .item_box .item .content3:hover .word .list .one img {
  filter: brightness(0) invert(1);
}
.idx_homeCon8 .center_box .item_box .item .content3:hover .idx_more2 .more {
  color: #FFFFFF;
}
.idx_homeCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.96rem;
  padding-bottom: 0.76rem;
}
.idx_homeCon9 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon9 .center_box .content {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #FFFFFF4D;
  padding-bottom: 0.46rem;
}
.idx_homeCon9 .center_box .content .left_box {
  width: 57%;
  padding-top: 0.44rem;
}
.idx_homeCon9 .center_box .content .left_box .idx_title .t2 {
  margin-top: 0.32rem;
  width: 73%;
  font-weight: 300;
}
.idx_homeCon9 .center_box .content .left_box .idx_more {
  margin-top: 0.72rem;
}
.idx_homeCon9 .center_box .content .right_box {
  width: 40%;
}
.idx_homeCon9 .center_box .content .right_box .imgs {
  width: 100%;
  height: auto;
}
.idx_homeCon9 .center_box .content .right_box .imgs img {
  width: 100%;
  height: auto;
}
.idx_homeCon9 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 1.54rem;
}
.idx_homeCon9 .center_box .item_box .item {
  width: auto;
  height: auto;
}
.idx_homeCon9 .center_box .item_box .item .icon {
  font-size: var(--font52);
  color: #FFFFFF;
  font-weight: 700;
}
.idx_homeCon9 .center_box .item_box .item .icon i {
  font-size: var(--font24);
  color: var(--active_color2);
  font-style: unset;
  vertical-align: 70%;
  padding-left: 0.1rem;
}
.idx_homeCon9 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.04rem;
  font-size: var(--font18);
  color: #FFFFFF;
  font-weight: 300;
}
.idx_homeCon9 .center_box .item_box .item.wBig {
  width: 25%;
}
@media (max-width:990px) {
  .idx_homeCon9 .center_box .content .left_box .idx_title .t2 {
    width: 100%;
    height: auto;
  }
  .idx_homeCon9 .center_box .item_box {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .idx_homeCon9 .center_box .item_box .item {
    width: 100% !important;
    height: auto;
    padding: 0.2rem;
    border: 1px solid #FFFFFF33;
  }
  .idx_homeCon9 .center_box .item_box .item:last-child {
    grid-column: span 2;
  }
}
.idx_homeCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.22rem 0;
  background-image: url(../images/bg6.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.idx_homeCon10 .center_box {
  width: 100%;
  height: auto;
}
.idx_homeCon10 .center_box .idx_title {
  --width: 60%;
  width: var(--width);
  margin: 0 auto;
}
.idx_homeCon10 .center_box .idx_title .t2 {
  margin-top: 0.32rem;
}
.idx_homeCon10 .center_box .idx_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.72rem;
  gap: 0.32rem;
}
@media (max-width:990px) {
  .idx_homeCon10 .center_box .idx_title {
    width: 100%;
    height: auto;
  }
  .idx_homeCon10 .center_box .idx_more {
    width: 100%;
    height: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width:990px) {
  .idx_homeCon10 {
    background-attachment: unset;
    padding: 1.5rem 0;
  }
}
.ins_bannerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_bannerCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 3;
}
.ins_bannerCon1 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .icon {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  border-radius: 100px;
  background: rgba(249, 190, 0, 0.6);
  backdrop-filter: blur(5px);
}
.ins_bannerCon1 .content .center_box .t1 {
  font-weight: 700;
  line-height: 1;
}
.ins_bannerCon1 .content .center_box .t2 {
  margin-top: 0.24rem;
}
.ins_bannerCon1 .content .center_box .t2 a {
  display: contents;
  color: var(--active_color);
}
.ins_bannerCon1 .content .center_box .idx_more {
  margin-top: 0.52rem;
  gap: 0.32rem;
}
.ins_bannerCon1 .content .center_box .word2 {
  width: 100%;
  height: auto;
}
.ins_bannerCon1 .content .center_box .word2 .time {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_bannerCon1 .banner_img.gradient {
  position: relative;
  z-index: 1;
}
.ins_bannerCon1 .banner_img.gradient img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_bannerCon1 .banner_img.gradient::after {
  content: '';
  position: absolute;
  width: 78.64583333%;
  height: 100%;
  opacity: 0.6;
  background: linear-gradient(90deg, #0080CB 0%, rgba(0, 128, 203, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  top: 0;
  left: 0;
}
.ins_bannerCon1 .content1 {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 6;
  background: rgba(16, 136, 207, 0.4);
  backdrop-filter: blur(25px);
}
.ins_bannerCon1 .content1 .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.72rem;
}
.ins_bannerCon1 .content1 .item_box .item {
  font-size: var(--font18);
  color: #FFFFFF;
  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;
  padding: 0.23rem 0;
}
.ins_bannerCon1 .content1 .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_bannerCon1 .content1 .item_box .item.active {
  font-weight: 700;
}
.ins_bannerCon1 .content1 .item_box .item.active::after {
  width: 100%;
}
@media (max-width:990px) {
  .ins_bannerCon1 .content1 {
    position: relative;
    z-index: 6;
  }
  .ins_bannerCon1 .content1 .item_box {
    width: 100%;
    height: auto;
    overflow: auto;
  }
  .ins_bannerCon1 .content1 .item_box .item {
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.ins_bannerCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_bannerCon2 .swiper_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.69rem;
  padding-bottom: 0.87rem;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .left_box {
  width: 38%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.8rem;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .left_box .word_box {
  width: 100%;
  height: auto;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .left_box .word_box .icon {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  border-radius: 100px;
  background: var(--active_color2);
  color: #FFF;
  font-size: var(--font14);
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .left_box .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .left_box .word_box .word .t1 {
  font-weight: 700;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .left_box .word_box .word .t2 {
  margin-top: 0.24rem;
  color: #999999;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .right_box {
  width: 49%;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .right_box .img .pb {
  padding-bottom: 62.5%;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .content .center_box .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .imgbg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.ins_bannerCon2 .swiper_box ul li .centerInfo .imgbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_bannerCon2 .idxPageHide {
  position: absolute;
  bottom: 0.2rem;
  z-index: 5;
}
.ins_bannerCon2 .swiper_icon {
  width: 0.52rem;
  height: 0.52rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #00000033;
  border-radius: 100px;
  position: absolute;
  z-index: 5;
}
.ins_bannerCon2 .swiper_icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_bannerCon2 .swiper_icon.next {
  right: 1.56rem;
}
.ins_bannerCon2 .swiper_icon.prev {
  left: 1.56rem;
}
.ins_bannerCon2 .swiper_icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_bannerCon2 .swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_productCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_productCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: var(--color_bg);
  padding: 0.4rem;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg8.png) no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_productCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box .item .word .t1 {
  font-weight: 700;
  color: #1A1A1A;
  height: calc(2em * 1.2);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item .word .t2 {
  width: 100%;
  height: calc(3em * 1.2);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.16rem;
  color: #666666;
  -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 .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem 0.12rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_productCon1 .center_box .item_box .item .word .list .one {
  background: #0000001A;
  padding: 0.08rem 0.16rem;
  border-radius: 100px;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
}
.ins_productCon1 .center_box .item_box .item:hover {
  background: var(--active_color);
}
.ins_productCon1 .center_box .item_box .item:hover::after {
  opacity: 1;
}
.ins_productCon1 .center_box .item_box .item:hover .word .t1 {
  color: #FFF;
}
.ins_productCon1 .center_box .item_box .item:hover .word .t2 {
  color: #FFF;
}
.ins_productCon1 .center_box .item_box .item:hover .list .one {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
@media (max-width:990px) {
  .ins_productCon1 .center_box .item_box .item .img .pb {
    padding-bottom: 70%;
  }
  .ins_productCon1 .center_box .item_box .item .word .t1,
  .ins_productCon1 .center_box .item_box .item .word .t2 {
    height: auto;
  }
  .ins_productCon1 .center_box .item_box .item .word .list .one {
    font-size: 10px;
    text-align: center;
  }
}
.ins_productCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon2 .center_box .content .cont {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.52rem;
}
.ins_productCon2 .center_box .content .cont .left_box {
  width: 43%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.32rem;
}
.ins_productCon2 .center_box .content .cont .left_box .word_box {
  width: 100%;
  height: auto;
}
.ins_productCon2 .center_box .content .cont .left_box .word_box .t1 {
  font-weight: 700;
}
.ins_productCon2 .center_box .content .cont .left_box .word_box .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_productCon2 .center_box .content .cont .left_box .word_box .idx_more2 {
  margin-top: 0.52rem;
}
.ins_productCon2 .center_box .content .cont .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem 0.12rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_productCon2 .center_box .content .cont .left_box .list .one {
  background: #0000001A;
  padding: 0.08rem 0.16rem;
  border-radius: 100px;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon2 .center_box .content .banner_img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
@media (max-width:990px) {
  .ins_productCon2 .center_box .content .cont {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0;
  }
}
.ins_productCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon3 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_productCon3 .center_box .content .swiper_box .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;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon3 .center_box .content .swiper_box .centerInfo .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 0.4rem;
  color: #FFF;
  font-weight: 300;
}
.ins_productCon3 .center_box .content .swiper_box .centerInfo .icon {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 100px;
  background: #FFFFFF1A;
  backdrop-filter: blur(5px);
  position: absolute;
  z-index: 3;
  cursor: pointer;
  transform: translateY(-0.4rem);
}
.ins_productCon3 .center_box .content .swiper_box .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon3 .center_box .content .swiper_box .centerInfo .img .pb {
  padding-bottom: 116.5%;
}
.ins_productCon3 .center_box .content .swiper_box .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon3 .center_box .content .swiper_box .centerInfo:hover .img .pb .ab img {
  transform: scale(1.1);
}
.ins_productCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
}
.ins_productCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .left_box {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
}
.ins_productCon4 .center_box .left_box .top {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .left_box .top .idx_title .t1 {
  line-height: 1;
}
.ins_productCon4 .center_box .left_box .top .list {
  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_productCon4 .center_box .left_box .top .list .one {
  width: 100%;
  height: auto;
  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_productCon4 .center_box .left_box .top .list .one img {
  width: 0.28rem;
  flex-shrink: 0;
}
.ins_productCon4 .center_box .left_box .top .list .one span {
  color: #666666;
}
.ins_productCon4 .center_box .right_box {
  width: 48%;
}
.ins_productCon4 .center_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_productCon4 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_makeappCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_makeappCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
  margin-top: 0.63rem;
}
.ins_makeappCon1 .center_box .item_box .item {
  background: #F5F8FD;
  padding: 0.4rem;
}
.ins_makeappCon1 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_makeappCon1 .center_box .item_box .item .top .icon {
  width: 0.63rem;
  height: 0.63rem;
}
.ins_makeappCon1 .center_box .item_box .item .top .word {
  font-size: var(--font18);
  color: #CCCCCC;
}
.ins_makeappCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.49rem;
}
.ins_makeappCon1 .center_box .item_box .item .word_box .t1 {
  font-weight: 700;
  min-height: calc(2em * 1.2);
  line-height: 1.2;
}
.ins_makeappCon1 .center_box .item_box .item .word_box .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_makeappCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: #F5F8FD;
}
.ins_makeappCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_makeappCon2 .center_box .content .left_box {
  width: 32.5%;
}
.ins_makeappCon2 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.ins_makeappCon2 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.ins_makeappCon2 .center_box .content .left_box .item_box .item .top {
  font-weight: 700;
  cursor: pointer;
}
.ins_makeappCon2 .center_box .content .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.24rem;
  display: none;
}
.ins_makeappCon2 .center_box .content .left_box .item_box .item .bot .t1 {
  color: #666666;
}
.ins_makeappCon2 .center_box .content .left_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_makeappCon2 .center_box .content .right_box {
  width: 59.4%;
}
.ins_makeappCon2 .center_box .content .right_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 0.24rem;
}
.ins_makeappCon2 .center_box .content .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_makeappCon2 .center_box .content .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_makeappCon2 .center_box .content .right_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_makeappCon2 .center_box .content .right_box .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_makeappCon2 .center_box .content .right_box {
    display: none;
  }
}
.ins_makeappCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
  background: #ffffff;
}
.ins_makeappCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_makeappCon3 .center_box .content .left_box {
  width: 59.4%;
}
.ins_makeappCon3 .center_box .content .left_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 0.24rem;
}
.ins_makeappCon3 .center_box .content .left_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_makeappCon3 .center_box .content .left_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_makeappCon3 .center_box .content .left_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_makeappCon3 .center_box .content .left_box .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
.ins_makeappCon3 .center_box .content .right_box {
  width: 32.5%;
}
.ins_makeappCon3 .center_box .content .right_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.ins_makeappCon3 .center_box .content .right_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.ins_makeappCon3 .center_box .content .right_box .item_box .item .top {
  font-weight: 700;
  cursor: pointer;
}
.ins_makeappCon3 .center_box .content .right_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.24rem;
  display: none;
}
.ins_makeappCon3 .center_box .content .right_box .item_box .item .bot .t1 {
  color: #666666;
}
.ins_makeappCon3 .center_box .content .right_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  border-radius: 0.24rem;
  overflow: hidden;
}
@media (max-width:990px) {
  .ins_makeappCon3 .center_box .content .left_box {
    display: none;
  }
}
.ins_makeappCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_makeappCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_makeappCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_makeappCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_makeappCon4 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_makeappCon4 .center_box .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
.ins_makeappCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_makeappCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  overflow: hidden;
}
.ins_makeappCon5 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_makeappCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
  background: var(--color_bg);
}
.ins_makeappCon5 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_makeappCon5 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 61%;
}
.ins_makeappCon5 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_makeappCon5 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_makeappCon5 .center_box .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 700;
}
.ins_makeappCon5 .center_box .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_makeappCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_makeappCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.86rem;
  gap: 0.32rem;
}
.ins_makeappCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: var(--color_bg);
  padding: 0.32rem;
}
.ins_makeappCon6 .center_box .item_box .item .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.ins_makeappCon6 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_makeappCon6 .center_box .item_box .item .word .t1 {
  font-weight: 700;
  width: 100%;
  min-height: calc(2em * 1.2);
  line-height: 1.2;
}
.ins_makeappCon6 .center_box .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  color: #666666;
}
.ins_makeappCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_makeappCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon7 .center_box .content_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_makeappCon7 .center_box .content_box .content {
  width: 100%;
  height: auto;
  display: none;
}
.ins_makeappCon7 .center_box .content_box .content.active {
  display: block;
}
.ins_makeappCon7 .center_box .content_box .content .contBox {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .left_box {
  width: 66.2%;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .left_box .img {
  width: 100%;
  height: auto;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .right_box {
  width: 33.8%;
  padding: 0.52rem;
  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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .right_box .word_box {
  font-weight: 700;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .right_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.32rem;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .right_box .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .right_box .item_box .item .icon {
  font-size: var(--font40);
  font-weight: 700;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .right_box .item_box .item .icon i {
  color: var(--active_color2);
  font-size: var(--font24);
  vertical-align: 46%;
  font-style: unset;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .right_box .item_box .item .word {
  color: #666666;
  margin-top: 0.04rem;
}
.ins_makeappCon7 .center_box .content_box .content .contBox .right_box .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_makeappCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_makeappCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon8 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_makeappCon8 .center_box .content .left_box {
  width: 64.5%;
}
.ins_makeappCon8 .center_box .content .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_makeappCon8 .center_box .content .right_box {
  width: 33.2%;
  border-radius: 0.24rem;
  overflow: hidden;
  background: var(--color_bg);
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.ins_makeappCon8 .center_box .content .right_box .cont_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.ins_makeappCon8 .center_box .content .right_box .cont_box .cont {
  width: 100%;
  height: auto;
}
.ins_makeappCon8 .center_box .content .right_box .cont_box .cont .word {
  font-weight: 700;
}
.ins_makeappCon8 .center_box .content .right_box .cont_box .cont .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.24rem;
  gap: 0.12rem;
}
.ins_makeappCon8 .center_box .content .right_box .cont_box .cont .list .one {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.ins_makeappCon8 .center_box .content .right_box .word_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon8 .center_box .content .right_box .word_box .word {
  font-weight: 700;
  padding-right: 0.3rem;
}
.ins_makeappCon8 .center_box .content .right_box .word_box .idx_more2 {
  margin-top: 0.32rem;
}
.ins_makeappCon8 .center_box .content .right_box .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.ins_makeappCon8 .center_box .content .right_box .img_bg img {
  width: 100%;
  height: auto;
}
.ins_makeappCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_makeappCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon9 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_makeappCon9 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.24rem;
  padding: 0 0.4rem;
}
.ins_makeappCon9 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.32rem;
  padding: 0.4rem 0;
  cursor: pointer;
}
.ins_makeappCon9 .center_box .item_box .item .top span {
  font-size: var(--font24);
  font-weight: 700;
}
.ins_makeappCon9 .center_box .item_box .item .top i {
  width: 0.32rem;
  height: 0.32rem;
  min-width: 25px;
  min-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid var(--active_color);
  border-radius: 100px;
  position: relative;
  z-index: 1;
  --bgColor: #FFF;
  background: var(--active_color);
}
.ins_makeappCon9 .center_box .item_box .item .top i::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--bgColor);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_makeappCon9 .center_box .item_box .item .top i::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--bgColor);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  transform: rotate(90deg);
}
.ins_makeappCon9 .center_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.23rem;
  padding-bottom: 0.4rem;
  border-top: 1px solid #0000001A;
  color: #666666;
  display: none;
}
.ins_makeappCon9 .center_box .item_box .item.active .top i {
  background: none;
  --bgColor: var(--active_color);
}
.ins_makeappCon9 .center_box .item_box .item.active .top i::before {
  transform: rotate(0);
}
.ins_makeappCon9.bgColor {
  background: var(--color_bg);
}
.ins_makeappCon9.bgColor .center_box .item_box .item {
  background: #FFFFFF;
}
.ins_makeappCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.9rem;
}
.ins_makeappCon10 .center_box {
  width: 100%;
  height: auto;
}
.ins_makeappCon10 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_makeappCon10 .center_box .content .left_box {
  width: 32.5%;
}
.ins_makeappCon10 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
  border-top: 1px solid #0000001A;
}
.ins_makeappCon10 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #0000001a;
}
.ins_makeappCon10 .center_box .content .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  font-size: var(--font32);
  font-weight: 700;
  padding: 0.4rem 0;
  cursor: pointer;
  line-height: 1.05;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_makeappCon10 .center_box .content .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  display: none;
  padding-bottom: 0.4rem;
  color: #666666;
}
.ins_makeappCon10 .center_box .content .left_box .item_box .item .bot .idx_more2 {
  margin-top: 0.4rem;
}
.ins_makeappCon10 .center_box .content .left_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_makeappCon10 .center_box .content .left_box .item_box .item.active .top {
  padding-bottom: 0.24rem;
}
.ins_makeappCon10 .center_box .content .right_box {
  width: 58.8%;
}
.ins_makeappCon10 .center_box .content .right_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_makeappCon10 .center_box .content .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_makeappCon10 .center_box .content .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_makeappCon10 .center_box .content .right_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 92.2%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_makeappCon10 .center_box .content .right_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_makeappCon10 .center_box .content .right_box {
    display: none;
  }
}
.ins_accessoriesCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.32rem 0;
  background: var(--color_bg);
}
.ins_accessoriesCon1 .center_box {
  width: 100%;
  height: auto;
  gap: 0.8rem;
}
.ins_accessoriesCon1 .center_box .left_box {
  width: fit-content;
  flex-shrink: 0;
  font-weight: 700;
}
.ins_accessoriesCon1 .center_box .right_box {
  width: fit-content;
}
.ins_accessoriesCon1 .center_box .right_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem 0.52rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_accessoriesCon1 .center_box .right_box .list .one {
  font-size: var(--font18);
}
.ins_accessoriesCon1 .center_box .right_box .list .one .layui-form-checkbox[lay-skin=primary] > div {
  font-size: var(--font18);
}
.ins_accessoriesCon1 .center_box .right_box .list .one .layui-form-checkbox[lay-skin=primary] > i {
  background: none;
}
.ins_accessoriesCon1 .center_box .right_box .list .one .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 12px;
  transform: scale(0.8);
  display: inline-block;
  font-weight: 700;
}
.ins_accessoriesCon1 .center_box .right_box .list .one .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color);
}
.ins_accessoriesCon1 .center_box .right_box .list .one .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.ins_accessoriesCon1 .center_box .right_box .list .one .layui-form-checked[lay-skin=primary] > div {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_accessoriesCon1 .center_box {
    gap: 0.2rem;
  }
}
.ins_accessoriesCon1.toUp_Box.posFix {
  position: relative !important;
  z-index: 1;
}
.ins_accessoriesCon1.toUp_Box.small {
  top: 0 !important;
}
.ins_accessoriesCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.4rem;
}
.ins_accessoriesCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_accessoriesCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
}
.ins_accessoriesCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.4rem;
}
.ins_accessoriesCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_accessoriesCon2 .center_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_accessoriesCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  font-weight: 700;
}
.ins_accessoriesCon2 .center_box .item_box .item .word .t3 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_accessoriesCon2 .center_box .item_box .item .img_box {
  width: 100%;
  height: auto;
  margin-top: 0.23rem;
}
.ins_accessoriesCon2 .center_box .item_box .item .img_box .img {
  width: 100%;
  height: auto;
}
.ins_accessoriesCon2 .center_box .item_box .item .img_box .img .pb {
  padding-bottom: 81%;
}
.ins_accessoriesCon2 .center_box .item_box .item .img_box .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;
  background: var(--color_bg);
}
.ins_accessoriesCon2 .center_box .item_box .item .img_box .img .pb .ab img {
  mix-blend-mode: multiply;
}
.ins_accessoriesCon2 .center_box .item_box .item .img_box .imgs {
  width: 100%;
  height: auto;
}
.ins_accessoriesCon2 .center_box .item_box .item .img_box .imgs .pb {
  padding-bottom: 70.2%;
}
.ins_accessoriesCon2 .center_box .item_box .item .img_box .imgs .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_accessoriesCon2 .center_box .item_box .item .img_box .idx_more2 {
  margin-top: 0.54rem;
  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_accessoriesCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_accessoriesCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_accessoriesCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  overflow: hidden;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg8.png) no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: 0.24rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo .word_box .t3 {
  margin-top: 0.16rem;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 86%;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo:hover {
  background: var(--active_color);
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo:hover::after {
  opacity: 1;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo:hover .word_box .t1 {
  color: var(--active_color2);
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo:hover .word_box .t2 {
  color: #FFF;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo:hover .word_box .t3 {
  color: #FFF;
}
.ins_accessoriesCon3 .center_box .swiper_box ul li .centerInfo:hover .list .one {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
.ins_accessoriesCon3 .center_box .idx_more {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_priceCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_priceCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_priceCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.82rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.5rem;
}
.ins_priceCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_priceCon1 .center_box .item_box .item .icon {
  width: 0.63rem;
  height: 0.63rem;
}
.ins_priceCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.27rem;
}
.ins_priceCon1 .center_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_priceCon1 .center_box .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #666666;
}
.ins_priceCon1 .center_box .item_box .line {
  width: 1px;
  height: auto;
  background: #0000001A;
}
@media (max-width:990px) {
  .ins_priceCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_priceCon1 .center_box .item_box .line {
    width: 100%;
    height: 1px;
  }
}
.ins_priceCon1 .center_box .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.8rem;
}
.ins_priceCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_priceCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_priceCon2 .center_box .left_box {
  width: 36%;
}
.ins_priceCon2 .center_box .right_box {
  width: 59%;
  height: auto;
}
.ins_priceCon2 .center_box .right_box .content {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_priceCon2 .center_box .right_box .content .title {
  font-weight: 700;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_priceCon2 .center_box .right_box .content .word1 {
  width: 100%;
  height: auto;
}
.ins_priceCon2 .center_box .right_box .content .word1 .t1 {
  font-weight: 700;
}
.ins_priceCon2 .center_box .right_box .content .word1 .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_priceCon2 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.24rem;
}
.ins_priceCon2 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_priceCon2 .center_box .right_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.04rem;
}
.ins_priceCon2 .center_box .right_box .content .item_box .item .word i {
  color: #FC533C;
  font-style: unset;
}
.ins_priceCon2 .center_box .right_box .content .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
}
.ins_priceCon2 .center_box .right_box .content .item_box .item .icon input,
.ins_priceCon2 .center_box .right_box .content .item_box .item .icon textarea {
  width: 100%;
  height: 0.47rem;
  min-height: 40px;
  border: 0;
  border-radius: 0.08rem;
  font-size: var(--font18);
  padding-left: 0.24rem;
}
.ins_priceCon2 .center_box .right_box .content .item_box .item .icon textarea {
  min-height: 1.29rem;
  padding: 0.12rem 0.24rem;
}
.ins_priceCon2 .center_box .right_box .content .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_priceCon2 .center_box .right_box .content .idx_more .more {
  padding: 0.16rem 0.48rem;
}
.ins_priceCon2 .bg_img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24.2708%;
}
.ins_appCon1 {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_appCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_appCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.47rem;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 128, 203, 0) 0%, #0080CB 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.ins_appCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_appCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 71%;
}
.ins_appCon1 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_appCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  padding: 0.24rem;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appCon1 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.05);
}
.ins_appCon1 .center_box .item_box .item:hover .word {
  color: var(--active_color2);
}
.ins_appCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_appCon2 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.4rem;
}
.ins_appCon2 .center_box .content {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_appCon2 .center_box .content .left_box {
  width: 41%;
}
.ins_appCon2 .center_box .content .left_box .idx_title .t2 {
  margin-top: 0.24rem;
}
.ins_appCon2 .center_box .content .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  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_appCon2 .center_box .content .left_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_appCon2 .center_box .content .left_box .list .one img {
  flex-shrink: 0;
  width: 0.24rem;
}
.ins_appCon2 .center_box .content .left_box .list .one span {
  font-size: var(--font24);
  font-weight: 700;
}
.ins_appCon2 .center_box .content .right_box {
  width: 55.7%;
}
.ins_appCon2 .center_box .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_appCon2 .center_box .content .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_appCon2 .center_box .content:nth-child(2n) {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width:990px) {
  .ins_appCon2 .center_box .content {
    flex-direction: column !important;
  }
}
.ins_appCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_appCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_appCon3 .center_box .content .swiper_icon {
  width: 0.52rem;
  height: 0.52rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #00000033;
  border-radius: 100px;
  position: absolute;
}
.ins_appCon3 .center_box .content .swiper_icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appCon3 .center_box .content .swiper_icon.next {
  left: calc(100% + 0.24rem);
}
.ins_appCon3 .center_box .content .swiper_icon.prev {
  right: calc(100% + 0.24rem);
}
.ins_appCon3 .center_box .content .swiper_icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_appCon3 .center_box .content .swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
.ins_appCon3 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_appCon3 .center_box .content .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_appCon3 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: var(--color_bg);
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_appCon3 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_appCon3 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 61%;
}
.ins_appCon3 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_appCon3 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_appCon3 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 700;
}
.ins_appCon3 .center_box .content .swiper_box ul li .centerInfo .word .t2 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_appCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_appCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_appCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_appCon4 .center_box .swiper_box ul {
  transition-timing-function: linear !important;
}
.ins_appCon4 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_appCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appCon4 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.22rem;
  opacity: 0.4;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.ins_appCon4 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_appCon4 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 67%;
}
.ins_appCon4 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_appCon4 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 3;
  bottom: 0;
  color: #FFF;
  padding: 0.24rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appCon4 .center_box .swiper_box ul li .centerInfo:hover {
  opacity: 1;
}
.ins_appCon4 .center_box .swiper_box ul li .centerInfo:hover .word {
  opacity: 1;
}
.ins_appCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_appCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_appCon5 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  background: var(--color_bg);
}
.ins_appCon5 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_appCon5 .center_box .item_box .item .img .pb {
  padding-bottom: 104%;
}
.ins_appCon5 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_appCon5 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  padding-top: 0.73rem;
  padding-right: 0.2rem;
}
.ins_appCon5 .center_box .item_box .item .word .t1 {
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.ins_appCon5 .center_box .item_box .item .word .t1 .number {
  position: absolute;
  font-weight: 700;
  font-size: 0.68rem;
  top: 0;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
  opacity: 0.2;
  background: linear-gradient(180deg, #0080CB 0%, rgba(0, 128, 203, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ins_appCon5 .center_box .item_box .item .word .t2 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_appCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_appCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_appCon6 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_appCon6 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_appCon6 .center_box .swiper_box ul li.swiper-slide-active {
  pointer-events: initial;
}
.ins_appCon6 .center_box .swiper_box ul li.swiper-slide-active .centerInfo {
  pointer-events: initial;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info {
  width: 100%;
  height: auto;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .swiper_word {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo {
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color_bg);
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg8.png) no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo .word_box {
  width: 100%;
  height: auto;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo .word_box .t1 {
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo .word_box .t2 {
  margin-top: 0.24rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo .word_box .t3 {
  margin-top: 0.16rem;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo .img {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo .img .pb {
  padding-bottom: 86%;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo:hover {
  background: var(--active_color);
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo:hover::after {
  opacity: 1;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo:hover .word_box .t1 {
  color: var(--active_color2);
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo:hover .word_box .t2 {
  color: #FFF;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo:hover .word_box .t3 {
  color: #FFF;
}
.ins_appCon6 .center_box .swiper_box ul li .swiper_info .centerInfo:hover .list .one {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
.ins_appCon6 .center_box .idx_more {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_compareCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.ins_compareCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_compareCon1 .center_box .select_box {
  margin-top: 0;
}
.ins_compareCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.4rem;
}
.ins_compareCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_compareCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  border: 1px solid #00000033;
  border-radius: 0.24rem;
  background: var(--color_bg);
  overflow: hidden;
  overflow: auto;
}
.ins_compareCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #00000033;
  min-width: 750px;
}
.ins_compareCon2 .center_box .item_box .item .one {
  width: 16%;
  height: auto;
  min-height: 0.88rem;
  padding: 0.12rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-right: 1px solid #00000033;
  font-size: var(--font18);
  color: #666666;
}
.ins_compareCon2 .center_box .item_box .item .one:last-child {
  border: 0;
}
.ins_compareCon2 .center_box .item_box .item .one:nth-child(1) {
  width: 36%;
}
.ins_compareCon2 .center_box .item_box .item .one img {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 18px;
  min-height: 18px;
}
.ins_compareCon2 .center_box .item_box .item:last-child {
  border: 0;
}
.ins_compareCon2 .center_box .item_box .item:first-child {
  background: #E6ECF0;
  min-height: 1.08rem;
  font-weight: 700;
}
.ins_compareCon2 .center_box .item_box .item:first-child .one {
  color: #1A1A1A;
}
.ins_caseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.72rem;
  padding-bottom: 0.7rem;
}
.ins_caseCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .word {
  color: #1A1A1A;
}
.ins_caseCon1 .center_box .swiper_logo {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_caseCon1 .center_box .swiper_logo::after {
  content: '';
  position: absolute;
  width: 1.31rem;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  z-index: 1;
}
.ins_caseCon1 .center_box .swiper_logo::before {
  content: '';
  position: absolute;
  width: 1.31rem;
  height: 100%;
  background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
  z-index: 2;
}
.ins_caseCon1 .center_box .swiper_logo ul {
  transition-timing-function: linear !important;
}
.ins_caseCon1 .center_box .swiper_logo ul li {
  width: 0%;
  height: auto;
}
.ins_caseCon1 .center_box .swiper_logo ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_caseCon1 .center_box .swiper_logo ul li .centerInfo .pb {
  padding-bottom: 38%;
  background: #F5F8FD;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
}
.ins_caseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .list_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.53rem;
}
.ins_caseCon2 .center_box .list_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.08rem;
}
.ins_caseCon2 .center_box .list_box .item .layui-form-select .layui-input {
  height: 0.55rem;
  min-height: 35px;
  background: none;
  border: 0;
  padding: 0 0.32rem;
  font-size: var(--font18);
  color: #666666;
}
.ins_caseCon2 .center_box .list_box .item .layui-form-select dl {
  top: 100% !important;
  bottom: unset !important;
}
.ins_caseCon2 .center_box .list_box .item .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  top: 30%;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: unset;
  right: 0.15rem;
  margin-top: unset !important;
}
.ins_caseCon2 .center_box .list_box .item .layui-form-select .layui-edge::after {
  content: '\e675';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font20);
}
@media (max-width:990px) {
  .ins_caseCon2 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_caseCon2 .center_box .list_box .item {
    width: 100%;
    height: auto;
  }
  .ins_caseCon2 .center_box .list_box .item:last-child {
    grid-column: span 2;
  }
}
.ins_caseCon2 .center_box .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.32rem;
  gap: 0.24rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_caseCon2 .center_box .word_box .left {
  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_caseCon2 .center_box .word_box .left .word {
  width: fit-content;
  font-size: var(--font18);
  color: #666666;
}
.ins_caseCon2 .center_box .word_box .left .btn_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_caseCon2 .center_box .word_box .left .btn_box .btn {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: var(--color_bg);
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: var(--font18);
  border-radius: 0.04rem;
}
.ins_caseCon2 .center_box .word_box .left .btn_box .btn i {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-style: unset;
  font-size: var(--font16);
}
.ins_caseCon2 .center_box .word_box .left .btn_box .btn i:hover {
  color: var(--active_color);
}
.ins_caseCon2 .center_box .word_box .right {
  width: fit-content;
}
.ins_caseCon2 .center_box .word_box .right .clear {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: var(--active_color);
  border-radius: 0.04rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .word_box .right .clear:hover {
  background: var(--active_color2);
}
.ins_caseCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.32rem;
}
.ins_caseCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_caseCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
.ins_caseCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_caseCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon2 .center_box .item_box .item .wordui {
  width: 100%;
  height: 100%;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_caseCon2 .center_box .item_box .item .wordui .word {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .item_box .item .wordui .word .t1 {
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .item_box .item .wordui .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #666666;
}
.ins_caseCon2 .center_box .item_box .item .wordui .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.4rem;
}
.ins_caseCon2 .center_box .item_box .item .wordui .list .one {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  color: #666666;
  border-radius: 100px;
  background: #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_caseCon2 .center_box .item_box .item .wordui .list .one:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_caseCon2 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_caseCon2 .center_box .item_box .item:hover .wordui .word .t1 {
  color: var(--active_color);
}
.ins_caseCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.4rem;
}
.ins_caseCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .left_box {
  width: 64.375%;
}
.ins_caseCon3 .center_box .left_box .video_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box .left_box .video_box .icon {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 100px;
  background: #FFFFFF1A;
  backdrop-filter: blur(5px);
  position: absolute;
  z-index: 3;
  cursor: pointer;
}
.ins_caseCon3 .center_box .left_box .video_box .img {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .left_box .video_box .img img {
  width: 100% !important;
  height: auto;
}
.ins_caseCon3 .center_box .left_box .imgList {
  width: 100%;
  height: auto;
  gap: 0.16rem;
  margin-top: 0.4rem;
}
.ins_caseCon3 .center_box .left_box .imgList .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box .left_box .imgList .img img {
  width: 100% !important;
  height: auto;
}
.ins_caseCon3 .center_box .left_box .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  background: linear-gradient(145deg, #D7E4F5 -73.23%, #EFF5FF 82.58%);
  border-radius: 0.18rem;
  padding: 0.4rem;
  position: relative;
  z-index: 1;
}
.ins_caseCon3 .center_box .left_box .word_box .word {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .left_box .word_box .word span {
  display: contents;
  color: #1A1A1A;
}
.ins_caseCon3 .center_box .left_box .word_box .name {
  width: 100%;
  height: auto;
  margin-top: 0.73rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.13rem;
}
.ins_caseCon3 .center_box .left_box .word_box .name .na {
  width: fit-content;
}
.ins_caseCon3 .center_box .left_box .word_box .name .na .t1 p {
  font-weight: 700;
  color: #1A1A1A;
}
.ins_caseCon3 .center_box .left_box .word_box .name .icon {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 100px;
  overflow: hidden;
}
.ins_caseCon3 .center_box .left_box .word_box .name .icon img {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .left_box .word_box .bg_img {
  width: 33%;
  position: absolute;
  z-index: 2;
  right: 0.38rem;
  bottom: 0;
}
.ins_caseCon3 .center_box .left_box .word_box1 {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.24rem;
  padding: 0.32rem 0.4rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_caseCon3 .center_box .left_box .word_box1::after {
  content: '';
  position: absolute;
  width: 0.08rem;
  height: 100%;
  background: var(--active_color);
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .left_box .word_box1 .t1 {
  font-weight: 700;
}
.ins_caseCon3 .center_box .left_box .word_box1 .t1 p {
  color: #1A1A1A;
}
.ins_caseCon3 .center_box .left_box .word_box1 .t2 {
  color: #666666;
  margin-top: 0.24rem;
}
.ins_caseCon3 .center_box .left_box .word_box2 {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.24rem;
  padding: 0.32rem;
}
.ins_caseCon3 .center_box .left_box .word_box2 .name {
  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.23rem;
}
.ins_caseCon3 .center_box .left_box .word_box2 .name .icon {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}
.ins_caseCon3 .center_box .left_box .word_box2 .name .word {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .left_box .word_box2 .name .word .t1 {
  font-weight: 700;
}
.ins_caseCon3 .center_box .left_box .word_box2 .name .word .t1 p {
  color: #1A1A1A;
}
.ins_caseCon3 .center_box .left_box .word_box2 .name .word .t2 {
  color: #666666;
  margin-top: 0.1rem;
}
.ins_caseCon3 .center_box .left_box .word_box2 .word2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_caseCon3 .center_box .left_box .word_box3 {
  width: 100%;
  height: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_caseCon3 .center_box .left_box .word_box3 .leftb {
  width: 54%;
}
.ins_caseCon3 .center_box .left_box .word_box3 .leftb .t1 {
  font-weight: 700;
}
.ins_caseCon3 .center_box .left_box .word_box3 .leftb .t1 p {
  color: #1A1A1A;
}
.ins_caseCon3 .center_box .left_box .word_box3 .leftb .t2 {
  margin-top: 0.24rem;
}
.ins_caseCon3 .center_box .left_box .word_box3 .rightb {
  width: 43%;
}
.ins_caseCon3 .center_box .left_box .word_box3 .rightb .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box .left_box .word_box3 .rightb .img img {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .left_box .word_box3.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;
}
@media (max-width:990px) {
  .ins_caseCon3 .center_box .left_box .word_box3 {
    flex-direction: column !important;
  }
  .ins_caseCon3 .center_box .left_box .word_box3 .leftb,
  .ins_caseCon3 .center_box .left_box .word_box3 .rightb {
    width: 100%;
    height: auto;
  }
}
.ins_caseCon3 .center_box .right_box {
  width: 28.61111111%;
  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_caseCon3 .center_box .right_box .content {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: var(--color_bg);
  padding: 0.4rem;
}
.ins_caseCon3 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_caseCon3 .center_box .right_box .content .item_box .item {
  padding-top: 0.24rem;
  border-top: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: var(--font18);
  gap: 0.2rem;
}
.ins_caseCon3 .center_box .right_box .content .item_box .item .icon {
  color: #666666;
}
.ins_caseCon3 .center_box .right_box .content .item_box .item .word {
  font-weight: 500;
}
.ins_caseCon3 .center_box .right_box .content .item_box .item .word a {
  color: var(--active_color);
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .right_box .content .item_box .item .word a:hover {
  color: var(--active_color2);
}
.ins_caseCon3 .center_box .right_box .content .word1 {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .right_box .content .word1 .t1 {
  font-weight: 700;
}
.ins_caseCon3 .center_box .right_box .content .word1 .t2 {
  color: #666666;
  margin-top: 0.18rem;
}
.ins_caseCon3 .center_box .right_box .content .input_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.04rem;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item .word i {
  color: #FC533C;
  font-style: unset;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon input,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea {
  width: 100%;
  height: 0.47rem;
  min-height: 40px;
  border: 0;
  border-radius: 0.08rem;
  font-size: var(--font18);
  padding-left: 0.24rem;
  --color: #BCC2CC;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon input::-webkit-input-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea::-webkit-input-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon input textarea::-webkit-input-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon input:-moz-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea:-moz-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon input textarea:-moz-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon input::-moz-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea::-moz-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon input textarea::-moz-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon input:-ms-input-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea:-ms-input-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon input textarea:-ms-input-placeholder,
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
.ins_caseCon3 .center_box .right_box .content .input_box .item .icon textarea {
  min-height: 1.29rem;
  padding: 0.12rem 0.24rem;
}
.ins_caseCon3 .center_box .right_box .content .layui_item .layui-form-checkbox[lay-skin=primary] > i {
  background: #FFF;
}
.ins_caseCon3 .center_box .right_box .content .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.52rem;
}
.ins_caseCon3 .center_box .right_box .content .idx_more .more {
  padding: 0.12rem 0.48rem;
}
.ins_caseCon3 .center_box .right_box .content .title {
  width: 100%;
  height: auto;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #0000001A;
  font-weight: 700;
  font-size: var(--font24);
}
.ins_caseCon3 .center_box .right_box .content .list {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .right_box .content .list .one {
  width: 100%;
  height: auto;
  padding: 0.24rem 0;
  border-bottom: 1px solid #0000001A;
  font-size: var(--font18);
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_caseCon3 .center_box .right_box .content .list .one:hover {
  color: var(--active_color);
}
.ins_caseCon3 .center_box .right_box .content .list_box {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.24rem 0;
  border-bottom: 1px solid #0000001A;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b .img {
  width: 38%;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b .img .pb {
  padding-bottom: 61%;
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b .word {
  width: 55%;
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b .word .t1 {
  color: #676767;
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b .word .t2 {
  font-weight: 700;
  margin-top: 0.16rem;
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b:hover .word .t2 {
  text-decoration: underline;
  color: var(--active_color);
}
.ins_caseCon3 .center_box .right_box .content .list_box .list_b:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_caseCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_caseCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_caseCon4 .center_box .item_box .item {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon4 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg8.png) no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_caseCon4 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .item_box .item .word_box .t1 {
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon4 .center_box .item_box .item .word_box .t2 {
  margin-top: 0.24rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon4 .center_box .item_box .item .word_box .t3 {
  margin-top: 0.16rem;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon4 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
}
.ins_caseCon4 .center_box .item_box .item .img .pb {
  padding-bottom: 86%;
}
.ins_caseCon4 .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_caseCon4 .center_box .item_box .item:hover {
  background: var(--active_color);
}
.ins_caseCon4 .center_box .item_box .item:hover::after {
  opacity: 1;
}
.ins_caseCon4 .center_box .item_box .item:hover .word_box .t1 {
  color: var(--active_color2);
}
.ins_caseCon4 .center_box .item_box .item:hover .word_box .t2 {
  color: #FFF;
}
.ins_caseCon4 .center_box .item_box .item:hover .word_box .t3 {
  color: #FFF;
}
.ins_caseCon4 .center_box .item_box .item:hover .list .one {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
@media (max-width:990px) {
  .ins_caseCon4 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_caseCon4 .center_box .idx_more {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_caseCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_caseCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_caseCon5 .center_box .swiper_box ul li {
  width: 0%;
  height: auto;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 61%;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .wordui {
  width: 100%;
  height: 100%;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .wordui .word {
  width: 100%;
  height: auto;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .wordui .word .t1 {
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .wordui .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #666666;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .wordui .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-top: 0.4rem;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .wordui .list .one {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  color: #666666;
  border-radius: 100px;
  background: #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo .wordui .list .one:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_caseCon5 .center_box .swiper_box ul li .centerInfo:hover .wordui .word .t1 {
  color: var(--active_color);
}
.ins_materialCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_materialCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_materialCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_materialCon1 .center_box .item_box .item {
  width: 20%;
  height: auto;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_materialCon1 .center_box .item_box .item .img {
  width: 100%;
  height: 5.56rem;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.ins_materialCon1 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_materialCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  padding: 0.32rem;
  color: #FFFFFF;
}
.ins_materialCon1 .center_box .item_box .item .word .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_materialCon1 .center_box .item_box .item .word .t2 {
  display: none;
  margin-top: 0.16rem;
}
.ins_materialCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2.8rem;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 128, 203, 0) 0%, #0080CB 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.ins_materialCon1 .center_box .item_box .item.active {
  width: 60%;
}
.ins_materialCon1 .center_box .item_box .item.active .word .t1 {
  font-weight: 700;
}
.ins_materialCon1 .center_box .item_box .item.active .word .t2 {
  display: block;
}
@media (max-width:990px) {
  .ins_materialCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
  .ins_materialCon1 .center_box .item_box .item {
    width: 100% !important;
    height: auto !important;
    border-radius: 0.24rem;
    overflow: hidden;
  }
  .ins_materialCon1 .center_box .item_box .item .img {
    width: 100%;
    height: auto;
  }
}
.ins_materialCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_materialCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_materialCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_materialCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_materialCon2 .center_box .item_box .item.grid2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2.8rem;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 128, 203, 0) 0%, #0080CB 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.ins_materialCon2 .center_box .item_box .item .bg_img {
  width: 100%;
  height: 100%;
}
.ins_materialCon2 .center_box .item_box .item .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_materialCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  padding: 0.32rem;
  color: #FFFFFF;
}
.ins_materialCon2 .center_box .item_box .item .word_box .t2 {
  margin-top: 0.16rem;
}
.ins_materialCon2 .center_box .item_box .item .word_box .t1 {
  font-weight: 700;
}
.ins_materialCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_materialCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_materialCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_materialCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_materialCon2 .center_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_materialCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_materialCon2 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_materialCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_materialCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_materialCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_materialCon3 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_materialCon3 .center_box .content .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 116%;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: 1.92rem;
  min-height: 120px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: var(--color_bg);
  padding: 0.32rem;
  border-radius: 0.16rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .word_box .icon {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.15rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .word_box .icon .ava {
  width: 0.61rem;
  height: 0.61rem;
  background: #FFFFFF;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .word_box .icon .name {
  width: 100%;
  height: auto;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .word_box .icon .name .t1 {
  font-weight: 700;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .word_box .icon .name .t2 {
  color: #666666;
  margin-top: 0.07rem;
  font-weight: 300;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .word_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: var(--font18);
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .word_box:hover {
  width: 100%;
  height: 100%;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .word_box:hover .word {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 100;
  overflow: hidden;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .icon_box {
  width: 100%;
  height: calc(100% - 1.92rem);
  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;
  top: 0;
  left: 0;
  z-index: 2;
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .icon_box .icon {
  width: 0.41rem;
  height: 0.41rem;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  fill: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}
.ins_materialCon3 .center_box .content .swiper_box ul li .centerInfo .icon_box .icon img {
  width: 100%;
  height: auto;
}
.ins_materialCon3 .center_box .content .swiper_icon {
  width: 0.52rem;
  height: 0.52rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #00000033;
  border-radius: 100px;
  position: absolute;
}
.ins_materialCon3 .center_box .content .swiper_icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_materialCon3 .center_box .content .swiper_icon.next {
  left: calc(100% + 0.24rem);
}
.ins_materialCon3 .center_box .content .swiper_icon.prev {
  right: calc(100% + 0.24rem);
}
.ins_materialCon3 .center_box .content .swiper_icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_materialCon3 .center_box .content .swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
.ins_materialCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_materialCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_materialCon4 .center_box .left_box {
  width: 36%;
}
.ins_materialCon4 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_materialCon4 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  padding-bottom: 0.52rem;
  position: relative;
  z-index: 1;
}
.ins_materialCon4 .center_box .left_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 0.5rem);
  top: 0.41rem;
  left: 0.16rem;
  border-left: 1px dashed #00000033;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_materialCon4 .center_box .left_box .item_box .item .icon {
  width: 0.32rem;
  height: 0.32rem;
  flex-shrink: 0;
}
.ins_materialCon4 .center_box .left_box .item_box .item .word {
  width: 100%;
  height: auto;
}
.ins_materialCon4 .center_box .left_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_materialCon4 .center_box .left_box .item_box .item .word .t2 {
  color: #666666;
  margin-top: 0.12rem;
}
.ins_materialCon4 .center_box .left_box .item_box .item:last-child::after {
  opacity: 0;
}
.ins_materialCon4 .center_box .right_box {
  width: 59%;
  height: auto;
}
.ins_materialCon4 .center_box .right_box .content {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_materialCon4 .center_box .right_box .content .title {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_materialCon4 .center_box .right_box .content .title .t1 {
  font-weight: 700;
}
.ins_materialCon4 .center_box .right_box .content .title .t2 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_materialCon4 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.24rem;
}
.ins_materialCon4 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_materialCon4 .center_box .right_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.04rem;
}
.ins_materialCon4 .center_box .right_box .content .item_box .item .word i {
  color: #FC533C;
  font-style: unset;
}
.ins_materialCon4 .center_box .right_box .content .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
}
.ins_materialCon4 .center_box .right_box .content .item_box .item .icon input,
.ins_materialCon4 .center_box .right_box .content .item_box .item .icon textarea {
  width: 100%;
  height: 0.47rem;
  min-height: 40px;
  border: 0;
  border-radius: 0.08rem;
  font-size: var(--font18);
  padding-left: 0.24rem;
  background: var(--color_bg);
}
.ins_materialCon4 .center_box .right_box .content .item_box .item .icon textarea {
  min-height: 1.29rem;
  padding: 0.12rem 0.24rem;
}
.ins_materialCon4 .center_box .right_box .content .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_materialCon4 .center_box .right_box .content .idx_more .more {
  padding: 0.16rem 0.48rem;
}
.ins_materialCon4 .bg_img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24.2708%;
}
.ins_pointCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1.4rem 0;
}
.ins_pointCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_pointCon1 .center_box .left_box {
  width: 30%;
  height: 100%;
  position: sticky;
  top: var(--header-height);
}
.ins_pointCon1 .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;
}
.ins_pointCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #0000001A;
}
.ins_pointCon1 .center_box .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  padding: 0.2rem 0;
  cursor: pointer;
}
.ins_pointCon1 .center_box .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  border-top: 1px solid #0000001A;
  padding-top: 0.2rem;
  padding-bottom: 0.4rem;
}
.ins_pointCon1 .center_box .left_box .item_box .item .bot .one {
  padding: 0.05rem 0;
  color: #666666;
  font-size: var(--font16);
  cursor: pointer;
}
.ins_pointCon1 .center_box .left_box .item_box .item .bot .one.active {
  color: var(--active_color);
}
.ins_pointCon1 .center_box .left_box .item_box .item.active .top {
  color: var(--active_color);
}
.ins_pointCon1 .center_box .right_box {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}
.ins_pointCon1 .center_box .right_box .content_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.ins_pointCon1 .center_box .right_box .content_info .title {
  font-size: var(--font30);
}
.ins_pointCon1 .center_box .right_box .content_info .content_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.ins_pointCon1 .center_box .right_box .content_info .content_box .content {
  width: 100%;
  height: auto;
  min-height: 200px;
  background: #f5f5f5;
  padding: 0.4rem;
  font-size: var(--font20);
  border-radius: 0.16rem;
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_aboutCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: var(--color_bg);
  padding: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .item_box .item .word_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 700;
}
.ins_aboutCon1 .center_box .item_box .item .word_box .word .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_aboutCon1 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_aboutCon1 .center_box .item_box .item .word_box .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.16rem;
}
.ins_aboutCon1 .center_box .item_box .item .word_box .list .one img {
  flex-shrink: 0;
  width: 0.18rem;
}
.ins_aboutCon1 .center_box .item_box .item .word_box .list .one span {
  font-size: var(--font18);
}
.ins_aboutCon1 .center_box .item_box .item .word_box .list .one:last-child {
  padding-bottom: 0;
  border: 0;
}
.ins_aboutCon1 .center_box .item_box .item .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.62rem;
}
.ins_aboutCon1 .center_box .item_box .item .cont_box {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_aboutCon1 .center_box .item_box .item .cont_box .title {
  color: #666666;
  font-size: var(--font18);
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.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;
  background: var(--color_bg);
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 29.2%;
  padding: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-right: 0;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .word_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .word_box .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .word_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 700;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .word_box .word .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .word_box .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.16rem;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .word_box .list .one img {
  flex-shrink: 0;
  width: 0.18rem;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .word_box .list .one span {
  font-size: var(--font18);
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .word_box .list .one:last-child {
  padding-bottom: 0;
  border: 0;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .left_box .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 64.3%;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .right_box .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .right_box .img .pb {
  padding-bottom: 66%;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .right_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_downloadCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--color_bg);
}
.ins_downloadCon1 .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;
  gap: 0.3rem;
}
.ins_downloadCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_downloadCon1 .center_box .swiper_box ul li {
  width: fit-content;
}
.ins_downloadCon1 .center_box .swiper_box ul li .centerInfo {
  width: fit-content;
  font-size: var(--font18);
  padding: 0.32rem 0;
  color: #666666;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--active_color);
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_downloadCon1 .center_box .swiper_box ul li .centerInfo:hover {
  color: var(--active_color);
}
.ins_downloadCon1 .center_box .swiper_box ul li.active .centerInfo {
  color: var(--active_color);
}
.ins_downloadCon1 .center_box .swiper_box ul li.active .centerInfo::after {
  opacity: 1;
}
.ins_downloadCon1 .center_box .btn {
  width: fit-content;
}
.ins_downloadCon1 .center_box .btn .more {
  padding: 0.12rem 0.5rem;
  border: 1px solid var(--active_color);
  border-radius: 100px;
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon1 .center_box .btn .more:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_downloadCon1 {
    display: none;
  }
  .ins_downloadCon1::after {
    content: '\e689';
    position: absolute;
    font-family: "iconfont";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    left: 0.05rem;
    top: 0.35rem;
    font-size: 12px;
    transform: scale(0.8);
  }
  .ins_downloadCon1::before {
    content: '\e687';
    position: absolute;
    font-family: "iconfont";
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    right: 0.05rem;
    top: 0.35rem;
    font-size: 12px;
    transform: scale(0.8);
  }
}
.ins_downloadCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.3rem;
}
.ins_downloadCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon2 .center_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem 0.52rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_downloadCon2 .center_box .list .one {
  font-size: var(--font18);
}
.ins_downloadCon2 .center_box .list .one .layui-form-checkbox[lay-skin=primary] > div {
  font-size: var(--font18);
}
.ins_downloadCon2 .center_box .list .one .layui-form-checkbox[lay-skin=primary] > i {
  background: none;
}
.ins_downloadCon2 .center_box .list .one .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 12px;
  transform: scale(0.8);
  display: inline-block;
  font-weight: 700;
}
.ins_downloadCon2 .center_box .list .one .layui-form-checked[lay-skin=primary] > i {
  background: var(--active_color);
}
.ins_downloadCon2 .center_box .list .one .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.ins_downloadCon2 .center_box .list .one .layui-form-checked[lay-skin=primary] > div {
  color: var(--active_color);
}
.ins_downloadCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.4rem;
}
.ins_downloadCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_downloadCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
}
.ins_downloadCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_downloadCon3 .center_box .item_box .item .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_downloadCon3 .center_box .item_box .item .images_box .content {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  padding: 0.4rem;
  padding-bottom: 1.5rem;
  background-image: url(../images/bg13.png);
  background-position: bottom left;
  background-size: cover;
}
.ins_downloadCon3 .center_box .item_box .item .images_box .content .word {
  width: 80%;
  height: auto;
  color: #FFFFFF;
}
.ins_downloadCon3 .center_box .item_box .item .images_box .content .word .t1 {
  font-weight: 700;
  line-height: 1;
}
.ins_downloadCon3 .center_box .item_box .item .images_box .content .word .t2 {
  margin-top: 0.16rem;
}
.ins_downloadCon3 .center_box .item_box .item .images_box .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_downloadCon3 .center_box .item_box .item .images_box .img .pb {
  padding-bottom: 118%;
}
.ins_downloadCon3 .center_box .item_box .item .images_box .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_downloadCon3 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_downloadCon3 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_downloadCon3 .center_box .item_box .item .word_box .word .t1 {
  font-weight: 700;
  line-height: 1.1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_downloadCon3 .center_box .item_box .item .word_box .idx_more2 {
  margin-top: 0.24rem;
}
.ins_downloadCon3 .center_box .item_box .item:hover .images_box .img .pb .ab img {
  transform: scale(1.03);
}
.ins_downloadCon3 .center_box .item_box .item:hover .word_box .word .t1 {
  color: var(--active_color);
}
.ins_downloadCon3 .center_box .item_box .item:hover .word_box .idx_more2 .more {
  color: var(--active_color) !important;
  padding-left: 0.1rem;
}
.ins_lasermakerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_lasermakerCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon1 .center_box .left_box {
  width: 59%;
}
.ins_lasermakerCon1 .center_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_lasermakerCon1 .center_box .left_box .img img {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon1 .center_box .right_box {
  width: 36.1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_lasermakerCon1 .center_box .right_box .word_box {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon1 .center_box .right_box .word_box .t1 {
  font-weight: 700;
}
.ins_lasermakerCon1 .center_box .right_box .word_box .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_lasermakerCon1 .center_box .right_box .word_box .t3 {
  margin-top: 0.32rem;
}
.ins_lasermakerCon1 .center_box .right_box .icon_box {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon1 .center_box .right_box .icon_box .t1 {
  color: var(--active_color);
}
.ins_lasermakerCon1 .center_box .right_box .icon_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  margin-top: 0.16rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_lasermakerCon1 .center_box .right_box .icon_box .list .one {
  width: 2.24rem;
}
.ins_lasermakerCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_lasermakerCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_lasermakerCon2 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: var(--color_bg);
  border-radius: 0.16rem;
  padding: 0.32rem;
  gap: 0.6rem;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .icon {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .icon img {
  width: 0.64rem;
  height: 0.64rem;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .icon span {
  font-weight: 700;
  font-size: var(--font24);
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .word_box .word {
  width: 100%;
  height: auto;
  line-height: 2;
  color: #666666;
  font-size: var(--font18);
  margin-top: 0.32rem;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .icon_box {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .icon_box .word {
  width: 100%;
  height: auto;
  color: var(--active_color);
  font-size: var(--font18);
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .icon_box .list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.12rem;
  margin-top: 0.16rem;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .icon_box .list .one {
  width: 100%;
  height: auto;
  min-width: 1.84rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 0.16rem 0.24rem;
  border: 1px solid var(--active_color);
  border-radius: 0.16rem;
  gap: 0.12rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .icon_box .list .one .img {
  width: 0.42rem;
  height: 0.42rem;
  flex-shrink: 0;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .icon_box .list .one .name {
  width: 100%;
  height: auto;
  color: var(--active_color);
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .icon_box .list .one .name .t1 {
  font-weight: 700;
}
.ins_lasermakerCon2 .center_box .content .swiper_box ul li .centerInfo .icon_box .list .one:hover {
  background: #FFF;
}
.ins_lasermakerCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_lasermakerCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon3 .center_box .left_box {
  width: 39.3%;
}
.ins_lasermakerCon3 .center_box .left_box .images_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_lasermakerCon3 .center_box .left_box .images_box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5.51rem;
  opacity: 0.6;
  background: linear-gradient(180deg, #0080CB 0%, rgba(0, 128, 203, 0) 100%);
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_lasermakerCon3 .center_box .left_box .images_box .content {
  width: 100%;
  height: auto;
  min-height: 5.51rem;
  position: absolute;
  z-index: 3;
  padding: 0.4rem;
  color: #FFFFFF;
}
.ins_lasermakerCon3 .center_box .left_box .images_box .content .t1 {
  font-weight: 700;
}
.ins_lasermakerCon3 .center_box .left_box .images_box .content .t2 {
  margin-top: 0.16rem;
}
.ins_lasermakerCon3 .center_box .left_box .images_box .content .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_lasermakerCon3 .center_box .left_box .images_box .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_lasermakerCon3 .center_box .left_box .images_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_lasermakerCon3 .center_box .right_box {
  width: 59%;
  height: auto;
}
.ins_lasermakerCon3 .center_box .right_box .content {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_lasermakerCon3 .center_box .right_box .content .title {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_lasermakerCon3 .center_box .right_box .content .title .t1 {
  font-weight: 700;
}
.ins_lasermakerCon3 .center_box .right_box .content .title .t2 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.24rem;
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.04rem;
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .word i {
  color: #FC533C;
  font-style: unset;
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .icon input,
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .icon textarea {
  width: 100%;
  height: 0.47rem;
  min-height: 40px;
  border: 0;
  border-radius: 0.08rem;
  font-size: var(--font18);
  padding-left: 0.24rem;
  background: var(--color_bg);
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .icon textarea {
  min-height: 1.29rem;
  padding: 0.12rem 0.24rem;
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .btn_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  margin-top: 0.16rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .btn_box .btn {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: var(--color_bg);
  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;
  font-size: var(--font18);
  border-radius: 0.04rem;
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .btn_box .btn i {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-style: unset;
  font-size: var(--font16);
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .btn_box .btn i:hover {
  color: var(--active_color);
}
.ins_lasermakerCon3 .center_box .right_box .content .item_box .item .btn_box .btn.bgCo {
  background: var(--active_color);
  color: #FFFFFF;
  cursor: pointer;
}
.ins_lasermakerCon3 .center_box .right_box .content .layui_item {
  margin-top: 0.36rem;
}
.ins_lasermakerCon3 .center_box .right_box .content .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_lasermakerCon3 .center_box .right_box .content .idx_more .more {
  padding: 0.16rem 0.48rem;
}
.ins_lasermakerCon3 .bg_img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24.2708%;
}
.ins_productCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_productCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.98rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ins_productCon5 .center_box .item_box::after {
  content: '';
  position: absolute;
  bottom: 0.02rem;
  right: 0;
  width: 100%;
  height: 1px;
  background: #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon5 .center_box .item_box .item {
  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;
  text-align: center;
  cursor: pointer;
}
.ins_productCon5 .center_box .item_box .item .img {
  width: 1.2rem;
}
.ins_productCon5 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  font-size: var(--font24);
  color: #666666;
  padding-bottom: 0.24rem;
  position: relative;
  z-index: 1;
}
.ins_productCon5 .center_box .item_box .item .word::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0.03rem;
  border-radius: 100px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_productCon5 .center_box .item_box .item.active .word {
  color: var(--active_color);
}
.ins_productCon5 .center_box .item_box .item.active .word::after {
  opacity: 1;
}
.ins_productCon5 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_productCon5 .center_box .content_info .content {
  width: 100%;
  height: auto;
  padding: 0.52rem;
  background: var(--color_bg);
  border-radius: 0.24rem;
  display: none;
}
.ins_productCon5 .center_box .content_info .content .word_box {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .content_info .content .word_box .t1 {
  font-weight: 700;
}
.ins_productCon5 .center_box .content_info .content .word_box .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_productCon5 .center_box .content_info .content .cont_box {
  width: 100%;
  height: auto;
  margin-top: 0.63rem;
}
.ins_productCon5 .center_box .content_info .content .cont_box .left_box {
  width: 48%;
}
.ins_productCon5 .center_box .content_info .content .cont_box .right_box {
  width: 45%;
}
.ins_productCon5 .center_box .content_info .content .cont_box .right_box .top_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_productCon5 .center_box .content_info .content .cont_box .right_box .top_box .idx_more2 {
  width: fit-content;
}
@media (max-width:990px) {
  .ins_productCon5 .center_box .content_info .content .cont_box .right_box .top_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.2rem;
  }
}
.ins_productCon5 .center_box .content_info .content .cont_box .right_box .table {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  border-radius: 0.12rem;
  border: 1px solid #CCCCCC;
}
.ins_productCon5 .center_box .content_info .content .cont_box .right_box .table table {
  width: 100%;
  height: auto;
  table-layout: fixed;
}
.ins_productCon5 .center_box .content_info .content .cont_box .right_box .table table tr {
  width: 100%;
  height: auto;
}
.ins_productCon5 .center_box .content_info .content .cont_box .right_box .table table tr td {
  padding: 0.24rem;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  font-size: var(--font18);
  color: #666666;
}
.ins_productCon5 .center_box .content_info .content .cont_box .right_box .table table tr td:first-child {
  border-left: 0;
  color: #1A1A1A;
}
.ins_productCon5 .center_box .content_info .content .cont_box .right_box .table table tr:first-child td {
  border-top: 0;
}
.ins_productCon5 .center_box .content_info .content.active {
  display: block;
}
.ins_productCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.2rem;
}
.ins_productCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon6 .center_box .item_box .item .content {
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_productCon6 .center_box .item_box .item .content .word {
  width: 100%;
  height: auto;
}
.ins_productCon6 .center_box .item_box .item .content .word .t1 {
  font-weight: 700;
}
.ins_productCon6 .center_box .item_box .item .content .word .t2 {
  color: #999999;
  font-weight: 300;
  margin-top: 0.16rem;
}
.ins_productCon6 .center_box .item_box .item .content .word.CoFF .t2 {
  color: #FFFFFF;
}
.ins_productCon6 .center_box .item_box .item .content .icon {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 100px;
  overflow: hidden;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_productCon6 .center_box .item_box .item .content .icon:hover {
  background: var(--active_color2);
}
.ins_productCon6 .center_box .item_box .item .img {
  width: 100%;
  height: 100%;
}
.ins_productCon6 .center_box .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
  margin-top: 0.8rem;
}
.ins_productCon7 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon7 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_productCon7 .center_box .item_box .item .img .pb {
  padding-bottom: 61.35371179%;
}
.ins_productCon7 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon7 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  padding-bottom: 0.52rem;
}
.ins_productCon7 .center_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_productCon7 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_productCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon8 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon8 .center_box .left_box {
  width: 26%;
}
.ins_productCon8 .center_box .right_box {
  width: 56%;
}
.ins_productCon8 .center_box .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_productCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon9 .center_box .content {
  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;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_productCon9 .center_box .content .idx_title {
  width: 62%;
  height: auto;
  position: absolute;
  padding: 0.72rem;
}
.ins_productCon9 .center_box .content .idx_title .t1,
.ins_productCon9 .center_box .content .idx_title .t3 {
  color: #FFFFFF !important;
}
.ins_productCon9 .center_box .content .img {
  width: 100%;
  height: auto;
}
.ins_productCon9 .center_box .content .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_productCon9 .center_box .content {
    position: relative;
    z-index: 1;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
  }
  .ins_productCon9 .center_box .content .idx_title {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0;
  }
  .ins_productCon9 .center_box .content .idx_title .t1,
  .ins_productCon9 .center_box .content .idx_title .t3 {
    color: #000000 !important;
  }
}
.ins_productCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon10 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon10 .center_box .left_box {
  width: 56%;
}
.ins_productCon10 .center_box .left_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_productCon10 .center_box .right_box {
  width: 38%;
}
.ins_productCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon11 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon11 .center_box .content_info .content {
  width: 100%;
  height: auto;
  display: none;
  background: var(--color_bg);
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_productCon11 .center_box .content_info .content.active {
  display: block !important;
}
.ins_productCon11 .center_box .content_info .content .contBox {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon11 .center_box .content_info .content .contBox .left_box {
  width: 67%;
}
.ins_productCon11 .center_box .content_info .content .contBox .right_box {
  width: 33%;
  padding: 0.4rem;
}
.ins_productCon11 .center_box .content_info .content .contBox .right_box .word {
  width: 100%;
  height: auto;
}
.ins_productCon11 .center_box .content_info .content .contBox .right_box .word .t1 {
  font-weight: 700;
}
.ins_productCon11 .center_box .content_info .content .contBox .right_box .word .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_productCon12 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon12 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon12 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon12 .center_box .content_info .content {
  width: 100%;
  height: auto;
  display: none;
}
.ins_productCon12 .center_box .content_info .content .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
}
.ins_productCon12 .center_box .content_info .content .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_productCon12 .center_box .content_info .content .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 128, 203, 0) 0%, #0080CB 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon12 .center_box .content_info .content .item_box .item .word {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 0.24rem;
  color: #FFFFFF;
}
.ins_productCon12 .center_box .content_info .content .item_box .item .img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.ins_productCon12 .center_box .content_info .content .item_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon12 .center_box .content_info .content.active {
  display: block;
}
.ins_productCon13 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon13 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon13 .center_box .item_box {
  width: 100%;
  height: auto;
  border: 1px solid #0000001A;
  border-radius: 0.24rem;
  background: var(--color_bg);
  overflow: auto;
  margin-top: 0.8rem;
}
.ins_productCon13 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #0000001A;
  min-width: 800px;
}
.ins_productCon13 .center_box .item_box .item .one {
  width: 100%;
  height: auto;
  min-height: 0.88rem;
  padding: 0.12rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-right: 1px solid #0000001A;
  font-size: var(--font18);
  color: #666666;
}
.ins_productCon13 .center_box .item_box .item .one:last-child {
  border: 0;
}
.ins_productCon13 .center_box .item_box .item .one img {
  width: 0.24rem;
  height: 0.24rem;
  min-width: 18px;
  min-height: 18px;
}
.ins_productCon13 .center_box .item_box .item:last-child {
  border: 0;
}
.ins_productCon13 .center_box .item_box .item:first-child {
  background: #E6ECF0;
  min-height: 1.08rem;
  font-weight: 700;
}
.ins_productCon13 .center_box .item_box .item:first-child .one {
  color: #1A1A1A;
}
.ins_productCon14 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon14 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon14 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon14 .center_box .content .tableInfo {
  width: 100%;
  height: auto;
  overflow: auto;
}
.ins_productCon14 .center_box .content .tableInfo .name {
  padding-bottom: 0.2rem;
  font-size: 12px;
}
.ins_productCon14 .center_box .content .tableInfo .info {
  width: 100%;
  height: auto;
  background: #F5F8FD;
  border-radius: 0.24rem;
  border: 1px solid #0000001A;
  min-width: 1000px;
}
.ins_productCon14 .center_box .content .tableInfo .info table {
  width: 100%;
  height: auto;
  text-align: center;
  table-layout: fixed;
}
.ins_productCon14 .center_box .content .tableInfo .info table tr td {
  padding: 0.24rem;
  border-bottom: 1px solid #0000001A;
  border-left: 1px solid #0000001A;
  font-size: var(--font18);
  color: #666666;
}
.ins_productCon14 .center_box .content .tableInfo .info table tr td:first-child {
  border-left: 0;
}
.ins_productCon14 .center_box .content .tableInfo .info table thead {
  width: 100%;
  height: auto;
}
.ins_productCon14 .center_box .content .tableInfo .info table tbody {
  width: 100%;
  height: auto;
}
.ins_productCon14 .center_box .content .tableInfo .info table tbody tr:last-child td {
  border-bottom: 0;
}
.ins_productCon14 .center_box .content .tableInfo .info table .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon14 .center_box .content .tableInfo .info table .icon img {
  max-width: 1.2rem;
}
.ins_productCon15 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon15 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon15 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
  margin-top: 0.8rem;
}
.ins_productCon15 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  background: var(--color_bg);
  border-radius: 0.16rem;
  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_productCon15 .center_box .item_box .item .left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.52rem;
}
.ins_productCon15 .center_box .item_box .item .left .word {
  width: 100%;
  height: auto;
}
.ins_productCon15 .center_box .item_box .item .left .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 700;
}
.ins_productCon15 .center_box .item_box .item .right {
  width: fit-content;
  flex-shrink: 0;
}
.ins_productCon15 .center_box .item_box .item .right .icon {
  width: 0.4rem;
  height: 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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_productCon16 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_productCon16 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon16 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_productCon16 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_productCon16 .center_box .swiper_box ul li.swiper-slide-active {
  pointer-events: initial;
}
.ins_productCon16 .center_box .swiper_box ul li.swiper-slide-active .centerInfo {
  pointer-events: initial;
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info {
  width: 100%;
  height: auto;
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info .swiper_word {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info .swiper-slide {
  width: 0;
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info .centerInfo {
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color_bg);
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info .centerInfo::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  z-index: 2;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 128, 203, 0) 0%, #0080CB 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info .centerInfo .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  padding: 0.24rem;
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info .centerInfo .word_box .t1 {
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info .centerInfo .img .pb {
  padding-bottom: 135%;
}
.ins_productCon16 .center_box .swiper_box ul li .swiper_info .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productCon16 .center_box .idx_more {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_woodCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_woodCon1 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.4rem;
}
.ins_woodCon1 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_woodCon1 .center_box .content .left_box {
  width: 44%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_woodCon1 .center_box .content .left_box .idx_title .t2 {
  margin-top: 0.24rem;
}
.ins_woodCon1 .center_box .content .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  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_woodCon1 .center_box .content .left_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_woodCon1 .center_box .content .left_box .list .one img {
  flex-shrink: 0;
  width: 0.24rem;
}
.ins_woodCon1 .center_box .content .left_box .list .one span {
  font-size: var(--font24);
  font-weight: 700;
}
.ins_woodCon1 .center_box .content .right_box {
  width: 48.2%;
}
.ins_woodCon1 .center_box .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_woodCon1 .center_box .content .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_woodCon1 .center_box .content:nth-child(2n) {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.ins_woodCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_woodCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_woodCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_woodCon2 .center_box .content .swiper_icon {
  width: 0.52rem;
  height: 0.52rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #00000033;
  border-radius: 100px;
  position: absolute;
}
.ins_woodCon2 .center_box .content .swiper_icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_woodCon2 .center_box .content .swiper_icon.next {
  left: calc(100% + 0.24rem);
}
.ins_woodCon2 .center_box .content .swiper_icon.prev {
  right: calc(100% + 0.24rem);
}
.ins_woodCon2 .center_box .content .swiper_icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_woodCon2 .center_box .content .swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
.ins_woodCon2 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_woodCon2 .center_box .content .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_woodCon2 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: var(--color_bg);
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_woodCon2 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_woodCon2 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 61%;
}
.ins_woodCon2 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_woodCon2 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_woodCon2 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 700;
}
.ins_woodCon2 .center_box .content .swiper_box ul li .centerInfo .word .t2 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_woodCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_woodCon3 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 1.4rem;
}
.ins_woodCon3 .center_box .content {
  width: 100%;
  height: auto;
  -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_woodCon3 .center_box .content .left_box {
  width: 45%;
  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_woodCon3 .center_box .content .left_box .idx_title .t2 {
  margin-top: 0.24rem;
}
.ins_woodCon3 .center_box .content .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.72rem;
  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_woodCon3 .center_box .content .left_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_woodCon3 .center_box .content .left_box .list .one img {
  flex-shrink: 0;
  width: 0.24rem;
}
.ins_woodCon3 .center_box .content .left_box .list .one span {
  font-size: var(--font24);
  font-weight: 700;
}
.ins_woodCon3 .center_box .content .right_box {
  width: 48.2%;
}
.ins_woodCon3 .center_box .content .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_woodCon3 .center_box .content .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_woodCon3 .center_box .content:nth-child(2n) {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width:990px) {
  .ins_woodCon3 .center_box .content {
    flex-direction: column !important;
  }
}
.ins_solveCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_solveCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.08rem;
}
.ins_solveCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_solveCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_solveCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 139%;
}
.ins_solveCon1 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_solveCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_solveCon1 .center_box .item_box .item .word_box .icon {
  flex-basis: 0;
  font-size: var(--font16);
  background-image: url(../images/bg14.png);
  background-size: 100% 100%;
  color: #FFF;
  padding: 0.03rem 0.14rem 0.03rem 0.08rem;
}
.ins_solveCon1 .center_box .item_box .item .word_box .word {
  flex-basis: 0;
}
.ins_solveCon1 .center_box .item_box .item .word_box i {
  width: 100%;
  height: 1px;
  background-image: url(../images/line.png);
}
@media (max-width:990px) {
  .ins_solveCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 0.08rem;
  }
}
.ins_solveCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_solveCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.22rem;
  margin-top: 0.8rem;
}
.ins_solveCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_solveCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
.ins_solveCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 66%;
}
.ins_solveCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_solveCon2 .center_box .item_box .item .word {
  width: 100%;
  height: 100%;
  padding: 0.32rem;
  padding-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_solveCon2 .center_box .item_box .item .word .word_b {
  width: 100%;
  height: auto;
}
.ins_solveCon2 .center_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_solveCon2 .center_box .item_box .item .word .t2 {
  width: 100%;
  height: auto;
  color: #666666;
  margin-top: 0.16rem;
}
.ins_solveCon2 .center_box .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_solveCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_solveCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon3 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_solveCon3 .center_box .top_info .idx_title {
  width: 48%;
}
.ins_solveCon3 .center_box .top_info .idx_more {
  width: fit-content;
}
.ins_solveCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_solveCon3 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
}
.ins_solveCon3 .center_box .content .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_solveCon3 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 0.52rem;
  gap: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: 0.08rem;
}
.ins_solveCon3 .center_box .content .swiper_box ul li .centerInfo .left {
  width: 100%;
  height: auto;
}
.ins_solveCon3 .center_box .content .swiper_box ul li .centerInfo .left .t1 {
  font-weight: 700;
}
.ins_solveCon3 .center_box .content .swiper_box ul li .centerInfo .left .t2 {
  margin-top: 0.8rem;
  color: #666666;
}
.ins_solveCon3 .center_box .content .swiper_box ul li .centerInfo .right {
  width: fit-content;
  flex-shrink: 0;
}
.ins_solveCon3 .center_box .content .swiper_box ul li .centerInfo .right .icon {
  width: 0.56rem;
  height: 0.56rem;
}
.ins_solveCon3 .center_box .swiper_logo {
  width: 100%;
  height: auto;
  margin-top: 0.68rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_solveCon3 .center_box .swiper_logo ul {
  transition-timing-function: linear !important;
}
.ins_solveCon3 .center_box .swiper_logo ul li {
  width: 0%;
  height: auto;
}
.ins_solveCon3 .center_box .swiper_logo ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_solveCon3 .center_box .swiper_logo ul li .centerInfo .pb {
  padding-bottom: 47%;
  background: #F5F8FD;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_solveCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_solveCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_solveCon4 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_solveCon4 .center_box .content .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_solveCon4 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_solveCon4 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_solveCon4 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 61%;
}
.ins_solveCon4 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_solveCon4 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_solveCon4 .center_box .content .swiper_box ul li .centerInfo .word .t1 {
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solveCon4 .center_box .content .swiper_box ul li .centerInfo .word .t2 {
  color: #666666;
  margin-top: 0.24rem;
}
.ins_solveCon4 .center_box .content .swiper_box ul li .centerInfo:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_solveCon4 .center_box .content .swiper_box ul li .centerInfo:hover .word .t1 {
  color: var(--active_color);
}
.ins_solveCon4 .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_solveCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_solveCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_solveCon5 .center_box .content .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
}
.ins_solveCon5 .center_box .content .item_box .item {
  width: 100%;
  height: 100%;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_solveCon5 .center_box .content .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_solveCon5 .center_box .content .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_solveCon5 .center_box .content .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_solveCon5 .center_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_solveCon5 .center_box .content .item_box .item .word .t1 {
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solveCon5 .center_box .content .item_box .item .word .t2 {
  color: #666666;
  margin-top: 0.24rem;
}
.ins_solveCon5 .center_box .content .item_box .item .word .idx_more2 {
  margin-top: 0.52rem;
}
.ins_solveCon5 .center_box .content .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_solveCon5 .center_box .content .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_solveCon5 .center_box .idx_more {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_solveCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_solveCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_solveCon6 .center_box .select_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_solveCon6 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_solveCon6 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_solveCon6 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_solveCon6 .center_box .swiper_box ul li .centerInfo img {
  width: 100%;
  height: auto;
}
.ins_solveCon6 .center_box .swiper_box ul li.swiper-slide-active .centerInfo {
  opacity: 1;
}
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-radius: 0.16rem;
  background: var(--color_bg);
  overflow: hidden;
}
.ins_newCon1 .center_box .content .left_box {
  width: 54.5%;
}
.ins_newCon1 .center_box .content .left_box .img {
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newCon1 .center_box .content .left_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .content .right_box {
  width: 45.5%;
  padding: 0.51rem;
  background-image: url(../images/Mask\ group.png);
  background-size: 100% 100%;
}
.ins_newCon1 .center_box .content .right_box .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon1 .center_box .content .right_box .word_box .t1 {
  color: var(--active_color);
  font-weight: 700;
  text-decoration: underline;
}
.ins_newCon1 .center_box .content .right_box .word_box .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_newCon1 .center_box .content .right_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_newCon1 .center_box .content .right_box .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_newCon1 .center_box .content .right_box .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
}
.ins_newCon1 .center_box .content:hover .left_box .img img {
  transform: scale(1.03);
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_newCon2 .center_box .item_box .item {
  width: 100%;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 61.353%;
}
.ins_newCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_newCon2 .center_box .item_box .item .word .t1 {
  font-weight: 700;
  color: #1A1A1A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon2 .center_box .item_box .item .word .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_newCon2 .center_box .item_box .item .word .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_newCon2 .center_box .item_box .item .word .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
}
.ins_newCon2 .center_box .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon2 .center_box .item_box .item:hover .word .t1 {
  color: var(--active_color);
}
.ins_newCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_newCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-top: 1px solid #0000001A;
}
.ins_newCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon3 .center_box .item_box .item .left {
  width: 48.54%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 700;
}
.ins_newCon3 .center_box .item_box .item .left .word {
  width: fit-content;
  max-width: 40%;
}
.ins_newCon3 .center_box .item_box .item .left .icon {
  width: 42%;
}
.ins_newCon3 .center_box .item_box .item .left .icon .t2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon3 .center_box .item_box .item .right {
  width: 42%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.ins_newCon3 .center_box .item_box .item .right .list {
  width: fit-content;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_newCon3 .center_box .item_box .item .right .list .one {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_newCon3 .center_box .item_box .item .right .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
}
.ins_newCon3 .center_box .item_box .item .right .img {
  width: 40%;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newCon3 .center_box .item_box .item .right .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_newCon3 .center_box .item_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_newCon3 .center_box .item_box .item .left {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.32rem;
  }
  .ins_newCon3 .center_box .item_box .item .left .word {
    width: 100%;
    height: auto;
  }
  .ins_newCon3 .center_box .item_box .item .left .icon {
    width: 100%;
    height: auto;
  }
  .ins_newCon3 .center_box .item_box .item .right {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.32rem;
  }
  .ins_newCon3 .center_box .item_box .item .right .list {
    width: 100%;
    height: auto;
  }
  .ins_newCon3 .center_box .item_box .item .right .img {
    width: 100%;
    height: auto;
  }
}
.ins_newCon3 .center_box .idx_more3 {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_newCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_newCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  border-radius: 0.16rem;
  background: var(--color_bg);
  overflow: hidden;
}
.ins_newCon4 .center_box .content .left_box {
  width: 54.5%;
}
.ins_newCon4 .center_box .content .left_box .img {
  width: 100%;
  height: 100%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newCon4 .center_box .content .left_box .img 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_newCon4 .center_box .content .right_box {
  width: 45.5%;
  padding: 0.51rem;
  background-image: url(../images/Mask\ group.png);
  background-size: 100% 100%;
}
.ins_newCon4 .center_box .content .right_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.18rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon4 .center_box .content .right_box .list .one {
  width: fit-content;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_newCon4 .center_box .content .right_box .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
  min-width: 15px;
}
.ins_newCon4 .center_box .content .right_box .list i {
  width: 1px;
  height: 0.1rem;
  background: #0000001A;
}
.ins_newCon4 .center_box .content .right_box .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.24rem;
}
.ins_newCon4 .center_box .content .right_box .word_box .t1 {
  color: var(--active_color);
  font-weight: 700;
  text-decoration: underline;
}
.ins_newCon4 .center_box .content .right_box .word_box .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_newCon4 .center_box .content:hover .left_box .img img {
  transform: scale(1.03);
}
.ins_newCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.94rem;
  padding-bottom: 0.94rem;
  background-image: url(../images/z101.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.ins_newCon5::after {
  content: '';
  position: absolute;
  width: 78.64583333%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 128, 203, 0) 0%, #0080CB 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -2;
  top: 0;
  left: 0;
}
.ins_newCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon5 .center_box .icon {
  width: fit-content;
  border-radius: 61px;
  background: rgba(249, 190, 0, 0.6);
  backdrop-filter: blur(5px);
  color: #FFFFFF;
  padding: 0.08rem 0.32rem;
}
.ins_newCon5 .center_box .word {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #FFFFFF;
}
.ins_newCon5 .center_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.18rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.32rem;
}
.ins_newCon5 .center_box .list .one {
  width: fit-content;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_newCon5 .center_box .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
  min-width: 15px;
}
.ins_newCon5 .center_box .list .one span {
  color: #FFFFFF;
}
.ins_newCon5 .center_box .list i {
  width: 1px;
  height: 0.1rem;
  background: #0000001A;
}
.ins_newCon5 .center_box .idx_more3 {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.ins_newCon5 .center_box .idx_more3 .more {
  background: #FFFFFF;
  color: var(--active_color);
}
.ins_newCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_newCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon6 .center_box .select_box .swiper_select ul li .centerInfo {
  padding: 0.12rem 0.32rem;
}
.ins_newCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_newCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newCon6 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_newCon6 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_newCon6 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon6 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_newCon6 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.18rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newCon6 .center_box .item_box .item .word_box .list .one {
  width: fit-content;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  font-weight: 300;
}
.ins_newCon6 .center_box .item_box .item .word_box .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
  min-width: 15px;
}
.ins_newCon6 .center_box .item_box .item .word_box .list i {
  width: 1px;
  height: 0.1rem;
  background: #0000001A;
}
.ins_newCon6 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.24rem;
}
.ins_newCon6 .center_box .item_box .item .word_box .word .t1 {
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon6 .center_box .item_box .item .word_box .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newCon6 .center_box .item_box .item:hover .word_box .word .t1 {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_newCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.4rem;
}
.ins_newCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon7 .center_box .left_box {
  width: 64.375%;
}
.ins_newCon7 .center_box .left_box .video_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_newCon7 .center_box .left_box .video_box .icon {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 100px;
  background: #FFFFFF1A;
  backdrop-filter: blur(5px);
  position: absolute;
  z-index: 3;
  cursor: pointer;
  transform: translateY(-0.4rem);
}
.ins_newCon7 .center_box .left_box .video_box .img {
  width: 100%;
  height: auto;
}
.ins_newCon7 .center_box .left_box .video_box .img img {
  width: 100% !important;
  height: auto;
}
.ins_newCon7 .center_box .left_box .imgList {
  width: 100%;
  height: auto;
  gap: 0.16rem;
  margin-top: 0.4rem;
}
.ins_newCon7 .center_box .left_box .imgList .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_newCon7 .center_box .left_box .imgList .img img {
  width: 100% !important;
  height: auto;
}
.ins_newCon7 .center_box .left_box .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  background: linear-gradient(145deg, #D7E4F5 -73.23%, #EFF5FF 82.58%);
  border-radius: 0.18rem;
  padding: 0.4rem;
  position: relative;
  z-index: 1;
}
.ins_newCon7 .center_box .left_box .word_box .word {
  width: 100%;
  height: auto;
}
.ins_newCon7 .center_box .left_box .word_box .word span {
  display: contents;
  color: #1A1A1A;
}
.ins_newCon7 .center_box .left_box .word_box .name {
  width: 100%;
  height: auto;
  margin-top: 0.73rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.13rem;
}
.ins_newCon7 .center_box .left_box .word_box .name .na {
  width: fit-content;
}
.ins_newCon7 .center_box .left_box .word_box .name .na .t1 p {
  font-weight: 700;
  color: #1A1A1A;
}
.ins_newCon7 .center_box .left_box .word_box .name .icon {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 100px;
  overflow: hidden;
}
.ins_newCon7 .center_box .left_box .word_box .name .icon img {
  width: 100%;
  height: auto;
}
.ins_newCon7 .center_box .left_box .word_box .bg_img {
  width: 33%;
  position: absolute;
  z-index: 2;
  right: 0.38rem;
  bottom: 0;
}
.ins_newCon7 .center_box .left_box img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
}
.ins_newCon7 .center_box .left_box ul {
  list-style: unset;
  padding-left: 0.22rem;
}
.ins_newCon7 .center_box .left_box ul li {
  list-style: unset;
  font-size: var(--font18);
  color: #666666;
}
.ins_newCon7 .center_box .left_box .table {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  border: 1px solid #00000033;
  --borColor: #00000033;
}
.ins_newCon7 .center_box .left_box .table table {
  width: 100%;
  height: auto;
  background: #F5F8FD;
  table-layout: fixed;
}
.ins_newCon7 .center_box .left_box .table table tr {
  width: 100%;
  height: auto;
}
.ins_newCon7 .center_box .left_box .table table tr td {
  text-align: center;
  padding: 0.24rem;
  border-bottom: 1px solid var(--borColor);
  border-right: 1px solid var(--borColor);
  color: #666666;
  font-size: var(--font16);
}
.ins_newCon7 .center_box .left_box .table table tr td:last-child {
  border-right: 0;
}
.ins_newCon7 .center_box .left_box .table table thead {
  width: 100%;
  height: auto;
  background: #E6ECF0;
}
.ins_newCon7 .center_box .left_box .table table thead tr td {
  padding: 0.4rem 0.2rem;
  color: #1A1A1A;
  font-size: var(--font18);
  font-weight: 700;
}
.ins_newCon7 .center_box .left_box .table table tbody {
  width: 100%;
  height: auto;
  color: #666666;
}
.ins_newCon7 .center_box .left_box .table table tbody tr:last-child {
  border-bottom: 0;
}
.ins_newCon7 .center_box .left_box .table table tbody tr:last-child td {
  border-bottom: 0;
}
.ins_newCon7 .center_box .left_box .other_new {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_newCon7 .center_box .left_box .other_new .news {
  width: 100%;
  height: auto;
  font-size: var(--font18);
}
.ins_newCon7 .center_box .left_box .other_new .news a {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon7 .center_box .left_box .other_new .news a:hover {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_newCon7 .center_box .left_box .other_new .back {
  width: fit-content;
}
.ins_newCon7 .center_box .left_box .other_new .back a {
  padding: 0.12rem 0.32rem;
  border: 1px solid #0000001A;
  border-radius: 0.08rem;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon7 .center_box .left_box .other_new .back a:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_newCon7 .center_box .left_box .other_new {
    display: none;
  }
}
.ins_newCon7 .center_box .left_box .wordboxCon2 {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.12rem;
  padding: 0.4rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_newCon7 .center_box .left_box .wordboxCon2 .title p {
  font-weight: 700;
  color: #1A1A1A;
}
.ins_newCon7 .center_box .left_box .wordboxCon2 .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_newCon7 .center_box .left_box .wordboxCon2 .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_newCon7 .center_box .left_box .wordboxCon2 .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
}
.ins_newCon7 .center_box .left_box .wordboxCon2 .list .one span {
  font-size: var(--font18);
  color: #666666;
}
.ins_newCon7 .center_box .left_box .wordboxCon2 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.ins_newCon7 .center_box .left_box .wordboxCon2 .img_bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.ins_newCon7 .center_box .left_box .line {
  width: 100%;
  height: 1px;
  background: #0000001A;
}
.ins_newCon7 .center_box .right_box {
  width: 28.61111111%;
  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_newCon7 .center_box .right_box .content {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: var(--color_bg);
  padding: 0.4rem;
}
.ins_newCon7 .center_box .right_box .content .title {
  font-weight: 700;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon7 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.21rem;
  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_newCon7 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_newCon7 .center_box .right_box .content .item_box .item .img {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newCon7 .center_box .right_box .content .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_newCon7 .center_box .right_box .content .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_newCon7 .center_box .right_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_newCon7 .center_box .right_box .content .item_box .item .word .t1 {
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #1A1A1A;
}
.ins_newCon7 .center_box .right_box .content .item_box .item .word .t2 {
  margin-top: 0.12rem;
  color: #666666;
}
.ins_newCon7 .center_box .right_box .content .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_newCon7 .center_box .right_box .content .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon7 .center_box .right_box .content .list_box {
  width: 100%;
  height: auto;
}
.ins_newCon7 .center_box .right_box .content .list_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.24rem 0;
  border-bottom: 1px solid #0000001A;
}
.ins_newCon7 .center_box .right_box .content .list_box .list .img {
  width: 38%;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_newCon7 .center_box .right_box .content .list_box .list .img .pb {
  padding-bottom: 61%;
}
.ins_newCon7 .center_box .right_box .content .list_box .list .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_newCon7 .center_box .right_box .content .list_box .list .word {
  width: 55%;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_newCon7 .center_box .right_box .content .list_box .list:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon7 .center_box .right_box .content .list_box .list:hover .word {
  text-decoration: underline;
  color: var(--active_color);
}
.ins_newCon7 .center_box .right_box .content .list_box .list:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_newCon7 .center_box .right_box {
    display: none !important;
  }
}
.ins_chooseCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
}
.ins_chooseCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_chooseCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
  margin-top: 0.63rem;
}
.ins_chooseCon1 .center_box .item_box .item {
  background: #F5F8FD;
  padding: 0.32rem;
}
.ins_chooseCon1 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_chooseCon1 .center_box .item_box .item .top .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.ins_chooseCon1 .center_box .item_box .item .top .icon img {
  width: 100%;
  height: auto;
}
.ins_chooseCon1 .center_box .item_box .item .top .word {
  font-size: var(--font18);
  color: #CCCCCC;
}
.ins_chooseCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_chooseCon1 .center_box .item_box .item .word_box .t1 {
  font-weight: 700;
  min-height: calc(2em * 1.2);
  line-height: 1.2;
}
.ins_chooseCon1 .center_box .item_box .item .word_box .t2 {
  margin-top: 0.12rem;
  color: #666666;
}
.ins_chooseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_chooseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_chooseCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_chooseCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: #FFFFFF;
  overflow: hidden;
}
.ins_chooseCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_chooseCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_chooseCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_chooseCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  padding-bottom: 0.55rem;
}
.ins_chooseCon2 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_chooseCon2 .center_box .item_box .item .word_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 700;
}
.ins_chooseCon2 .center_box .item_box .item .word_box .word .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_chooseCon2 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.28rem;
  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_chooseCon2 .center_box .item_box .item .word_box .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.11rem;
}
.ins_chooseCon2 .center_box .item_box .item .word_box .list .one img {
  flex-shrink: 0;
  width: 0.18rem;
  transform: translateY(0.05rem);
}
.ins_chooseCon2 .center_box .item_box .item .word_box .list .one span {
  font-size: var(--font18);
}
.ins_chooseCon2 .center_box .item_box .item .word_box .list .one:last-child {
  padding-bottom: 0;
  border: 0;
}
.ins_chooseCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_chooseCon3 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_chooseCon3 .center_box .left_box {
  width: 37%;
}
.ins_chooseCon3 .center_box .left_box .icon {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  background: #F9BE0099;
  backdrop-filter: blur(5px);
  border-radius: 100px;
  color: #FFFFFF;
  font-size: var(--font14);
}
.ins_chooseCon3 .center_box .left_box .idx_title {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
}
.ins_chooseCon3 .center_box .right_box {
  width: 55.6%;
}
.ins_chooseCon3 .center_box .right_box .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_chooseCon3 .center_box .right_box .img_box .img {
  width: 100%;
  height: auto;
}
.ins_chooseCon3 .center_box .right_box .img_box .img img {
  width: 100%;
  height: auto;
}
.ins_chooseCon3 .center_box .right_box .img_box .icon {
  width: 0.41rem;
  height: 0.41rem;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  fill: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}
.ins_chooseCon3 .center_box .right_box .img_box .icon img {
  width: 100%;
  height: auto;
}
.ins_chooseCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_chooseCon4 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_chooseCon4 .center_box .left_box {
  width: 55.6%;
}
.ins_chooseCon4 .center_box .left_box .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_chooseCon4 .center_box .left_box .img_box .img {
  width: 100%;
  height: auto;
}
.ins_chooseCon4 .center_box .left_box .img_box .img img {
  width: 100%;
  height: auto;
}
.ins_chooseCon4 .center_box .left_box .img_box .icon {
  width: 0.41rem;
  height: 0.41rem;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  fill: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}
.ins_chooseCon4 .center_box .left_box .img_box .icon img {
  width: 100%;
  height: auto;
}
.ins_chooseCon4 .center_box .right_box {
  width: 37%;
}
.ins_chooseCon4 .center_box .right_box .icon {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  background: #F9BE0099;
  backdrop-filter: blur(5px);
  border-radius: 100px;
  color: #FFFFFF;
  font-size: var(--font14);
}
.ins_chooseCon4 .center_box .right_box .idx_title {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
}
.ins_distributorCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_distributorCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_distributorCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
  margin-top: 0.63rem;
}
.ins_distributorCon1 .center_box .item_box .item {
  background: #F5F8FD;
  padding: 0.32rem;
}
.ins_distributorCon1 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_distributorCon1 .center_box .item_box .item .top .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.ins_distributorCon1 .center_box .item_box .item .top .icon img {
  width: 100%;
  height: auto;
}
.ins_distributorCon1 .center_box .item_box .item .top .word {
  font-size: var(--font18);
  color: #CCCCCC;
}
.ins_distributorCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_distributorCon1 .center_box .item_box .item .word_box .t1 {
  font-weight: 700;
  min-height: calc(2em * 1.2);
  line-height: 1.2;
}
.ins_distributorCon1 .center_box .item_box .item .word_box .t2 {
  margin-top: 0.12rem;
  color: #666666;
}
.ins_distributorCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_distributorCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_distributorCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.8rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_distributorCon2 .center_box .item_box::before {
  content: '';
  position: absolute;
  width: 75%;
  height: 1px;
  border-bottom: 2px dashed #0000001A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.44rem;
  z-index: -1;
}
.ins_distributorCon2 .center_box .item_box .item {
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_distributorCon2 .center_box .item_box .item .icon1 {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_distributorCon2 .center_box .item_box .item .icon1 .icon {
  width: 0.88rem;
  height: 0.88rem;
  border-radius: 1000px;
  background: #AAE0FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ins_distributorCon2 .center_box .item_box .item .icon1 .icon::after {
  content: '';
  position: absolute;
  width: 0.76rem;
  height: 0.76rem;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 1000px;
}
.ins_distributorCon2 .center_box .item_box .item .icon1 .icon img {
  width: 0.32rem;
  height: 0.32rem;
}
.ins_distributorCon2 .center_box .item_box .item .icon1 i {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  background: var(--color_bg);
}
.ins_distributorCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  padding: 0 0.5rem;
}
.ins_distributorCon2 .center_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_distributorCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  font-size: var(--font18);
}
@media (max-width:990px) {
  .ins_distributorCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .ins_distributorCon2 .center_box .item_box::before {
    width: 1px;
    height: 75%;
    border-left: 2px dashed #0000001A;
    border-bottom: 0;
    left: 0.44rem;
    top: unset;
  }
  .ins_distributorCon2 .center_box .item_box .item {
    width: 100%;
    height: auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
  }
  .ins_distributorCon2 .center_box .item_box .item .word {
    width: 100%;
    height: auto;
    text-align: start;
    padding: 0;
    margin-top: 0;
  }
  .ins_distributorCon2 .center_box .item_box .item .word .t1 p {
    display: contents;
  }
}
.ins_distributorCon2 .bg_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_distributorCon2 .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_distributorCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_distributorCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_distributorCon3 .center_box .left_box {
  width: 36%;
  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-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.32rem;
}
.ins_distributorCon3 .center_box .left_box .content {
  width: 100%;
  height: auto;
}
.ins_distributorCon3 .center_box .left_box .content .title {
  font-weight: 700;
}
.ins_distributorCon3 .center_box .left_box .content .list {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_distributorCon3 .center_box .left_box .content .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.11rem;
}
.ins_distributorCon3 .center_box .left_box .content .list .one img {
  flex-shrink: 0;
  width: 0.18rem;
  transform: translateY(0.05rem);
}
.ins_distributorCon3 .center_box .left_box .content .list .one span {
  font-size: var(--font18);
}
@media (max-width:990px) {
  .ins_distributorCon3 .center_box .left_box {
    gap: 0.8rem;
  }
}
.ins_distributorCon3 .center_box .right_box {
  width: 59%;
  height: auto;
}
.ins_distributorCon3 .center_box .right_box .content {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_distributorCon3 .center_box .right_box .content .title {
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_distributorCon3 .center_box .right_box .content .title .t1 {
  font-weight: 700;
}
.ins_distributorCon3 .center_box .right_box .content .title .t2 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_distributorCon3 .center_box .right_box .content .word1 {
  width: 100%;
  height: auto;
}
.ins_distributorCon3 .center_box .right_box .content .word1 .t1 {
  font-weight: 700;
}
.ins_distributorCon3 .center_box .right_box .content .word1 .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_distributorCon3 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.24rem;
}
.ins_distributorCon3 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_distributorCon3 .center_box .right_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.04rem;
}
.ins_distributorCon3 .center_box .right_box .content .item_box .item .word i {
  color: #FC533C;
  font-style: unset;
}
.ins_distributorCon3 .center_box .right_box .content .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
}
.ins_distributorCon3 .center_box .right_box .content .item_box .item .icon input,
.ins_distributorCon3 .center_box .right_box .content .item_box .item .icon textarea {
  width: 100%;
  height: 0.47rem;
  min-height: 40px;
  border: 0;
  border-radius: 0.08rem;
  font-size: var(--font18);
  padding-left: 0.24rem;
}
.ins_distributorCon3 .center_box .right_box .content .item_box .item .icon textarea {
  min-height: 1.29rem;
  padding: 0.12rem 0.24rem;
}
.ins_distributorCon3 .center_box .right_box .content .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_distributorCon3 .center_box .right_box .content .idx_more .more {
  padding: 0.16rem 0.48rem;
}
.ins_distributorCon3 .bg_img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24.2708%;
}
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box {
  width: 36%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.32rem;
}
.ins_contactCon1 .center_box .left_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .left_box .idx_title .icon {
  font-size: var(--font18);
  color: var(--active_color);
}
.ins_contactCon1 .center_box .left_box .idx_title .t1 {
  margin-top: 0.24rem;
}
.ins_contactCon1 .center_box .left_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_contactCon1 .center_box .left_box .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.16rem;
  border-bottom: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.11rem;
}
.ins_contactCon1 .center_box .left_box .list .one img {
  flex-shrink: 0;
  width: 0.32rem;
  transform: translateY(0.05rem);
}
.ins_contactCon1 .center_box .left_box .list .one span {
  font-size: var(--font18);
}
.ins_contactCon1 .center_box .right_box {
  width: 59%;
  height: auto;
}
.ins_contactCon1 .center_box .right_box .content {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_contactCon1 .center_box .right_box .content .title {
  font-weight: 700;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_contactCon1 .center_box .right_box .content .word1 {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .right_box .content .word1 .t1 {
  font-weight: 700;
}
.ins_contactCon1 .center_box .right_box .content .word1 .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_contactCon1 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.24rem;
}
.ins_contactCon1 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .right_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.04rem;
}
.ins_contactCon1 .center_box .right_box .content .item_box .item .word i {
  color: #FC533C;
  font-style: unset;
}
.ins_contactCon1 .center_box .right_box .content .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
}
.ins_contactCon1 .center_box .right_box .content .item_box .item .icon input,
.ins_contactCon1 .center_box .right_box .content .item_box .item .icon textarea {
  width: 100%;
  height: 0.47rem;
  min-height: 40px;
  border: 0;
  border-radius: 0.08rem;
  font-size: var(--font18);
  padding-left: 0.24rem;
}
.ins_contactCon1 .center_box .right_box .content .item_box .item .icon textarea {
  min-height: 1.29rem;
  padding: 0.12rem 0.24rem;
}
.ins_contactCon1 .center_box .right_box .content .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_contactCon1 .center_box .right_box .content .idx_more .more {
  padding: 0.16rem 0.48rem;
}
.ins_contactCon1 .bg_img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24.2708%;
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .top_info {
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_contactCon2 .center_box .top_info .idx_title {
  width: fit-content;
}
.ins_contactCon2 .center_box .top_info .list_box {
  width: 32%;
  margin-top: 0.53rem;
}
.ins_contactCon2 .center_box .top_info .list_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.08rem;
}
.ins_contactCon2 .center_box .top_info .list_box .item .layui-form-select .layui-input {
  height: 0.55rem;
  min-height: 35px;
  background: none;
  border: 0;
  padding: 0 0.32rem;
  font-size: var(--font18);
  color: #666666;
}
.ins_contactCon2 .center_box .top_info .list_box .item .layui-form-select dl {
  top: 100% !important;
  bottom: unset !important;
}
.ins_contactCon2 .center_box .top_info .list_box .item .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  top: 30%;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: unset;
  right: 0.15rem;
  margin-top: unset !important;
}
.ins_contactCon2 .center_box .top_info .list_box .item .layui-form-select .layui-edge::after {
  content: '\e675';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font20);
}
@media (max-width:990px) {
  .ins_contactCon2 .center_box .top_info .list_box {
    width: 100%;
    height: auto;
  }
}
.ins_contactCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_contactCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_contactCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 57%;
}
.ins_contactCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_contactCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.4rem;
}
.ins_contactCon2 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_contactCon2 .center_box .item_box .item .word_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.11rem;
}
.ins_contactCon2 .center_box .item_box .item .word_box .list .one img {
  flex-shrink: 0;
  width: 0.24rem;
  transform: translateY(0.05rem);
}
.ins_contactCon2 .center_box .item_box .item .word_box .list .one span {
  font-size: var(--font18);
  color: #989898;
}
.ins_contactCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_contactCon3 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 3;
}
.ins_contactCon3 .content .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon3 .content .center_box .icon {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  border-radius: 100px;
  background: rgba(249, 190, 0, 0.6);
  backdrop-filter: blur(5px);
}
.ins_contactCon3 .content .center_box .t1 {
  font-weight: 700;
  line-height: 1;
}
.ins_contactCon3 .content .center_box .t2 {
  margin-top: 0.24rem;
}
.ins_contactCon3 .content .center_box .t2 a {
  display: contents;
  color: var(--active_color);
}
.ins_contactCon3 .content .center_box .idx_more {
  margin-top: 0.52rem;
  gap: 0.32rem;
}
.ins_contactCon3 .content .center_box .word2 {
  width: 100%;
  height: auto;
}
.ins_contactCon3 .content .center_box .word2 .time {
  margin-top: 0.24rem;
}
.ins_contactCon3 .banner_img.gradient {
  position: relative;
  z-index: 1;
}
.ins_contactCon3 .banner_img.gradient img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_contactCon3 .banner_img.gradient::after {
  content: '';
  position: absolute;
  width: 78.64583333%;
  height: 100%;
  opacity: 0.6;
  background: linear-gradient(90deg, #0080CB 0%, rgba(0, 128, 203, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  top: 0;
  left: 0;
}
.ins_settingsCon1 {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_settingsCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_settingsCon1 .center_box .list_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.53rem;
  position: relative;
  z-index: 5;
}
.ins_settingsCon1 .center_box .list_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.08rem;
}
.ins_settingsCon1 .center_box .list_box .item .layui-form-select .layui-input {
  height: 0.55rem;
  min-height: 35px;
  background: none;
  border: 0;
  padding: 0 0.32rem;
  font-size: var(--font18);
  color: #666666;
}
.ins_settingsCon1 .center_box .list_box .item .layui-form-select dl {
  top: 100% !important;
  bottom: unset !important;
}
.ins_settingsCon1 .center_box .list_box .item .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  top: 30%;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: unset;
  right: 0.15rem;
  margin-top: unset !important;
}
.ins_settingsCon1 .center_box .list_box .item .layui-form-select .layui-edge::after {
  content: '\e675';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font20);
}
@media (max-width:990px) {
  .ins_settingsCon1 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_settingsCon1 .center_box .list_box .item {
    width: 100%;
    height: auto;
  }
  .ins_settingsCon1 .center_box .list_box .item:last-child {
    grid-column: span 2;
  }
}
.ins_settingsCon1 .center_box .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.32rem;
  gap: 0.24rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_settingsCon1 .center_box .word_box .left {
  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_settingsCon1 .center_box .word_box .left .word {
  width: fit-content;
  font-size: var(--font18);
  color: #666666;
}
.ins_settingsCon1 .center_box .word_box .left .btn_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_settingsCon1 .center_box .word_box .left .btn_box .btn {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: var(--color_bg);
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: var(--font18);
  border-radius: 0.04rem;
}
.ins_settingsCon1 .center_box .word_box .left .btn_box .btn i {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-style: unset;
  font-size: var(--font16);
}
.ins_settingsCon1 .center_box .word_box .left .btn_box .btn i:hover {
  color: var(--active_color);
}
.ins_settingsCon1 .center_box .word_box .right {
  width: fit-content;
}
.ins_settingsCon1 .center_box .word_box .right .clear {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: var(--active_color);
  border-radius: 0.04rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_settingsCon1 .center_box .word_box .right .clear:hover {
  background: var(--active_color2);
}
.ins_settingsCon1 .center_box .sele_bxo {
  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: 1.2rem;
  margin-top: 0.4rem;
  position: relative;
  z-index: 1;
}
.ins_settingsCon1 .center_box .sele_bxo::after {
  content: '';
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 1px;
  display: inline-block;
  background: #0000001A;
  border-radius: 50%;
  margin-left: 0.12rem;
}
.ins_settingsCon1 .center_box .sele_bxo .sele {
  width: fit-content;
  font-size: var(--font24);
  color: #666666;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-bottom: 0.26rem;
}
.ins_settingsCon1 .center_box .sele_bxo .sele::after {
  content: '';
  width: 0%;
  position: absolute;
  bottom: -1px;
  height: 3px;
  display: inline-block;
  background: var(--active_color);
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_settingsCon1 .center_box .sele_bxo .sele.active {
  color: var(--active_color);
}
.ins_settingsCon1 .center_box .sele_bxo .sele.active::after {
  width: 100%;
}
.ins_laserwikiCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  padding-top: 1.4rem;
}
.ins_laserwikiCon1 .center_box {
  width: 100%;
  height: auto;
  gap: 0.52rem;
}
.ins_laserwikiCon1 .center_box .left_box {
  width: 25.8%;
  height: calc(100vh - var(--header-height) - 0.1rem);
  border-right: 1px solid #0000001A;
  position: sticky;
  top: calc(var(--header-height) + 0.1rem);
  padding-bottom: 1.4rem;
  padding-right: 0.2rem;
}
.ins_laserwikiCon1 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  padding-left: 0.32rem;
  font-size: var(--font24);
  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;
  font-weight: 700;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item .top i {
  font-size: var(--font16);
  position: absolute;
  left: 0;
  font-weight: normal;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-left: 0.32rem;
  padding-top: 0.2rem;
  display: none;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item .bot .one {
  width: 100%;
  height: auto;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item .bot .one .sub {
  width: fit-content;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  font-weight: 300;
  cursor: pointer;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item .bot .one .thr {
  width: fit-content;
  height: auto;
  padding-left: 0.16rem;
  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.12rem;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item .bot .one .thr .tow {
  font-size: var(--font18);
  color: #666666;
  font-weight: 300;
  cursor: pointer;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item .bot .one.active .sub {
  color: var(--active_color);
  font-weight: 700;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item .bot .one + .one {
  margin-top: 0.16rem;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item.active .bot {
  display: block;
}
.ins_laserwikiCon1 .center_box .left_box .item_box .item.active .top i {
  color: var(--active_color);
}
.ins_laserwikiCon1 .center_box .right_box {
  width: 71.8%;
  height: auto;
  padding-bottom: 0.88rem;
}
.ins_laserwikiCon1 .center_box .right_box .title {
  width: 100%;
  height: auto;
  font-weight: 700;
}
.ins_laserwikiCon1 .center_box .right_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.52rem;
}
.ins_laserwikiCon1 .center_box .right_box .content_info .content {
  width: 100%;
  height: auto;
  padding-bottom: 0.52rem;
  border-bottom: 1px solid #0000001A;
}
.ins_laserwikiCon1 .center_box .right_box .content_info .content .word {
  width: 100%;
  height: auto;
}
.ins_laserwikiCon1 .center_box .right_box .content_info .content .word .t1 {
  font-weight: 700;
}
.ins_laserwikiCon1 .center_box .right_box .content_info .content .word .t2 {
  margin-top: 0.16rem;
  font-weight: 300;
  color: #666666;
}
.ins_laserwikiCon1 .center_box .right_box .content_info .content .img_box {
  width: 91%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.16rem;
  margin-top: 0.24rem;
}
.ins_laserwikiCon1 .center_box .right_box .content_info .content .img_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_laserwikiCon1 .center_box .right_box .content_info .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.16rem;
}
.ins_laserwikiCon1 .center_box .right_box .content_info .content .list .one {
  width: fit-content;
  font-size: var(--font18);
  color: var(--active_color);
  text-decoration: underline;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_laserwikiCon1 .center_box .right_box .content_info .content .list .one:hover {
  color: var(--active_color2);
}
.ins_laserwikiCon1 .center_box .right_box .content_info .content:last-child {
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_laserwikiCon1 .center_box .left_box {
    position: relative;
    z-index: 1;
    top: unset;
    width: 100%;
    height: auto;
    border: 0;
    padding-bottom: 0;
  }
  .ins_laserwikiCon1 .center_box .left_box .item_box .item {
    display: none;
  }
  .ins_laserwikiCon1 .center_box .left_box .item_box .item.active {
    display: block;
  }
  .ins_laserwikiCon1 .center_box .left_box .item_box .item .top {
    font-size: var(--font36);
    padding-left: 0;
  }
  .ins_laserwikiCon1 .center_box .left_box .item_box .item .top i {
    display: none;
  }
  .ins_laserwikiCon1 .center_box .left_box .item_box .item .bot {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
  .ins_laserwikiCon1 .center_box .left_box .item_box .item .bot .one .sub {
    font-size: var(--font24);
  }
}
.ins_laserwikiCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  padding-top: 1.4rem;
}
.ins_laserwikiCon2 .center_box {
  width: 100%;
  height: auto;
  gap: 0.52rem;
}
.ins_laserwikiCon2 .center_box .left_box {
  width: 25.8%;
  height: calc(100vh - var(--header-height) - 0.1rem);
  border-right: 1px solid #0000001A;
  position: sticky;
  top: calc(var(--header-height) + 0.1rem);
  padding-bottom: 1.4rem;
}
.ins_laserwikiCon2 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  padding-left: 0.32rem;
  font-size: var(--font24);
  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;
  font-weight: 700;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item .top i {
  font-size: var(--font16);
  position: absolute;
  left: 0;
  font-weight: normal;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-left: 0.32rem;
  padding-top: 0.2rem;
  display: none;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item .bot .one {
  width: 100%;
  height: auto;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item .bot .one .sub {
  width: fit-content;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  font-weight: 300;
  cursor: pointer;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item .bot .one .thr {
  width: fit-content;
  height: auto;
  padding-left: 0.16rem;
  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.12rem;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item .bot .one .thr .tow {
  font-size: var(--font18);
  color: #666666;
  font-weight: 300;
  cursor: pointer;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item .bot .one.active .sub {
  color: var(--active_color);
  font-weight: 700;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item .bot .one + .one {
  margin-top: 0.16rem;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item.active .bot {
  display: block;
}
.ins_laserwikiCon2 .center_box .left_box .item_box .item.active .top i {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_laserwikiCon2 .center_box .left_box {
    display: none;
  }
}
.ins_laserwikiCon2 .center_box .right_box {
  width: 71.8%;
  height: auto;
  padding-bottom: 1.4rem;
}
.ins_laserwikiCon2 .center_box .right_box .title {
  width: 100%;
  height: auto;
  font-weight: 700;
}
.ins_laserwikiCon2 .center_box .right_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.52rem;
}
.ins_laserwikiCon2 .center_box .right_box .content_info .content {
  width: 100%;
  height: auto;
  padding-bottom: 0.91rem;
  border-bottom: 1px solid #0000001A;
}
.ins_laserwikiCon2 .center_box .right_box .content_info .content .subtitle {
  font-weight: 700;
}
.ins_laserwikiCon2 .center_box .right_box .content_info .content .cont_Box {
  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.52rem;
}
.ins_laserwikiCon2 .center_box .right_box .content_info .content .cont_Box .cont1 {
  width: 100%;
  height: auto;
}
.ins_laserwikiCon2 .center_box .right_box .content_info .content .cont_Box .cont1 .word {
  width: 100%;
  height: auto;
}
.ins_laserwikiCon2 .center_box .right_box .content_info .content .cont_Box .cont1 .word .t1 {
  font-weight: 700;
}
.ins_laserwikiCon2 .center_box .right_box .content_info .content .cont_Box .cont1 .word .t2 {
  margin-top: 0.12rem;
  font-weight: 300;
  color: #666666;
}
.ins_laserwikiCon2 .center_box .right_box .content_info .content .cont_Box .cont1 .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  margin-top: 0.24rem;
  overflow: hidden;
}
.ins_laserwikiCon2 .center_box .right_box .content_info .content .cont_Box .cont1 .img img {
  width: 100%;
  height: auto;
}
.ins_laserwikiCon2 .center_box .right_box .btn_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.ins_laserwikiCon2 .center_box .right_box .btn_box .btn {
  width: fit-content;
  max-width: 45%;
}
.ins_laserwikiCon2 .center_box .right_box .btn_box .btn a {
  width: fit-content;
  font-size: var(--font18);
  line-height: 1.5;
}
.ins_laserwikiCon2 .center_box .right_box .btn_box .btn .icon {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  margin-top: 0.32rem;
  border-radius: 100px;
  border: 1px solid #DDDDDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font18);
  line-height: 1.5;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_laserwikiCon2 .center_box .right_box .btn_box .btn .icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
.ins_laserwikiCon2 .center_box .right_box .btn_box .btn .icon i {
  font-size: var(--font14);
}
@media (max-width:990px) {
  .ins_laserwikiCon2 .center_box .right_box .btn_box {
    display: none;
  }
}
.wordboxCon1 {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.12rem;
  padding: 0.4rem;
}
.wordboxCon1 .title p {
  font-weight: 700;
  color: #1A1A1A;
}
.wordboxCon1 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.64rem 0;
  margin-top: 0.33rem;
  overflow: hidden;
}
.wordboxCon1 .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.wordboxCon1 .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0000001A;
  transform: translateY(0.32rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wordboxCon1 .item_box .item .name {
  font-size: var(--font18);
  color: #666666;
}
.wordboxCon1 .item_box .item .one_box {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  line-height: 1.6;
  font-size: var(--font18);
}
.wordboxCon1 .item_box .item .one_box .one {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.06rem;
  cursor: pointer;
}
.wordboxCon1 .item_box .item .one_box .one i {
  font-size: var(--font20);
}
.wordboxCon1 .item_box .item .one_box .one:hover {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_thunderCon1 {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_thunderCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_thunderCon1 .center_box .list_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
  margin-top: 0.53rem;
  position: relative;
  z-index: 5;
}
.ins_thunderCon1 .center_box .list_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.08rem;
}
.ins_thunderCon1 .center_box .list_box .item .layui-form-select .layui-input {
  height: 0.55rem;
  min-height: 35px;
  background: none;
  border: 0;
  padding: 0 0.32rem;
  font-size: var(--font18);
  color: #666666;
}
.ins_thunderCon1 .center_box .list_box .item .layui-form-select dl {
  top: 100% !important;
  bottom: unset !important;
}
.ins_thunderCon1 .center_box .list_box .item .layui-form-select .layui-edge {
  width: 0.2rem;
  height: 0.2rem;
  top: 30%;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-style: unset;
  right: 0.15rem;
  margin-top: unset !important;
}
.ins_thunderCon1 .center_box .list_box .item .layui-form-select .layui-edge::after {
  content: '\e675';
  position: absolute;
  width: auto;
  height: auto;
  font-family: "iconfont";
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font20);
}
@media (max-width:990px) {
  .ins_thunderCon1 .center_box .list_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .ins_thunderCon1 .center_box .list_box .item {
    width: 100%;
    height: auto;
  }
  .ins_thunderCon1 .center_box .list_box .item:last-child {
    grid-column: span 2;
  }
}
.ins_thunderCon1 .center_box .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.32rem;
  gap: 0.24rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_thunderCon1 .center_box .word_box .left {
  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_thunderCon1 .center_box .word_box .left .word {
  width: fit-content;
  font-size: var(--font18);
  color: #666666;
}
.ins_thunderCon1 .center_box .word_box .left .btn_box {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_thunderCon1 .center_box .word_box .left .btn_box .btn {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: var(--color_bg);
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: var(--font18);
  border-radius: 0.04rem;
}
.ins_thunderCon1 .center_box .word_box .left .btn_box .btn i {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-style: unset;
  font-size: var(--font16);
}
.ins_thunderCon1 .center_box .word_box .left .btn_box .btn i:hover {
  color: var(--active_color);
}
.ins_thunderCon1 .center_box .word_box .right {
  width: fit-content;
}
.ins_thunderCon1 .center_box .word_box .right .clear {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  background: var(--active_color);
  border-radius: 0.04rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_thunderCon1 .center_box .word_box .right .clear:hover {
  background: var(--active_color2);
}
.ins_thunderCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
  margin-top: 0.32rem;
  z-index: 1;
  position: relative;
}
.ins_thunderCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_thunderCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_thunderCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_thunderCon1 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_thunderCon1 .center_box .item_box .item .wordBox {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_thunderCon1 .center_box .item_box .item .wordBox .word {
  width: 100%;
  height: auto;
}
.ins_thunderCon1 .center_box .item_box .item .wordBox .word .t1 {
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_thunderCon1 .center_box .item_box .item .wordBox .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_thunderCon1 .center_box .item_box .item .wordBox .icon {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_thunderCon1 .center_box .item_box .item .wordBox .icon .but {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  border-radius: 61px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  font-size: 12px;
  color: #666;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_thunderCon1 .center_box .item_box .item .wordBox .icon .but:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.ins_thunderCon1 .center_box .item_box .item:hover .wordBox .t1 {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_thunderCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.8rem;
  padding-bottom: 1.4rem;
}
.ins_thunderCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_thunderCon2 .center_box .left_box {
  width: 64.375%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.52rem;
}
.ins_thunderCon2 .center_box .left_box .content {
  width: 100%;
  height: auto;
  padding-bottom: 0.52rem;
  border-bottom: 1px solid #0000001A;
}
.ins_thunderCon2 .center_box .left_box .content .video_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_thunderCon2 .center_box .left_box .content .video_box .icon {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 100px;
  background: #FFFFFF1A;
  backdrop-filter: blur(5px);
  position: absolute;
  z-index: 3;
  cursor: pointer;
}
.ins_thunderCon2 .center_box .left_box .content .video_box .img {
  width: 100%;
  height: auto;
}
.ins_thunderCon2 .center_box .left_box .content .video_box .img img {
  width: 100% !important;
  height: auto;
}
.ins_thunderCon2 .center_box .left_box .content .video_box iframe {
  width: 100%;
  height: 6rem;
}
.ins_thunderCon2 .center_box .left_box .content .imgList {
  width: 100%;
  height: auto;
  gap: 0.16rem;
  margin-top: 0.4rem;
}
.ins_thunderCon2 .center_box .left_box .content .imgList .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_thunderCon2 .center_box .left_box .content .imgList .img img {
  width: 100% !important;
  height: auto;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.12rem;
  padding: 0.4rem;
  margin-top: 0.32rem;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .title p {
  font-weight: 700;
  color: #1A1A1A;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.64rem 0;
  margin-top: 0.33rem;
  overflow: hidden;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .item_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0000001A;
  transform: translateY(0.32rem);
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .item_box .item .name {
  font-size: var(--font18);
  color: #666666;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .item_box .item .one_box {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  line-height: 1.6;
  font-size: var(--font18);
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .item_box .item .one_box .one {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.06rem;
  cursor: pointer;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .item_box .item .one_box .one i {
  font-size: var(--font20);
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .item_box .item .one_box .one:hover {
  color: var(--active_color);
  text-decoration: underline;
}
@media (max-width:990px) {
  .ins_thunderCon2 .center_box .left_box .content .wordboxCon1 .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon2 {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.12rem;
  padding: 0.4rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 0.52rem;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon2 .title p {
  font-weight: 700;
  color: #1A1A1A;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon2 .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon2 .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon2 .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon2 .list .one span {
  font-size: var(--font18);
  color: #666666;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon2 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.ins_thunderCon2 .center_box .left_box .content .wordboxCon2 .img_bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.ins_thunderCon2 .center_box .left_box .content .word_box1 {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_thunderCon2 .center_box .left_box .content .word_box1 .t1 {
  font-weight: 700;
}
.ins_thunderCon2 .center_box .left_box .content .word_box1 .t2 {
  margin-top: 0.32rem;
  color: #666666;
}
.ins_thunderCon2 .center_box .left_box .content .select_box {
  width: 100%;
  height: auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.ins_thunderCon2 .center_box .left_box .content .select_box .swiper_select {
  width: fit-content;
  height: auto;
}
.ins_thunderCon2 .center_box .left_box .content .select_box .swiper_select ul li .centerInfo {
  padding: 0.12rem 0.3rem;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_thunderCon2 .center_box .left_box .content .select_box .swiper_select ul li {
  position: relative;
  z-index: 1;
}
.ins_thunderCon2 .center_box .left_box .content .select_box .swiper_select ul li::after {
  content: '';
  transform: translateY(0.07rem);
  position: absolute;
  width: calc(100% - 2px);
  height: 2px;
  background: #3333333f;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  bottom: 0;
  border-radius: 100px;
}
.ins_thunderCon2 .center_box .left_box .content .select_box .swiper_select ul li::before {
  content: '';
  transform: translateY(0.07rem);
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--active_color2);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  bottom: 0;
  border-radius: 100px;
  z-index: 3;
}
.ins_thunderCon2 .center_box .left_box .content .select_box .swiper_select ul li.line::before {
  width: calc(100% - 2px);
}
.ins_thunderCon2 .center_box .left_box .content .select_box .swiper_select ul li.active::before {
  width: calc(100% - 2px);
  transition: all linear 5s;
}
.ins_thunderCon2 .center_box .left_box .content .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox {
  width: 100%;
  height: auto;
  display: none;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox.active {
  display: block;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox .word_tit {
  width: 100%;
  height: auto;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox .word_tit .t1 {
  font-weight: 700;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox .word_tit .t2 {
  color: #666666;
  margin-top: 0.32rem;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox .img_box {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  gap: 0.32rem;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox .img_box .imgs {
  width: 100%;
  height: auto;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox .img_box .imgs .img {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox .img_box .imgs .img img {
  width: 100%;
  height: auto;
}
.ins_thunderCon2 .center_box .left_box .content .content_info .contBox .img_box .imgs .word {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  font-size: var(--font18);
  color: #666666;
}
.ins_thunderCon2 .center_box .left_box .content .word_tit2 {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
}
.ins_thunderCon2 .center_box .left_box .content .word_tit2 .t1 {
  font-weight: 700;
}
.ins_thunderCon2 .center_box .left_box .content .word_tit2 .t2 {
  color: #666666;
  margin-top: 0.32rem;
}
.ins_thunderCon2 .center_box .left_box .content:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_thunderCon2 .center_box .right_box {
  width: 28.61111111%;
  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_thunderCon2 .center_box .right_box .content {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  background: var(--color_bg);
  padding: 0.4rem;
}
.ins_thunderCon2 .center_box .right_box .content .title {
  font-weight: 700;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #0000001A;
}
.ins_thunderCon2 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #0000001A;
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item .img {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item .img .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item .word .t1 {
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #1A1A1A;
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item .word .t2 {
  margin-top: 0.12rem;
  color: #666666;
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item .word .idx_more2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_thunderCon2 .center_box .right_box .content .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_thunderCon2 .center_box .right_box .content .list_box {
  width: 100%;
  height: auto;
}
.ins_thunderCon2 .center_box .right_box .content .list_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.24rem 0;
  border-bottom: 1px solid #0000001A;
}
.ins_thunderCon2 .center_box .right_box .content .list_box .list .img {
  width: 38%;
  border-radius: 0.08rem;
  overflow: hidden;
}
.ins_thunderCon2 .center_box .right_box .content .list_box .list .img .pb {
  padding-bottom: 61%;
}
.ins_thunderCon2 .center_box .right_box .content .list_box .list .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_thunderCon2 .center_box .right_box .content .list_box .list .word {
  width: 55%;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_thunderCon2 .center_box .right_box .content .list_box .list:hover .img .pb .ab img {
  transform: scale(1.03);
}
.ins_thunderCon2 .center_box .right_box .content .list_box .list:hover .word {
  text-decoration: underline;
  color: var(--active_color);
}
.ins_thunderCon2 .center_box .right_box .content .list_box .list:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width:990px) {
  .ins_thunderCon2 .center_box .right_box {
    display: none !important;
  }
}
.ins_thunderCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_thunderCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_thunderCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_thunderCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.ins_thunderCon3 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
.ins_thunderCon3 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_thunderCon3 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_thunderCon3 .center_box .item_box .item .word_box {
  width: 100%;
  height: 100%;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.26rem;
}
.ins_thunderCon3 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_thunderCon3 .center_box .item_box .item .word_box .word .t1 {
  font-weight: 700;
}
.ins_thunderCon3 .center_box .item_box .item .word_box .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_thunderCon3 .center_box .item_box .item .word_box .word .t2 a {
  display: inline-block;
  font-weight: 700;
}
.ins_thunderCon3 .center_box .item_box .item .word_box .idx_more2 {
  width: fit-content;
}
.ins_videoCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--color_bg);
}
.ins_videoCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_videoCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0rem 0.6rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_videoCon1 .center_box .item_box .item {
  font-size: var(--font18);
  padding: 0.28rem 0;
  color: #666;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_videoCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0px;
  height: 2px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_videoCon1 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_videoCon1 .center_box .item_box .item.active::after {
  width: 100%;
  background: var(--active_color);
}
@media (max-width:1280px) {
  .ins_videoCon1 .center_box .item_box {
    gap: 0 0.4rem;
  }
  .ins_videoCon1 .center_box .item_box .item {
    font-size: var(--font16);
  }
}
@media (max-width:990px) {
  .ins_videoCon1 .center_box .item_box {
    display: none;
  }
}
.ins_videoCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_videoCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_videoCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_videoCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  background: linear-gradient(0deg, #F5F8FD 0%, #F5F8FD 100%), url(<path-to-image>) lightgray -40.6px 0px / 117.729% 119.081% no-repeat;
}
.ins_videoCon2 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_videoCon2 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_videoCon2 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_videoCon2 .center_box .item_box .item .img .icon {
  position: absolute;
  z-index: 5;
  width: 0.41rem;
  height: 0.41rem;
  border-radius: 100px;
  overflow: hidden;
  cursor: pointer;
  fill: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}
.ins_videoCon2 .center_box .item_box .item .img .icon img {
  width: 100%;
  height: auto;
}
.ins_videoCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_videoCon2 .center_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_videoCon2 .center_box .item_box .item .word .t2 {
  color: #666666;
  margin-top: 0.16rem;
}
.ins_blogCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_blogCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_blogCon1 .center_box .select_box {
  margin-top: 0;
}
.ins_blogCon1 .center_box .select_box .swiper_select ul li .centerInfo {
  padding: 0.12rem 0.32rem;
}
.ins_blogCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_blogCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_blogCon1 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_blogCon1 .center_box .item_box .item .img .icon {
  width: fit-content;
  padding: 0.08rem 0.24rem;
  border-radius: 0.16rem 0;
  background: rgba(249, 190, 0, 0.6);
  backdrop-filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  color: #FFFFFF;
}
.ins_blogCon1 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_blogCon1 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_blogCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_blogCon1 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.18rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_blogCon1 .center_box .item_box .item .word_box .list .one {
  width: fit-content;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
  font-weight: 300;
}
.ins_blogCon1 .center_box .item_box .item .word_box .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
  min-width: 15px;
}
.ins_blogCon1 .center_box .item_box .item .word_box .list i {
  width: 1px;
  height: 0.1rem;
  background: #0000001A;
}
.ins_blogCon1 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.24rem;
}
.ins_blogCon1 .center_box .item_box .item .word_box .word .t1 {
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_blogCon1 .center_box .item_box .item .word_box .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ins_blogCon1 .center_box .item_box .item:hover .word_box .word .t1 {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_fqaCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.4rem;
}
.ins_fqaCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_fqaCon1 .center_box .left_box {
  width: 25.8%;
  height: calc(100vh - var(--header-height) - 0.1rem);
  border-right: 1px solid #0000001A;
  position: sticky;
  top: calc(var(--header-height) + 0.1rem);
  padding-bottom: 1.4rem;
}
.ins_fqaCon1 .center_box .left_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_fqaCon1 .center_box .left_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  padding-left: 0.32rem;
  font-size: var(--font24);
  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;
  font-weight: 700;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .top i {
  font-size: var(--font16);
  position: absolute;
  left: 0;
  font-weight: normal;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-left: 0.32rem;
  padding-top: 0.2rem;
  display: none;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .one {
  width: 100%;
  height: auto;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .one .sub {
  width: fit-content;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  font-weight: 300;
  cursor: pointer;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .one .thr {
  width: fit-content;
  height: auto;
  padding-left: 0.16rem;
  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.12rem;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .one .thr .tow {
  font-size: var(--font18);
  color: #666666;
  font-weight: 300;
  cursor: pointer;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .one.active .sub {
  color: var(--active_color);
  font-weight: 700;
}
.ins_fqaCon1 .center_box .left_box .item_box .item .bot .one + .one {
  margin-top: 0.16rem;
}
.ins_fqaCon1 .center_box .left_box .item_box .item.active .bot {
  display: block;
}
.ins_fqaCon1 .center_box .left_box .item_box .item.active .top i {
  color: var(--active_color);
}
.ins_fqaCon1 .center_box .right_box {
  width: 71.8%;
  height: auto;
  padding-bottom: 1.4rem;
}
.ins_fqaCon1 .center_box .right_box .title {
  width: 100%;
  height: auto;
  font-weight: 700;
}
.ins_fqaCon1 .center_box .right_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #0000001A;
}
.ins_fqaCon1 .center_box .right_box .content_info .content {
  width: 100%;
  height: auto;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .word {
  width: 100%;
  height: auto;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .word .t1 {
  font-weight: 700;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.24rem;
  padding: 0 0.4rem;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.32rem;
  padding: 0.4rem 0;
  cursor: pointer;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top span {
  font-size: var(--font24);
  font-weight: 700;
  max-width: 70%;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top i {
  width: 0.32rem;
  height: 0.32rem;
  min-width: 28px;
  min-height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: 1px solid var(--active_color);
  border-radius: 100px;
  position: relative;
  z-index: 1;
  --bgColor: #FFF;
  background: var(--active_color);
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top i::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--bgColor);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .top i::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--bgColor);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  transform: rotate(90deg);
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.23rem;
  padding-bottom: 0.4rem;
  border-top: 1px solid #0000001A;
  color: #666666;
  display: none;
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item.active .top i {
  background: none;
  --bgColor: var(--active_color);
}
.ins_fqaCon1 .center_box .right_box .content_info .content .item_box .item.active .top i::before {
  transform: rotate(0);
}
.ins_fqaCon1 .center_box .right_box .content_info .content:last-child {
  border-bottom: 0;
}
.ins_fqaCon1 .center_box .right_box .btn_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.4rem;
}
.ins_fqaCon1 .center_box .right_box .btn_box .btn {
  width: fit-content;
  max-width: 45%;
}
.ins_fqaCon1 .center_box .right_box .btn_box .btn a {
  width: fit-content;
  font-size: var(--font18);
  line-height: 1.5;
}
.ins_fqaCon1 .center_box .right_box .btn_box .btn .icon {
  width: fit-content;
  padding: 0.12rem 0.32rem;
  margin-top: 0.32rem;
  border-radius: 100px;
  border: 1px solid #DDDDDD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.24rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font18);
  line-height: 1.5;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_fqaCon1 .center_box .right_box .btn_box .btn .icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #FFFFFF;
}
.ins_fqaCon1 .center_box .right_box .btn_box .btn .icon i {
  font-size: var(--font14);
}
@media (max-width:990px) {
  .ins_fqaCon1 .center_box .left_box {
    position: relative;
    z-index: 1;
    top: unset;
    width: 100%;
    height: auto;
    border: 0;
    padding-bottom: 0;
  }
  .ins_fqaCon1 .center_box .left_box .item_box .item {
    display: none;
  }
  .ins_fqaCon1 .center_box .left_box .item_box .item.active {
    display: block;
  }
  .ins_fqaCon1 .center_box .left_box .item_box .item .top {
    font-size: var(--font36);
    padding-left: 0;
  }
  .ins_fqaCon1 .center_box .left_box .item_box .item .top i {
    display: none;
  }
  .ins_fqaCon1 .center_box .left_box .item_box .item .bot {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
  .ins_fqaCon1 .center_box .left_box .item_box .item .bot .one .sub {
    font-size: var(--font24);
  }
  .ins_fqaCon1 .center_box .right_box .btn_box {
    display: none;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1.2rem 0;
  background: #F8F9FA;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon3 .center_box .left_box {
  width: 38.56%;
}
.ins_aboutCon3 .center_box .left_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .left_box .idx_title .t1 {
  line-height: 1;
}
.ins_aboutCon3 .center_box .left_box .idx_title .t3 {
  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;
  line-height: 1.25;
}
.ins_aboutCon3 .center_box .right_box {
  width: 55.416%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_aboutCon3 .center_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .right_box .icon {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 100px;
  background: #FFFFFF1A;
  backdrop-filter: blur(5px);
  position: absolute;
  z-index: 3;
  cursor: pointer;
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 2.57rem;
  padding-top: 2.81rem;
  background-image: url(../images/img/z19.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.ins_aboutCon4 .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_aboutCon4 .center_box .content {
  width: 35%;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon4 .center_box .content .icon {
  width: 0.8rem;
  height: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon4 .center_box .content .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.16rem;
}
.ins_aboutCon4 .center_box .content .word .t1 {
  font-weight: 700;
}
.ins_aboutCon4 .center_box .content .word .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
}
.ins_aboutCon4 .center_box .line {
  width: 1px;
  height: auto;
  background: #FFFFFF;
  opacity: 0.4;
}
@media (max-width:990px) {
  .ins_aboutCon4 .center_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.32rem;
  }
  .ins_aboutCon4 .center_box .content {
    width: 100%;
    height: auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    border: 1px solid #ffffff75;
    padding: 0.32rem;
    border-radius: 0.16rem;
  }
  .ins_aboutCon4 .center_box .content * {
    text-align: start;
  }
  .ins_aboutCon4 .center_box .icon {
    width: 100%;
    height: 1px;
    display: none;
  }
}
@media (max-width:990px) {
  .ins_aboutCon4 {
    padding: 1.4rem 0;
    background-attachment: unset;
  }
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_aboutCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .content_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_aboutCon5 .center_box .content_info .content {
  width: 100%;
  height: auto;
  display: none;
}
.ins_aboutCon5 .center_box .content_info .content .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
  margin-top: 0.32rem;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item {
  width: 100%;
  height: auto;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item .wordBox {
  width: 100%;
  height: auto;
  padding: 0.32rem;
  padding-bottom: 0.52rem;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item .wordBox .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item .wordBox .word .t1 {
  font-weight: 700;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item .wordBox .word .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item .wordBox .icon {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.ins_aboutCon5 .center_box .content_info .content .item_box .item .wordBox .icon .but {
  width: fit-content;
  padding: 0.08rem 0.16rem;
  border-radius: 61px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  font-size: 12px;
  color: #666;
  font-weight: 500;
}
.ins_aboutCon5 .center_box .content_info .content.active {
  display: block;
}
.ins_aboutCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_aboutCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon6 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  background: var(--color_bg);
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_aboutCon6 .center_box .content .left_box {
  width: 65.8%;
}
.ins_aboutCon6 .center_box .content .left_box .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ins_aboutCon6 .center_box .content .left_box .img img {
  width: 100%;
  height: 100%;
}
.ins_aboutCon6 .center_box .content .right_box {
  width: 34.2%;
  padding: 0.52rem;
}
.ins_aboutCon6 .center_box .content .right_box .item_box {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.ins_aboutCon6 .center_box .content .right_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0.3rem 0;
  border-bottom: 1px solid #0000001A;
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_aboutCon6 .center_box .content .right_box .item_box .item .icon {
  width: 100%;
  height: auto;
  font-size: var(--font32);
  font-weight: 700;
}
.ins_aboutCon6 .center_box .content .right_box .item_box .item .icon span {
  color: var(--active_color2);
}
.ins_aboutCon6 .center_box .content .right_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.16rem;
  color: #666666;
  font-size: var(--font18);
}
.ins_aboutCon6 .center_box .content .right_box .item_box .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.ins_aboutCon6 .center_box .content .right_box .item_box .item:first-child {
  padding-top: 0;
}
.ins_aboutCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 1.4rem;
}
.ins_aboutCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon7 .center_box .top_info {
  width: 100%;
  height: auto;
}
.ins_aboutCon7 .center_box .top_info .idx_title {
  width: 58%;
}
.ins_aboutCon7 .center_box .top_info .icon_box {
  width: fit-content;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_aboutCon7 .center_box .top_info .icon_box .icon {
  width: 2.2rem;
  min-width: 150px;
}
.ins_aboutCon7 .center_box .top_info .icon_box .word {
  position: absolute;
  z-index: 5;
  width: 60%;
  text-align: center;
}
.ins_aboutCon7 .center_box .top_info .icon_box .word .t1 {
  font-weight: 700;
}
.ins_aboutCon7 .center_box .top_info .icon_box .word .t2 {
  margin-top: 0.08rem;
  color: #666666;
}
.ins_aboutCon7 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_aboutCon7 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_aboutCon7 .center_box .content .swiper_box ul li {
  width: 30%;
}
.ins_aboutCon7 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: var(--color_bg);
  border-radius: 0.16rem;
  padding: 0.59rem;
  padding-bottom: 0.32rem;
}
.ins_aboutCon7 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon7 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 141%;
}
.ins_aboutCon7 .center_box .content .swiper_box ul li .centerInfo .word {
  margin-top: 0.24rem;
  font-size: var(--font24);
  color: #666666;
}
.ins_aboutCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-top: 1.4rem;
  padding-bottom: 2.9rem;
}
.ins_aboutCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon8 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_aboutCon8 .center_box .content::after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 1px;
  background: #0000001a;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0.46rem;
  z-index: -1;
}
.ins_aboutCon8 .center_box .content .swiper_icon {
  width: 0.52rem;
  height: 0.52rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #CCCCCC;
  border-radius: 100px;
  position: absolute;
  top: 0.2rem;
  background: #F5F8FD;
}
.ins_aboutCon8 .center_box .content .swiper_icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon8 .center_box .content .swiper_icon.next {
  left: calc(100% + 0.24rem);
}
.ins_aboutCon8 .center_box .content .swiper_icon.prev {
  right: calc(100% + 0.24rem);
}
.ins_aboutCon8 .center_box .content .swiper_icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_aboutCon8 .center_box .content .swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
.ins_aboutCon8 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_aboutCon8 .center_box .content .swiper_box ul li {
  width: fit-content;
}
.ins_aboutCon8 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_aboutCon8 .center_box .content .swiper_box ul li .centerInfo .number {
  font-size: var(--font32);
  color: var(--active_color);
  font-weight: 700;
}
.ins_aboutCon8 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  color: #666666;
  margin-top: 0.32rem;
}
@media (max-width:990px) {
  .ins_aboutCon8 .center_box .content::after {
    top: 0.6rem;
  }
}
.ins_aboutCon8 .img_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_aboutCon8 .img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon8 .idxPageHide {
  position: absolute;
  bottom: 0.4rem;
  z-index: 5;
}
.ins_aboutCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_aboutCon9 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon9 .center_box .top_info {
  width: 100%;
  height: auto;
}
.ins_aboutCon9 .center_box .top_info .idx_title {
  width: 45%;
}
.ins_aboutCon9 .center_box .top_info .idx_title .t3 {
  margin-top: 0;
}
.ins_aboutCon9 .center_box .top_info .idx_title .idx_more2 {
  margin-top: 0.32rem;
}
.ins_aboutCon9 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_aboutCon9 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_aboutCon9 .center_box .content .swiper_box ul li {
  width: 30%;
}
.ins_aboutCon9 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: var(--color_bg);
  border-radius: 0.16rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon9 .center_box .content .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.47rem;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 128, 203, 0) 0%, #0080CB 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
  bottom: 0;
  left: 0;
  z-index: 4;
}
.ins_aboutCon9 .center_box .content .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon9 .center_box .content .swiper_box ul li .centerInfo .img .pb {
  padding-bottom: 71%;
}
.ins_aboutCon9 .center_box .content .swiper_box ul li .centerInfo .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon9 .center_box .content .swiper_box ul li .centerInfo .word {
  margin-top: 0.24rem;
  font-size: var(--font24);
  color: #FFFFFF;
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  padding: 0.24rem;
}
.ins_aboutCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: linear-gradient(100deg, #CBDCF9 24.66%, #F0F6FF 101.06%);
}
.ins_aboutCon10 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.77rem;
}
.ins_aboutCon10 .center_box .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 6;
  top: 0;
  left: 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;
  gap: 0.32rem;
}
.ins_aboutCon10 .center_box .img_map {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 8;
}
.ins_aboutCon10 .center_box .img_map .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon10 .center_box .img_map .img img {
  width: 100%;
  height: auto;
}
.ins_aboutCon10 .center_box .img_map .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.ins_aboutCon10 .center_box .img_map .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}
.ins_aboutCon10 .center_box .img_map .item_box .item img {
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  min-width: 15px;
  min-height: 15px;
  max-width: unset;
  max-height: unset;
}
.ins_aboutCon10 .center_box .img_map .item_box .item span {
  width: max-content;
  bottom: 0.3rem;
  font-size: var(--font18);
  font-weight: 700;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon10 .center_box .img_map .item_box .item:hover {
  z-index: 5;
}
.ins_aboutCon10 .center_box .img_map .item_box .item:hover span {
  opacity: 1;
  visibility: visible;
}
@media (max-width:990px) {
  .ins_aboutCon10 .center_box .content {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_aboutCon10 .center_box .content .idx_more3 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_aboutCon10 .center_box .img_map {
    width: 100%;
    height: auto;
    margin-top: 0.8rem;
  }
  .ins_aboutCon10 .center_box .img_map .item_box .item {
    transform: scale(0.6);
  }
  .ins_aboutCon10 .center_box .img_map .item_box .item span {
    font-size: 12px;
  }
}
.ins_aboutCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_aboutCon11 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon11 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  gap: 0.32rem;
}
.ins_aboutCon11 .center_box .item_box .item {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  background: var(--color_bg);
  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;
  overflow: hidden;
}
.ins_aboutCon11 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
}
.ins_aboutCon11 .center_box .item_box .item .img .pb {
  padding-bottom: 61%;
}
.ins_aboutCon11 .center_box .item_box .item .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon11 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  padding: 0.32rem;
}
.ins_aboutCon11 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon11 .center_box .item_box .item .word_box .word .t1 {
  width: 100%;
  height: auto;
  font-weight: 700;
}
.ins_aboutCon11 .center_box .item_box .item .word_box .word .t2 {
  margin-top: 0.24rem;
  color: #666666;
}
.ins_aboutCon11 .center_box .item_box .item .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.24rem;
}
.ins_aboutCon11 .center_box .item_box .item .word_box .list .one {
  width: 100%;
  height: auto;
  padding-bottom: 0.24rem;
  border-bottom: 1px solid #0000001A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.16rem;
}
.ins_aboutCon11 .center_box .item_box .item .word_box .list .one img {
  flex-shrink: 0;
  width: 0.18rem;
}
.ins_aboutCon11 .center_box .item_box .item .word_box .list .one span {
  font-size: var(--font18);
}
.ins_aboutCon11 .center_box .item_box .item .word_box .list .one:last-child {
  padding-bottom: 0;
  border: 0;
}
.ins_nationalCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_nationalCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_nationalCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.ins_nationalCon1 .center_box .content .table_info2 .info table thead {
  background: none;
}
.ins_nationalCon1 .center_box .content .table_info2 .info table tr td:first-child {
  background: #E6ECF0;
  font-weight: 700;
  color: #1A1A1A;
}
.ins_nationalCon1 .center_box .content .table_info2 .info table {
  min-width: 600px;
}
.ins_nationalCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_nationalCon2 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_nationalCon2 .center_box .left_box {
  width: 42%;
}
.ins_nationalCon2 .center_box .right_box {
  width: 50%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_nationalCon2 .center_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_nationalCon2 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_nationalCon2 .center_box .right_box .icon {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 100px;
  background: #FFFFFF1A;
  backdrop-filter: blur(5px);
  position: absolute;
  z-index: 3;
  cursor: pointer;
}
.ins_nationalCon2 .center_box.left {
  -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_nationalCon2 .center_box {
    flex-direction: column !important;
  }
}
.ins_nationalCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_nationalCon3 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_nationalCon3 .content .center_box {
  width: 57%;
}
.ins_nationalCon3 .content .center_box .idx_title .t2 {
  line-height: 1.5;
}
.ins_nationalCon3 .img {
  width: 100%;
  height: auto;
}
.ins_nationalCon3 .img img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_nationalCon3 .content .center_box {
    width: 100%;
    height: auto;
  }
}
.ins_nationalCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: var(--color_bg);
}
.ins_nationalCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_nationalCon4 .center_box .idx_title {
  padding-bottom: 0.52rem;
  border-bottom: 1px solid #0000001A;
}
.ins_nationalCon4 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.52rem;
}
.ins_nationalCon4 .center_box .content .left_box {
  width: 29%;
  position: relative;
  z-index: 2;
}
.ins_nationalCon4 .center_box .content .left_box .word {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
}
.ins_nationalCon4 .center_box .content .right_box {
  width: 60.8%;
  position: relative;
  z-index: 1;
}
.ins_nationalCon4 .center_box .content .right_box::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 100vw;
  height: 100vw;
  background: var(--color_bg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  right: 100%;
  top: 0;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box {
  width: 100%;
  height: auto;
  z-index: 1;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li {
  width: fit-content;
  height: auto;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.32rem;
  z-index: 5;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li .centerInfo .word .t1 {
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li .centerInfo .word .t2 {
  font-weight: 700;
  color: #1A1A1A;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0.24rem;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li .centerInfo .img {
  width: 100%;
  height: auto;
  clip-path: inset(60% 0.32rem 0.32rem 25% round 0.08rem 0.08rem 0.08rem 0.08rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li .centerInfo .img img {
  width: 100%;
  height: auto;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li .centerInfo:hover .img {
  clip-path: inset(0% 0rem 0rem 0% round 0 0 0 0);
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li .centerInfo:hover .word .t1 {
  color: #FFFFFF;
}
.ins_nationalCon4 .center_box .content .right_box .swiper_box ul li .centerInfo:hover .word .t2 {
  color: #FFFFFF;
}
.ins_nationalCon4 .bg_img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
}
.ins_nationalCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.7rem;
}
.ins_nationalCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_nationalCon5 .center_box .item_box {
  width: 100%;
  height: auto;
  gap: 0.32rem;
  margin-top: 0.63rem;
}
.ins_nationalCon5 .center_box .item_box .item {
  background: #F5F8FD;
  padding: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_nationalCon5 .center_box .item_box .item .top {
  width: 100%;
  height: auto;
}
.ins_nationalCon5 .center_box .item_box .item .top .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.ins_nationalCon5 .center_box .item_box .item .top .icon img {
  width: 100%;
  height: auto;
}
.ins_nationalCon5 .center_box .item_box .item .top .word {
  font-size: var(--font18);
  color: #CCCCCC;
}
.ins_nationalCon5 .center_box .item_box .item .top .t1 {
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.24rem;
}
.ins_nationalCon5 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
}
.ins_nationalCon5 .center_box .item_box .item .word_box .t2 {
  color: #666666;
}
.ins_nationalCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_nationalCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_nationalCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.32rem;
}
.ins_nationalCon6 .center_box .item_box .item {
  width: 100%;
  height: 100%;
  padding: 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color_bg);
}
.ins_nationalCon6 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg8.png) no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_nationalCon6 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
}
.ins_nationalCon6 .center_box .item_box .item .word_box .t1 {
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_nationalCon6 .center_box .item_box .item .word_box .t2 {
  margin-top: 0.24rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_nationalCon6 .center_box .item_box .item .word_box .t3 {
  margin-top: 0.16rem;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_nationalCon6 .center_box .item_box .item .img {
  width: 100%;
  height: auto;
  margin-top: 0.47rem;
}
.ins_nationalCon6 .center_box .item_box .item .img .pb {
  padding-bottom: 86%;
}
.ins_nationalCon6 .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_nationalCon6 .center_box .item_box .item:hover {
  background: var(--active_color);
}
.ins_nationalCon6 .center_box .item_box .item:hover::after {
  opacity: 1;
}
.ins_nationalCon6 .center_box .item_box .item:hover .word_box .t1 {
  color: var(--active_color2);
}
.ins_nationalCon6 .center_box .item_box .item:hover .word_box .t2 {
  color: #FFF;
}
.ins_nationalCon6 .center_box .item_box .item:hover .word_box .t3 {
  color: #FFF;
}
.ins_nationalCon6 .center_box .item_box .item:hover .list .one {
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
@media (max-width:990px) {
  .ins_nationalCon6 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.ins_nationalCon6 .center_box .idx_more {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_nationalCon6 .center_box .idx_more .more.bor_Ac img {
  width: 0.16rem;
}
.ins_appointmentCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_appointmentCon1 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_appointmentCon1 .center_box .left_box {
  width: 40%;
}
.ins_appointmentCon1 .center_box .right_box {
  width: 55.3%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_appointmentCon1 .center_box .right_box .img {
  width: 100%;
  height: auto;
}
.ins_appointmentCon1 .center_box .right_box .img img {
  width: 100%;
  height: auto;
}
.ins_appointmentCon1 .center_box .right_box .icon {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 100px;
  background: #FFFFFF1A;
  backdrop-filter: blur(5px);
  position: absolute;
  z-index: 3;
  cursor: pointer;
}
.ins_appointmentCon1 .center_box.left {
  -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_appointmentCon1 .center_box {
    flex-direction: column !important;
  }
}
.ins_appointmentCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.9rem;
}
.ins_appointmentCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_appointmentCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_appointmentCon2 .center_box .content .left_box {
  width: 32.5%;
}
.ins_appointmentCon2 .center_box .content .left_box .item_box {
  width: 100%;
  height: auto;
  border-top: 1px solid #0000001A;
}
.ins_appointmentCon2 .center_box .content .left_box .item_box .item {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #0000001a;
}
.ins_appointmentCon2 .center_box .content .left_box .item_box .item .top {
  width: 100%;
  height: auto;
  font-size: var(--font32);
  font-weight: 700;
  padding: 0.4rem 0;
  cursor: pointer;
  line-height: 1.05;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appointmentCon2 .center_box .content .left_box .item_box .item .bot {
  width: 100%;
  height: auto;
  display: none;
  padding-bottom: 0.4rem;
  color: #666666;
}
.ins_appointmentCon2 .center_box .content .left_box .item_box .item .bot .idx_more2 {
  margin-top: 0.4rem;
}
.ins_appointmentCon2 .center_box .content .left_box .item_box .item .bot .img {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appointmentCon2 .center_box .content .left_box .item_box .item.active .top {
  padding-bottom: 0.24rem;
}
.ins_appointmentCon2 .center_box .content .right_box {
  width: 58.8%;
}
.ins_appointmentCon2 .center_box .content .right_box .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_appointmentCon2 .center_box .content .right_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_appointmentCon2 .center_box .content .right_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_appointmentCon2 .center_box .content .right_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 69.2%;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_appointmentCon2 .center_box .content .right_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_appointmentCon2 .center_box .content .right_box {
    display: none;
  }
}
.ins_appointmentCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.ins_appointmentCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_appointmentCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: flex;
  margin-top: 0.8rem;
}
.ins_appointmentCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding: 0 0.4rem;
  border-right: 1px solid #0000001A;
}
.ins_appointmentCon3 .center_box .item_box .item:first-child {
  padding-left: 0;
}
.ins_appointmentCon3 .center_box .item_box .item:last-child {
  padding-right: 0;
  border: 0;
}
.ins_appointmentCon3 .center_box .item_box .item .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.ins_appointmentCon3 .center_box .item_box .item .word {
  margin-top: 0.24rem;
  font-weight: 700;
}
@media (max-width:990px) {
  .ins_appointmentCon3 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
  }
  .ins_appointmentCon3 .center_box .item_box .item {
    padding: 0.4rem !important;
    border: 1px solid #0000001A !important;
    border-radius: 0.16rem;
  }
}
.ins_appointmentCon3 .center_box .idx_more3 {
  margin-top: 0.8rem;
}
.ins_appointmentCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: linear-gradient(100deg, #CBDCF9 24.66%, #F0F6FF 101.06%);
}
.ins_appointmentCon4 .center_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.7rem;
}
.ins_appointmentCon4 .center_box .swiper_icon {
  width: 0.52rem;
  height: 0.52rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #00000033;
  border-radius: 100px;
  position: absolute;
}
.ins_appointmentCon4 .center_box .swiper_icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appointmentCon4 .center_box .swiper_icon.next {
  left: calc(100% + 0.24rem);
}
.ins_appointmentCon4 .center_box .swiper_icon.prev {
  right: calc(100% + 0.24rem);
}
.ins_appointmentCon4 .center_box .swiper_icon:hover {
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_appointmentCon4 .center_box .swiper_icon:hover img {
  filter: brightness(0) invert(1);
}
.ins_appointmentCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_appointmentCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box {
  width: 59.7%;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .img {
  width: 100%;
  height: auto;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .img img {
  width: 100%;
  height: auto;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item {
  width: 0;
  height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item .icon {
  width: 0.29rem;
  height: 0.29rem;
  position: absolute;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item .word {
  position: absolute;
  width: 2.2rem;
  background: var(--active_color);
  left: 0.3rem;
  padding: 0.24rem;
  border-radius: 0.16rem;
  color: #FFFFFF;
  top: -0.3rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item .word::after {
  content: '';
  position: absolute;
  width: 0.17rem;
  height: 0.18rem;
  background-image: url(../images/img/Polygon\ 1.png);
  top: 0.2rem;
  left: 0;
  transform: translateX(-0.1rem);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-size: 100% 100%;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item .word .t1 {
  font-weight: 700;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item .word .t2 {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.08rem;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item .word .t2 img {
  flex-shrink: 0;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item .word .idx_more3 {
  width: 100%;
  margin-top: 0.32rem;
  height: auto;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item .word .idx_more3 .more {
  background: #FFFFFF;
  color: var(--active_color);
  padding: 0.08rem;
  width: 100%;
  text-align: center;
  font-size: var(--font14);
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item:hover .word {
  opacity: 1;
  visibility: visible;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item.left .word {
  left: unset;
  right: 0.3rem;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .left_box .img_box .item_box .item.left .word::after {
  right: 0;
  left: unset;
  transform: translateX(0.1rem) rotate(180deg);
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .right_box {
  width: 34%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.5rem;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .right_box .idx_more3 {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 0.16rem;
}
.ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo .right_box .t1 {
  font-weight: 700;
}
@media (max-width:990px) {
  .ins_appointmentCon4 .center_box .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.layui-form .idx_more {
  margin-top: 0.3rem;
}
/* ---------------- yy ---------------- */
.mar_t32 {
  margin-top: 0.32rem !important;
}
.ins_partnerCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ins_partnerCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_partnerCon1 .center_box .content {
  width: 100%;
  height: auto;
}
.ins_partnerCon1 .center_box .content .con_box1 {
  width: 100%;
  height: auto;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box {
  width: 43.75%;
  height: auto;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box .word_box1 {
  width: 100%;
  height: auto;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box .word_box1 .t1 {
  width: 100%;
  height: auto;
  font-weight: 700;
  line-height: 1;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box .word_box1 .t2 {
  color: #666;
  margin-top: 0.24rem;
  margin-right: 0.22rem;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box .word_box2 {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  padding-right: 0.67rem;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box .word_box2 .title p {
  font-weight: 700;
  color: #1A1A1A;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box .word_box2 .list {
  width: 100%;
  height: auto;
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.16rem;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box .word_box2 .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box .word_box2 .list .one img {
  flex-shrink: 0;
  width: 0.2rem;
}
.ins_partnerCon1 .center_box .content .con_box1 .left_box .word_box2 .list .one span {
  font-size: var(--font18);
  color: #666666;
}
.ins_partnerCon1 .center_box .content .con_box1 .right_box {
  width: 47.9861%;
  height: auto;
}
.ins_partnerCon1 .center_box .content .con_box1 .right_box .img {
  width: 100%;
  height: auto;
  border-radius: 0.24rem;
  overflow: hidden;
}
.ins_partnerCon1 .center_box .content .con_box1 .right_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_partnerCon1 .center_box .content .con_box1.left {
  -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_partnerCon1 .center_box .content .con_box2 {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-top: 0.8rem;
  padding: 0.8rem;
  border-radius: 0.24rem;
  background: url("../images/y_img/bg1.png") no-repeat, linear-gradient(94deg, #81D0FF -10.94%, #0080CB 116.87%);
  background-size: 100% 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_partnerCon1 .center_box .content .con_box2 .left_box {
  --width: 46.759%;
  width: var(--width);
  height: auto;
}
.ins_partnerCon1 .center_box .content .con_box2 .left_box .word {
  width: 100%;
  height: auto;
}
.ins_partnerCon1 .center_box .content .con_box2 .left_box .word .t1 {
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
}
.ins_partnerCon1 .center_box .content .con_box2 .left_box .word .t2 {
  color: #fff;
  margin-top: 0.16rem;
}
.ins_partnerCon1 .center_box .content .con_box2 .left_box .btns_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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.24rem;
  margin-top: 0.56rem;
}
.ins_partnerCon1 .center_box .content .con_box2 .left_box .btns_box .idx_more {
  width: fit-content;
}
.ins_partnerCon1 .center_box .content .con_box2 .left_box .btns_box .idx_more .more {
  padding: 0.16rem 0.4rem;
}
.ins_partnerCon1 .center_box .content .con_box2 .right_box {
  --width: 44.244%;
  width: var(--width);
  height: auto;
}
.ins_partnerCon1 .center_box .content .con_box2 .right_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.24rem;
  padding-bottom: 0.24rem;
}
.ins_partnerCon1 .center_box .content .con_box2 .right_box .item:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.24rem;
}
.ins_partnerCon1 .center_box .content .con_box2 .right_box .item .icon {
  width: 0.52rem;
}
.ins_partnerCon1 .center_box .content .con_box2 .right_box .item .icon img {
  flex-shrink: 0;
  width: 100%;
}
.ins_partnerCon1 .center_box .content .con_box2 .right_box .item .word {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.08rem;
}
.ins_partnerCon1 .center_box .content .con_box2 .right_box .item .word .t1 {
  color: #fff;
  font-weight: 700;
}
.ins_partnerCon1 .center_box .content .con_box2 .right_box .item .word .t2 {
  color: #fff;
}
.ins_partnerCon1 .center_box .content .con_box2 .right_box.br_b .item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ins_partnerCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background: url("../images/y_img/bg2.png") no-repeat, #F5F8FD;
  background-size: auto 100%;
}
.ins_partnerCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_partnerCon2 .center_box .left_box {
  width: 36%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.32rem;
}
.ins_partnerCon2 .center_box .left_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_partnerCon2 .center_box .left_box .idx_title .t1 {
  font-weight: 700;
  line-height: normal;
}
.ins_partnerCon2 .center_box .left_box .idx_title .t2 {
  color: #666;
}
.ins_partnerCon2 .center_box .right_box {
  width: 59%;
  height: auto;
}
.ins_partnerCon2 .center_box .right_box .content {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 0.28rem 0.4rem 0.4rem 0.4rem;
  border-radius: 0.16rem;
  overflow: hidden;
}
.ins_partnerCon2 .center_box .right_box .content .title {
  font-weight: 700;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid #0000001A;
}
.ins_partnerCon2 .center_box .right_box .content .word1 {
  width: 100%;
  height: auto;
}
.ins_partnerCon2 .center_box .right_box .content .word1 .t1 {
  font-weight: 700;
}
.ins_partnerCon2 .center_box .right_box .content .word1 .t2 {
  margin-top: 0.16rem;
  color: #666666;
}
.ins_partnerCon2 .center_box .right_box .content .item_box {
  width: 100%;
  height: auto;
  gap: 0.24rem;
}
.ins_partnerCon2 .center_box .right_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_partnerCon2 .center_box .right_box .content .item_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.04rem;
}
.ins_partnerCon2 .center_box .right_box .content .item_box .item .word i {
  color: #FC533C;
  font-style: unset;
}
.ins_partnerCon2 .center_box .right_box .content .item_box .item .icon {
  width: 100%;
  height: auto;
  margin-top: 0.12rem;
}
.ins_partnerCon2 .center_box .right_box .content .item_box .item .icon input,
.ins_partnerCon2 .center_box .right_box .content .item_box .item .icon textarea {
  width: 100%;
  height: 0.47rem;
  min-height: 40px;
  border: 0;
  border-radius: 0.08rem;
  font-size: var(--font18);
  padding-left: 0.24rem;
  background: var(--color_bg);
}
.ins_partnerCon2 .center_box .right_box .content .item_box .item .icon textarea {
  min-height: 1.29rem;
  padding: 0.12rem 0.24rem;
}
.ins_partnerCon2 .center_box .right_box .content .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_partnerCon2 .center_box .right_box .content .idx_more .more {
  padding: 0.16rem 0.48rem;
}
.table_all {
  width: 100%;
  height: auto;
  border-radius: 0.16rem;
  overflow: hidden;
  border: 1px solid #00000033;
  --borColor: #00000033;
}
.table_all table {
  width: 100%;
  height: auto;
  background: #F5F8FD;
  table-layout: fixed;
}
.table_all table tr {
  width: 100%;
  height: auto;
}
.table_all table tr td {
  text-align: center;
  padding: 0.24rem;
  border-bottom: 1px solid var(--borColor);
  border-right: 1px solid var(--borColor);
  color: #666666;
  font-size: var(--font16);
}
.table_all table tr td:last-child {
  border-right: 0;
}
.table_all table thead {
  width: 100%;
  height: auto;
  background: #E6ECF0;
}
.table_all table thead tr td {
  padding: 0.4rem 0.2rem;
  color: #1A1A1A;
  font-size: var(--font18);
  font-weight: 700;
}
.table_all table tbody {
  width: 100%;
  height: auto;
  color: #666666;
}
.table_all table tbody tr:last-child {
  border-bottom: 0;
}
.table_all table tbody tr:last-child td {
  border-bottom: 0;
}
